blob_id
stringlengths
40
40
directory_id
stringlengths
40
40
path
stringlengths
3
264
content_id
stringlengths
40
40
detected_licenses
sequencelengths
0
85
license_type
stringclasses
2 values
repo_name
stringlengths
5
140
snapshot_id
stringlengths
40
40
revision_id
stringlengths
40
40
branch_name
stringclasses
905 values
visit_date
timestamp[us]date
2015-08-09 11:21:18
2023-09-06 10:45:07
revision_date
timestamp[us]date
1997-09-14 05:04:47
2023-09-17 19:19:19
committer_date
timestamp[us]date
1997-09-14 05:04:47
2023-09-06 06:22:19
github_id
int64
3.89k
681M
star_events_count
int64
0
209k
fork_events_count
int64
0
110k
gha_license_id
stringclasses
22 values
gha_event_created_at
timestamp[us]date
2012-06-07 00:51:45
2023-09-14 21:58:39
gha_created_at
timestamp[us]date
2008-03-27 23:40:48
2023-08-21 23:17:38
gha_language
stringclasses
141 values
src_encoding
stringclasses
34 values
language
stringclasses
1 value
is_vendor
bool
1 class
is_generated
bool
2 classes
length_bytes
int64
3
10.4M
extension
stringclasses
115 values
content
stringlengths
3
10.4M
authors
sequencelengths
1
1
author_id
stringlengths
0
158
572198a9321b09e40eacff8ff1cd73a9925e06c7
fac1820904e9d8c5fe776a0e75368c8349f5ff22
/cpp/ebookChecker-MT-main.cpp
6df0789f2cb28935ca7271a138f768628bd6d145
[ "BSD-3-Clause" ]
permissive
kyokushin/EBookChecker
47108a0d30d8eff2a8685574a084cfb3239447ee
1420411ef5acfe8a3d056910a8cfe630f4a1f4dd
refs/heads/master
2020-04-15T12:46:21.086270
2016-09-27T14:47:06
2016-09-27T14:47:06
60,461,774
0
0
null
null
null
null
UTF-8
C++
false
false
3,953
cpp
#include <opencv2/opencv.hpp> #include <iostream> #include <string> #include <qdir.h> #include <qstring.h> #include <qstringlist.h> #include "cvutils.h" #define TEST_DATA using namespace std; struct UserInstruction { int mouse_l_down = false; cv::Mat* pImage; cv::Mat showImage; cv::Scalar color; int thickness = 1; cv::Point mousePos_start; cv::Point mousePos_end; cv::Rect rect; string wname; UserInstruction() :color(0, 0, 255) { } void imshow( const std::string wname, cv::Mat& image) { pImage = &image; resetShowImage(); this->wname = wname; cv::imshow(wname, showImage); } void resetShowImage() { pImage->copyTo(showImage); } void imshow() { cv::imshow(wname, showImage); } void resetMouseState() { mouse_l_down = false; } cv::Rect& getRect() { rect.x = min(mousePos_start.x, mousePos_end.x); rect.y = min(mousePos_start.y, mousePos_end.y); rect.width = abs(mousePos_start.x - mousePos_end.x); rect.height = abs(mousePos_start.y - mousePos_end.y); return rect; } void setStartPos(int x, int y) { mousePos_start.x = x; mousePos_start.y = y; } void setEndPos(int x, int y) { mousePos_end.x = x; mousePos_end.y = y; } cv::Mat& getImage() { return showImage; } }; void message(const std::string& str, int line, const char* file) { cout << str << " " << line << " in " << file << endl; } #define MESSAGE(str) message(str, __LINE__, __FILE__) void mouseCallback(int event, int x, int y, int flag, void* data) { UserInstruction &udata = *((UserInstruction*)data); if (udata.mouse_l_down && event == CV_EVENT_MOUSEMOVE) { MESSAGE("move"); udata.setEndPos(x, y); udata.resetShowImage(); cv::rectangle(udata.getImage(), udata.getRect(), udata.color, udata.thickness); udata.imshow(); } else if (event == CV_EVENT_LBUTTONDOWN) { MESSAGE("down"); udata.mouse_l_down = true; udata.setStartPos(x, y); udata.setEndPos(x + 1, y + 1); udata.resetShowImage(); cv::rectangle(udata.getImage(), udata.getRect(), udata.color, udata.thickness); udata.imshow(); } else if (event == CV_EVENT_LBUTTONUP) { MESSAGE("down"); udata.mouse_l_down = false; udata.setEndPos(x, y); udata.imshow(); } else { MESSAGE("nothing"); } } int main(int argc, char** argv) { #ifdef TEST_DATA string src = "C:\\Users\\kyokushin\\Pictures\\testData_Top\\"; //string src = "C:\\Users\\kyokushin\\Pictures\\testData_Bottom\\"; #else const string commandArgs = "{@input | | directory including ebook (jpg or png)}" ; cv::CommandLineParser parser(argc, argv, commandArgs); string src = parser.get<string>(0); #endif QDir dir(QString::fromLocal8Bit(src.c_str())); if (!dir.exists()) { cerr << "error directory not exists. entered directory is \"" << src << "\"" << endl; return 1; } QFileInfo savePath(QString::fromLocal8Bit((src + '/' + "pagenumbers_mt.png").c_str())); if (savePath.exists()) { cerr << "already exists pagenumber result file.:" << savePath.absoluteFilePath().toLocal8Bit().constData() << endl; return 2; } QFileInfoList fileList = dir.entryInfoList(QDir::Files); UserInstruction udata; const cv::Size displaySize(1920, 900); const string wname("eBookCkecker MT"); cv::namedWindow(wname); cv::setMouseCallback(wname, mouseCallback, &udata); int key; char ckey; for (int i = 0; i < fileList.size(); i++) { while (1) { string fname = fileList[i].absoluteFilePath().toLocal8Bit().constData(); cout << fname << endl; cv::Mat srcImage = cv::imread(fname, CV_LOAD_IMAGE_COLOR); if (srcImage.empty()) { break; } cv::Mat smallImage; double scale = min((double)displaySize.width / srcImage.cols, (double)displaySize.height / srcImage.rows); cv::resize(srcImage, smallImage, cv::Size(), scale, scale); udata.imshow(wname, smallImage); key = cv::waitKey(); ckey = (char)key; if (ckey == 'n') { break; } if (key == 0x1b) { return 0; } } } return 0; }
0b2bb4b4d82130fd53ec85ed0f1b1c2e5d619d4e
a98c35ee3799a35d966378a90e0662fd7a76034e
/qt/autopilot/cquaternion.h
689e4013a5f0de85c0a59ce124fd278c24650ef3
[]
no_license
bonafid3/ekf-ahrs
5f394e6c3226011490c7c56b3b21ffe5e2662e4b
f201e27a7c8ee592e46432981babf761090eecb8
refs/heads/master
2020-05-21T06:03:21.855908
2017-03-10T17:28:57
2017-03-10T17:28:57
84,583,787
7
0
null
null
null
null
UTF-8
C++
false
false
417
h
#ifndef CQUATERNION_H #define CQUATERNION_H class cQuaternion { public: cQuaternion(); cQuaternion operator*(const cQuaternion &other); cQuaternion operator*(const float scalar); cQuaternion operator+(const cQuaternion &other); cQuaternion operator-(const cQuaternion &other); cQuaternion conjugate(); void normalize(); float a,b,c,d; }; #endif // CQUATERNION_H
9b80c046294fbf8146c8d208dd9d011825c8c367
644cee05ff1b39a6b37dadcfa924b004686a2ad6
/sdl_game/main.cpp
7d7e7fbf61420fb3edb455bc28bd0e74d46b6357
[]
no_license
Nothrax/IPA
f9945cd6cdaca422b7cee47890d4b8d3a5208d56
d127c3da91c9a8c237bb821073bc5fc42dce6bf9
refs/heads/master
2021-08-28T15:10:53.421747
2017-12-12T14:55:57
2017-12-12T14:55:57
114,002,370
0
0
null
null
null
null
ISO-8859-1
C++
false
false
19,598
cpp
#include <SDL.h> #include <SDL_image.h> #include <GL/gl.h> #include <GL/glu.h> #include <iostream> #include <cmath> #include <time.h> #include "obj.h" #include "get_pixel.h" #include "collision.h" #include "geometry.h" #include "randspawn.h" #include "sound.h" #define LARGEUR_ECRAN 1920 #define HAUTEUR_ECRAN 1080 #define LIMITE .3 // limite de hauteur franchissable sans saut #define COEF_VITESSE 9 #define HAUTEUR_VUE 1.75 //hauteur des yeux au dessus du sol #define ESPACEMENT_PT .05 Point defaut= {-1,0,0}; extern "C" void asmfunction(); using namespace std; enum Act_Terrain { CHARGER, RESTITUER, DECHARGER }; typedef enum Act_Terrain Act_Terrain; void init_ogl(); void dessiner(SDL_Event event); double get_height(double x, double y, bool interpolated=true);//fonction qui determine la hauteur depuis la heightmap double hauteur_saut(double tpsms);//Fonction qui donne la hauteur d'un saut en fonction du temps depuis la debut du saut (en ms) double hauteur_chute_libre(double tpsms);//fonction qui donne la hauteur d'une chute libre en fonction du tps ecoule depuis le debut en ms int get_elapsed_time();//retourne le tps ecoule depuis le dernier appel de la fct. En ms Vector place_cam(); // place la camera en fct des touches et retourne le vecteur associe a la camera objet gest_terrain(Act_Terrain action, char filename[]=""); void disp_fling(objet fling, Vector camera); robot *gest_robot(int r, Point posPlayer=defaut); // fonction chargee de la gestion des robots void tirer(Vector camera);//effectue un tir selon l'angle de la camera void patienter(objet fling); SDL_Window *screen; int main ( int argc, char** argv ) { SDL_Event events; bool continuer=true; SDL_Init(SDL_INIT_VIDEO); atexit(SDL_Quit); screen = SDL_CreateWindow("My Game Window", SDL_WINDOWPOS_UNDEFINED, SDL_WINDOWPOS_UNDEFINED, LARGEUR_ECRAN, HAUTEUR_ECRAN, SDL_WINDOW_FULLSCREEN | SDL_WINDOW_OPENGL); SDL_GL_CreateContext(screen); init_ogl(); while(continuer) { SDL_PollEvent(&events); switch(events.type) { case SDL_QUIT: continuer=false; break; case SDL_KEYDOWN: switch(events.key.keysym.sym) { case SDLK_ESCAPE: continuer=false; break; default: break; } break; } dessiner(events); SDL_Delay(20); } quit_audio(); return 0; } void init_ogl() { glMatrixMode(GL_PROJECTION); glLoadIdentity(); gluPerspective(80, (double)LARGEUR_ECRAN/HAUTEUR_ECRAN, .1, 1000); glEnable(GL_DEPTH_TEST); glEnable(GL_LIGHTING); glEnable(GL_NORMALIZE); glClearColor(0, 0, 0, 0); /* Eclairage : une lampe d'ambience, et une lampe directionelle*/ glEnable(GL_LIGHT0); GLfloat ambient[]= {5,5,5,1}; GLfloat diffuse[]= {1,3,3,5}; glLightfv(GL_LIGHT0, GL_AMBIENT, ambient); glLightfv(GL_LIGHT0, GL_DIFFUSE, ambient); int MatSpec [4] = {1,1,1,1}; glMaterialiv(GL_FRONT_AND_BACK,GL_SPECULAR,MatSpec); glMateriali(GL_FRONT_AND_BACK,GL_SHININESS,100); double hauteur_saut(int tpsms);//Fonction qui donne la hauteur d'un saut en fonction du temps depuis la debut du saut (en ms) //on place la souris au milieu de l'ecran SDL_WarpMouseGlobal(LARGEUR_ECRAN/2, HAUTEUR_ECRAN/2); SDL_SetRelativeMouseMode(SDL_TRUE); } void dessiner(SDL_Event event) { static objet terrain; static objet fling; static objet skybox; static bool loaded=false;//si le chargement a ete fait Vector camera;//vecteur associé a la camera //reglages de la scene glClear(GL_COLOR_BUFFER_BIT | GL_DEPTH_BUFFER_BIT);//vidage des memoires temporaires glMatrixMode(GL_MODELVIEW);//pr dessiner glLoadIdentity();//matrice par defaut if(!loaded) { fling.load("fling.obj"); // en attente du chargement, on va afficher le fling patienter(fling); son_feu();//charger le fichier son gest_terrain(CHARGER, (char *)"terrain.obj"); skybox.load("skybox.obj"); loaded=true; get_elapsed_time(); } camera = place_cam(); //glLightfv(GL_LIGHT0,GL_POSITION,LightPos);//lumiere gest_terrain(RESTITUER).disp(); glPushMatrix(); disp_fling(fling, camera); glPopMatrix(); gest_robot(0, camera.origine); glPushMatrix(); glScaled(200,200,200); skybox.disp(); glPopMatrix(); glFlush(); SDL_GL_SwapWindow(screen); } double get_height(double x, double y, bool interpolated) { static SDL_Surface *heightmap=NULL; static bool loaded=false; static double tailleZ, tailleX, tailleY; double hauteur=0; double minimum=0; int ix=0, iy=0; double dx=0, dy=0; Uint32 pxColor1=0, pxColor2=0, pxColor3=0, pxColor4; if(!loaded) { heightmap=IMG_Load("heightmap.png"); tailleZ=gest_terrain(RESTITUER).relBoundingBox.coordMax.z-gest_terrain(RESTITUER).relBoundingBox.coordMin.z; /* On part du principe que le terrain commence a 0;0 , donc que la taille X et Y sont max X et max Y*/ tailleX=gest_terrain(RESTITUER).relBoundingBox.coordMax.x; tailleY=gest_terrain(RESTITUER).relBoundingBox.coordMax.y; loaded=true; } else//chargement deja fait { if(x >=0 && x<=tailleX && y>=0 && y<=tailleY)//position camera dans le terrain { x = (x / tailleX) * heightmap->w; // on cherche la position relative par rapport au terrain, que l'on multiplie par la taille de y = (1 - (y / tailleY)) * heightmap->h; // la heightmap ensuite // (1 - .. ) permet de faire une inversion verticale de la heightmap car blender l'inverse if(interpolated)//s'il faut interpoler la hauteur en fct des autres sommets, ce qui n'est pas toujours le cas { /* Pour l'interpolation bilineaire qui permet de connaitre la hauteur sans avoir de pas dus a la heightmap, on procede comme suit : -on recupere les quatres pixels qui encadrent la position, et leur valeur en hauteur -on recupere les coordonnees entieres de la position, et leurs restes decimaux -on applique la formule d'interpolation bilineaire : hauteur = ((1-dx) * pxColor1 + dx * pxColor2) * (1-dy) + ((1-dx) * pxColor3 + dx * pxColor4) * dy*/ ix=(int)x;//position entiere iy=(int)y; dx=x-ix;//position decimale relative dy=y-iy; SDL_LockSurface(heightmap); /* Pour l'interpolation lineaire de la position, on recupere la position des quatres pixels autours de notre position on travaille ac un img en nb, donc les 4 couleurs ont la meme valeur, donc on ne prend qu'une d'entres elles, soit le 1er octet*/ pxColor1=getpixel(heightmap, ix, iy);//recup des couleurs pxColor2=getpixel(heightmap, ix+1, iy); pxColor3=getpixel(heightmap, ix, iy+1); pxColor4=getpixel(heightmap, ix+1, iy+1); //recup du 1er octet pxColor1=(*(unsigned char *)(&pxColor1)); pxColor2=(*(unsigned char *)(&pxColor2)); pxColor3=(*(unsigned char *)(&pxColor3)); pxColor4=(*(unsigned char *)(&pxColor4)); /* On empeche l'interpolation lineaire de nous faire des siennes, c'est a dire de faire monter en trop haut. Pour cela, on definit une limite de hauteur, et si elle est depassee par la hauteur d'un des 4 pts, on retourne la valeur minimale des autres. Cela pourra eventuellement amener a certains bugs graphiques, a regler plus tard si besoin. */ //on recupere le minimum minimum=pxColor1*tailleZ/255; if(pxColor2*tailleZ/255 < minimum)//peu etre un peu basic comme methode, mais simple et fonctionnelle minimum=pxColor2*tailleZ/255; if(pxColor3*tailleZ/255 < minimum) minimum=pxColor3*tailleZ/255; if(pxColor4*tailleZ/255 < minimum) minimum=pxColor4*tailleZ/255; //maintenant, on verifie que la hauteur max depasse pas la limite if(pxColor1*tailleZ/255 > minimum+.5 || pxColor2*tailleZ/255 > minimum+.5 || pxColor3*tailleZ/255 > minimum+.5 || pxColor4*tailleZ/255 > minimum+.5 ) { hauteur=minimum*tailleZ/255; } else//ok pr l'interpolation lineaire, les pts ne sont pas trop ecartes en hauteur { hauteur=((1-dx) * pxColor1 + dx * pxColor2) * (1-dy) + ((1-dx) * pxColor3 + dx * pxColor4) * dy;//calcul de la hauteur interpolee } } else { /* Il est possible qu'il ne faille pas interpoler, par exemple pour tester la hauteur pour voir si un mvt est possible ou pas. */ pxColor1=getpixel(heightmap, (int)x, (int)y); pxColor1=(*(unsigned char *)(&pxColor1));//recup du 1er octet hauteur=(double)pxColor1; } hauteur*=tailleZ/255;//on adapte la hauteur retournee a la hauteur de la map return hauteur+gest_terrain(RESTITUER).relBoundingBox.coordMin.z; } } return 0; } Vector place_cam() { static Point position= {0,0,0}; Point positionVoulue= {60,62,0}; static Point oldPosition= {60,62,0}; //sauvgarde temporaire de l'ancienne position au cas d'un mvt refuse(hauteur trop haute) static Point aimAt= {0,0,0}; static int mouseX=0, mouseY=0; static int oldMouseX=0, oldMouseY=0, newMouseX=0, newMouseY=0; static double angleY=0, angleZ=15;//on ne n'oriente la camera que sur l'axe X et Y (par rapport a la cam.) sinon, cela inclinerait l'img int tpsEcoule=0;//temps ecoule depuis le dernier appel de la fonction SDL_GetMouseState(&newMouseX, &newMouseY); const Uint8 *keystates=SDL_GetKeyboardState(NULL); mouseX=newMouseX-oldMouseX;//recup du deplacement mouseY=newMouseY-oldMouseY; positionVoulue=oldPosition; tpsEcoule=get_elapsed_time(); /* Gestion pour que la souris ne sorte pas */ if(newMouseX < 5 || newMouseX > LARGEUR_ECRAN-5)//bientot sortie { SDL_WarpMouseGlobal(LARGEUR_ECRAN/2, newMouseY); newMouseX=LARGEUR_ECRAN/2; oldMouseX=LARGEUR_ECRAN/2; } if(newMouseY < 5 || newMouseY> HAUTEUR_ECRAN-5)//bientot sortie { SDL_WarpMouseGlobal(newMouseX, HAUTEUR_ECRAN/2); newMouseY=HAUTEUR_ECRAN/2; oldMouseY=HAUTEUR_ECRAN/2; } angleY+=-mouseY/5; angleZ+=-mouseX/5; //verification qu'il n'y a pas de depassement de limites if(angleY>=80) angleY=80; if(angleY<=-80) angleY=-80; if(keystates[SDLK_w]) { positionVoulue.x += cos(angleZ*M_PI/180)/COEF_VITESSE;// /10 pr reduire la vitesse positionVoulue.y += sin(angleZ*M_PI/180)/COEF_VITESSE; } if(keystates[SDLK_s]) { positionVoulue.x -= cos(angleZ*M_PI/180)/COEF_VITESSE;// /10 pr reduire la vitesse positionVoulue.y -= sin(angleZ*M_PI/180)/COEF_VITESSE; } if(keystates[SDLK_a]) { positionVoulue.x += cos((angleZ+90)*M_PI/180)/COEF_VITESSE;// /10 pr reduire la vitesse positionVoulue.y += sin((angleZ+90)*M_PI/180)/COEF_VITESSE; } if(keystates[SDLK_d]) { positionVoulue.x += cos((angleZ-90)*M_PI/180)/COEF_VITESSE;// /10 pr reduire la vitesse positionVoulue.y += sin((angleZ-90)*M_PI/180)/COEF_VITESSE; } Point min, max;// pour eviter de sortir du terrain min = gest_terrain(RESTITUER).relBoundingBox.coordMin; max = gest_terrain(RESTITUER).relBoundingBox.coordMax; if(positionVoulue.x>min.x +.5&& positionVoulue.y>min.y +.5&& positionVoulue.y<max.y-.5 && positionVoulue.x<max.x-.5)//dans le terrain position=positionVoulue; position.z = get_height(position.x, position.y, true); // hauteur correspondante aimAt.x=position.x + cos(angleZ*M_PI/180)*cos(angleY*M_PI/180); aimAt.y=position.y + sin(angleZ*M_PI/180)*cos(angleY*M_PI/180); aimAt.z=position.z + sin(angleY*M_PI/180); // on ajoute la hauteur par rapport au sol position.z += HAUTEUR_VUE; aimAt.z += HAUTEUR_VUE; gluLookAt(position.x, position.y, position.z , aimAt.x,aimAt.y,aimAt.z , 0, 0, 1); oldMouseX=newMouseX; oldMouseY=newMouseY; oldPosition=position; Vector camera; //vecteur associe a la camera camera.origine = position; camera.angleY = angleY; camera.angleZ = angleZ; return camera; } objet gest_terrain(Act_Terrain action, char filename[]) { static objet objdefaut; if(action==CHARGER) objdefaut.load(filename); return objdefaut; } double hauteur_saut(double tpsms) { double hauteur=0;//hauteur finale retournee /* Calcul de la hauteur du saut : on veut un saut rapide au debut, lent au milieu, et a nouveau rapde vers la fin, av. de retomber au sol Cela correspond la la formule f(x)=-3.95(x-.45)²+.8 Df=[0;.9] ac x en secondes et f(x) en metres (saut de 80 cm)*/ if(tpsms >= 0 && tpsms <= 900)//Df Ok { tpsms/=1000;//on commence par convertir en secondes cout << "tpsms=" << tpsms << endl; hauteur=-3.95*(tpsms-.45)*(tpsms-.45) + .8;//puis on calcule } return hauteur; } double hauteur_chute_libre(double tpsms) { cout << "temps sans acces au sol=" << tpsms<<endl; double hauteur=0; /* On va partir du principe que la chute accelere progessivement, donc h=-x² */ if(tpsms>=0)//pas de tps negatif { tpsms/=1000;//en secondes hauteur=-4*tpsms*tpsms; } cout <<"hauteur_chute_libre:hauteur="<<hauteur<<endl; return hauteur; } int get_elapsed_time() { static int ancienTps=0; int nouveauTps=0; int tpsEcoule=0; nouveauTps=SDL_GetTicks(); tpsEcoule=nouveauTps-ancienTps; ancienTps=nouveauTps; return tpsEcoule; } void disp_fling(objet fling, Vector camera) { const Uint8 *keystates = SDL_GetKeyboardState(NULL); /* Petite animation du fling : mvt de droite a gauche */ int prec, suiv;//tps ecoule static double decalageY; //decalage du fling par rapport a la camera static double recul=0; static bool croissant=true; // si le decalage augmente ou diminue if(keystates[SDLK_w] || keystates[SDLK_s] || keystates[SDLK_a] || keystates[SDLK_d])// mouvement du joueur { if(croissant) { decalageY += .002; if(decalageY>=.07) croissant=false; } else { decalageY -= .002; if(decalageY<=0) croissant=true; } } else { if(decalageY>=0) decalageY-=.002; } if(SDL_GetMouseState(NULL, NULL) & SDL_BUTTON(1) && recul<=0)// click gauche de souris { recul = .08; tirer(camera); } else { if(recul>=0) recul-=.004; } glPushMatrix(); glTranslated(camera.origine.x, camera.origine.y, camera.origine.z); glRotated(camera.angleZ, 0, 0, 1); glRotated(-camera.angleY, 0, 1, 0); glTranslated(.4-recul, -.16+decalageY, -.25 + (-16*decalageY*decalageY) + .6*decalageY); glScaled(.1,.1,.1); fling.disp(); glPopMatrix(); } robot *gest_robot(int r, Point posPlayer) { static robot robots[5]; static bool loaded = false; if(!loaded) { loaded=true; robots[0].shape.load("robot.obj"); for(int i=0; i<5; i++) { robots[i].shape = robots[0].shape; robots[i].position = randSpawn(); } } Point pos; bool collision; double dist; if(posPlayer.x != -1)//si la position du joueur a été donnée en arguments, x != -1 { for(int i=0; i<5; i++) { collision=false; pos=robots[i].position; pos.x += -((pos.x - posPlayer.x)/(fabs(pos.x-posPlayer.x)+1))/30; pos.y += -((pos.y - posPlayer.y)/(fabs(pos.y-posPlayer.y)+1))/30; for(int a=0; a<i; a++)//detection de collision entre robots { dist = sqrt((robots[a].position.x-robots[i].position.x)* (robots[a].position.x-robots[i].position.x)+ (robots[a].position.y-robots[i].position.y)* (robots[a].position.y-robots[i].position.y)); if(dist<3) collision=true; } if(collision!=true) robots[i].position = pos; } for(int i=0; i<5; i++) { robots[i].position.z = get_height(robots[i].position.x, robots[i].position.y, true); glPushMatrix(); glTranslated(robots[i].position.x, robots[i].position.y, robots[i].position.z); glRotated(robots[i].z, 0, 0, 1); robots[i].z++; robots[i].shape.disp(); glPopMatrix(); } } return &(robots[r]); } void tirer(Vector camera) { /* Pour savoir si la balle a touché un des robots, on effectue un test point par point. Il serait possible de le faire en direct, en calculant la trajectoire de la balle, mais dans ce cas, on ne pourrait pas savoir si la balle traverse le sol préalablement. Pour eviter de calculer deux points qui pourraient etre de part et d'autre d'un robot, on prend des petits intervales. */ Point test; // point en cours de test test=camera.origine; robot *bot; double dist; double x,y,z; for(int i=0; i<500; i++) //500 points { test.x += cos(camera.angleZ * (M_PI/180)) * cos(camera.angleY * (M_PI/180)) * ESPACEMENT_PT; test.y += sin(camera.angleZ * (M_PI/180)) * cos(camera.angleY * (M_PI/180)) * ESPACEMENT_PT; test.z += sin(camera.angleY * (M_PI/180)) * ESPACEMENT_PT; if(test.z<get_height(test.x, test.y, true))//balle dans le sol i=500;//on arrete la boucle, si la balle passe dans le sol, elle s'arrete, donc la boucle aussi /* Maintenant, la boucle qui permet de tester si le point est dans un robot */ for(int j=0; j<5; j++) { bot = gest_robot(j); dist = sqrt((bot->position.x - test.x)*(bot->position.x - test.x)+ (bot->position.y - test.y)*(bot->position.y - test.y)); if(dist<1 && test.z>(bot->shape.relBoundingBox.coordMin.z+bot->position.z) && test.z<(bot->shape.relBoundingBox.coordMax.z+bot->position.z))//le point est dans le robot { gest_robot(j)->kill(); j=5;//on arrete les boucles i=500; } } } son_feu(); } void patienter(objet fling) { gluLookAt(0,0,0,1,0,0,0,0,1); glPushMatrix(); glTranslated(1,0,0); glScaled(.15,.15,.15); glRotated(120, 0,0,1); glRotated(20,-1,1,0); fling.disp(); glPopMatrix(); glFlush(); SDL_GL_SwapWindow(screen); }
97c1f65f2e02b8b6fff3aa4a69f2be59c95d749f
e000d893fb5d278c6152f526f9df5d0540e1c669
/add_remove_randomRemove.cpp
f0e7738fa9d95b0519b85705cf27401c5dbe7c20
[]
no_license
caricaturecm/cpp
1bf6a72844ecdd71bc1920d9c6cea06451e5da81
a40f0cc7d77adb46bf301d76c999d74a2cf45a6f
refs/heads/master
2021-03-22T00:16:11.718274
2016-11-07T07:23:32
2016-11-07T07:23:32
53,742,428
0
0
null
null
null
null
UTF-8
C++
false
false
1,911
cpp
#include <iostream> #include <unordered_map> #include <vector> #include <stdlib.h>//rand() #include <algorithm>//swap() using namespace std; /* * Data structure that add(num), remove(num), randomRemove() all are in O(1) * */ class ConstAccess { public: void add(int num) { if (m.find(num) != m.end()) {//exist in the array, no duplicate return; } value.push_back(num); m[num] = value.size() - 1; } void remove(int num) { unordered_map<int, int>::iterator pos = m.find(num); if (pos == m.end()) {//unexist in the array return; } int index = pos->second; if (index != value.size() - 1) { int lastValue = value[value.size() - 1]; swap(value[index], value[value.size() - 1]);//swap with the last value m[lastValue] = index;//update the index of the last value in the array } value.pop_back();//erase the last value in the array m.erase(num);//erase the num in the hashmap } int randomRemove() { int randIndex = rand() % value.size(); int randValue = value[randIndex]; if (randIndex != value.size() - 1) { int lastValue = value[value.size() - 1]; swap(value[randIndex], value[value.size() - 1]); m[lastValue] = randIndex; } value.pop_back(); m.erase(randValue); return randValue; } void print() { int size = value.size(); for (int i = 0; i < size; i++) { cout<<value[i]<<" "; } cout<<endl; } private: unordered_map<int, int> m;//number value to its index in the array vector<int> value; }; int main() { ConstAccess ca; for (int i = 1; i < 10; i++) { ca.add(i); } int randomValue = ca.randomRemove(); ca.remove(1); ca.print(); return 1; }
9fc6ba3b659ee74d121e78044c4f6ca98509a3dd
b549f28a0844dbec40f4df12534911413310f7e4
/lib/chuck/chuck_ugen.cpp
70dd2ba303c11e8a3daac8e0c19a7f8bba324ecb
[ "MIT" ]
permissive
PaulBatchelor/tiziku
9d1346aa4059f5e63e4be016a16d30f6b834bcad
d603fd8de5dbdfdbbfba350ffc9d5f5d6f03ee99
refs/heads/master
2021-08-04T10:18:38.182718
2021-05-26T22:18:57
2021-05-26T22:18:57
53,292,873
13
0
null
null
null
null
UTF-8
C++
false
false
43,760
cpp
/*---------------------------------------------------------------------------- ChucK Concurrent, On-the-fly Audio Programming Language Compiler and Virtual Machine Copyright (c) 2004 Ge Wang and Perry R. Cook. All rights reserved. http://chuck.stanford.edu/ http://chuck.cs.princeton.edu/ This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 U.S.A. -----------------------------------------------------------------------------*/ //----------------------------------------------------------------------------- // file: chuck_ugen.cpp // desc: chuck unit generator interface // // authors: Ge Wang ([email protected] | [email protected]) // Rebecca Fiebrink ([email protected]) // Spencer Salazar ([email protected]) // date: spring 2004 - 1.1 // spring 2005 - 1.2 // spring 2007 - UAna //----------------------------------------------------------------------------- #include "chuck_ugen.h" #include "chuck_instr.h" #include "chuck_type.h" #include "chuck_vm.h" #include "chuck_lang.h" #include "chuck_errmsg.h" using namespace std; //----------------------------------------------------------------------------- // fast array //----------------------------------------------------------------------------- void fa_init( Chuck_UGen ** & base, t_CKUINT & capacity ); void fa_done( Chuck_UGen ** & base, t_CKUINT & capacity ); void fa_resize( Chuck_UGen ** & base, t_CKUINT & capacity ); void fa_push_back( Chuck_UGen ** & base, t_CKUINT & capacity, t_CKUINT size, Chuck_UGen * value ); t_CKBOOL fa_lookup( Chuck_UGen ** base, t_CKUINT size, const Chuck_UGen * value ); //----------------------------------------------------------------------------- // name: fa_init() // desc: ... //----------------------------------------------------------------------------- void fa_init( Chuck_UGen ** & base, t_CKUINT & capacity ) { base = NULL; capacity = 0; } //----------------------------------------------------------------------------- // name: fa_done() // desc: ... //----------------------------------------------------------------------------- void fa_done( Chuck_UGen ** & base, t_CKUINT & capacity ) { if( base ) delete [] base; base = NULL; capacity = 0; } //----------------------------------------------------------------------------- // name: fa_resize() // desc: ... //----------------------------------------------------------------------------- void fa_resize( Chuck_UGen ** & base, t_CKUINT & capacity ) { // initial if( capacity == 0 ) capacity = 8; else capacity *= 2; // allocate Chuck_UGen ** new_base = new Chuck_UGen *[capacity]; // delete if( base ) { // copy memcpy( new_base, base, capacity / 2 * sizeof(Chuck_UGen *) ); // delete delete [] base; } // done base = new_base; } //----------------------------------------------------------------------------- // name: fa_push_back() // desc: ... //----------------------------------------------------------------------------- void fa_push_back( Chuck_UGen ** & base, t_CKUINT & capacity, t_CKUINT size, Chuck_UGen * value ) { // resize if( size == capacity ) fa_resize( base, capacity ); // add base[size] = value; } //----------------------------------------------------------------------------- // name: fa_lookup() // desc: ... //----------------------------------------------------------------------------- t_CKBOOL fa_lookup( Chuck_UGen ** base, t_CKUINT size, const Chuck_UGen * value ) { // loop for( t_CKUINT i = 0; i < size; i++ ) if( base[i] == value ) return TRUE; // not found return FALSE; } //----------------------------------------------------------------------------- // name: Chuck_UGen() // desc: constructor //----------------------------------------------------------------------------- Chuck_UGen::Chuck_UGen() { this->init(); } //----------------------------------------------------------------------------- // name: ~Chuck_UGen() // desc: ... //----------------------------------------------------------------------------- Chuck_UGen::~Chuck_UGen() { this->done(); } //----------------------------------------------------------------------------- // name: init() // desc: ... //----------------------------------------------------------------------------- void Chuck_UGen::init() { tick = NULL; tickf = NULL; // added 1.3.0.0 pmsg = NULL; m_multi_chan = NULL; m_multi_chan_size = 0; m_num_ins = 1; m_num_outs = 1; fa_init( m_src_list, m_src_cap ); fa_init( m_dest_list, m_dest_cap ); fa_init( m_src_uana_list, m_src_uana_cap ); fa_init( m_dest_uana_list, m_dest_uana_cap ); m_num_src = 0; m_num_dest = 0; m_num_uana_src = 0; m_num_uana_dest = 0; m_max_src = 0xffffffff; m_time = 0; m_valid = TRUE; m_sum = 0.0f; m_current = 0.0f; m_last = 0.0f; m_op = UGEN_OP_TICK; m_gain = 1.0f; m_pan = 1.0f; m_next = 0.0f; m_use_next = FALSE; m_max_block_size = -1; m_sum_v = NULL; m_current_v = NULL; shred = NULL; owner = NULL; // what a hack m_is_uana = FALSE; // what another hack (added 1.3.0.0) m_is_subgraph = FALSE; m_inlet = m_outlet = NULL; m_multi_in_v = m_multi_out_v = NULL; } //----------------------------------------------------------------------------- // name: done() // desc: ... //----------------------------------------------------------------------------- void Chuck_UGen::done() { if( this->shred ) shred->remove( this ); assert( this->m_ref_count == 0 ); // disconnect this->disconnect( TRUE ); m_valid = FALSE; fa_done( m_src_list, m_src_cap ); fa_done( m_dest_list, m_dest_cap ); fa_done( m_src_uana_list, m_src_uana_cap ); fa_done( m_dest_uana_list, m_dest_uana_cap ); // reclaim SAFE_DELETE_ARRAY( m_sum_v ); SAFE_DELETE_ARRAY( m_current_v ); // more reclaim (added 1.3.0.0) SAFE_DELETE_ARRAY( m_multi_chan ); // TODO: m_multi_chan, break ref count loop // SPENCERTODO: is this okay??? (added 1.3.0.0) SAFE_DELETE( m_inlet ); SAFE_DELETE( m_outlet ); // clean up array (added 1.3.0.0) SAFE_DELETE_ARRAY( m_multi_in_v ); SAFE_DELETE_ARRAY( m_multi_out_v ); } //----------------------------------------------------------------------------- // name: alloc_v() // desc: ... //----------------------------------------------------------------------------- t_CKBOOL Chuck_UGen::alloc_v( t_CKUINT size ) { // reclaim SAFE_DELETE_ARRAY( m_sum_v ); SAFE_DELETE_ARRAY( m_current_v ); // save block size as max block size (added 1.3.0.0) m_max_block_size = size; // go if( size > 0 ) { m_sum_v = new SAMPLE[size]; m_current_v = new SAMPLE[size]; return ( m_sum_v != NULL && m_current_v != NULL ); } return TRUE; } //----------------------------------------------------------------------------- // name: alloc_multi_chan() // desc: ... //----------------------------------------------------------------------------- void Chuck_UGen::alloc_multi_chan( t_CKUINT num_ins, t_CKUINT num_outs ) { // get max of num_ins and num_outs m_multi_chan_size = ( num_ins > num_outs ? num_ins : num_outs ); // allocate m_multi_chan = new Chuck_UGen *[m_multi_chan_size]; // zero it out, whoever call this will fill in memset( m_multi_chan, 0, m_multi_chan_size * sizeof(Chuck_UGen *) ); // mono if( m_multi_chan_size == 1 ) { // zero out m_multi_chan_size = 0; // self m_multi_chan[0] = this; } // if there tick-frame (i.e., has multi-channel tick function; added 1.3.0.0) if( m_multi_chan_size && tickf ) { // m_max_block_size needs to be set via alloc_v() first (added 1.3.0.0) assert(m_max_block_size >= 0); int block_size = m_max_block_size == 0 ? 1 : m_max_block_size; SAFE_DELETE_ARRAY(m_multi_in_v); SAFE_DELETE_ARRAY(m_multi_out_v); // allocate a frame for input and output from the tick function (add 1.3.0.0) m_multi_in_v = new SAMPLE[m_multi_chan_size*block_size]; m_multi_out_v = new SAMPLE[m_multi_chan_size*block_size]; } // remember m_num_ins = num_ins; m_num_outs = num_outs; } //----------------------------------------------------------------------------- // name: set_max_src() // dsec: ... //----------------------------------------------------------------------------- t_CKBOOL Chuck_UGen::set_max_src( t_CKUINT num ) { m_max_src = num; return TRUE; } //----------------------------------------------------------------------------- // name: get_num_src() // desc: ... //----------------------------------------------------------------------------- t_CKUINT Chuck_UGen::get_num_src() { return m_num_src; } //----------------------------------------------------------------------------- // name: src_chan() // desc: added 1.3.3.1 // destination ugen for a given source channel //----------------------------------------------------------------------------- Chuck_UGen *Chuck_UGen::src_chan( t_CKUINT chan ) { if( this->m_num_outs == 1) return this; return m_multi_chan[chan%m_num_outs]; } //----------------------------------------------------------------------------- // name: dst_for_src_chan() // desc: added 1.3.3.1 // destination ugen for a given source channel //----------------------------------------------------------------------------- Chuck_UGen *Chuck_UGen::dst_for_src_chan( t_CKUINT chan ) { if( this->m_num_ins == 1) return this; if( chan < this->m_num_ins ) return m_multi_chan[chan]; return NULL; } //----------------------------------------------------------------------------- // name: add() // dsec: ... //----------------------------------------------------------------------------- t_CKBOOL Chuck_UGen::add( Chuck_UGen * src, t_CKBOOL isUpChuck ) { // spencer 2012: chubgraph handling (added 1.3.0.0) if( m_is_subgraph ) { // sanity check assert( inlet() != NULL ); // add src to this inlet return inlet()->add( src, isUpChuck ); } else if( src->m_is_subgraph ) // (added 1.3.0.0) { // sanity check assert( src->outlet() != NULL ); // call add on the src's outlet instead return add( src->outlet(), isUpChuck ); } // examine ins and outs t_CKUINT outs = src->m_num_outs; t_CKUINT ins = this->m_num_ins; t_CKUINT i; if( outs >= 1 && ins == 1 ) { // check if already connected // if( fa_lookup( m_src_list, m_num_src, src ) ) // return FALSE; // check for limit if( m_num_src >= m_max_src ) return FALSE; // append fa_push_back( m_src_list, m_src_cap, m_num_src, src ); m_num_src++; src->add_ref(); src->add_by( this, isUpChuck ); // upchuck if( isUpChuck ) { // add to uana list fa_push_back( m_src_uana_list, m_src_uana_cap, m_num_uana_src, src ); m_num_uana_src++; // TODO: verify that we don't need to reference count } } /* else if( outs >= 2 && ins == 1 ) { // check if already connect if( fa_lookup( m_src_list, m_num_src, src ) ) return FALSE; // check for limit if( m_num_src >= m_max_src ) return FALSE; // append fa_push_back( m_src_list, m_src_cap, m_num_src, src ); m_num_src++; src->add_ref(); src->add_by( this ); } */ else if( outs == 1 && ins >= 2 ) { // add to each channel for( i = 0; i < ins; i++ ) if( !this->m_multi_chan[i]->add( src, isUpChuck ) ) return FALSE; } else if( outs >= 2 && ins >= 2 ) { // add to each channel for( i = 0; i < ins; i++ ) if( !this->m_multi_chan[i]->add( src->m_multi_chan[i%outs], isUpChuck ) ) return FALSE; } else { EM_error3( "internal error: unhandled UGen add: outs: %d ins: %d", outs, ins ); assert( FALSE ); } return TRUE; } //----------------------------------------------------------------------------- // name: add_by() // dsec: ... //----------------------------------------------------------------------------- void Chuck_UGen::add_by( Chuck_UGen * dest, t_CKBOOL isUpChuck ) { // spencer 2012: chubgraph handling (added 1.3.0.0) if( m_is_subgraph ) { // do it with the outlet outlet()->add_by( dest, isUpChuck ); return; } // check dest ugen (added 1.3.0.0) if( dest->m_is_subgraph ) { // use the dest's inlet add_by(dest->inlet(), isUpChuck); return; } // append fa_push_back( m_dest_list, m_dest_cap, m_num_dest, dest ); dest->add_ref(); m_num_dest++; // uana if( isUpChuck ) { // add to uana list fa_push_back( m_dest_uana_list, m_dest_uana_cap, m_num_uana_dest, dest ); m_num_uana_dest++; // TODO: verify we don't need to ref count } } //----------------------------------------------------------------------------- // name: remove() // dsec: ... //----------------------------------------------------------------------------- t_CKBOOL Chuck_UGen::remove( Chuck_UGen * src ) { // spencer 2012: chubgraph handling (added 1.3.0.0) if( m_is_subgraph ) { return inlet()->remove(src); } // check if src is subgraph (added 1.3.0.0) if( src->m_is_subgraph ) { // use the src's outlet return remove(src->outlet()); } // ins and outs t_CKUINT outs = src->m_num_outs; t_CKUINT ins = this->m_num_ins; t_CKUINT i; t_CKBOOL ret = FALSE; // take action if( outs >= 1 && ins == 1 ) { if( m_num_src == 0 ) return FALSE; // remove from uana list (first, due to ref count) for( t_CKUINT j = 0; j < m_num_uana_src; j++ ) if( m_src_uana_list[j] == src ) { // since src list is a super set of this list, // removing here -> removing at least one from src list for( t_CKUINT k = j+1; k < m_num_uana_src; k++ ) m_src_uana_list[k-1] = m_src_uana_list[k]; m_src_uana_list[--m_num_uana_src] = NULL; --j; } // remove for( t_CKUINT i = 0; i < m_num_src; i++ ) if( m_src_list[i] == src ) { ret = TRUE; for( t_CKUINT j = i+1; j < m_num_src; j++ ) m_src_list[j-1] = m_src_list[j]; m_src_list[--m_num_src] = NULL; src->remove_by( this ); src->release(); --i; } } /* else if( outs >= 2 && ins == 1 ) { if( m_num_src == 0 ) return FALSE; // remove for( t_CKUINT i = 0; i < m_num_src; i++ ) if( m_src_list[i] == src ) { ret = TRUE; for( t_CKUINT j = i+1; j < m_num_src; j++ ) m_src_list[j-1] = m_src_list[j]; m_src_list[--m_num_src] = NULL; src->remove_by( this ); src->release(); } } */ else if( outs == 1 && ins >= 2 ) { for( i = 0; i < ins; i++ ) if( !m_multi_chan[i]->remove( src ) ) return FALSE; ret = TRUE; } else if( outs >= 2 && ins >= 2 ) { for( i = 0; i < ins; i++ ) if( !m_multi_chan[i]->remove( src->m_multi_chan[i%outs] ) ) return FALSE; ret = TRUE; } return ret; } //----------------------------------------------------------------------------- // name: remove_by() // dsec: ... //----------------------------------------------------------------------------- void Chuck_UGen::remove_by( Chuck_UGen * dest ) { // spencer 2012: chubgraph handling (added 1.3.0.0) if( m_is_subgraph ) { // use the outlet outlet()->remove_by( dest ); return; } // check if dest is subgraph if( dest->m_is_subgraph ) { // use the dest's outlet remove_by(dest->outlet()); return; } // remove from uana list (first due to reference count) for( t_CKUINT j = 0; j < m_num_uana_dest; j++ ) if( m_dest_uana_list[j] == dest ) { // get rid of it for( t_CKUINT k = j+1; k < m_num_uana_dest; k++ ) m_dest_uana_list[k-1] = m_dest_uana_list[k]; // null last element m_dest_uana_list[--m_num_uana_dest] = NULL; j--; } // remove for( t_CKUINT i = 0; i < m_num_dest; i++ ) if( m_dest_list[i] == dest ) { // get rid of it for( t_CKUINT j = i+1; j < m_num_dest; j++ ) m_dest_list[j-1] = m_dest_list[j]; // release dest->release(); // null the last element m_dest_list[--m_num_dest] = NULL; i--; } } //----------------------------------------------------------------------------- // name: add() // dsec: ... //----------------------------------------------------------------------------- void Chuck_UGen::remove_all( ) { // spencer 2012: chubgraph handling (added 1.3.0.0) if( m_is_subgraph ) { // use the inlet inlet()->remove_all(); // done return; } // sanity check assert( this->m_num_dest == 0 ); // remove while( m_num_src > 0 ) { // make sure at least one got disconnected if( !this->remove( m_src_list[0] ) ) { // TODO: figure out why this is necessary! // get rid of it, but don't release for( t_CKUINT j = 1; j < m_num_src; j++ ) m_src_list[j-1] = m_src_list[j]; // null the last element m_src_list[--m_num_src] = NULL; } } } //----------------------------------------------------------------------------- // name: disconnect() // desc: ... //----------------------------------------------------------------------------- t_CKBOOL Chuck_UGen::disconnect( t_CKBOOL recursive ) { // spencer 2012: chubgraph handling (added 1.3.0.0) if( m_is_subgraph ) { // use the inlet return inlet()->disconnect( recursive ); } // remove while( m_num_dest > 0 ) { // make sure at least one got disconnected if( !m_dest_list[0]->remove( this ) ) { // get rid of it, but don't release for( t_CKUINT j = 1; j < m_num_dest; j++ ) m_dest_list[j-1] = m_dest_list[j]; // null the last element m_dest_list[--m_num_dest] = NULL; } } // for( unsigned int i = 0; i < m_num_dest; i++ ) // m_dest_list[i]->remove( this ); // m_num_dest = 0; // disconnect src too? if( recursive ) this->remove_all(); return TRUE; } //----------------------------------------------------------------------------- // name: is_connected_from() // desc: ... //----------------------------------------------------------------------------- t_CKBOOL Chuck_UGen::is_connected_from( Chuck_UGen * src ) { if( m_src_list != NULL && fa_lookup( m_src_list, m_num_src, src ) ) return TRUE; // multichannel if( m_multi_chan != NULL ) { for( t_CKUINT i = 0; i < m_multi_chan_size; i++ ) { if( fa_lookup( m_multi_chan[i]->m_src_list, m_multi_chan[i]->m_num_src, src ) ) return TRUE; } } // spencer 2012: chubgraph handling (added 1.3.0.0) if( m_is_subgraph ) { // sanity check assert( inlet() != NULL ); // use return inlet()->is_connected_from( src ); } // check if source is subgraph if( src->m_is_subgraph ) { // sanity check assert( src->outlet() != NULL ); // do it return is_connected_from( src->outlet() ); } return FALSE; } //----------------------------------------------------------------------------- // name: tick() // dsec: ... //----------------------------------------------------------------------------- t_CKBOOL Chuck_UGen::system_tick( t_CKTIME now ) { if( m_time >= now ) return m_valid; t_CKUINT i; Chuck_UGen * ugen; SAMPLE multi; /*** Part 1: Tick upstream ugens ***/ // inc time m_time = now; // initial sum m_sum = 0.0f; if( m_num_src ) { ugen = m_src_list[0]; if( ugen->m_time < now ) ugen->system_tick( now ); m_sum = ugen->m_current; // tick the src list for( i = 1; i < m_num_src; i++ ) { ugen = m_src_list[i]; if( ugen->m_time < now ) ugen->system_tick( now ); if( ugen->m_valid ) { if( m_op <= 1 ) m_sum += ugen->m_current; else // special ops { switch( m_op ) { case 2: m_sum -= ugen->m_current; break; case 3: m_sum *= ugen->m_current; break; case 4: m_sum /= ugen->m_current; break; default: m_sum += ugen->m_current; break; } } } } } // tick multiple channels multi = 0.0f; if( m_multi_chan_size ) { // spencer 2012 - use multichannel tick function (added 1.3.0.0) if( tickf ) { // system tick each input channel (added 1.3.0.0) for( i = 0; i < m_multi_chan_size; i++ ) { ugen = m_multi_chan[i]; // tick sub-ugens for individual channels if( ugen->m_time < now ) ugen->system_tick( now ); // set to tickf input // TODO: if op is not 1? m_multi_in_v[i] = m_sum + ugen->m_sum; } } else { for( i = 0; i < m_multi_chan_size; i++ ) { ugen = m_multi_chan[i]; if( ugen->m_time < now ) ugen->system_tick( now ); // multiple channels are added multi += ugen->m_current; } // scale multi multi /= m_multi_chan_size; m_sum += multi; } } // if owner (i.e., this ugen is one of the channels in a multi-channel ugen) if( owner != NULL && owner->m_time < now ) { // tick the owner owner->system_tick( now ); // if the owner has a multichannel tick function (added 1.3.0.0) if( owner->tickf ) { // set the latest to the current m_last = m_current; // done, don't want multi-channel subchannels to synthesize // it should be taken care of in the owner (added 1.3.0.0) return TRUE; } } /*** Part Two: Synthesize with tick function ***/ if( m_multi_chan_size && tickf ) { /* evaluate multi-channel tickf (added 1.3.0.0) */ multi = 0; if( m_op > 0 ) // UGEN_OP_TICK { m_valid = tickf( this, m_multi_in_v, m_multi_out_v, 1, NULL, Chuck_DL_Api::Api::instance() ); if( !m_valid ) memset( m_multi_out_v, 0, sizeof(SAMPLE)*m_multi_chan_size ); // supply multichannel tick output to output channels (added 1.3.0.0) for( i = 0; i < m_multi_chan_size; i++ ) { ugen = m_multi_chan[i]; // apply gain/pan m_multi_out_v[i] *= ugen->m_gain * ugen->m_pan; // dedenormal CK_DDN( m_multi_out_v[i] ); // copy gained/panned/dedenormaled output to ugen current sample ugen->m_last = ugen->m_current = m_multi_out_v[i]; // add to mono mixdown multi += ugen->m_current; } } else { if( m_op < 0 ) // UGEN_OP_PASS { // pass through memcpy( m_multi_out_v, m_multi_in_v, sizeof(SAMPLE) * m_multi_chan_size ); m_valid = TRUE; } else // UGEN_OP_STOP { // zero out memset( m_multi_out_v, 0, sizeof(SAMPLE)*m_multi_chan_size ); m_valid = TRUE; } // supply multichannel tick output to output channels (added 1.3.0.0) for( i = 0; i < m_multi_chan_size; i++ ) { ugen = m_multi_chan[i]; // copy tickf output to ugen current sample ugen->m_last = ugen->m_current = m_multi_out_v[i]; // add to mono mixdown multi += ugen->m_current; } } // compute mono mixdown for owner-ugen multi /= m_multi_chan_size; // set current to mono mixdown m_current = multi; // set last to current m_last = m_current; } else { /* evaluate single-channel tick */ if( m_op > 0 ) // UGEN_OP_TICK { // tick the ugen (Chuck_DL_Api::Api::instance() added 1.3.0.0) if( tick ) m_valid = tick( this, m_sum, &m_current, NULL, Chuck_DL_Api::Api::instance() ); if( !m_valid ) m_current = 0.0f; // apply gain and pan m_current *= m_gain * m_pan; // dedenormal CK_DDN( m_current ); // save as last m_last = m_current; } else if( m_op < 0 ) // UGEN_OP_PASS { // pass through m_current = m_sum; m_last = m_current; m_valid = TRUE; } else // UGEN_OP_STOP { m_current = 0.0f; m_last = m_current; m_valid = TRUE; } } return m_valid; } //----------------------------------------------------------------------------- // name: tick_v() // dsec: ... //----------------------------------------------------------------------------- t_CKBOOL Chuck_UGen::system_tick_v( t_CKTIME now, t_CKUINT numFrames ) { if( m_time >= now ) return m_valid; t_CKUINT i, j; Chuck_UGen * ugen; SAMPLE factor; SAMPLE multi; // inc time m_time = now; /*** Part 1: Tick upstream ugens ***/ if( m_num_src ) { ugen = m_src_list[0]; if( ugen->m_time < now ) ugen->system_tick_v( now, numFrames ); memcpy( m_sum_v, ugen->m_current_v, numFrames * sizeof(SAMPLE) ); // tick the src list for( i = 1; i < m_num_src; i++ ) { ugen = m_src_list[i]; if( ugen->m_time < now ) ugen->system_tick_v( now, numFrames ); if( ugen->m_valid ) { if( m_op <= 1 ) for( j = 0; j < numFrames; j++ ) m_sum_v[j] += ugen->m_current_v[j]; else // special ops { switch( m_op ) { case 2: for( j = 0; j < numFrames; j++ ) m_sum_v[j] -= ugen->m_current_v[j]; break; case 3: for( j = 0; j < numFrames; j++ ) m_sum_v[j] *= ugen->m_current_v[j]; break; case 4: for( j = 0; j < numFrames; j++ ) m_sum_v[j] /= ugen->m_current_v[j]; break; default: for( j = 0; j < numFrames; j++ ) m_sum_v[j] += ugen->m_current_v[j]; break; } } } } } else { memset( m_sum_v, 0, numFrames * sizeof(SAMPLE) ); } // tick multiple channels if( m_multi_chan_size ) { if(tickf) { // system tick each input channel (added 1.3.0.0) for( int c = 0; c < m_multi_chan_size; c++ ) { ugen = m_multi_chan[c]; // tick sub-ugens for individual channels if( ugen->m_time < now ) ugen->system_tick_v( now, numFrames ); // set to tickf input for( int f = 0; f < numFrames; f++ ) m_multi_in_v[f*m_multi_chan_size+c] = ugen->m_sum_v[f]; } } else { // initialize factor = 1.0f / m_multi_chan_size; // iterate for( i = 0; i < m_multi_chan_size; i++ ) { ugen = m_multi_chan[i]; if( ugen->m_time < now ) ugen->system_tick_v( now, numFrames ); for( j = 0; j < numFrames; j++ ) m_sum_v[j] += ugen->m_current_v[j] * factor; } } } // if owner if( owner != NULL && owner->m_time < now ) { owner->system_tick_v( now, numFrames ); // if the owner has a multichannel tick function (added 1.3.0.0) if( owner->tickf ) { // set the latest to the current m_last = m_current_v[numFrames - 1]; // done, don't want multi-channel subchannels to synthesize // it should be taken care of in the owner (added 1.3.0.0) return TRUE; } } /*** Part Two: Synthesize with tick function ***/ if( m_multi_chan_size && tickf ) { /* evaluate multi-channel tick (added added 1.3.0.0) */ if( m_op > 0) // UGEN_OP_TICK { // compute samples with tickf m_valid = tickf( this, m_multi_in_v, m_multi_out_v, numFrames, NULL, Chuck_DL_Api::Api::instance() ); // zero samples if not valid if( !m_valid ) memset( m_multi_out_v, 0, sizeof(SAMPLE) * m_multi_chan_size * numFrames ); // precompute to save division factor = 1.0f / m_multi_chan_size; // supply multichannel tick output to output channels (added 1.3.0.0) for( int f = 0; f < numFrames; f++ ) { multi = 0; for( int c = 0; c < m_multi_chan_size; c++ ) { // apply gain/pan m_multi_out_v[f*m_multi_chan_size+c] *= ugen->m_gain * ugen->m_pan; // dedenormal CK_DDN( m_multi_out_v[f*m_multi_chan_size+c] ); // copy from tickf output to channel's current sample m_multi_chan[c]->m_current_v[f] = m_multi_out_v[f*m_multi_chan_size+c]; // add to mono mixdown multi += m_multi_chan[c]->m_current_v[f]; } // compute mono-mixdown for the owner-ugen m_current_v[i] = multi*factor; } // save as last m_last = m_current_v[numFrames-1]; for( int c = 0; c < m_multi_chan_size; c++ ) m_multi_chan[c]->m_last = m_multi_chan[c]->m_current_v[numFrames-1]; } else { if( m_op < 0 ) // UGEN_OP_PASS { // pass through memcpy( m_multi_out_v, m_multi_in_v, sizeof(SAMPLE) * m_multi_chan_size * numFrames ); m_valid = TRUE; } else // UGEN_OP_STOP { // zero out memset( m_multi_out_v, 0, sizeof(SAMPLE)*m_multi_chan_size ); m_valid = TRUE; } // supply multichannel pass/stop output to output channels (added 1.3.0.0) for( int f = 0; f < numFrames; f++ ) { multi = 0; for( int c = 0; c < m_multi_chan_size; c++ ) { m_multi_chan[c]->m_current_v[f] = m_multi_out_v[f*m_multi_chan_size+c]; multi += m_multi_chan[c]->m_current_v[f]; } // mono mixdown m_current_v[i] = multi/m_multi_chan_size; } // save as last m_last = m_current_v[numFrames-1]; // save as last for subchannels for( int c = 0; c < m_multi_chan_size; c++ ) m_multi_chan[c]->m_last = m_multi_chan[c]->m_current_v[numFrames-1]; } } else { /* evaluate single-channel tick */ if( m_op > 0 ) // UGEN_OP_TICK { // tick the ugen (Chuck_DL_Api::Api::instance() added 1.3.0.0) if( tick ) for( j = 0; j < numFrames; j++ ) m_valid = tick( this, m_sum_v[j], &(m_current_v[j]), NULL, Chuck_DL_Api::Api::instance() ); if( !m_valid ) for( j = 0; j < numFrames; j++ ) m_current_v[j] = 0.0f; else for( j = 0; j < numFrames; j++ ) { // apply gain and pan m_current_v[j] *= m_gain * m_pan; // dedenormal CK_DDN( m_current_v[j] ); } } else if( m_op < 0 ) // UGEN_OP_PASS { for( j = 0; j < numFrames; j++ ) { // pass through m_current_v[j] = m_sum_v[j]; } m_valid = TRUE; } else // UGEN_OP_STOP { memset( m_current_v, 0, numFrames * sizeof(SAMPLE) ); // m_current = 0.0f; m_valid = TRUE; } // save as last m_last = m_current_v[numFrames-1]; } return m_valid; } //----------------------------------------------------------------------------- // name: init_subgraph() // desc: init subgraph, added 1.3.0.0 //----------------------------------------------------------------------------- void Chuck_UGen::init_subgraph() { // set flag m_is_subgraph = TRUE; // pointer Chuck_Object * obj = NULL; // instantiate object for inlet obj = instantiate_and_initialize_object( &t_ugen, this->shred ); // set as inlet m_inlet = (Chuck_UGen *)obj; // additional reference count m_inlet->add_ref(); // owner m_inlet->owner = this; // ref count this->add_ref(); // instantiate object for outlet obj = instantiate_and_initialize_object( &t_ugen, this->shred ); // set as outlet m_outlet = (Chuck_UGen *)obj; // additional reference count m_outlet->add_ref(); // owner m_outlet->owner = this; // ref count this->add_ref(); } //----------------------------------------------------------------------------- // name: inlet() // desc: get inlet (added 1.3.0.0) //----------------------------------------------------------------------------- Chuck_UGen * Chuck_UGen::inlet() { return m_inlet; } //----------------------------------------------------------------------------- // name: outlet() // desc: get outlet (added 1.3.0.0) //----------------------------------------------------------------------------- Chuck_UGen * Chuck_UGen::outlet() { return m_outlet; } //----------------------------------------------------------------------------- // name: Chuck_UAna() // desc: constructor //----------------------------------------------------------------------------- Chuck_UAna::Chuck_UAna() : Chuck_UGen() { // mark as true m_is_uana = TRUE; // reset uana time (HACK: negative so upchuck() works at now=0) m_uana_time = -1; // zero out proxy // m_blob_proxy = NULL; } //----------------------------------------------------------------------------- // name: ~Chuck_UAna() // desc: destructor //----------------------------------------------------------------------------- Chuck_UAna::~Chuck_UAna() { // do nothing for now } //----------------------------------------------------------------------------- // name: blobProxy() // desc: ... //----------------------------------------------------------------------------- Chuck_UAnaBlobProxy * Chuck_UAna::blobProxy() const { return getBlobProxy( this ); } //----------------------------------------------------------------------------- // name: numIncomingUAnae() // desc: ... //----------------------------------------------------------------------------- t_CKINT Chuck_UAna::numIncomingUAnae() const { return m_num_uana_src; } //----------------------------------------------------------------------------- // name: getIncomingBlob() // desc: ... //----------------------------------------------------------------------------- Chuck_UAnaBlobProxy * Chuck_UAna::getIncomingBlob( t_CKUINT index ) const { // sanity check if( index >= m_num_uana_src ) return NULL; // TODO: DANGER: this cast is very dangerous! return ((Chuck_UAna *)m_src_uana_list[index])->blobProxy(); } //----------------------------------------------------------------------------- // name: getIncomingUAna() // desc: ... //----------------------------------------------------------------------------- Chuck_UAna * Chuck_UAna::getIncomingUAna( t_CKUINT index ) const { // sanity check if( index >= m_num_uana_src ) return NULL; // TODO: DANGER: this cast is very dangerous! return ((Chuck_UAna *)m_src_uana_list[index]); } //----------------------------------------------------------------------------- // name: is_up_connected_from() // desc: ... //----------------------------------------------------------------------------- t_CKBOOL Chuck_UAna::is_up_connected_from( Chuck_UAna * src ) { if( m_src_uana_list != NULL && fa_lookup( m_src_uana_list, m_num_uana_src, src ) ) return TRUE; // TODO: multichannel? return FALSE; } //----------------------------------------------------------------------------- // name: tock() // dsec: ... //----------------------------------------------------------------------------- t_CKBOOL Chuck_UAna::system_tock( t_CKTIME now ) { if( m_uana_time >= now ) return m_valid; t_CKUINT i; Chuck_UGen * ugen; Chuck_UAna * uana; SAMPLE multi; // inc time m_uana_time = now; if( m_num_src ) { ugen = m_src_list[0]; // TODO: address this horrendous hack if( ugen->m_is_uana ) { // cast to uana uana = (Chuck_UAna *)ugen; // tock it if( uana->m_uana_time < now ) uana->system_tock( now ); } // sum m_sum = ugen->m_current; // tick the src list for( i = 1; i < m_num_src; i++ ) { ugen = m_src_list[i]; // TODO: address this horrendous hack if( ugen->m_is_uana ) { // cast to uana uana = (Chuck_UAna *)ugen; // tock it if( uana->m_uana_time < now ) uana->system_tock( now ); } if( ugen->m_valid ) { // TODO: operate on blob data } } } // tock multiple channels multi = 0.0f; if( m_multi_chan_size ) { for( i = 0; i < m_multi_chan_size; i++ ) { ugen = m_multi_chan[i]; // TODO: address this horrendous hack if( ugen->m_is_uana ) { // cast to uana uana = (Chuck_UAna *)ugen; // tock it if( uana->m_uana_time < now ) uana->system_tock( now ); } } } // if owner if( owner != NULL && owner->m_is_uana ) { // cast to uana uana = (Chuck_UAna *)owner; // tock it if( uana->m_uana_time < now ) uana->system_tock( now ); } if( m_op > 0 ) // UGEN_OP_TOCK { // tock the uana (Chuck_DL_Api::Api::instance() added 1.3.0.0) if( tock ) m_valid = tock( this, this, blobProxy(), NULL, Chuck_DL_Api::Api::instance() ); if( !m_valid ) { /* clear out blob? */ } // timestamp the blob blobProxy()->when() = now; // TODO: set current_blob to out_blob // TODO: set last_blob to current return m_valid; } else if( m_op < 0 ) // UGEN_OP_PASS { // pass through // TODO: anything? return TRUE; } else // UGEN_OP_STOP { // TODO: anything? } // TODO: set m_last_blob to current? return TRUE; } //----------------------------------------------------------------------------- // name: ugen_generic_num_in() // dsec: get number of input channels for ugen or ugen array //----------------------------------------------------------------------------- t_CKINT ugen_generic_num_in( Chuck_Object * obj, t_CKBOOL isArray ) { if(isArray) return ((Chuck_Array4 *) obj)->size(); else return ((Chuck_UGen *) obj)->m_num_ins; } //----------------------------------------------------------------------------- // name: ugen_generic_get_src() // dsec: get source channel given a ugen or ugen array //----------------------------------------------------------------------------- Chuck_UGen *ugen_generic_get_src( Chuck_Object * obj, t_CKINT chan, t_CKBOOL isArray ) { if( isArray ) { Chuck_Array4 *arr = (Chuck_Array4 *) obj; Chuck_UGen *src = NULL; arr->get( chan%arr->size(), (t_CKUINT *) &src ); return src; } else { return ((Chuck_UGen *) obj)->src_chan( chan ); } } //----------------------------------------------------------------------------- // name: ugen_generic_get_dst() // dsec: get destination channel given a ugen or array object //----------------------------------------------------------------------------- Chuck_UGen *ugen_generic_get_dst( Chuck_Object * obj, t_CKINT chan, t_CKBOOL isArray ) { if( isArray ) { Chuck_Array4 *arr = (Chuck_Array4 *) obj; Chuck_UGen *dst = NULL; ( (Chuck_Array4 *) obj )->get( chan%arr->size(), (t_CKUINT *) &dst ); return dst; } else { return ((Chuck_UGen *) obj)->dst_for_src_chan( chan ); } }
0e5ebfaf2afc958ba3628f59d75803e467a858bf
cdd25217376dc8df97674d7b8327bdd0ec9d416a
/lab_heaps2/heap.cpp
5137548b76d8822a56d41a8d6e3f5e9b84d68651
[]
no_license
TheContinentt/CS-225
99abed917eae8661ca5e454c278cae5d070dc30a
4ff81663533f80e3cf79dacf67bb6b339046a93a
refs/heads/master
2020-03-29T15:00:19.381051
2018-09-24T03:10:44
2018-09-24T03:10:44
150,040,623
0
0
null
null
null
null
UTF-8
C++
false
false
9,102
cpp
<<<<<<< HEAD /** * @file heap.cpp * Implementation of a heap class. */ template <class T, class Compare> size_t heap<T, Compare>::root() const { /// @todo Update to return the index you are choosing to be your root. return 1; } template <class T, class Compare> size_t heap<T, Compare>::leftChild(size_t currentIdx) const { /// @todo Update to return the index of the left child. size_t retval = currentIdx * 2; return retval; } template <class T, class Compare> size_t heap<T, Compare>::rightChild(size_t currentIdx) const { /// @todo Update to return the index of the right child. size_t retval = currentIdx * 2 + 1; return retval; } template <class T, class Compare> size_t heap<T, Compare>::parent(size_t currentIdx) const { /// @todo Update to return the index of the parent. size_t retval = currentIdx / 2; return retval; } template <class T, class Compare> bool heap<T, Compare>::hasAChild(size_t currentIdx) const { /// @todo Update to return whether the given node has a child if (currentIdx * 2 >= _elems.size()) return false; return true; } template <class T, class Compare> size_t heap<T, Compare>::maxPriorityChild(size_t currentIdx) const { /// @todo Update to return the index of the child with highest priority /// as defined by higherPriority() if (hasAChild(currentIdx) == true) { /*if (2 * currentIdx == _elems.size()) return 2 * currentIdx;*/ if (2 * currentIdx + 1 == _elems.size()) { return 2 * currentIdx; } if (higherPriority(_elems[2 * currentIdx], _elems[2 * currentIdx + 1]) == true) return 2 * currentIdx; return 2 * currentIdx + 1; } return 0; // return 0; } template <class T, class Compare> void heap<T, Compare>::heapifyDown(size_t currentIdx) { /// @todo Implement the heapifyDown algorithm. if (currentIdx >= _elems.size()) return; //size_t leftIdx = leftChild(currentIdx); //size_t rightIdx = rightChild(currentIdx); size_t temp; temp = maxPriorityChild(currentIdx); if (temp == 0) return; /*if (higherPriority(_elems[leftIdx], _elems[rightIdx])) { temp = leftIdx; } else temp = rightIdx;*/ if (higherPriority(_elems[temp], _elems[currentIdx]) == true) { std::swap(_elems[currentIdx], _elems[temp]); heapifyDown(temp); } /*else { std::swap(_elems[currentIdx], _elems[rightIdx]); heapifyDown(rightIdx); }*/ return; } template <class T, class Compare> void heap<T, Compare>::heapifyUp(size_t currentIdx) { if (currentIdx == root()) return; size_t parentIdx = parent(currentIdx); if (higherPriority(_elems[currentIdx], _elems[parentIdx])) { std::swap(_elems[currentIdx], _elems[parentIdx]); heapifyUp(parentIdx); } } template <class T, class Compare> heap<T, Compare>::heap() { /// @todo Depending on your implementation, this function may or may /// not need modifying _elems.push_back(T()); index_ = 0; } template <class T, class Compare> heap<T, Compare>::heap(const std::vector<T>& elems) { /// @todo Construct a heap using the buildHeap algorithm _elems.push_back(T()); index_ = 0; for (size_t i = 0; i < elems.size(); i++) { _elems.push_back(elems[i]); index_++; } //for (size_t j = 1; j < _elems.size(); j++) size_t end = parent(index_); for (size_t j = end; j > 0; j--) { heapifyDown(j); } /*for (size_t j = index_; j > end; j--) { heapifyUp(j); }*/ } template <class T, class Compare> T heap<T, Compare>::pop() { /// @todo Remove, and return, the element with highest priority if (index_ >= 1) { T retval = _elems[root()]; std::swap(_elems[root()], _elems[index_]); _elems.pop_back(); heapifyDown(root()); index_--; return retval; } else return _elems[index_]; } template <class T, class Compare> T heap<T, Compare>::peek() const { /// @todo Return, but do not remove, the element with highest priority return _elems.back(); } template <class T, class Compare> void heap<T, Compare>::push(const T& elem) { /// @todo Add elem to the heap _elems.push_back(elem); index_++; heapifyUp(index_); return; } template <class T, class Compare> bool heap<T, Compare>::empty() const { /// @todo Determine if the heap is empty //size_t retval = _elems.size(); if (index_ == 0) return true; return false; } template <class T, class Compare> void heap<T, Compare>::getElems(std::vector<T> & heaped) const { for (size_t i = root(); i < _elems.size(); i++) { heaped.push_back(_elems[i]); } } ======= /** * @file heap.cpp * Implementation of a heap class. */ template <class T, class Compare> size_t heap<T, Compare>::root() const { /// @todo Update to return the index you are choosing to be your root. return 1; } template <class T, class Compare> size_t heap<T, Compare>::leftChild(size_t currentIdx) const { /// @todo Update to return the index of the left child. size_t retval = currentIdx * 2; return retval; } template <class T, class Compare> size_t heap<T, Compare>::rightChild(size_t currentIdx) const { /// @todo Update to return the index of the right child. size_t retval = currentIdx * 2 + 1; return retval; } template <class T, class Compare> size_t heap<T, Compare>::parent(size_t currentIdx) const { /// @todo Update to return the index of the parent. size_t retval = currentIdx / 2; return retval; } template <class T, class Compare> bool heap<T, Compare>::hasAChild(size_t currentIdx) const { /// @todo Update to return whether the given node has a child if (currentIdx * 2 >= _elems.size()) return false; return true; } template <class T, class Compare> size_t heap<T, Compare>::maxPriorityChild(size_t currentIdx) const { /// @todo Update to return the index of the child with highest priority /// as defined by higherPriority() if (hasAChild(currentIdx) == true) { /*if (2 * currentIdx == _elems.size()) return 2 * currentIdx;*/ if (2 * currentIdx + 1 == _elems.size()) { return 2 * currentIdx; } if (higherPriority(_elems[2 * currentIdx], _elems[2 * currentIdx + 1]) == true) return 2 * currentIdx; return 2 * currentIdx + 1; } return 0; // return 0; } template <class T, class Compare> void heap<T, Compare>::heapifyDown(size_t currentIdx) { /// @todo Implement the heapifyDown algorithm. if (currentIdx >= _elems.size()) return; //size_t leftIdx = leftChild(currentIdx); //size_t rightIdx = rightChild(currentIdx); size_t temp; temp = maxPriorityChild(currentIdx); if (temp == 0) return; /*if (higherPriority(_elems[leftIdx], _elems[rightIdx])) { temp = leftIdx; } else temp = rightIdx;*/ if (higherPriority(_elems[temp], _elems[currentIdx]) == true) { std::swap(_elems[currentIdx], _elems[temp]); heapifyDown(temp); } /*else { std::swap(_elems[currentIdx], _elems[rightIdx]); heapifyDown(rightIdx); }*/ return; } template <class T, class Compare> void heap<T, Compare>::heapifyUp(size_t currentIdx) { if (currentIdx == root()) return; size_t parentIdx = parent(currentIdx); if (higherPriority(_elems[currentIdx], _elems[parentIdx])) { std::swap(_elems[currentIdx], _elems[parentIdx]); heapifyUp(parentIdx); } } template <class T, class Compare> heap<T, Compare>::heap() { /// @todo Depending on your implementation, this function may or may /// not need modifying _elems.push_back(T()); index_ = 0; } template <class T, class Compare> heap<T, Compare>::heap(const std::vector<T>& elems) { /// @todo Construct a heap using the buildHeap algorithm _elems.push_back(T()); index_ = 0; for (size_t i = 0; i < elems.size(); i++) { _elems.push_back(elems[i]); index_++; } //for (size_t j = 1; j < _elems.size(); j++) size_t end = parent(index_); for (size_t j = end; j > 0; j--) { heapifyDown(j); } /*for (size_t j = index_; j > end; j--) { heapifyUp(j); }*/ } template <class T, class Compare> T heap<T, Compare>::pop() { /// @todo Remove, and return, the element with highest priority if (index_ >= 1) { T retval = _elems[root()]; std::swap(_elems[root()], _elems[index_]); _elems.pop_back(); heapifyDown(root()); index_--; return retval; } else return _elems[index_]; } template <class T, class Compare> T heap<T, Compare>::peek() const { /// @todo Return, but do not remove, the element with highest priority return _elems.back(); } template <class T, class Compare> void heap<T, Compare>::push(const T& elem) { /// @todo Add elem to the heap _elems.push_back(elem); index_++; heapifyUp(index_); return; } template <class T, class Compare> bool heap<T, Compare>::empty() const { /// @todo Determine if the heap is empty //size_t retval = _elems.size(); if (index_ == 0) return true; return false; } template <class T, class Compare> void heap<T, Compare>::getElems(std::vector<T> & heaped) const { for (size_t i = root(); i < _elems.size(); i++) { heaped.push_back(_elems[i]); } } >>>>>>> e73ee3ea7fbda9b3ac609f670b78729a8adece6d
512cfb09a7b16e790e229258d1304a857b847b2b
55dfa9c807fc4e6a716b0fbe861a7736e2217cff
/include/bases/container.h
45a5ddcb20ab9dd9eed378ee2177a49e5b6ffede
[]
no_license
sonwell/ib.cu
a2451e2ffc3daf633f3bbd6134fd38c79908b452
3217b443aa568930208d258d577dddd05a0fbf18
refs/heads/master
2023-04-12T10:01:47.485122
2021-07-16T18:21:07
2021-07-16T18:21:07
272,534,593
0
0
null
null
null
null
UTF-8
C++
false
false
3,705
h
#pragma once #include "util/functional.h" #include "util/getset.h" #include "bases/types.h" #include "bases/operators.h" #include "bases/geometry.h" #include "bases/transforms.h" namespace bases { template <typename reference_type, typename ... shape_fns> matrix shape(const reference_type& ref, shape_fns ... fs) { // Construct one surface per shape function, each of which transforms a // point in parameter space to a point in Cartesian coordinates. Some // possibilities are in transforms.h. using namespace util::functional; static constexpr int n = sizeof...(fs); static constexpr auto dims = reference_type::dimensions+1; static constexpr auto arrayifier = [] __host__ __device__ (auto tuple) { using tuple_type = decltype(tuple); constexpr auto n = std::tuple_size_v<tuple_type>; constexpr auto common = [] (auto t0, auto ... args) -> std::common_type_t<decltype(t0), decltype(args)...> { return t0; }; using value_type = std::conditional_t<(n == 0), char, decltype(apply(common, tuple))>; constexpr auto op = [] (auto ... args) constexpr { return std::array<value_type, n>{std::move(args)...}; }; return apply(op, std::move(tuple)); }; using seq = std::make_integer_sequence<int, n>; auto m = ref.num_data_sites; const auto& y = ref.data_geometry.position; matrix x{m, n * dims}; auto* ydata = y.values(); auto* xdata = x.values(); auto k = [=] __device__ (int tid) { constexpr composition array{arrayifier}; std::array<double, dims> x; for (int i = 0; i < dims; ++i) x[i] = ydata[m * i + tid]; auto z = std::make_tuple((fs | array)(x)...); auto s = [&] (const auto& x, int j) { for (int i = 0; i < dims; ++i) xdata[n * m * i + m * j + tid] = x[i]; }; map(s, z, seq{}); }; util::transform<128, 3>(k, n ? m : 0); return x; } namespace impl { template <typename type> struct pair { type data, sample; }; } // namespace impl // container holds geometric information for multiple copies of the reference // object, possibly each in different configurations. template <typename reference_type> struct container { private: using reference_tag = decltype(reference); using current_tag = decltype(current); using operator_type = typename reference_type::operators_type; using geometry_type = typename reference_type::geometry_type; matrix& get_x() { return data.position; } void set_x(const matrix& x) { // Update geometric information when the positions are updated data = {ref.data_to_data, x}; sample = {ref.data_to_sample, x}; } public: impl::pair<const operator_type&> operators() const { return {ref.data_to_data, ref.data_to_sample}; } impl::pair<int> points() const { auto&& [data, sample] = operators(); return {data.points, sample.points}; } impl::pair<const geometry_type&> geometry(const reference_tag&) const { return {ref.data_geometry, ref.sample_geometry}; } impl::pair<const geometry_type&> geometry(const current_tag&) const { return {data, sample}; } container(const reference_type& ref) : ref{ref} {} template <typename ... shape_fns> container(const reference_type& ref, shape_fns ... fns) : container{ref, shape(ref, fns...)} {} container(const reference_type& ref, const matrix& x) : ref{ref} { set_x(x); } protected: const reference_type& ref; geometry_type data; geometry_type sample; public: util::getset<matrix&> x = { [&] () -> matrix& { return get_x(); }, [&] (const matrix& x) { set_x(x); } }; template <typename T> friend const T& ref(const container<T>&); }; template <typename reference_type> inline const reference_type& ref(const container<reference_type>& container) { return container.ref; } } // namespace bases
e211aee5ea862a3c0a0129787b6e05f52f66b905
612b85ba9505629deb9eeb4a8f5a1f1ed9250120
/source/file.cpp
ef5ac1fdc1aa8cbec25d3a150cf0df64ee6bfd7c
[]
no_license
ihsuy/CodingPractice
c2bc7e48723ef176df9f2f60c49b50af7bbc8be2
78bc5c7413478b7753bc2025045ce20e23ae7d60
refs/heads/master
2020-04-29T02:53:28.446366
2020-03-09T08:13:39
2020-03-09T08:13:39
175,787,251
1
0
null
null
null
null
UTF-8
C++
false
false
2,030
cpp
#include <iostream> #include <stack> #include <string> #include <utility> #include <vector> using namespace std; int lengthLongestPath(string input) { vector<int> rootLenAtLv; int result = 0; int level = 0; int i = 0; bool isFile = false; int lenCount = 0; while (i < input.length() and input[i] != '\n') { if (input[i] == '.') { isFile = true; } if (input[i] != ' ') { lenCount++; } i++; } if (isFile) { return lenCount; } rootLenAtLv.push_back(lenCount + 1); for (; i < input.length();) { if (input[i] != '\t' and input[i - 1] == '\t') { // at the beginning of file or dir name isFile = false; lenCount = 0; for (; input[i] != '\n' and i < input.length(); ++i) { if (input[i] == '.') { isFile = true; } if (input[i] != ' ') { lenCount++; } } int len = rootLenAtLv[level - 1] + lenCount; if (not isFile) { if (level > rootLenAtLv.size() - 1) { rootLenAtLv.push_back(len + 1); } else if (level == rootLenAtLv.size() - 1) { rootLenAtLv[rootLenAtLv.size() - 1] = len + 1; } else { rootLenAtLv[level] = len + 1; } } else if (len > result) { result = len; } level = 0; } else { if (input[i] == '\t') { level++; } } i++; } return result; } int main() { // cout << depth("\\n\\t\\t"); cout << lengthLongestPath("dir\n file.txt") << endl; cout << lengthLongestPath( "dir\n\tsubdir1\n\t\tfile1." "ext\n\t\tsubsubdir1\n\tsubdir2\n\t\tsubsubdir2\n\t\t\tfile2." "ext") << endl; return 0; }
18eb1436fce11a70c360220a9034eae8974d23fd
297ac3de83e3d58503ce118901409308ca3e97fb
/src/checkpoints.cpp
74183ece9affe679b3ecb7aea31ace30ab4eb75a
[ "MIT" ]
permissive
piggiecoin/piggiecoin
904aed124a7f6f61b645371718659c037d936a94
8c19699b93b6da289baab7b29de4abf7fcdb43c1
refs/heads/master
2021-03-12T22:17:56.976169
2013-12-31T13:15:42
2013-12-31T13:15:42
null
0
0
null
null
null
null
UTF-8
C++
false
false
1,873
cpp
// Copyright (c) 2009-2012 The Bitcoin developers // Copyright (c) 2011-2012 Litecoin Developers // Distributed under the MIT/X11 software license, see the accompanying // file COPYING or http://www.opensource.org/licenses/mit-license.php. #include <boost/assign/list_of.hpp> // for 'map_list_of()' #include <boost/foreach.hpp> #include "checkpoints.h" #include "main.h" #include "uint256.h" namespace Checkpoints { typedef std::map<int, uint256> MapCheckpoints; // // What makes a good checkpoint block? // + Is surrounded by blocks with reasonable timestamps // (no blocks before with a timestamp after, none after with // timestamp before) // + Contains no strange transactions // static MapCheckpoints mapCheckpoints = boost::assign::map_list_of // TODO: needs to adjusted for checkpoint checks, also see main.cpp ( 0, uint256("0x3932037a7d96bc26d6379cdb6b3ecf1f78a1203ff667f06298d181f0ecbd2be7")) ; bool CheckBlock(int nHeight, const uint256& hash) { if (fTestNet) return true; // Testnet has no checkpoints MapCheckpoints::const_iterator i = mapCheckpoints.find(nHeight); if (i == mapCheckpoints.end()) return true; return hash == i->second; } int GetTotalBlocksEstimate() { if (fTestNet) return 0; return mapCheckpoints.rbegin()->first; } CBlockIndex* GetLastCheckpoint(const std::map<uint256, CBlockIndex*>& mapBlockIndex) { if (fTestNet) return NULL; BOOST_REVERSE_FOREACH(const MapCheckpoints::value_type& i, mapCheckpoints) { const uint256& hash = i.second; std::map<uint256, CBlockIndex*>::const_iterator t = mapBlockIndex.find(hash); if (t != mapBlockIndex.end()) return t->second; } return NULL; } }
a1e2d33713bb42a4fee9f4ba1dc198e90cd0acdd
551f2fbb491dadc24a27804e04fe1324b0862c1b
/back/CWinStreamSelectorModel.cpp
e13c3e40707fd1c8f948241fb624c3e92eee8f3b
[]
no_license
benoitk/cristalqt_linux
7beb873b16abcbfabe1e458b7c3835ce181c8763
048ae52e8070de6e454014a1c69d17df02c4b1e8
refs/heads/master
2021-01-23T19:45:24.953750
2014-01-20T15:01:58
2014-01-20T15:01:58
16,073,427
0
0
null
null
null
null
ISO-8859-2
C++
false
false
2,960
cpp
#include "CWinStreamSelectorModel.h" #include "CSupervision.h" #include "CWinElecTestView.h" #include "CStreamModel.h" #include "CCmdJBusRunnable.h" #include "header_qt.h" // En fonction de l'ordre d'ajout des requetes : A rendre dynamique, sinon ce sera inmaintenable (voir aussi WinMeasureCardModel) #define STREAM "STREAM_" CWinStreamSelectorModel::CWinStreamSelectorModel(CSupervision* argpSupervision)//, CWinEVPompeView* argpView) { qDebug() << "### Instance CWinStreamSelectorModel" << endl; m_pSupervision = argpSupervision; //m_pView = argpView; m_threadPool = new QThreadPool(this); m_mutex = new QMutex(); for(int i=0; i< m_pSupervision->getAnalyseur()->iGetNbrStream(); ++i) { int nbPasAFaire = 0; switch(i) { case 0 : nbPasAFaire = 18; break; case 1 : nbPasAFaire = 43; break; case 2 : nbPasAFaire = 68; break; case 3 : nbPasAFaire = 118; break; case 4 : nbPasAFaire = 143; break; case 5 : nbPasAFaire = 168; break; default : nbPasAFaire = 18; break; } TCHAR szRQ[5000]; TCHAR szRP[5000]; QString sReq = QString("10|16|0x0300|5|10|994|255|") + QString::number(nbPasAFaire)+ QString("|10|70"); m_pSupervision->addKeyOnMapRQTComJBUSMesure(STREAM + QString::number(i)); _stprintf(szRQ, sizeof(szRQ)/sizeof(TCHAR),(LPCTSTR)sReq.utf16()); _stprintf(szRP, sizeof(szRP)/sizeof(TCHAR),_T("10|16|0x0300|5")); m_pSupervision->getCarteMesure()->bAddExchangeJbus(szRQ,szRP,m_pSupervision->getAnalyseur()); } /*_stprintf(szRQ, sizeof(szRQ)/sizeof(TCHAR),_T("10|16|0x0300|5|10|994|255|0|10|70")); _stprintf(szRP, sizeof(szRP)/sizeof(TCHAR),_T("10|16|0x0300|5"));*/ } //Méthode appelé par les thread de m_threadPool void CWinStreamSelectorModel::sendCmdJBus(const int& arg_numRQT, CElemList* arg_elemList, CEnumInterface& arg_interface) { QMutexLocker locker(m_mutex); // qDebug() << "CWinEVPompeModel::sendCmdJBus : " << arg_numRQT; m_cycleStep.bExecuteNumExchange(arg_numRQT, arg_elemList, TRUE, TRUE, arg_interface); } void CWinStreamSelectorModel::cmdSelectionVoie(int arg_nNumVoie) { int numRQT = m_pSupervision->getNumRQTComJBUSMesure(STREAM + QString::number(arg_nNumVoie)); m_threadPool->start(new CCmdJBusRunnable( this , numRQT , m_pSupervision->getCarteMesure()->getListExchange() , m_pSupervision->getAnalyseur()->m_ExternalInterface)); } int CWinStreamSelectorModel::getNbStream() const { return m_pSupervision->getAnalyseur()->iGetNbrStream(); }
177595aa68c485decb375f40d9181f2b9f691440
585a67412139ab94d1258624da34dfd0b896086e
/chapter09/myFaceOSC/src/ofApp.cpp
8c8ce7db6601613412f05081d4188d89c91666c4
[]
no_license
kyoungchinseo/oFGuideBook
1c402d3ca3be02bc1cef51e2fd9aecba487b1243
6ec1084c8ab11f87980c61e2c58a8703911d59b2
refs/heads/master
2020-03-28T17:42:01.407611
2018-09-27T14:29:19
2018-09-27T14:29:19
148,426,089
0
0
null
null
null
null
UTF-8
C++
false
false
3,261
cpp
#include "ofApp.h" //-------------------------------------------------------------- void ofApp::setup(){ receiver.setup(PORT); } /* Pose center position: /pose/position scale: /pose/scale orientation (which direction you're facing): /pose/orientation Gestures mouth width: /gesture/mouth/width mouth height: /gesture/mouth/height left eyebrow height: /gesture/eyebrow/left right eyebrow height: /gesture/eyebrow/right left eye openness: /gesture/eye/left right eye openness: /gesture/eye/right jaw openness: /gesture/jaw nostril flate: /gesture/nostrils Raw raw points (66 xy-pairs): /raw */ //-------------------------------------------------------------- void ofApp::update(){ while(receiver.hasWaitingMessages()) { ofxOscMessage message; receiver.getNextMessage(message); if (message.getAddress() == "/pose/position") { position[0] = message.getArgAsFloat(0) * ofGetWidth() / 640; position[1] = message.getArgAsFloat(1) * ofGetHeight() / 480; } if (message.getAddress() == "/pose/orientation") { orientation[0] = message.getArgAsFloat(0); orientation[1] = message.getArgAsFloat(1); orientation[2] = message.getArgAsFloat(2); } if (message.getAddress() == "/gesture/mouth/height") { mouseHeight = message.getArgAsFloat(0); } if (message.getAddress() == "/pose/scale") { scale = message.getArgAsFloat(0); } } } //-------------------------------------------------------------- void ofApp::draw(){ ofBackground(80, 80, 80); ofSetColor(255, 0, 0); ofPushMatrix(); ofTranslate(position[0],position[1],0.0); ofRotateX(orientation[0]*180/3.141592*2.0); ofRotateY(orientation[1]*180/3.141592*2.0); ofRotateZ(orientation[2]*180/3.141592*2.0); ofScale(1.0*(scale/4.0*5.0),1.0*mouseHeight,1.0); ofDrawBox(0, 0, 0, 100, 100, 100); ofPopMatrix(); } //-------------------------------------------------------------- void ofApp::keyPressed(int key){ } //-------------------------------------------------------------- void ofApp::keyReleased(int key){ } //-------------------------------------------------------------- void ofApp::mouseMoved(int x, int y ){ } //-------------------------------------------------------------- void ofApp::mouseDragged(int x, int y, int button){ } //-------------------------------------------------------------- void ofApp::mousePressed(int x, int y, int button){ } //-------------------------------------------------------------- void ofApp::mouseReleased(int x, int y, int button){ } //-------------------------------------------------------------- void ofApp::mouseEntered(int x, int y){ } //-------------------------------------------------------------- void ofApp::mouseExited(int x, int y){ } //-------------------------------------------------------------- void ofApp::windowResized(int w, int h){ } //-------------------------------------------------------------- void ofApp::gotMessage(ofMessage msg){ } //-------------------------------------------------------------- void ofApp::dragEvent(ofDragInfo dragInfo){ }
e8c6c5668581f1f16834085318e8d5856622f8e9
9a3b9d80afd88e1fa9a24303877d6e130ce22702
/src/Providers/UNIXProviders/OtherOrganizationInformation/UNIX_OtherOrganizationInformation_STUB.hxx
035da76a32e87b7a15a4db4685e9f112ef3efceb
[ "MIT" ]
permissive
brunolauze/openpegasus-providers
3244b76d075bc66a77e4ed135893437a66dd769f
f24c56acab2c4c210a8d165bb499cd1b3a12f222
refs/heads/master
2020-04-17T04:27:14.970917
2015-01-04T22:08:09
2015-01-04T22:08:09
19,707,296
0
0
null
null
null
null
UTF-8
C++
false
false
1,840
hxx
//%LICENSE//////////////////////////////////////////////////////////////// // // Licensed to The Open Group (TOG) under one or more contributor license // agreements. Refer to the OpenPegasusNOTICE.txt file distributed with // this work for additional information regarding copyright ownership. // Each contributor licenses this file to you under the OpenPegasus Open // Source License; you may not use this file except in compliance with the // License. // // Permission is hereby granted, free of charge, to any person obtaining a // copy of this software and associated documentation files (the "Software"), // to deal in the Software without restriction, including without limitation // the rights to use, copy, modify, merge, publish, distribute, sublicense, // and/or sell copies of the Software, and to permit persons to whom the // Software is furnished to do so, subject to the following conditions: // // The above copyright notice and this permission notice shall be included // in all copies or substantial portions of the Software. // // THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS // OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF // MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. // IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY // CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, // TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE // SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. // ////////////////////////////////////////////////////////////////////////// // //%///////////////////////////////////////////////////////////////////////// #ifdef PEGASUS_OS_STUB #ifndef __UNIX_OTHERORGANIZATIONINFORMATION_PRIVATE_H #define __UNIX_OTHERORGANIZATIONINFORMATION_PRIVATE_H #endif #endif
5540526b71eb7dace48b205be4f4c0124c20e8ad
3395e1d52f4493fa3a395ca49a5ec6fd4a0db996
/TINHOC/ve hinh/tong.cpp
739f47c6d656890748acfbd2768b804006773e7f
[]
no_license
NguyenDOanNhan/PlanC
8115929d610c16d51d9fc17df0d41abeb3fed7f0
dae9002fee0487c82bd2442813d63786922498b2
refs/heads/main
2023-01-24T07:19:09.256108
2020-11-30T15:59:42
2020-11-30T15:59:42
317,131,859
0
0
null
null
null
null
WINDOWS-1252
C++
false
false
579
cpp
#include<conio.h> #include<stdio.h> int main() { float a[10][10], T=0; int M, N, i,j, Min; printf("Ma tran co bao nhieu dong? ");scanf("%d",&M); printf("Ma tran co bao nhieu cot? ");scanf("%d",&N); for(i=0;i<M;i++) for(j=0; j<N; j++) { printf("Phan tu o dong %d cot %d: ",i,j); scanf("%f",&a[i][j]); } printf("Ma tran vua nhap: \n"); for(i=0;i<M;i++) { for(j=0; j< N; j++) printf("%.2f ",a[i][j]); printf("\n"); } Min=(M>N) ? N: M; /* Tìm giá tr? nh? nh?t c?a M & N*/ for(i=0;i<Min;i++) T=T+a[i][i]; printf("Tong cac phan tu o duong cheo chinh la: %f",T); getch(); return 0; }
077aef36a23abf1004c8a915c7f95e745f8ef020
00df94566b786d62e2aad0e849217c4cd5389d8f
/c++/operatorOverloading.cpp
64c3e8916e9e6f57d9b1f7184e8ed112f032b47e
[]
no_license
mrthawee/training
f491a1704bcf294e3764df7f1efbf2fbd4e15be1
d444189c7e83e043faba90a8afcf28f717bb4f11
refs/heads/master
2021-01-10T06:12:01.160886
2020-07-24T07:23:54
2020-07-24T07:23:54
50,881,742
0
0
null
null
null
null
UTF-8
C++
false
false
5,128
cpp
#include <iostream> using namespace std; class coord { private: int x, y; // coordinate values public: coord(int i=0, int j=0) { x=i; y=j; } void get_xy(int &i, int &j) { i=x; j=y; } // overload binary operators coord operator+(const coord& obj); // o1 + o2 coord operator+(const int i); // ob + int : not for int + ob coord operator-(const coord& obj); // o1 - o2 coord operator*(const coord& obj); // o1 - o2 coord operator/(const coord& obj); // o1 - o2 friend coord operator+(const int i, const coord& obj); // int + ob coord operator=(const coord& obj); // ob = obj bool operator==(const coord& obj); // ob1 == ob2 bool operator&&(const coord& obj); // ob1 && ob2 bool operator>(const coord& obj); // if (ob1 > ob2) bool operator<(const coord& obj); // if (ob1 < ob2) // overload unary operators coord operator++(); // ++ob coord operator--(); // --ob coord operator++(int notused); //ob++ coord operator--(int notused); //ob-- coord operator-(); // -ob : negation coord operator+(); // +ob : define as abs(ob) // Insertor : << for cout and stream friend ostream& operator<<(ostream& os, const coord& obj); // Extractor : >> for cin and stream // obj can't be const because x, y will be updated friend istream& operator>>(istream& is,coord& obj); }; ostream& operator<<(ostream& os, const coord &obj) { os << "x=" << obj.x << " y=" << obj.y; return os; } istream& operator>>(istream& is, coord &obj) { cout << "Enter value of x: "; is >> obj.x; cout << "Enter value of y: "; is >> obj.y; return is; } coord coord::operator+(const coord& obj) { coord tmp; tmp.x = x + obj.x; tmp.y = y + obj.y; return tmp; } coord coord::operator+(const int i) { coord tmp; tmp.x = x + i; tmp.y = y + i; return tmp; } coord coord::operator-(const coord& obj) { coord tmp; tmp.x = x - obj.x; tmp.y = y - obj.y; return tmp; } coord coord::operator=(const coord& obj) { x = obj.x; y = obj.y; return *this; } coord coord::operator*(const coord& obj) { coord tmp; tmp.x = x * obj.x; tmp.y = y * obj.y; return tmp; } coord coord::operator/(const coord& obj) { coord tmp; tmp.x = x / obj.x; tmp.y = y / obj.y; return tmp; } bool coord::operator==(const coord& obj) { /* if ( (x==obj.x) && (y==obj.y) ) return true; else return false; */ return ( (x==obj.x) && (y==obj.y) ); } bool coord::operator&&(const coord& obj) { return ( (x&&obj.x) && (y&&obj.y) ); } bool coord::operator>(const coord& obj) { return ( (x>obj.x) && (y>obj.y) ); } bool coord::operator<(const coord& obj) { return ( (x<obj.x) && (y<obj.y) ); } coord coord::operator++() { x++; y++; return *this; } coord coord::operator--() { x--; y--; return *this; } coord coord::operator++(int notused) { x++; y++; return *this; } coord coord::operator--(int notused) { x--; y--; return *this; } coord coord::operator-() { // -ob : negation x = -x; y = -y; return *this; } coord coord::operator+() { // +ob : define as abs(ob) if (x < 0) x = -x; if (y < 0) y = -y; return *this; } coord operator+(const int i, const coord& obj) { coord tmp; tmp.x = obj.x + i; tmp.y = obj.y + i; return tmp; } int main() { coord o1(10, 10), o2(5, 3), o3, od; int x, y; cout << "o1 : " << o1 << endl; cout << "o2 : " << o2 << endl; cout << "o3 : " << o3 << endl; od = o1 + o2; od.get_xy(x, y); //cout << "(o1 + o2) x=" << x << " y=" << y << endl; cout << "(o1+o2) : " << od << endl; od = o1 + 20; od.get_xy(x, y); cout << "(o1+20) : " << od << endl; od = o1 - o2; od.get_xy(x, y); cout << "(o1-o2) : " << od << endl; od = o1 * o2; od.get_xy(x, y); cout << "(o1*o2) : " << od << endl; od = o1 / o2; od.get_xy(x, y); cout << "(o1/o2) : " << od << endl; od = o2; cout << "(od=o2)-> od : " << od << endl; if ( o1 == o2 ) cout << " o1 == o2 returns true\n"; else cout << " o1 == o2 returns false\n"; if ( o1 && o2) cout << " o1 && o2 returns true\n"; else cout << " o1 && o2 returns false\n"; if ( o1 > o2) cout << " o1 > o2 returns true\n"; else cout << " o1 > o2 returns false\n"; if ( o1 < o2) cout << " o1 < o2 returns true\n"; else cout << " o1 < o2 returns false\n"; cout << "++o1 = " << ++o1 << endl; cout << "--o1 = " << --o1 << endl; cout << "o1++ = " << o1++ << endl; cout << "o1-- = " << o1-- << endl; cout << "-o2 = " << -o2 << endl; cout << "+o2 = " << +o2 << endl; // Use of "friend coord operator+(const int i, const coord& obj);" od = 40 + o1; // can't be done with coord coord::operator+(coord ob); cout << "od = (40+o1) => " << od << endl; coord testObj; cout << "Init: " << testObj << endl;; cin >> testObj; cout << "Now: " << testObj << endl; return 0; }
575d839e9f0fe321385b725096151278bee15d33
f3c60e4671480bae1a4b0117687da7d8b5cd06a9
/codeforces/504/A/temp.cpp
655f64e89bb6860ba5c6f8cc9a155c47173ba652
[]
no_license
nathanPro/mac0214
c971fd96d1a4517685b1cf7bb12379348889aad9
57b99deda183ab280901d019fa58e0f2016fe675
refs/heads/master
2021-01-21T04:53:57.302770
2016-06-23T16:23:49
2016-06-23T16:23:49
51,778,456
0
0
null
null
null
null
UTF-8
C++
false
false
730
cpp
#include <bits/stdc++.h> using namespace std; typedef int64_t ll; template<typename T> inline void _max(T& a, T b){ a = max(a,b); } template<typename T> inline void _min(T& a, T b){ a = min(a,b); } const int N = (1<<17); int n; int x[N], d[N], q[N], qf, qb; int ans[N][2], as; int main(){ scanf(" %d", &n); for(int i=0;i<n;i++) { scanf(" %d%d", d+i, x+i); if(d[i] == 1) q[qb++] = i; } while(qb > qf){ int i = q[qf++], j = x[i]; if(d[i] != 1) continue; ans[as][0] = i, ans[as][1] = j, as++; x[i] ^= j, x[j] ^= i; d[i]--; d[j]--; if(d[j] == 1) q[qb++] = j; } printf("%d\n", as); for(int i=0;i<as;i++) printf("%d %d\n", ans[i][0], ans[i][1]); }
203920065ea3e8c3b444e0066dcb170542214e17
815ac8efa0fa113566fa0eb6718968bd9b613315
/hummingbot/hummingbot/market/kucoin/kucoin_order_book.cpp
bc61b1307ea231034b950d8de95109e7c72d2256
[ "Apache-2.0" ]
permissive
hide77/hum-botInterface
e2b0fd69d9d14f7659a6fdf22df6efcd1331e5a3
0a40eb58dc2981adfad4d1351ad56befa1b81ce9
refs/heads/master
2023-03-21T15:00:57.764409
2020-05-17T02:14:44
2020-05-17T02:14:44
264,439,278
0
7
null
2021-03-20T03:53:06
2020-05-16T13:06:48
Python
UTF-8
C++
false
true
505,040
cpp
/* Generated by Cython 0.29.5 */ /* BEGIN: Cython Metadata { "distutils": { "depends": [ "hummingbot/core/cpp/OrderBookEntry.h", "hummingbot/core/cpp/PyRef.h" ], "include_dirs": [ "./hummingbot/core/data_type", "./hummingbot/core" ], "language": "c++", "name": "hummingbot.market.kucoin.kucoin_order_book", "sources": [ "hummingbot/market/kucoin/kucoin_order_book.pyx" ] }, "module_name": "hummingbot.market.kucoin.kucoin_order_book" } END: Cython Metadata */ #define PY_SSIZE_T_CLEAN #include "Python.h" #ifndef Py_PYTHON_H #error Python headers needed to compile C extensions, please install development version of Python. #elif PY_VERSION_HEX < 0x02060000 || (0x03000000 <= PY_VERSION_HEX && PY_VERSION_HEX < 0x03030000) #error Cython requires Python 2.6+ or Python 3.3+. #else #define CYTHON_ABI "0_29_5" #define CYTHON_HEX_VERSION 0x001D05F0 #define CYTHON_FUTURE_DIVISION 1 #include <stddef.h> #ifndef offsetof #define offsetof(type, member) ( (size_t) & ((type*)0) -> member ) #endif #if !defined(WIN32) && !defined(MS_WINDOWS) #ifndef __stdcall #define __stdcall #endif #ifndef __cdecl #define __cdecl #endif #ifndef __fastcall #define __fastcall #endif #endif #ifndef DL_IMPORT #define DL_IMPORT(t) t #endif #ifndef DL_EXPORT #define DL_EXPORT(t) t #endif #define __PYX_COMMA , #ifndef HAVE_LONG_LONG #if PY_VERSION_HEX >= 0x02070000 #define HAVE_LONG_LONG #endif #endif #ifndef PY_LONG_LONG #define PY_LONG_LONG LONG_LONG #endif #ifndef Py_HUGE_VAL #define Py_HUGE_VAL HUGE_VAL #endif #ifdef PYPY_VERSION #define CYTHON_COMPILING_IN_PYPY 1 #define CYTHON_COMPILING_IN_PYSTON 0 #define CYTHON_COMPILING_IN_CPYTHON 0 #undef CYTHON_USE_TYPE_SLOTS #define CYTHON_USE_TYPE_SLOTS 0 #undef CYTHON_USE_PYTYPE_LOOKUP #define CYTHON_USE_PYTYPE_LOOKUP 0 #if PY_VERSION_HEX < 0x03050000 #undef CYTHON_USE_ASYNC_SLOTS #define CYTHON_USE_ASYNC_SLOTS 0 #elif !defined(CYTHON_USE_ASYNC_SLOTS) #define CYTHON_USE_ASYNC_SLOTS 1 #endif #undef CYTHON_USE_PYLIST_INTERNALS #define CYTHON_USE_PYLIST_INTERNALS 0 #undef CYTHON_USE_UNICODE_INTERNALS #define CYTHON_USE_UNICODE_INTERNALS 0 #undef CYTHON_USE_UNICODE_WRITER #define CYTHON_USE_UNICODE_WRITER 0 #undef CYTHON_USE_PYLONG_INTERNALS #define CYTHON_USE_PYLONG_INTERNALS 0 #undef CYTHON_AVOID_BORROWED_REFS #define CYTHON_AVOID_BORROWED_REFS 1 #undef CYTHON_ASSUME_SAFE_MACROS #define CYTHON_ASSUME_SAFE_MACROS 0 #undef CYTHON_UNPACK_METHODS #define CYTHON_UNPACK_METHODS 0 #undef CYTHON_FAST_THREAD_STATE #define CYTHON_FAST_THREAD_STATE 0 #undef CYTHON_FAST_PYCALL #define CYTHON_FAST_PYCALL 0 #undef CYTHON_PEP489_MULTI_PHASE_INIT #define CYTHON_PEP489_MULTI_PHASE_INIT 0 #undef CYTHON_USE_TP_FINALIZE #define CYTHON_USE_TP_FINALIZE 0 #undef CYTHON_USE_DICT_VERSIONS #define CYTHON_USE_DICT_VERSIONS 0 #undef CYTHON_USE_EXC_INFO_STACK #define CYTHON_USE_EXC_INFO_STACK 0 #elif defined(PYSTON_VERSION) #define CYTHON_COMPILING_IN_PYPY 0 #define CYTHON_COMPILING_IN_PYSTON 1 #define CYTHON_COMPILING_IN_CPYTHON 0 #ifndef CYTHON_USE_TYPE_SLOTS #define CYTHON_USE_TYPE_SLOTS 1 #endif #undef CYTHON_USE_PYTYPE_LOOKUP #define CYTHON_USE_PYTYPE_LOOKUP 0 #undef CYTHON_USE_ASYNC_SLOTS #define CYTHON_USE_ASYNC_SLOTS 0 #undef CYTHON_USE_PYLIST_INTERNALS #define CYTHON_USE_PYLIST_INTERNALS 0 #ifndef CYTHON_USE_UNICODE_INTERNALS #define CYTHON_USE_UNICODE_INTERNALS 1 #endif #undef CYTHON_USE_UNICODE_WRITER #define CYTHON_USE_UNICODE_WRITER 0 #undef CYTHON_USE_PYLONG_INTERNALS #define CYTHON_USE_PYLONG_INTERNALS 0 #ifndef CYTHON_AVOID_BORROWED_REFS #define CYTHON_AVOID_BORROWED_REFS 0 #endif #ifndef CYTHON_ASSUME_SAFE_MACROS #define CYTHON_ASSUME_SAFE_MACROS 1 #endif #ifndef CYTHON_UNPACK_METHODS #define CYTHON_UNPACK_METHODS 1 #endif #undef CYTHON_FAST_THREAD_STATE #define CYTHON_FAST_THREAD_STATE 0 #undef CYTHON_FAST_PYCALL #define CYTHON_FAST_PYCALL 0 #undef CYTHON_PEP489_MULTI_PHASE_INIT #define CYTHON_PEP489_MULTI_PHASE_INIT 0 #undef CYTHON_USE_TP_FINALIZE #define CYTHON_USE_TP_FINALIZE 0 #undef CYTHON_USE_DICT_VERSIONS #define CYTHON_USE_DICT_VERSIONS 0 #undef CYTHON_USE_EXC_INFO_STACK #define CYTHON_USE_EXC_INFO_STACK 0 #else #define CYTHON_COMPILING_IN_PYPY 0 #define CYTHON_COMPILING_IN_PYSTON 0 #define CYTHON_COMPILING_IN_CPYTHON 1 #ifndef CYTHON_USE_TYPE_SLOTS #define CYTHON_USE_TYPE_SLOTS 1 #endif #if PY_VERSION_HEX < 0x02070000 #undef CYTHON_USE_PYTYPE_LOOKUP #define CYTHON_USE_PYTYPE_LOOKUP 0 #elif !defined(CYTHON_USE_PYTYPE_LOOKUP) #define CYTHON_USE_PYTYPE_LOOKUP 1 #endif #if PY_MAJOR_VERSION < 3 #undef CYTHON_USE_ASYNC_SLOTS #define CYTHON_USE_ASYNC_SLOTS 0 #elif !defined(CYTHON_USE_ASYNC_SLOTS) #define CYTHON_USE_ASYNC_SLOTS 1 #endif #if PY_VERSION_HEX < 0x02070000 #undef CYTHON_USE_PYLONG_INTERNALS #define CYTHON_USE_PYLONG_INTERNALS 0 #elif !defined(CYTHON_USE_PYLONG_INTERNALS) #define CYTHON_USE_PYLONG_INTERNALS 1 #endif #ifndef CYTHON_USE_PYLIST_INTERNALS #define CYTHON_USE_PYLIST_INTERNALS 1 #endif #ifndef CYTHON_USE_UNICODE_INTERNALS #define CYTHON_USE_UNICODE_INTERNALS 1 #endif #if PY_VERSION_HEX < 0x030300F0 #undef CYTHON_USE_UNICODE_WRITER #define CYTHON_USE_UNICODE_WRITER 0 #elif !defined(CYTHON_USE_UNICODE_WRITER) #define CYTHON_USE_UNICODE_WRITER 1 #endif #ifndef CYTHON_AVOID_BORROWED_REFS #define CYTHON_AVOID_BORROWED_REFS 0 #endif #ifndef CYTHON_ASSUME_SAFE_MACROS #define CYTHON_ASSUME_SAFE_MACROS 1 #endif #ifndef CYTHON_UNPACK_METHODS #define CYTHON_UNPACK_METHODS 1 #endif #ifndef CYTHON_FAST_THREAD_STATE #define CYTHON_FAST_THREAD_STATE 1 #endif #ifndef CYTHON_FAST_PYCALL #define CYTHON_FAST_PYCALL 1 #endif #ifndef CYTHON_PEP489_MULTI_PHASE_INIT #define CYTHON_PEP489_MULTI_PHASE_INIT (PY_VERSION_HEX >= 0x03050000) #endif #ifndef CYTHON_USE_TP_FINALIZE #define CYTHON_USE_TP_FINALIZE (PY_VERSION_HEX >= 0x030400a1) #endif #ifndef CYTHON_USE_DICT_VERSIONS #define CYTHON_USE_DICT_VERSIONS (PY_VERSION_HEX >= 0x030600B1) #endif #ifndef CYTHON_USE_EXC_INFO_STACK #define CYTHON_USE_EXC_INFO_STACK (PY_VERSION_HEX >= 0x030700A3) #endif #endif #if !defined(CYTHON_FAST_PYCCALL) #define CYTHON_FAST_PYCCALL (CYTHON_FAST_PYCALL && PY_VERSION_HEX >= 0x030600B1) #endif #if CYTHON_USE_PYLONG_INTERNALS #include "longintrepr.h" #undef SHIFT #undef BASE #undef MASK #ifdef SIZEOF_VOID_P enum { __pyx_check_sizeof_voidp = 1 / (int)(SIZEOF_VOID_P == sizeof(void*)) }; #endif #endif #ifndef __has_attribute #define __has_attribute(x) 0 #endif #ifndef __has_cpp_attribute #define __has_cpp_attribute(x) 0 #endif #ifndef CYTHON_RESTRICT #if defined(__GNUC__) #define CYTHON_RESTRICT __restrict__ #elif defined(_MSC_VER) && _MSC_VER >= 1400 #define CYTHON_RESTRICT __restrict #elif defined (__STDC_VERSION__) && __STDC_VERSION__ >= 199901L #define CYTHON_RESTRICT restrict #else #define CYTHON_RESTRICT #endif #endif #ifndef CYTHON_UNUSED # if defined(__GNUC__) # if !(defined(__cplusplus)) || (__GNUC__ > 3 || (__GNUC__ == 3 && __GNUC_MINOR__ >= 4)) # define CYTHON_UNUSED __attribute__ ((__unused__)) # else # define CYTHON_UNUSED # endif # elif defined(__ICC) || (defined(__INTEL_COMPILER) && !defined(_MSC_VER)) # define CYTHON_UNUSED __attribute__ ((__unused__)) # else # define CYTHON_UNUSED # endif #endif #ifndef CYTHON_MAYBE_UNUSED_VAR # if defined(__cplusplus) template<class T> void CYTHON_MAYBE_UNUSED_VAR( const T& ) { } # else # define CYTHON_MAYBE_UNUSED_VAR(x) (void)(x) # endif #endif #ifndef CYTHON_NCP_UNUSED # if CYTHON_COMPILING_IN_CPYTHON # define CYTHON_NCP_UNUSED # else # define CYTHON_NCP_UNUSED CYTHON_UNUSED # endif #endif #define __Pyx_void_to_None(void_result) ((void)(void_result), Py_INCREF(Py_None), Py_None) #ifdef _MSC_VER #ifndef _MSC_STDINT_H_ #if _MSC_VER < 1300 typedef unsigned char uint8_t; typedef unsigned int uint32_t; #else typedef unsigned __int8 uint8_t; typedef unsigned __int32 uint32_t; #endif #endif #else #include <stdint.h> #endif #ifndef CYTHON_FALLTHROUGH #if defined(__cplusplus) && __cplusplus >= 201103L #if __has_cpp_attribute(fallthrough) #define CYTHON_FALLTHROUGH [[fallthrough]] #elif __has_cpp_attribute(clang::fallthrough) #define CYTHON_FALLTHROUGH [[clang::fallthrough]] #elif __has_cpp_attribute(gnu::fallthrough) #define CYTHON_FALLTHROUGH [[gnu::fallthrough]] #endif #endif #ifndef CYTHON_FALLTHROUGH #if __has_attribute(fallthrough) #define CYTHON_FALLTHROUGH __attribute__((fallthrough)) #else #define CYTHON_FALLTHROUGH #endif #endif #if defined(__clang__ ) && defined(__apple_build_version__) #if __apple_build_version__ < 7000000 #undef CYTHON_FALLTHROUGH #define CYTHON_FALLTHROUGH #endif #endif #endif #ifndef __cplusplus #error "Cython files generated with the C++ option must be compiled with a C++ compiler." #endif #ifndef CYTHON_INLINE #if defined(__clang__) #define CYTHON_INLINE __inline__ __attribute__ ((__unused__)) #else #define CYTHON_INLINE inline #endif #endif template<typename T> void __Pyx_call_destructor(T& x) { x.~T(); } template<typename T> class __Pyx_FakeReference { public: __Pyx_FakeReference() : ptr(NULL) { } __Pyx_FakeReference(const T& ref) : ptr(const_cast<T*>(&ref)) { } T *operator->() { return ptr; } T *operator&() { return ptr; } operator T&() { return *ptr; } template<typename U> bool operator ==(U other) { return *ptr == other; } template<typename U> bool operator !=(U other) { return *ptr != other; } private: T *ptr; }; #if CYTHON_COMPILING_IN_PYPY && PY_VERSION_HEX < 0x02070600 && !defined(Py_OptimizeFlag) #define Py_OptimizeFlag 0 #endif #define __PYX_BUILD_PY_SSIZE_T "n" #define CYTHON_FORMAT_SSIZE_T "z" #if PY_MAJOR_VERSION < 3 #define __Pyx_BUILTIN_MODULE_NAME "__builtin__" #define __Pyx_PyCode_New(a, k, l, s, f, code, c, n, v, fv, cell, fn, name, fline, lnos)\ PyCode_New(a+k, l, s, f, code, c, n, v, fv, cell, fn, name, fline, lnos) #define __Pyx_DefaultClassType PyClass_Type #else #define __Pyx_BUILTIN_MODULE_NAME "builtins" #define __Pyx_PyCode_New(a, k, l, s, f, code, c, n, v, fv, cell, fn, name, fline, lnos)\ PyCode_New(a, k, l, s, f, code, c, n, v, fv, cell, fn, name, fline, lnos) #define __Pyx_DefaultClassType PyType_Type #endif #ifndef Py_TPFLAGS_CHECKTYPES #define Py_TPFLAGS_CHECKTYPES 0 #endif #ifndef Py_TPFLAGS_HAVE_INDEX #define Py_TPFLAGS_HAVE_INDEX 0 #endif #ifndef Py_TPFLAGS_HAVE_NEWBUFFER #define Py_TPFLAGS_HAVE_NEWBUFFER 0 #endif #ifndef Py_TPFLAGS_HAVE_FINALIZE #define Py_TPFLAGS_HAVE_FINALIZE 0 #endif #ifndef METH_STACKLESS #define METH_STACKLESS 0 #endif #if PY_VERSION_HEX <= 0x030700A3 || !defined(METH_FASTCALL) #ifndef METH_FASTCALL #define METH_FASTCALL 0x80 #endif typedef PyObject *(*__Pyx_PyCFunctionFast) (PyObject *self, PyObject *const *args, Py_ssize_t nargs); typedef PyObject *(*__Pyx_PyCFunctionFastWithKeywords) (PyObject *self, PyObject *const *args, Py_ssize_t nargs, PyObject *kwnames); #else #define __Pyx_PyCFunctionFast _PyCFunctionFast #define __Pyx_PyCFunctionFastWithKeywords _PyCFunctionFastWithKeywords #endif #if CYTHON_FAST_PYCCALL #define __Pyx_PyFastCFunction_Check(func)\ ((PyCFunction_Check(func) && (METH_FASTCALL == (PyCFunction_GET_FLAGS(func) & ~(METH_CLASS | METH_STATIC | METH_COEXIST | METH_KEYWORDS | METH_STACKLESS))))) #else #define __Pyx_PyFastCFunction_Check(func) 0 #endif #if CYTHON_COMPILING_IN_PYPY && !defined(PyObject_Malloc) #define PyObject_Malloc(s) PyMem_Malloc(s) #define PyObject_Free(p) PyMem_Free(p) #define PyObject_Realloc(p) PyMem_Realloc(p) #endif #if CYTHON_COMPILING_IN_CPYTHON && PY_VERSION_HEX < 0x030400A1 #define PyMem_RawMalloc(n) PyMem_Malloc(n) #define PyMem_RawRealloc(p, n) PyMem_Realloc(p, n) #define PyMem_RawFree(p) PyMem_Free(p) #endif #if CYTHON_COMPILING_IN_PYSTON #define __Pyx_PyCode_HasFreeVars(co) PyCode_HasFreeVars(co) #define __Pyx_PyFrame_SetLineNumber(frame, lineno) PyFrame_SetLineNumber(frame, lineno) #else #define __Pyx_PyCode_HasFreeVars(co) (PyCode_GetNumFree(co) > 0) #define __Pyx_PyFrame_SetLineNumber(frame, lineno) (frame)->f_lineno = (lineno) #endif #if !CYTHON_FAST_THREAD_STATE || PY_VERSION_HEX < 0x02070000 #define __Pyx_PyThreadState_Current PyThreadState_GET() #elif PY_VERSION_HEX >= 0x03060000 #define __Pyx_PyThreadState_Current _PyThreadState_UncheckedGet() #elif PY_VERSION_HEX >= 0x03000000 #define __Pyx_PyThreadState_Current PyThreadState_GET() #else #define __Pyx_PyThreadState_Current _PyThreadState_Current #endif #if PY_VERSION_HEX < 0x030700A2 && !defined(PyThread_tss_create) && !defined(Py_tss_NEEDS_INIT) #include "pythread.h" #define Py_tss_NEEDS_INIT 0 typedef int Py_tss_t; static CYTHON_INLINE int PyThread_tss_create(Py_tss_t *key) { *key = PyThread_create_key(); return 0; } static CYTHON_INLINE Py_tss_t * PyThread_tss_alloc(void) { Py_tss_t *key = (Py_tss_t *)PyObject_Malloc(sizeof(Py_tss_t)); *key = Py_tss_NEEDS_INIT; return key; } static CYTHON_INLINE void PyThread_tss_free(Py_tss_t *key) { PyObject_Free(key); } static CYTHON_INLINE int PyThread_tss_is_created(Py_tss_t *key) { return *key != Py_tss_NEEDS_INIT; } static CYTHON_INLINE void PyThread_tss_delete(Py_tss_t *key) { PyThread_delete_key(*key); *key = Py_tss_NEEDS_INIT; } static CYTHON_INLINE int PyThread_tss_set(Py_tss_t *key, void *value) { return PyThread_set_key_value(*key, value); } static CYTHON_INLINE void * PyThread_tss_get(Py_tss_t *key) { return PyThread_get_key_value(*key); } #endif #if CYTHON_COMPILING_IN_CPYTHON || defined(_PyDict_NewPresized) #define __Pyx_PyDict_NewPresized(n) ((n <= 8) ? PyDict_New() : _PyDict_NewPresized(n)) #else #define __Pyx_PyDict_NewPresized(n) PyDict_New() #endif #if PY_MAJOR_VERSION >= 3 || CYTHON_FUTURE_DIVISION #define __Pyx_PyNumber_Divide(x,y) PyNumber_TrueDivide(x,y) #define __Pyx_PyNumber_InPlaceDivide(x,y) PyNumber_InPlaceTrueDivide(x,y) #else #define __Pyx_PyNumber_Divide(x,y) PyNumber_Divide(x,y) #define __Pyx_PyNumber_InPlaceDivide(x,y) PyNumber_InPlaceDivide(x,y) #endif #if CYTHON_COMPILING_IN_CPYTHON && PY_VERSION_HEX >= 0x030500A1 && CYTHON_USE_UNICODE_INTERNALS #define __Pyx_PyDict_GetItemStr(dict, name) _PyDict_GetItem_KnownHash(dict, name, ((PyASCIIObject *) name)->hash) #else #define __Pyx_PyDict_GetItemStr(dict, name) PyDict_GetItem(dict, name) #endif #if PY_VERSION_HEX > 0x03030000 && defined(PyUnicode_KIND) #define CYTHON_PEP393_ENABLED 1 #define __Pyx_PyUnicode_READY(op) (likely(PyUnicode_IS_READY(op)) ?\ 0 : _PyUnicode_Ready((PyObject *)(op))) #define __Pyx_PyUnicode_GET_LENGTH(u) PyUnicode_GET_LENGTH(u) #define __Pyx_PyUnicode_READ_CHAR(u, i) PyUnicode_READ_CHAR(u, i) #define __Pyx_PyUnicode_MAX_CHAR_VALUE(u) PyUnicode_MAX_CHAR_VALUE(u) #define __Pyx_PyUnicode_KIND(u) PyUnicode_KIND(u) #define __Pyx_PyUnicode_DATA(u) PyUnicode_DATA(u) #define __Pyx_PyUnicode_READ(k, d, i) PyUnicode_READ(k, d, i) #define __Pyx_PyUnicode_WRITE(k, d, i, ch) PyUnicode_WRITE(k, d, i, ch) #define __Pyx_PyUnicode_IS_TRUE(u) (0 != (likely(PyUnicode_IS_READY(u)) ? PyUnicode_GET_LENGTH(u) : PyUnicode_GET_SIZE(u))) #else #define CYTHON_PEP393_ENABLED 0 #define PyUnicode_1BYTE_KIND 1 #define PyUnicode_2BYTE_KIND 2 #define PyUnicode_4BYTE_KIND 4 #define __Pyx_PyUnicode_READY(op) (0) #define __Pyx_PyUnicode_GET_LENGTH(u) PyUnicode_GET_SIZE(u) #define __Pyx_PyUnicode_READ_CHAR(u, i) ((Py_UCS4)(PyUnicode_AS_UNICODE(u)[i])) #define __Pyx_PyUnicode_MAX_CHAR_VALUE(u) ((sizeof(Py_UNICODE) == 2) ? 65535 : 1114111) #define __Pyx_PyUnicode_KIND(u) (sizeof(Py_UNICODE)) #define __Pyx_PyUnicode_DATA(u) ((void*)PyUnicode_AS_UNICODE(u)) #define __Pyx_PyUnicode_READ(k, d, i) ((void)(k), (Py_UCS4)(((Py_UNICODE*)d)[i])) #define __Pyx_PyUnicode_WRITE(k, d, i, ch) (((void)(k)), ((Py_UNICODE*)d)[i] = ch) #define __Pyx_PyUnicode_IS_TRUE(u) (0 != PyUnicode_GET_SIZE(u)) #endif #if CYTHON_COMPILING_IN_PYPY #define __Pyx_PyUnicode_Concat(a, b) PyNumber_Add(a, b) #define __Pyx_PyUnicode_ConcatSafe(a, b) PyNumber_Add(a, b) #else #define __Pyx_PyUnicode_Concat(a, b) PyUnicode_Concat(a, b) #define __Pyx_PyUnicode_ConcatSafe(a, b) ((unlikely((a) == Py_None) || unlikely((b) == Py_None)) ?\ PyNumber_Add(a, b) : __Pyx_PyUnicode_Concat(a, b)) #endif #if CYTHON_COMPILING_IN_PYPY && !defined(PyUnicode_Contains) #define PyUnicode_Contains(u, s) PySequence_Contains(u, s) #endif #if CYTHON_COMPILING_IN_PYPY && !defined(PyByteArray_Check) #define PyByteArray_Check(obj) PyObject_TypeCheck(obj, &PyByteArray_Type) #endif #if CYTHON_COMPILING_IN_PYPY && !defined(PyObject_Format) #define PyObject_Format(obj, fmt) PyObject_CallMethod(obj, "__format__", "O", fmt) #endif #define __Pyx_PyString_FormatSafe(a, b) ((unlikely((a) == Py_None || (PyString_Check(b) && !PyString_CheckExact(b)))) ? PyNumber_Remainder(a, b) : __Pyx_PyString_Format(a, b)) #define __Pyx_PyUnicode_FormatSafe(a, b) ((unlikely((a) == Py_None || (PyUnicode_Check(b) && !PyUnicode_CheckExact(b)))) ? PyNumber_Remainder(a, b) : PyUnicode_Format(a, b)) #if PY_MAJOR_VERSION >= 3 #define __Pyx_PyString_Format(a, b) PyUnicode_Format(a, b) #else #define __Pyx_PyString_Format(a, b) PyString_Format(a, b) #endif #if PY_MAJOR_VERSION < 3 && !defined(PyObject_ASCII) #define PyObject_ASCII(o) PyObject_Repr(o) #endif #if PY_MAJOR_VERSION >= 3 #define PyBaseString_Type PyUnicode_Type #define PyStringObject PyUnicodeObject #define PyString_Type PyUnicode_Type #define PyString_Check PyUnicode_Check #define PyString_CheckExact PyUnicode_CheckExact #define PyObject_Unicode PyObject_Str #endif #if PY_MAJOR_VERSION >= 3 #define __Pyx_PyBaseString_Check(obj) PyUnicode_Check(obj) #define __Pyx_PyBaseString_CheckExact(obj) PyUnicode_CheckExact(obj) #else #define __Pyx_PyBaseString_Check(obj) (PyString_Check(obj) || PyUnicode_Check(obj)) #define __Pyx_PyBaseString_CheckExact(obj) (PyString_CheckExact(obj) || PyUnicode_CheckExact(obj)) #endif #ifndef PySet_CheckExact #define PySet_CheckExact(obj) (Py_TYPE(obj) == &PySet_Type) #endif #if CYTHON_ASSUME_SAFE_MACROS #define __Pyx_PySequence_SIZE(seq) Py_SIZE(seq) #else #define __Pyx_PySequence_SIZE(seq) PySequence_Size(seq) #endif #if PY_MAJOR_VERSION >= 3 #define PyIntObject PyLongObject #define PyInt_Type PyLong_Type #define PyInt_Check(op) PyLong_Check(op) #define PyInt_CheckExact(op) PyLong_CheckExact(op) #define PyInt_FromString PyLong_FromString #define PyInt_FromUnicode PyLong_FromUnicode #define PyInt_FromLong PyLong_FromLong #define PyInt_FromSize_t PyLong_FromSize_t #define PyInt_FromSsize_t PyLong_FromSsize_t #define PyInt_AsLong PyLong_AsLong #define PyInt_AS_LONG PyLong_AS_LONG #define PyInt_AsSsize_t PyLong_AsSsize_t #define PyInt_AsUnsignedLongMask PyLong_AsUnsignedLongMask #define PyInt_AsUnsignedLongLongMask PyLong_AsUnsignedLongLongMask #define PyNumber_Int PyNumber_Long #endif #if PY_MAJOR_VERSION >= 3 #define PyBoolObject PyLongObject #endif #if PY_MAJOR_VERSION >= 3 && CYTHON_COMPILING_IN_PYPY #ifndef PyUnicode_InternFromString #define PyUnicode_InternFromString(s) PyUnicode_FromString(s) #endif #endif #if PY_VERSION_HEX < 0x030200A4 typedef long Py_hash_t; #define __Pyx_PyInt_FromHash_t PyInt_FromLong #define __Pyx_PyInt_AsHash_t PyInt_AsLong #else #define __Pyx_PyInt_FromHash_t PyInt_FromSsize_t #define __Pyx_PyInt_AsHash_t PyInt_AsSsize_t #endif #if PY_MAJOR_VERSION >= 3 #define __Pyx_PyMethod_New(func, self, klass) ((self) ? PyMethod_New(func, self) : (Py_INCREF(func), func)) #else #define __Pyx_PyMethod_New(func, self, klass) PyMethod_New(func, self, klass) #endif #if CYTHON_USE_ASYNC_SLOTS #if PY_VERSION_HEX >= 0x030500B1 #define __Pyx_PyAsyncMethodsStruct PyAsyncMethods #define __Pyx_PyType_AsAsync(obj) (Py_TYPE(obj)->tp_as_async) #else #define __Pyx_PyType_AsAsync(obj) ((__Pyx_PyAsyncMethodsStruct*) (Py_TYPE(obj)->tp_reserved)) #endif #else #define __Pyx_PyType_AsAsync(obj) NULL #endif #ifndef __Pyx_PyAsyncMethodsStruct typedef struct { unaryfunc am_await; unaryfunc am_aiter; unaryfunc am_anext; } __Pyx_PyAsyncMethodsStruct; #endif #if defined(WIN32) || defined(MS_WINDOWS) #define _USE_MATH_DEFINES #endif #include <math.h> #ifdef NAN #define __PYX_NAN() ((float) NAN) #else static CYTHON_INLINE float __PYX_NAN() { float value; memset(&value, 0xFF, sizeof(value)); return value; } #endif #if defined(__CYGWIN__) && defined(_LDBL_EQ_DBL) #define __Pyx_truncl trunc #else #define __Pyx_truncl truncl #endif #define __PYX_ERR(f_index, lineno, Ln_error) \ { \ __pyx_filename = __pyx_f[f_index]; __pyx_lineno = lineno; __pyx_clineno = __LINE__; goto Ln_error; \ } #ifndef __PYX_EXTERN_C #ifdef __cplusplus #define __PYX_EXTERN_C extern "C" #else #define __PYX_EXTERN_C extern #endif #endif #define __PYX_HAVE__hummingbot__market__kucoin__kucoin_order_book #define __PYX_HAVE_API__hummingbot__market__kucoin__kucoin_order_book /* Early includes */ #include <stdint.h> #include "ios" #include "new" #include "stdexcept" #include "typeinfo" #include <utility> #include <set> #include <vector> #include <string.h> #include <stdio.h> #include "numpy/arrayobject.h" #include "numpy/ufuncobject.h" #include "../cpp/OrderBookEntry.h" #include <unordered_map> #include <unordered_set> #include "cpp/PyRef.h" #ifdef _OPENMP #include <omp.h> #endif /* _OPENMP */ #if defined(PYREX_WITHOUT_ASSERTIONS) && !defined(CYTHON_WITHOUT_ASSERTIONS) #define CYTHON_WITHOUT_ASSERTIONS #endif typedef struct {PyObject **p; const char *s; const Py_ssize_t n; const char* encoding; const char is_unicode; const char is_str; const char intern; } __Pyx_StringTabEntry; #define __PYX_DEFAULT_STRING_ENCODING_IS_ASCII 0 #define __PYX_DEFAULT_STRING_ENCODING_IS_DEFAULT 0 #define __PYX_DEFAULT_STRING_ENCODING "" #define __Pyx_PyObject_FromString __Pyx_PyBytes_FromString #define __Pyx_PyObject_FromStringAndSize __Pyx_PyBytes_FromStringAndSize #define __Pyx_uchar_cast(c) ((unsigned char)c) #define __Pyx_long_cast(x) ((long)x) #define __Pyx_fits_Py_ssize_t(v, type, is_signed) (\ (sizeof(type) < sizeof(Py_ssize_t)) ||\ (sizeof(type) > sizeof(Py_ssize_t) &&\ likely(v < (type)PY_SSIZE_T_MAX ||\ v == (type)PY_SSIZE_T_MAX) &&\ (!is_signed || likely(v > (type)PY_SSIZE_T_MIN ||\ v == (type)PY_SSIZE_T_MIN))) ||\ (sizeof(type) == sizeof(Py_ssize_t) &&\ (is_signed || likely(v < (type)PY_SSIZE_T_MAX ||\ v == (type)PY_SSIZE_T_MAX))) ) static CYTHON_INLINE int __Pyx_is_valid_index(Py_ssize_t i, Py_ssize_t limit) { return (size_t) i < (size_t) limit; } #if defined (__cplusplus) && __cplusplus >= 201103L #include <cstdlib> #define __Pyx_sst_abs(value) std::abs(value) #elif SIZEOF_INT >= SIZEOF_SIZE_T #define __Pyx_sst_abs(value) abs(value) #elif SIZEOF_LONG >= SIZEOF_SIZE_T #define __Pyx_sst_abs(value) labs(value) #elif defined (_MSC_VER) #define __Pyx_sst_abs(value) ((Py_ssize_t)_abs64(value)) #elif defined (__STDC_VERSION__) && __STDC_VERSION__ >= 199901L #define __Pyx_sst_abs(value) llabs(value) #elif defined (__GNUC__) #define __Pyx_sst_abs(value) __builtin_llabs(value) #else #define __Pyx_sst_abs(value) ((value<0) ? -value : value) #endif static CYTHON_INLINE const char* __Pyx_PyObject_AsString(PyObject*); static CYTHON_INLINE const char* __Pyx_PyObject_AsStringAndSize(PyObject*, Py_ssize_t* length); #define __Pyx_PyByteArray_FromString(s) PyByteArray_FromStringAndSize((const char*)s, strlen((const char*)s)) #define __Pyx_PyByteArray_FromStringAndSize(s, l) PyByteArray_FromStringAndSize((const char*)s, l) #define __Pyx_PyBytes_FromString PyBytes_FromString #define __Pyx_PyBytes_FromStringAndSize PyBytes_FromStringAndSize static CYTHON_INLINE PyObject* __Pyx_PyUnicode_FromString(const char*); #if PY_MAJOR_VERSION < 3 #define __Pyx_PyStr_FromString __Pyx_PyBytes_FromString #define __Pyx_PyStr_FromStringAndSize __Pyx_PyBytes_FromStringAndSize #else #define __Pyx_PyStr_FromString __Pyx_PyUnicode_FromString #define __Pyx_PyStr_FromStringAndSize __Pyx_PyUnicode_FromStringAndSize #endif #define __Pyx_PyBytes_AsWritableString(s) ((char*) PyBytes_AS_STRING(s)) #define __Pyx_PyBytes_AsWritableSString(s) ((signed char*) PyBytes_AS_STRING(s)) #define __Pyx_PyBytes_AsWritableUString(s) ((unsigned char*) PyBytes_AS_STRING(s)) #define __Pyx_PyBytes_AsString(s) ((const char*) PyBytes_AS_STRING(s)) #define __Pyx_PyBytes_AsSString(s) ((const signed char*) PyBytes_AS_STRING(s)) #define __Pyx_PyBytes_AsUString(s) ((const unsigned char*) PyBytes_AS_STRING(s)) #define __Pyx_PyObject_AsWritableString(s) ((char*) __Pyx_PyObject_AsString(s)) #define __Pyx_PyObject_AsWritableSString(s) ((signed char*) __Pyx_PyObject_AsString(s)) #define __Pyx_PyObject_AsWritableUString(s) ((unsigned char*) __Pyx_PyObject_AsString(s)) #define __Pyx_PyObject_AsSString(s) ((const signed char*) __Pyx_PyObject_AsString(s)) #define __Pyx_PyObject_AsUString(s) ((const unsigned char*) __Pyx_PyObject_AsString(s)) #define __Pyx_PyObject_FromCString(s) __Pyx_PyObject_FromString((const char*)s) #define __Pyx_PyBytes_FromCString(s) __Pyx_PyBytes_FromString((const char*)s) #define __Pyx_PyByteArray_FromCString(s) __Pyx_PyByteArray_FromString((const char*)s) #define __Pyx_PyStr_FromCString(s) __Pyx_PyStr_FromString((const char*)s) #define __Pyx_PyUnicode_FromCString(s) __Pyx_PyUnicode_FromString((const char*)s) static CYTHON_INLINE size_t __Pyx_Py_UNICODE_strlen(const Py_UNICODE *u) { const Py_UNICODE *u_end = u; while (*u_end++) ; return (size_t)(u_end - u - 1); } #define __Pyx_PyUnicode_FromUnicode(u) PyUnicode_FromUnicode(u, __Pyx_Py_UNICODE_strlen(u)) #define __Pyx_PyUnicode_FromUnicodeAndLength PyUnicode_FromUnicode #define __Pyx_PyUnicode_AsUnicode PyUnicode_AsUnicode #define __Pyx_NewRef(obj) (Py_INCREF(obj), obj) #define __Pyx_Owned_Py_None(b) __Pyx_NewRef(Py_None) static CYTHON_INLINE PyObject * __Pyx_PyBool_FromLong(long b); static CYTHON_INLINE int __Pyx_PyObject_IsTrue(PyObject*); static CYTHON_INLINE int __Pyx_PyObject_IsTrueAndDecref(PyObject*); static CYTHON_INLINE PyObject* __Pyx_PyNumber_IntOrLong(PyObject* x); #define __Pyx_PySequence_Tuple(obj)\ (likely(PyTuple_CheckExact(obj)) ? __Pyx_NewRef(obj) : PySequence_Tuple(obj)) static CYTHON_INLINE Py_ssize_t __Pyx_PyIndex_AsSsize_t(PyObject*); static CYTHON_INLINE PyObject * __Pyx_PyInt_FromSize_t(size_t); #if CYTHON_ASSUME_SAFE_MACROS #define __pyx_PyFloat_AsDouble(x) (PyFloat_CheckExact(x) ? PyFloat_AS_DOUBLE(x) : PyFloat_AsDouble(x)) #else #define __pyx_PyFloat_AsDouble(x) PyFloat_AsDouble(x) #endif #define __pyx_PyFloat_AsFloat(x) ((float) __pyx_PyFloat_AsDouble(x)) #if PY_MAJOR_VERSION >= 3 #define __Pyx_PyNumber_Int(x) (PyLong_CheckExact(x) ? __Pyx_NewRef(x) : PyNumber_Long(x)) #else #define __Pyx_PyNumber_Int(x) (PyInt_CheckExact(x) ? __Pyx_NewRef(x) : PyNumber_Int(x)) #endif #define __Pyx_PyNumber_Float(x) (PyFloat_CheckExact(x) ? __Pyx_NewRef(x) : PyNumber_Float(x)) #if PY_MAJOR_VERSION < 3 && __PYX_DEFAULT_STRING_ENCODING_IS_ASCII static int __Pyx_sys_getdefaultencoding_not_ascii; static int __Pyx_init_sys_getdefaultencoding_params(void) { PyObject* sys; PyObject* default_encoding = NULL; PyObject* ascii_chars_u = NULL; PyObject* ascii_chars_b = NULL; const char* default_encoding_c; sys = PyImport_ImportModule("sys"); if (!sys) goto bad; default_encoding = PyObject_CallMethod(sys, (char*) "getdefaultencoding", NULL); Py_DECREF(sys); if (!default_encoding) goto bad; default_encoding_c = PyBytes_AsString(default_encoding); if (!default_encoding_c) goto bad; if (strcmp(default_encoding_c, "ascii") == 0) { __Pyx_sys_getdefaultencoding_not_ascii = 0; } else { char ascii_chars[128]; int c; for (c = 0; c < 128; c++) { ascii_chars[c] = c; } __Pyx_sys_getdefaultencoding_not_ascii = 1; ascii_chars_u = PyUnicode_DecodeASCII(ascii_chars, 128, NULL); if (!ascii_chars_u) goto bad; ascii_chars_b = PyUnicode_AsEncodedString(ascii_chars_u, default_encoding_c, NULL); if (!ascii_chars_b || !PyBytes_Check(ascii_chars_b) || memcmp(ascii_chars, PyBytes_AS_STRING(ascii_chars_b), 128) != 0) { PyErr_Format( PyExc_ValueError, "This module compiled with c_string_encoding=ascii, but default encoding '%.200s' is not a superset of ascii.", default_encoding_c); goto bad; } Py_DECREF(ascii_chars_u); Py_DECREF(ascii_chars_b); } Py_DECREF(default_encoding); return 0; bad: Py_XDECREF(default_encoding); Py_XDECREF(ascii_chars_u); Py_XDECREF(ascii_chars_b); return -1; } #endif #if __PYX_DEFAULT_STRING_ENCODING_IS_DEFAULT && PY_MAJOR_VERSION >= 3 #define __Pyx_PyUnicode_FromStringAndSize(c_str, size) PyUnicode_DecodeUTF8(c_str, size, NULL) #else #define __Pyx_PyUnicode_FromStringAndSize(c_str, size) PyUnicode_Decode(c_str, size, __PYX_DEFAULT_STRING_ENCODING, NULL) #if __PYX_DEFAULT_STRING_ENCODING_IS_DEFAULT static char* __PYX_DEFAULT_STRING_ENCODING; static int __Pyx_init_sys_getdefaultencoding_params(void) { PyObject* sys; PyObject* default_encoding = NULL; char* default_encoding_c; sys = PyImport_ImportModule("sys"); if (!sys) goto bad; default_encoding = PyObject_CallMethod(sys, (char*) (const char*) "getdefaultencoding", NULL); Py_DECREF(sys); if (!default_encoding) goto bad; default_encoding_c = PyBytes_AsString(default_encoding); if (!default_encoding_c) goto bad; __PYX_DEFAULT_STRING_ENCODING = (char*) malloc(strlen(default_encoding_c) + 1); if (!__PYX_DEFAULT_STRING_ENCODING) goto bad; strcpy(__PYX_DEFAULT_STRING_ENCODING, default_encoding_c); Py_DECREF(default_encoding); return 0; bad: Py_XDECREF(default_encoding); return -1; } #endif #endif /* Test for GCC > 2.95 */ #if defined(__GNUC__) && (__GNUC__ > 2 || (__GNUC__ == 2 && (__GNUC_MINOR__ > 95))) #define likely(x) __builtin_expect(!!(x), 1) #define unlikely(x) __builtin_expect(!!(x), 0) #else /* !__GNUC__ or GCC < 2.95 */ #define likely(x) (x) #define unlikely(x) (x) #endif /* __GNUC__ */ static CYTHON_INLINE void __Pyx_pretend_to_initialize(void* ptr) { (void)ptr; } static PyObject *__pyx_m = NULL; static PyObject *__pyx_d; static PyObject *__pyx_b; static PyObject *__pyx_cython_runtime = NULL; static PyObject *__pyx_empty_tuple; static PyObject *__pyx_empty_bytes; static PyObject *__pyx_empty_unicode; static int __pyx_lineno; static int __pyx_clineno = 0; static const char * __pyx_cfilenm= __FILE__; static const char *__pyx_filename; /* Header.proto */ #if !defined(CYTHON_CCOMPLEX) #if defined(__cplusplus) #define CYTHON_CCOMPLEX 1 #elif defined(_Complex_I) #define CYTHON_CCOMPLEX 1 #else #define CYTHON_CCOMPLEX 0 #endif #endif #if CYTHON_CCOMPLEX #ifdef __cplusplus #include <complex> #else #include <complex.h> #endif #endif #if CYTHON_CCOMPLEX && !defined(__cplusplus) && defined(__sun__) && defined(__GNUC__) #undef _Complex_I #define _Complex_I 1.0fj #endif static const char *__pyx_f[] = { "hummingbot/market/kucoin/kucoin_order_book.pyx", "stringsource", "__init__.pxd", "type.pxd", "hummingbot/core/event/event_listener.pxd", "hummingbot/core/pubsub.pxd", "hummingbot/core/data_type/order_book_query_result.pxd", }; /* "../../miniconda3/envs/hummingbot/lib/python3.6/site-packages/Cython/Includes/numpy/__init__.pxd":776 * # in Cython to enable them only on the right systems. * * ctypedef npy_int8 int8_t # <<<<<<<<<<<<<< * ctypedef npy_int16 int16_t * ctypedef npy_int32 int32_t */ typedef npy_int8 __pyx_t_5numpy_int8_t; /* "../../miniconda3/envs/hummingbot/lib/python3.6/site-packages/Cython/Includes/numpy/__init__.pxd":777 * * ctypedef npy_int8 int8_t * ctypedef npy_int16 int16_t # <<<<<<<<<<<<<< * ctypedef npy_int32 int32_t * ctypedef npy_int64 int64_t */ typedef npy_int16 __pyx_t_5numpy_int16_t; /* "../../miniconda3/envs/hummingbot/lib/python3.6/site-packages/Cython/Includes/numpy/__init__.pxd":778 * ctypedef npy_int8 int8_t * ctypedef npy_int16 int16_t * ctypedef npy_int32 int32_t # <<<<<<<<<<<<<< * ctypedef npy_int64 int64_t * #ctypedef npy_int96 int96_t */ typedef npy_int32 __pyx_t_5numpy_int32_t; /* "../../miniconda3/envs/hummingbot/lib/python3.6/site-packages/Cython/Includes/numpy/__init__.pxd":779 * ctypedef npy_int16 int16_t * ctypedef npy_int32 int32_t * ctypedef npy_int64 int64_t # <<<<<<<<<<<<<< * #ctypedef npy_int96 int96_t * #ctypedef npy_int128 int128_t */ typedef npy_int64 __pyx_t_5numpy_int64_t; /* "../../miniconda3/envs/hummingbot/lib/python3.6/site-packages/Cython/Includes/numpy/__init__.pxd":783 * #ctypedef npy_int128 int128_t * * ctypedef npy_uint8 uint8_t # <<<<<<<<<<<<<< * ctypedef npy_uint16 uint16_t * ctypedef npy_uint32 uint32_t */ typedef npy_uint8 __pyx_t_5numpy_uint8_t; /* "../../miniconda3/envs/hummingbot/lib/python3.6/site-packages/Cython/Includes/numpy/__init__.pxd":784 * * ctypedef npy_uint8 uint8_t * ctypedef npy_uint16 uint16_t # <<<<<<<<<<<<<< * ctypedef npy_uint32 uint32_t * ctypedef npy_uint64 uint64_t */ typedef npy_uint16 __pyx_t_5numpy_uint16_t; /* "../../miniconda3/envs/hummingbot/lib/python3.6/site-packages/Cython/Includes/numpy/__init__.pxd":785 * ctypedef npy_uint8 uint8_t * ctypedef npy_uint16 uint16_t * ctypedef npy_uint32 uint32_t # <<<<<<<<<<<<<< * ctypedef npy_uint64 uint64_t * #ctypedef npy_uint96 uint96_t */ typedef npy_uint32 __pyx_t_5numpy_uint32_t; /* "../../miniconda3/envs/hummingbot/lib/python3.6/site-packages/Cython/Includes/numpy/__init__.pxd":786 * ctypedef npy_uint16 uint16_t * ctypedef npy_uint32 uint32_t * ctypedef npy_uint64 uint64_t # <<<<<<<<<<<<<< * #ctypedef npy_uint96 uint96_t * #ctypedef npy_uint128 uint128_t */ typedef npy_uint64 __pyx_t_5numpy_uint64_t; /* "../../miniconda3/envs/hummingbot/lib/python3.6/site-packages/Cython/Includes/numpy/__init__.pxd":790 * #ctypedef npy_uint128 uint128_t * * ctypedef npy_float32 float32_t # <<<<<<<<<<<<<< * ctypedef npy_float64 float64_t * #ctypedef npy_float80 float80_t */ typedef npy_float32 __pyx_t_5numpy_float32_t; /* "../../miniconda3/envs/hummingbot/lib/python3.6/site-packages/Cython/Includes/numpy/__init__.pxd":791 * * ctypedef npy_float32 float32_t * ctypedef npy_float64 float64_t # <<<<<<<<<<<<<< * #ctypedef npy_float80 float80_t * #ctypedef npy_float128 float128_t */ typedef npy_float64 __pyx_t_5numpy_float64_t; /* "../../miniconda3/envs/hummingbot/lib/python3.6/site-packages/Cython/Includes/numpy/__init__.pxd":800 * # The int types are mapped a bit surprising -- * # numpy.int corresponds to 'l' and numpy.long to 'q' * ctypedef npy_long int_t # <<<<<<<<<<<<<< * ctypedef npy_longlong long_t * ctypedef npy_longlong longlong_t */ typedef npy_long __pyx_t_5numpy_int_t; /* "../../miniconda3/envs/hummingbot/lib/python3.6/site-packages/Cython/Includes/numpy/__init__.pxd":801 * # numpy.int corresponds to 'l' and numpy.long to 'q' * ctypedef npy_long int_t * ctypedef npy_longlong long_t # <<<<<<<<<<<<<< * ctypedef npy_longlong longlong_t * */ typedef npy_longlong __pyx_t_5numpy_long_t; /* "../../miniconda3/envs/hummingbot/lib/python3.6/site-packages/Cython/Includes/numpy/__init__.pxd":802 * ctypedef npy_long int_t * ctypedef npy_longlong long_t * ctypedef npy_longlong longlong_t # <<<<<<<<<<<<<< * * ctypedef npy_ulong uint_t */ typedef npy_longlong __pyx_t_5numpy_longlong_t; /* "../../miniconda3/envs/hummingbot/lib/python3.6/site-packages/Cython/Includes/numpy/__init__.pxd":804 * ctypedef npy_longlong longlong_t * * ctypedef npy_ulong uint_t # <<<<<<<<<<<<<< * ctypedef npy_ulonglong ulong_t * ctypedef npy_ulonglong ulonglong_t */ typedef npy_ulong __pyx_t_5numpy_uint_t; /* "../../miniconda3/envs/hummingbot/lib/python3.6/site-packages/Cython/Includes/numpy/__init__.pxd":805 * * ctypedef npy_ulong uint_t * ctypedef npy_ulonglong ulong_t # <<<<<<<<<<<<<< * ctypedef npy_ulonglong ulonglong_t * */ typedef npy_ulonglong __pyx_t_5numpy_ulong_t; /* "../../miniconda3/envs/hummingbot/lib/python3.6/site-packages/Cython/Includes/numpy/__init__.pxd":806 * ctypedef npy_ulong uint_t * ctypedef npy_ulonglong ulong_t * ctypedef npy_ulonglong ulonglong_t # <<<<<<<<<<<<<< * * ctypedef npy_intp intp_t */ typedef npy_ulonglong __pyx_t_5numpy_ulonglong_t; /* "../../miniconda3/envs/hummingbot/lib/python3.6/site-packages/Cython/Includes/numpy/__init__.pxd":808 * ctypedef npy_ulonglong ulonglong_t * * ctypedef npy_intp intp_t # <<<<<<<<<<<<<< * ctypedef npy_uintp uintp_t * */ typedef npy_intp __pyx_t_5numpy_intp_t; /* "../../miniconda3/envs/hummingbot/lib/python3.6/site-packages/Cython/Includes/numpy/__init__.pxd":809 * * ctypedef npy_intp intp_t * ctypedef npy_uintp uintp_t # <<<<<<<<<<<<<< * * ctypedef npy_double float_t */ typedef npy_uintp __pyx_t_5numpy_uintp_t; /* "../../miniconda3/envs/hummingbot/lib/python3.6/site-packages/Cython/Includes/numpy/__init__.pxd":811 * ctypedef npy_uintp uintp_t * * ctypedef npy_double float_t # <<<<<<<<<<<<<< * ctypedef npy_double double_t * ctypedef npy_longdouble longdouble_t */ typedef npy_double __pyx_t_5numpy_float_t; /* "../../miniconda3/envs/hummingbot/lib/python3.6/site-packages/Cython/Includes/numpy/__init__.pxd":812 * * ctypedef npy_double float_t * ctypedef npy_double double_t # <<<<<<<<<<<<<< * ctypedef npy_longdouble longdouble_t * */ typedef npy_double __pyx_t_5numpy_double_t; /* "../../miniconda3/envs/hummingbot/lib/python3.6/site-packages/Cython/Includes/numpy/__init__.pxd":813 * ctypedef npy_double float_t * ctypedef npy_double double_t * ctypedef npy_longdouble longdouble_t # <<<<<<<<<<<<<< * * ctypedef npy_cfloat cfloat_t */ typedef npy_longdouble __pyx_t_5numpy_longdouble_t; /* Declarations.proto */ #if CYTHON_CCOMPLEX #ifdef __cplusplus typedef ::std::complex< float > __pyx_t_float_complex; #else typedef float _Complex __pyx_t_float_complex; #endif #else typedef struct { float real, imag; } __pyx_t_float_complex; #endif static CYTHON_INLINE __pyx_t_float_complex __pyx_t_float_complex_from_parts(float, float); /* Declarations.proto */ #if CYTHON_CCOMPLEX #ifdef __cplusplus typedef ::std::complex< double > __pyx_t_double_complex; #else typedef double _Complex __pyx_t_double_complex; #endif #else typedef struct { double real, imag; } __pyx_t_double_complex; #endif static CYTHON_INLINE __pyx_t_double_complex __pyx_t_double_complex_from_parts(double, double); /*--- Type declarations ---*/ struct __pyx_obj_10hummingbot_4core_5event_14event_listener_EventListener; struct __pyx_obj_10hummingbot_4core_6pubsub_PubSub; struct __pyx_obj_10hummingbot_4core_9data_type_23order_book_query_result_OrderBookQueryResult; struct __pyx_obj_10hummingbot_4core_9data_type_23order_book_query_result_ClientOrderBookQueryResult; struct __pyx_obj_10hummingbot_4core_9data_type_10order_book_OrderBook; struct __pyx_obj_10hummingbot_6market_6kucoin_17kucoin_order_book_KucoinOrderBook; /* "../../miniconda3/envs/hummingbot/lib/python3.6/site-packages/Cython/Includes/numpy/__init__.pxd":815 * ctypedef npy_longdouble longdouble_t * * ctypedef npy_cfloat cfloat_t # <<<<<<<<<<<<<< * ctypedef npy_cdouble cdouble_t * ctypedef npy_clongdouble clongdouble_t */ typedef npy_cfloat __pyx_t_5numpy_cfloat_t; /* "../../miniconda3/envs/hummingbot/lib/python3.6/site-packages/Cython/Includes/numpy/__init__.pxd":816 * * ctypedef npy_cfloat cfloat_t * ctypedef npy_cdouble cdouble_t # <<<<<<<<<<<<<< * ctypedef npy_clongdouble clongdouble_t * */ typedef npy_cdouble __pyx_t_5numpy_cdouble_t; /* "../../miniconda3/envs/hummingbot/lib/python3.6/site-packages/Cython/Includes/numpy/__init__.pxd":817 * ctypedef npy_cfloat cfloat_t * ctypedef npy_cdouble cdouble_t * ctypedef npy_clongdouble clongdouble_t # <<<<<<<<<<<<<< * * ctypedef npy_cdouble complex_t */ typedef npy_clongdouble __pyx_t_5numpy_clongdouble_t; /* "../../miniconda3/envs/hummingbot/lib/python3.6/site-packages/Cython/Includes/numpy/__init__.pxd":819 * ctypedef npy_clongdouble clongdouble_t * * ctypedef npy_cdouble complex_t # <<<<<<<<<<<<<< * * cdef inline object PyArray_MultiIterNew1(a): */ typedef npy_cdouble __pyx_t_5numpy_complex_t; /* "hummingbot/core/pubsub.pxd":10 * from hummingbot.core.event.event_listener cimport EventListener * * ctypedef unordered_set[PyRef] EventListenersCollection # <<<<<<<<<<<<<< * ctypedef unordered_set[PyRef].iterator EventListenersIterator * ctypedef unordered_map[int64_t, EventListenersCollection] Events */ typedef std::unordered_set<PyRef> __pyx_t_10hummingbot_4core_6pubsub_EventListenersCollection; /* "hummingbot/core/pubsub.pxd":11 * * ctypedef unordered_set[PyRef] EventListenersCollection * ctypedef unordered_set[PyRef].iterator EventListenersIterator # <<<<<<<<<<<<<< * ctypedef unordered_map[int64_t, EventListenersCollection] Events * ctypedef unordered_map[int64_t, EventListenersCollection].iterator EventsIterator */ typedef std::unordered_set<PyRef> ::iterator __pyx_t_10hummingbot_4core_6pubsub_EventListenersIterator; /* "hummingbot/core/pubsub.pxd":12 * ctypedef unordered_set[PyRef] EventListenersCollection * ctypedef unordered_set[PyRef].iterator EventListenersIterator * ctypedef unordered_map[int64_t, EventListenersCollection] Events # <<<<<<<<<<<<<< * ctypedef unordered_map[int64_t, EventListenersCollection].iterator EventsIterator * ctypedef pair[int64_t, EventListenersCollection] EventsPair */ typedef std::unordered_map<int64_t,__pyx_t_10hummingbot_4core_6pubsub_EventListenersCollection> __pyx_t_10hummingbot_4core_6pubsub_Events; /* "hummingbot/core/pubsub.pxd":13 * ctypedef unordered_set[PyRef].iterator EventListenersIterator * ctypedef unordered_map[int64_t, EventListenersCollection] Events * ctypedef unordered_map[int64_t, EventListenersCollection].iterator EventsIterator # <<<<<<<<<<<<<< * ctypedef pair[int64_t, EventListenersCollection] EventsPair * */ typedef std::unordered_map<int64_t,__pyx_t_10hummingbot_4core_6pubsub_EventListenersCollection> ::iterator __pyx_t_10hummingbot_4core_6pubsub_EventsIterator; /* "hummingbot/core/pubsub.pxd":14 * ctypedef unordered_map[int64_t, EventListenersCollection] Events * ctypedef unordered_map[int64_t, EventListenersCollection].iterator EventsIterator * ctypedef pair[int64_t, EventListenersCollection] EventsPair # <<<<<<<<<<<<<< * * */ typedef std::pair<int64_t,__pyx_t_10hummingbot_4core_6pubsub_EventListenersCollection> __pyx_t_10hummingbot_4core_6pubsub_EventsPair; /* "hummingbot/core/event/event_listener.pxd":6 * * * cdef class EventListener: # <<<<<<<<<<<<<< * cdef: * object __weakref__ */ struct __pyx_obj_10hummingbot_4core_5event_14event_listener_EventListener { PyObject_HEAD struct __pyx_vtabstruct_10hummingbot_4core_5event_14event_listener_EventListener *__pyx_vtab; PyObject *__weakref__; int64_t _current_event_tag; struct __pyx_obj_10hummingbot_4core_6pubsub_PubSub *_current_event_caller; }; /* "hummingbot/core/pubsub.pxd":17 * * * cdef class PubSub: # <<<<<<<<<<<<<< * cdef: * Events _events */ struct __pyx_obj_10hummingbot_4core_6pubsub_PubSub { PyObject_HEAD struct __pyx_vtabstruct_10hummingbot_4core_6pubsub_PubSub *__pyx_vtab; __pyx_t_10hummingbot_4core_6pubsub_Events _events; PyObject *__weakref__; }; /* "order_book_query_result.pxd":3 * # distutils: language=c++ * * cdef class OrderBookQueryResult: # <<<<<<<<<<<<<< * cdef: * public double query_price */ struct __pyx_obj_10hummingbot_4core_9data_type_23order_book_query_result_OrderBookQueryResult { PyObject_HEAD double query_price; double query_volume; double result_price; double result_volume; }; /* "order_book_query_result.pxd":11 * * * cdef class ClientOrderBookQueryResult: # <<<<<<<<<<<<<< * cdef: * public object query_price */ struct __pyx_obj_10hummingbot_4core_9data_type_23order_book_query_result_ClientOrderBookQueryResult { PyObject_HEAD PyObject *query_price; PyObject *query_volume; PyObject *result_price; PyObject *result_volume; }; /* "hummingbot/core/data_type/order_book.pxd":12 * from .order_book_query_result cimport OrderBookQueryResult * * cdef class OrderBook(PubSub): # <<<<<<<<<<<<<< * cdef set[OrderBookEntry] _bid_book * cdef set[OrderBookEntry] _ask_book */ struct __pyx_obj_10hummingbot_4core_9data_type_10order_book_OrderBook { struct __pyx_obj_10hummingbot_4core_6pubsub_PubSub __pyx_base; std::set<OrderBookEntry> _bid_book; std::set<OrderBookEntry> _ask_book; int64_t _snapshot_uid; int64_t _last_diff_uid; double _best_bid; double _best_ask; int _dex; }; /* "hummingbot/market/kucoin/kucoin_order_book.pxd":3 * from hummingbot.core.data_type.order_book cimport OrderBook * * cdef class KucoinOrderBook(OrderBook): # <<<<<<<<<<<<<< * pass */ struct __pyx_obj_10hummingbot_6market_6kucoin_17kucoin_order_book_KucoinOrderBook { struct __pyx_obj_10hummingbot_4core_9data_type_10order_book_OrderBook __pyx_base; }; /* "hummingbot/core/event/event_listener.pxd":6 * * * cdef class EventListener: # <<<<<<<<<<<<<< * cdef: * object __weakref__ */ struct __pyx_vtabstruct_10hummingbot_4core_5event_14event_listener_EventListener { PyObject *(*c_set_event_info)(struct __pyx_obj_10hummingbot_4core_5event_14event_listener_EventListener *, int64_t, struct __pyx_obj_10hummingbot_4core_6pubsub_PubSub *); PyObject *(*c_call)(struct __pyx_obj_10hummingbot_4core_5event_14event_listener_EventListener *, PyObject *); }; static struct __pyx_vtabstruct_10hummingbot_4core_5event_14event_listener_EventListener *__pyx_vtabptr_10hummingbot_4core_5event_14event_listener_EventListener; /* "hummingbot/core/pubsub.pxd":17 * * * cdef class PubSub: # <<<<<<<<<<<<<< * cdef: * Events _events */ struct __pyx_vtabstruct_10hummingbot_4core_6pubsub_PubSub { PyObject *(*c_log_exception)(struct __pyx_obj_10hummingbot_4core_6pubsub_PubSub *, int64_t, PyObject *); PyObject *(*c_add_listener)(struct __pyx_obj_10hummingbot_4core_6pubsub_PubSub *, int64_t, struct __pyx_obj_10hummingbot_4core_5event_14event_listener_EventListener *); PyObject *(*c_remove_listener)(struct __pyx_obj_10hummingbot_4core_6pubsub_PubSub *, int64_t, struct __pyx_obj_10hummingbot_4core_5event_14event_listener_EventListener *); PyObject *(*c_remove_dead_listeners)(struct __pyx_obj_10hummingbot_4core_6pubsub_PubSub *, int64_t); PyObject *(*c_get_listeners)(struct __pyx_obj_10hummingbot_4core_6pubsub_PubSub *, int64_t); PyObject *(*c_trigger_event)(struct __pyx_obj_10hummingbot_4core_6pubsub_PubSub *, int64_t, PyObject *); }; static struct __pyx_vtabstruct_10hummingbot_4core_6pubsub_PubSub *__pyx_vtabptr_10hummingbot_4core_6pubsub_PubSub; /* "hummingbot/core/data_type/order_book.pxd":12 * from .order_book_query_result cimport OrderBookQueryResult * * cdef class OrderBook(PubSub): # <<<<<<<<<<<<<< * cdef set[OrderBookEntry] _bid_book * cdef set[OrderBookEntry] _ask_book */ struct __pyx_vtabstruct_10hummingbot_4core_9data_type_10order_book_OrderBook { struct __pyx_vtabstruct_10hummingbot_4core_6pubsub_PubSub __pyx_base; PyObject *(*c_apply_diffs)(struct __pyx_obj_10hummingbot_4core_9data_type_10order_book_OrderBook *, std::vector<OrderBookEntry> , std::vector<OrderBookEntry> , int64_t); PyObject *(*c_apply_snapshot)(struct __pyx_obj_10hummingbot_4core_9data_type_10order_book_OrderBook *, std::vector<OrderBookEntry> , std::vector<OrderBookEntry> , int64_t); PyObject *(*c_apply_trade)(struct __pyx_obj_10hummingbot_4core_9data_type_10order_book_OrderBook *, PyObject *); PyObject *(*c_apply_numpy_diffs)(struct __pyx_obj_10hummingbot_4core_9data_type_10order_book_OrderBook *, PyArrayObject *, PyArrayObject *); PyObject *(*c_apply_numpy_snapshot)(struct __pyx_obj_10hummingbot_4core_9data_type_10order_book_OrderBook *, PyArrayObject *, PyArrayObject *); double (*c_get_price)(struct __pyx_obj_10hummingbot_4core_9data_type_10order_book_OrderBook *, int); struct __pyx_obj_10hummingbot_4core_9data_type_23order_book_query_result_OrderBookQueryResult *(*c_get_price_for_volume)(struct __pyx_obj_10hummingbot_4core_9data_type_10order_book_OrderBook *, int, double); struct __pyx_obj_10hummingbot_4core_9data_type_23order_book_query_result_OrderBookQueryResult *(*c_get_price_for_quote_volume)(struct __pyx_obj_10hummingbot_4core_9data_type_10order_book_OrderBook *, int, double); struct __pyx_obj_10hummingbot_4core_9data_type_23order_book_query_result_OrderBookQueryResult *(*c_get_volume_for_price)(struct __pyx_obj_10hummingbot_4core_9data_type_10order_book_OrderBook *, int, double); struct __pyx_obj_10hummingbot_4core_9data_type_23order_book_query_result_OrderBookQueryResult *(*c_get_quote_volume_for_price)(struct __pyx_obj_10hummingbot_4core_9data_type_10order_book_OrderBook *, int, double); struct __pyx_obj_10hummingbot_4core_9data_type_23order_book_query_result_OrderBookQueryResult *(*c_get_vwap_for_volume)(struct __pyx_obj_10hummingbot_4core_9data_type_10order_book_OrderBook *, int, double); struct __pyx_obj_10hummingbot_4core_9data_type_23order_book_query_result_OrderBookQueryResult *(*c_get_quote_volume_for_base_amount)(struct __pyx_obj_10hummingbot_4core_9data_type_10order_book_OrderBook *, int, double); }; static struct __pyx_vtabstruct_10hummingbot_4core_9data_type_10order_book_OrderBook *__pyx_vtabptr_10hummingbot_4core_9data_type_10order_book_OrderBook; /* "hummingbot/market/kucoin/kucoin_order_book.pyx":24 * * * cdef class KucoinOrderBook(OrderBook): # <<<<<<<<<<<<<< * @classmethod * def logger(cls) -> HummingbotLogger: */ struct __pyx_vtabstruct_10hummingbot_6market_6kucoin_17kucoin_order_book_KucoinOrderBook { struct __pyx_vtabstruct_10hummingbot_4core_9data_type_10order_book_OrderBook __pyx_base; }; static struct __pyx_vtabstruct_10hummingbot_6market_6kucoin_17kucoin_order_book_KucoinOrderBook *__pyx_vtabptr_10hummingbot_6market_6kucoin_17kucoin_order_book_KucoinOrderBook; /* --- Runtime support code (head) --- */ /* Refnanny.proto */ #ifndef CYTHON_REFNANNY #define CYTHON_REFNANNY 0 #endif #if CYTHON_REFNANNY typedef struct { void (*INCREF)(void*, PyObject*, int); void (*DECREF)(void*, PyObject*, int); void (*GOTREF)(void*, PyObject*, int); void (*GIVEREF)(void*, PyObject*, int); void* (*SetupContext)(const char*, int, const char*); void (*FinishContext)(void**); } __Pyx_RefNannyAPIStruct; static __Pyx_RefNannyAPIStruct *__Pyx_RefNanny = NULL; static __Pyx_RefNannyAPIStruct *__Pyx_RefNannyImportAPI(const char *modname); #define __Pyx_RefNannyDeclarations void *__pyx_refnanny = NULL; #ifdef WITH_THREAD #define __Pyx_RefNannySetupContext(name, acquire_gil)\ if (acquire_gil) {\ PyGILState_STATE __pyx_gilstate_save = PyGILState_Ensure();\ __pyx_refnanny = __Pyx_RefNanny->SetupContext((name), __LINE__, __FILE__);\ PyGILState_Release(__pyx_gilstate_save);\ } else {\ __pyx_refnanny = __Pyx_RefNanny->SetupContext((name), __LINE__, __FILE__);\ } #else #define __Pyx_RefNannySetupContext(name, acquire_gil)\ __pyx_refnanny = __Pyx_RefNanny->SetupContext((name), __LINE__, __FILE__) #endif #define __Pyx_RefNannyFinishContext()\ __Pyx_RefNanny->FinishContext(&__pyx_refnanny) #define __Pyx_INCREF(r) __Pyx_RefNanny->INCREF(__pyx_refnanny, (PyObject *)(r), __LINE__) #define __Pyx_DECREF(r) __Pyx_RefNanny->DECREF(__pyx_refnanny, (PyObject *)(r), __LINE__) #define __Pyx_GOTREF(r) __Pyx_RefNanny->GOTREF(__pyx_refnanny, (PyObject *)(r), __LINE__) #define __Pyx_GIVEREF(r) __Pyx_RefNanny->GIVEREF(__pyx_refnanny, (PyObject *)(r), __LINE__) #define __Pyx_XINCREF(r) do { if((r) != NULL) {__Pyx_INCREF(r); }} while(0) #define __Pyx_XDECREF(r) do { if((r) != NULL) {__Pyx_DECREF(r); }} while(0) #define __Pyx_XGOTREF(r) do { if((r) != NULL) {__Pyx_GOTREF(r); }} while(0) #define __Pyx_XGIVEREF(r) do { if((r) != NULL) {__Pyx_GIVEREF(r);}} while(0) #else #define __Pyx_RefNannyDeclarations #define __Pyx_RefNannySetupContext(name, acquire_gil) #define __Pyx_RefNannyFinishContext() #define __Pyx_INCREF(r) Py_INCREF(r) #define __Pyx_DECREF(r) Py_DECREF(r) #define __Pyx_GOTREF(r) #define __Pyx_GIVEREF(r) #define __Pyx_XINCREF(r) Py_XINCREF(r) #define __Pyx_XDECREF(r) Py_XDECREF(r) #define __Pyx_XGOTREF(r) #define __Pyx_XGIVEREF(r) #endif #define __Pyx_XDECREF_SET(r, v) do {\ PyObject *tmp = (PyObject *) r;\ r = v; __Pyx_XDECREF(tmp);\ } while (0) #define __Pyx_DECREF_SET(r, v) do {\ PyObject *tmp = (PyObject *) r;\ r = v; __Pyx_DECREF(tmp);\ } while (0) #define __Pyx_CLEAR(r) do { PyObject* tmp = ((PyObject*)(r)); r = NULL; __Pyx_DECREF(tmp);} while(0) #define __Pyx_XCLEAR(r) do { if((r) != NULL) {PyObject* tmp = ((PyObject*)(r)); r = NULL; __Pyx_DECREF(tmp);}} while(0) /* PyObjectGetAttrStr.proto */ #if CYTHON_USE_TYPE_SLOTS static CYTHON_INLINE PyObject* __Pyx_PyObject_GetAttrStr(PyObject* obj, PyObject* attr_name); #else #define __Pyx_PyObject_GetAttrStr(o,n) PyObject_GetAttr(o,n) #endif /* GetBuiltinName.proto */ static PyObject *__Pyx_GetBuiltinName(PyObject *name); /* PyDictVersioning.proto */ #if CYTHON_USE_DICT_VERSIONS #define __PYX_DICT_VERSION_INIT ((PY_UINT64_T) -1) #define __PYX_GET_DICT_VERSION(dict) (((PyDictObject*)(dict))->ma_version_tag) #define __PYX_UPDATE_DICT_CACHE(dict, value, cache_var, version_var)\ (version_var) = __PYX_GET_DICT_VERSION(dict);\ (cache_var) = (value); #define __PYX_PY_DICT_LOOKUP_IF_MODIFIED(VAR, DICT, LOOKUP) {\ static PY_UINT64_T __pyx_dict_version = 0;\ static PyObject *__pyx_dict_cached_value = NULL;\ if (likely(__PYX_GET_DICT_VERSION(DICT) == __pyx_dict_version)) {\ (VAR) = __pyx_dict_cached_value;\ } else {\ (VAR) = __pyx_dict_cached_value = (LOOKUP);\ __pyx_dict_version = __PYX_GET_DICT_VERSION(DICT);\ }\ } static CYTHON_INLINE PY_UINT64_T __Pyx_get_tp_dict_version(PyObject *obj); static CYTHON_INLINE PY_UINT64_T __Pyx_get_object_dict_version(PyObject *obj); static CYTHON_INLINE int __Pyx_object_dict_version_matches(PyObject* obj, PY_UINT64_T tp_dict_version, PY_UINT64_T obj_dict_version); #else #define __PYX_GET_DICT_VERSION(dict) (0) #define __PYX_UPDATE_DICT_CACHE(dict, value, cache_var, version_var) #define __PYX_PY_DICT_LOOKUP_IF_MODIFIED(VAR, DICT, LOOKUP) (VAR) = (LOOKUP); #endif /* GetModuleGlobalName.proto */ #if CYTHON_USE_DICT_VERSIONS #define __Pyx_GetModuleGlobalName(var, name) {\ static PY_UINT64_T __pyx_dict_version = 0;\ static PyObject *__pyx_dict_cached_value = NULL;\ (var) = (likely(__pyx_dict_version == __PYX_GET_DICT_VERSION(__pyx_d))) ?\ (likely(__pyx_dict_cached_value) ? __Pyx_NewRef(__pyx_dict_cached_value) : __Pyx_GetBuiltinName(name)) :\ __Pyx__GetModuleGlobalName(name, &__pyx_dict_version, &__pyx_dict_cached_value);\ } #define __Pyx_GetModuleGlobalNameUncached(var, name) {\ PY_UINT64_T __pyx_dict_version;\ PyObject *__pyx_dict_cached_value;\ (var) = __Pyx__GetModuleGlobalName(name, &__pyx_dict_version, &__pyx_dict_cached_value);\ } static PyObject *__Pyx__GetModuleGlobalName(PyObject *name, PY_UINT64_T *dict_version, PyObject **dict_cached_value); #else #define __Pyx_GetModuleGlobalName(var, name) (var) = __Pyx__GetModuleGlobalName(name) #define __Pyx_GetModuleGlobalNameUncached(var, name) (var) = __Pyx__GetModuleGlobalName(name) static CYTHON_INLINE PyObject *__Pyx__GetModuleGlobalName(PyObject *name); #endif /* PyCFunctionFastCall.proto */ #if CYTHON_FAST_PYCCALL static CYTHON_INLINE PyObject *__Pyx_PyCFunction_FastCall(PyObject *func, PyObject **args, Py_ssize_t nargs); #else #define __Pyx_PyCFunction_FastCall(func, args, nargs) (assert(0), NULL) #endif /* PyFunctionFastCall.proto */ #if CYTHON_FAST_PYCALL #define __Pyx_PyFunction_FastCall(func, args, nargs)\ __Pyx_PyFunction_FastCallDict((func), (args), (nargs), NULL) #if 1 || PY_VERSION_HEX < 0x030600B1 static PyObject *__Pyx_PyFunction_FastCallDict(PyObject *func, PyObject **args, int nargs, PyObject *kwargs); #else #define __Pyx_PyFunction_FastCallDict(func, args, nargs, kwargs) _PyFunction_FastCallDict(func, args, nargs, kwargs) #endif #define __Pyx_BUILD_ASSERT_EXPR(cond)\ (sizeof(char [1 - 2*!(cond)]) - 1) #ifndef Py_MEMBER_SIZE #define Py_MEMBER_SIZE(type, member) sizeof(((type *)0)->member) #endif static size_t __pyx_pyframe_localsplus_offset = 0; #include "frameobject.h" #define __Pxy_PyFrame_Initialize_Offsets()\ ((void)__Pyx_BUILD_ASSERT_EXPR(sizeof(PyFrameObject) == offsetof(PyFrameObject, f_localsplus) + Py_MEMBER_SIZE(PyFrameObject, f_localsplus)),\ (void)(__pyx_pyframe_localsplus_offset = ((size_t)PyFrame_Type.tp_basicsize) - Py_MEMBER_SIZE(PyFrameObject, f_localsplus))) #define __Pyx_PyFrame_GetLocalsplus(frame)\ (assert(__pyx_pyframe_localsplus_offset), (PyObject **)(((char *)(frame)) + __pyx_pyframe_localsplus_offset)) #endif /* PyObjectCall.proto */ #if CYTHON_COMPILING_IN_CPYTHON static CYTHON_INLINE PyObject* __Pyx_PyObject_Call(PyObject *func, PyObject *arg, PyObject *kw); #else #define __Pyx_PyObject_Call(func, arg, kw) PyObject_Call(func, arg, kw) #endif /* PyObjectCall2Args.proto */ static CYTHON_UNUSED PyObject* __Pyx_PyObject_Call2Args(PyObject* function, PyObject* arg1, PyObject* arg2); /* PyObjectCallMethO.proto */ #if CYTHON_COMPILING_IN_CPYTHON static CYTHON_INLINE PyObject* __Pyx_PyObject_CallMethO(PyObject *func, PyObject *arg); #endif /* PyObjectCallOneArg.proto */ static CYTHON_INLINE PyObject* __Pyx_PyObject_CallOneArg(PyObject *func, PyObject *arg); /* RaiseArgTupleInvalid.proto */ static void __Pyx_RaiseArgtupleInvalid(const char* func_name, int exact, Py_ssize_t num_min, Py_ssize_t num_max, Py_ssize_t num_found); /* RaiseDoubleKeywords.proto */ static void __Pyx_RaiseDoubleKeywordsError(const char* func_name, PyObject* kw_name); /* ParseKeywords.proto */ static int __Pyx_ParseOptionalKeywords(PyObject *kwds, PyObject **argnames[],\ PyObject *kwds2, PyObject *values[], Py_ssize_t num_pos_args,\ const char* function_name); /* DictGetItem.proto */ #if PY_MAJOR_VERSION >= 3 && !CYTHON_COMPILING_IN_PYPY static PyObject *__Pyx_PyDict_GetItem(PyObject *d, PyObject* key); #define __Pyx_PyObject_Dict_GetItem(obj, name)\ (likely(PyDict_CheckExact(obj)) ?\ __Pyx_PyDict_GetItem(obj, name) : PyObject_GetItem(obj, name)) #else #define __Pyx_PyDict_GetItem(d, key) PyObject_GetItem(d, key) #define __Pyx_PyObject_Dict_GetItem(obj, name) PyObject_GetItem(obj, name) #endif /* IncludeStringH.proto */ #include <string.h> /* BytesEquals.proto */ static CYTHON_INLINE int __Pyx_PyBytes_Equals(PyObject* s1, PyObject* s2, int equals); /* UnicodeEquals.proto */ static CYTHON_INLINE int __Pyx_PyUnicode_Equals(PyObject* s1, PyObject* s2, int equals); /* PyObjectCallNoArg.proto */ #if CYTHON_COMPILING_IN_CPYTHON static CYTHON_INLINE PyObject* __Pyx_PyObject_CallNoArg(PyObject *func); #else #define __Pyx_PyObject_CallNoArg(func) __Pyx_PyObject_Call(func, __pyx_empty_tuple, NULL) #endif /* PyThreadStateGet.proto */ #if CYTHON_FAST_THREAD_STATE #define __Pyx_PyThreadState_declare PyThreadState *__pyx_tstate; #define __Pyx_PyThreadState_assign __pyx_tstate = __Pyx_PyThreadState_Current; #define __Pyx_PyErr_Occurred() __pyx_tstate->curexc_type #else #define __Pyx_PyThreadState_declare #define __Pyx_PyThreadState_assign #define __Pyx_PyErr_Occurred() PyErr_Occurred() #endif /* PyErrFetchRestore.proto */ #if CYTHON_FAST_THREAD_STATE #define __Pyx_PyErr_Clear() __Pyx_ErrRestore(NULL, NULL, NULL) #define __Pyx_ErrRestoreWithState(type, value, tb) __Pyx_ErrRestoreInState(PyThreadState_GET(), type, value, tb) #define __Pyx_ErrFetchWithState(type, value, tb) __Pyx_ErrFetchInState(PyThreadState_GET(), type, value, tb) #define __Pyx_ErrRestore(type, value, tb) __Pyx_ErrRestoreInState(__pyx_tstate, type, value, tb) #define __Pyx_ErrFetch(type, value, tb) __Pyx_ErrFetchInState(__pyx_tstate, type, value, tb) static CYTHON_INLINE void __Pyx_ErrRestoreInState(PyThreadState *tstate, PyObject *type, PyObject *value, PyObject *tb); static CYTHON_INLINE void __Pyx_ErrFetchInState(PyThreadState *tstate, PyObject **type, PyObject **value, PyObject **tb); #if CYTHON_COMPILING_IN_CPYTHON #define __Pyx_PyErr_SetNone(exc) (Py_INCREF(exc), __Pyx_ErrRestore((exc), NULL, NULL)) #else #define __Pyx_PyErr_SetNone(exc) PyErr_SetNone(exc) #endif #else #define __Pyx_PyErr_Clear() PyErr_Clear() #define __Pyx_PyErr_SetNone(exc) PyErr_SetNone(exc) #define __Pyx_ErrRestoreWithState(type, value, tb) PyErr_Restore(type, value, tb) #define __Pyx_ErrFetchWithState(type, value, tb) PyErr_Fetch(type, value, tb) #define __Pyx_ErrRestoreInState(tstate, type, value, tb) PyErr_Restore(type, value, tb) #define __Pyx_ErrFetchInState(tstate, type, value, tb) PyErr_Fetch(type, value, tb) #define __Pyx_ErrRestore(type, value, tb) PyErr_Restore(type, value, tb) #define __Pyx_ErrFetch(type, value, tb) PyErr_Fetch(type, value, tb) #endif /* RaiseException.proto */ static void __Pyx_Raise(PyObject *type, PyObject *value, PyObject *tb, PyObject *cause); /* RaiseTooManyValuesToUnpack.proto */ static CYTHON_INLINE void __Pyx_RaiseTooManyValuesError(Py_ssize_t expected); /* RaiseNeedMoreValuesToUnpack.proto */ static CYTHON_INLINE void __Pyx_RaiseNeedMoreValuesError(Py_ssize_t index); /* RaiseNoneIterError.proto */ static CYTHON_INLINE void __Pyx_RaiseNoneNotIterableError(void); /* ExtTypeTest.proto */ static CYTHON_INLINE int __Pyx_TypeTest(PyObject *obj, PyTypeObject *type); /* GetTopmostException.proto */ #if CYTHON_USE_EXC_INFO_STACK static _PyErr_StackItem * __Pyx_PyErr_GetTopmostException(PyThreadState *tstate); #endif /* SaveResetException.proto */ #if CYTHON_FAST_THREAD_STATE #define __Pyx_ExceptionSave(type, value, tb) __Pyx__ExceptionSave(__pyx_tstate, type, value, tb) static CYTHON_INLINE void __Pyx__ExceptionSave(PyThreadState *tstate, PyObject **type, PyObject **value, PyObject **tb); #define __Pyx_ExceptionReset(type, value, tb) __Pyx__ExceptionReset(__pyx_tstate, type, value, tb) static CYTHON_INLINE void __Pyx__ExceptionReset(PyThreadState *tstate, PyObject *type, PyObject *value, PyObject *tb); #else #define __Pyx_ExceptionSave(type, value, tb) PyErr_GetExcInfo(type, value, tb) #define __Pyx_ExceptionReset(type, value, tb) PyErr_SetExcInfo(type, value, tb) #endif /* PyErrExceptionMatches.proto */ #if CYTHON_FAST_THREAD_STATE #define __Pyx_PyErr_ExceptionMatches(err) __Pyx_PyErr_ExceptionMatchesInState(__pyx_tstate, err) static CYTHON_INLINE int __Pyx_PyErr_ExceptionMatchesInState(PyThreadState* tstate, PyObject* err); #else #define __Pyx_PyErr_ExceptionMatches(err) PyErr_ExceptionMatches(err) #endif /* GetException.proto */ #if CYTHON_FAST_THREAD_STATE #define __Pyx_GetException(type, value, tb) __Pyx__GetException(__pyx_tstate, type, value, tb) static int __Pyx__GetException(PyThreadState *tstate, PyObject **type, PyObject **value, PyObject **tb); #else static int __Pyx_GetException(PyObject **type, PyObject **value, PyObject **tb); #endif /* CallNextTpDealloc.proto */ static void __Pyx_call_next_tp_dealloc(PyObject* obj, destructor current_tp_dealloc); /* TypeImport.proto */ #ifndef __PYX_HAVE_RT_ImportType_proto #define __PYX_HAVE_RT_ImportType_proto enum __Pyx_ImportType_CheckSize { __Pyx_ImportType_CheckSize_Error = 0, __Pyx_ImportType_CheckSize_Warn = 1, __Pyx_ImportType_CheckSize_Ignore = 2 }; static PyTypeObject *__Pyx_ImportType(PyObject* module, const char *module_name, const char *class_name, size_t size, enum __Pyx_ImportType_CheckSize check_size); #endif /* GetVTable.proto */ static void* __Pyx_GetVtable(PyObject *dict); /* PyObject_GenericGetAttrNoDict.proto */ #if CYTHON_USE_TYPE_SLOTS && CYTHON_USE_PYTYPE_LOOKUP && PY_VERSION_HEX < 0x03070000 static CYTHON_INLINE PyObject* __Pyx_PyObject_GenericGetAttrNoDict(PyObject* obj, PyObject* attr_name); #else #define __Pyx_PyObject_GenericGetAttrNoDict PyObject_GenericGetAttr #endif /* PyObject_GenericGetAttr.proto */ #if CYTHON_USE_TYPE_SLOTS && CYTHON_USE_PYTYPE_LOOKUP && PY_VERSION_HEX < 0x03070000 static PyObject* __Pyx_PyObject_GenericGetAttr(PyObject* obj, PyObject* attr_name); #else #define __Pyx_PyObject_GenericGetAttr PyObject_GenericGetAttr #endif /* SetVTable.proto */ static int __Pyx_SetVtable(PyObject *dict, void *vtable); /* SetupReduce.proto */ static int __Pyx_setup_reduce(PyObject* type_obj); /* Import.proto */ static PyObject *__Pyx_Import(PyObject *name, PyObject *from_list, int level); /* ImportFrom.proto */ static PyObject* __Pyx_ImportFrom(PyObject* module, PyObject* name); /* ClassMethod.proto */ #include "descrobject.h" static PyObject* __Pyx_Method_ClassMethod(PyObject *method); /* GetNameInClass.proto */ #define __Pyx_GetNameInClass(var, nmspace, name) (var) = __Pyx__GetNameInClass(nmspace, name) static PyObject *__Pyx__GetNameInClass(PyObject *nmspace, PyObject *name); /* CLineInTraceback.proto */ #ifdef CYTHON_CLINE_IN_TRACEBACK #define __Pyx_CLineForTraceback(tstate, c_line) (((CYTHON_CLINE_IN_TRACEBACK)) ? c_line : 0) #else static int __Pyx_CLineForTraceback(PyThreadState *tstate, int c_line); #endif /* CodeObjectCache.proto */ typedef struct { PyCodeObject* code_object; int code_line; } __Pyx_CodeObjectCacheEntry; struct __Pyx_CodeObjectCache { int count; int max_count; __Pyx_CodeObjectCacheEntry* entries; }; static struct __Pyx_CodeObjectCache __pyx_code_cache = {0,0,NULL}; static int __pyx_bisect_code_objects(__Pyx_CodeObjectCacheEntry* entries, int count, int code_line); static PyCodeObject *__pyx_find_code_object(int code_line); static void __pyx_insert_code_object(int code_line, PyCodeObject* code_object); /* AddTraceback.proto */ static void __Pyx_AddTraceback(const char *funcname, int c_line, int py_line, const char *filename); /* RealImag.proto */ #if CYTHON_CCOMPLEX #ifdef __cplusplus #define __Pyx_CREAL(z) ((z).real()) #define __Pyx_CIMAG(z) ((z).imag()) #else #define __Pyx_CREAL(z) (__real__(z)) #define __Pyx_CIMAG(z) (__imag__(z)) #endif #else #define __Pyx_CREAL(z) ((z).real) #define __Pyx_CIMAG(z) ((z).imag) #endif #if defined(__cplusplus) && CYTHON_CCOMPLEX\ && (defined(_WIN32) || defined(__clang__) || (defined(__GNUC__) && (__GNUC__ >= 5 || __GNUC__ == 4 && __GNUC_MINOR__ >= 4 )) || __cplusplus >= 201103) #define __Pyx_SET_CREAL(z,x) ((z).real(x)) #define __Pyx_SET_CIMAG(z,y) ((z).imag(y)) #else #define __Pyx_SET_CREAL(z,x) __Pyx_CREAL(z) = (x) #define __Pyx_SET_CIMAG(z,y) __Pyx_CIMAG(z) = (y) #endif /* Arithmetic.proto */ #if CYTHON_CCOMPLEX #define __Pyx_c_eq_float(a, b) ((a)==(b)) #define __Pyx_c_sum_float(a, b) ((a)+(b)) #define __Pyx_c_diff_float(a, b) ((a)-(b)) #define __Pyx_c_prod_float(a, b) ((a)*(b)) #define __Pyx_c_quot_float(a, b) ((a)/(b)) #define __Pyx_c_neg_float(a) (-(a)) #ifdef __cplusplus #define __Pyx_c_is_zero_float(z) ((z)==(float)0) #define __Pyx_c_conj_float(z) (::std::conj(z)) #if 1 #define __Pyx_c_abs_float(z) (::std::abs(z)) #define __Pyx_c_pow_float(a, b) (::std::pow(a, b)) #endif #else #define __Pyx_c_is_zero_float(z) ((z)==0) #define __Pyx_c_conj_float(z) (conjf(z)) #if 1 #define __Pyx_c_abs_float(z) (cabsf(z)) #define __Pyx_c_pow_float(a, b) (cpowf(a, b)) #endif #endif #else static CYTHON_INLINE int __Pyx_c_eq_float(__pyx_t_float_complex, __pyx_t_float_complex); static CYTHON_INLINE __pyx_t_float_complex __Pyx_c_sum_float(__pyx_t_float_complex, __pyx_t_float_complex); static CYTHON_INLINE __pyx_t_float_complex __Pyx_c_diff_float(__pyx_t_float_complex, __pyx_t_float_complex); static CYTHON_INLINE __pyx_t_float_complex __Pyx_c_prod_float(__pyx_t_float_complex, __pyx_t_float_complex); static CYTHON_INLINE __pyx_t_float_complex __Pyx_c_quot_float(__pyx_t_float_complex, __pyx_t_float_complex); static CYTHON_INLINE __pyx_t_float_complex __Pyx_c_neg_float(__pyx_t_float_complex); static CYTHON_INLINE int __Pyx_c_is_zero_float(__pyx_t_float_complex); static CYTHON_INLINE __pyx_t_float_complex __Pyx_c_conj_float(__pyx_t_float_complex); #if 1 static CYTHON_INLINE float __Pyx_c_abs_float(__pyx_t_float_complex); static CYTHON_INLINE __pyx_t_float_complex __Pyx_c_pow_float(__pyx_t_float_complex, __pyx_t_float_complex); #endif #endif /* Arithmetic.proto */ #if CYTHON_CCOMPLEX #define __Pyx_c_eq_double(a, b) ((a)==(b)) #define __Pyx_c_sum_double(a, b) ((a)+(b)) #define __Pyx_c_diff_double(a, b) ((a)-(b)) #define __Pyx_c_prod_double(a, b) ((a)*(b)) #define __Pyx_c_quot_double(a, b) ((a)/(b)) #define __Pyx_c_neg_double(a) (-(a)) #ifdef __cplusplus #define __Pyx_c_is_zero_double(z) ((z)==(double)0) #define __Pyx_c_conj_double(z) (::std::conj(z)) #if 1 #define __Pyx_c_abs_double(z) (::std::abs(z)) #define __Pyx_c_pow_double(a, b) (::std::pow(a, b)) #endif #else #define __Pyx_c_is_zero_double(z) ((z)==0) #define __Pyx_c_conj_double(z) (conj(z)) #if 1 #define __Pyx_c_abs_double(z) (cabs(z)) #define __Pyx_c_pow_double(a, b) (cpow(a, b)) #endif #endif #else static CYTHON_INLINE int __Pyx_c_eq_double(__pyx_t_double_complex, __pyx_t_double_complex); static CYTHON_INLINE __pyx_t_double_complex __Pyx_c_sum_double(__pyx_t_double_complex, __pyx_t_double_complex); static CYTHON_INLINE __pyx_t_double_complex __Pyx_c_diff_double(__pyx_t_double_complex, __pyx_t_double_complex); static CYTHON_INLINE __pyx_t_double_complex __Pyx_c_prod_double(__pyx_t_double_complex, __pyx_t_double_complex); static CYTHON_INLINE __pyx_t_double_complex __Pyx_c_quot_double(__pyx_t_double_complex, __pyx_t_double_complex); static CYTHON_INLINE __pyx_t_double_complex __Pyx_c_neg_double(__pyx_t_double_complex); static CYTHON_INLINE int __Pyx_c_is_zero_double(__pyx_t_double_complex); static CYTHON_INLINE __pyx_t_double_complex __Pyx_c_conj_double(__pyx_t_double_complex); #if 1 static CYTHON_INLINE double __Pyx_c_abs_double(__pyx_t_double_complex); static CYTHON_INLINE __pyx_t_double_complex __Pyx_c_pow_double(__pyx_t_double_complex, __pyx_t_double_complex); #endif #endif /* CIntToPy.proto */ static CYTHON_INLINE PyObject* __Pyx_PyInt_From_int(int value); /* CIntToPy.proto */ static CYTHON_INLINE PyObject* __Pyx_PyInt_From_enum__NPY_TYPES(enum NPY_TYPES value); /* None.proto */ #include <new> /* CIntFromPy.proto */ static CYTHON_INLINE int __Pyx_PyInt_As_int(PyObject *); /* CIntToPy.proto */ static CYTHON_INLINE PyObject* __Pyx_PyInt_From_long(long value); /* CIntFromPy.proto */ static CYTHON_INLINE long __Pyx_PyInt_As_long(PyObject *); /* FastTypeChecks.proto */ #if CYTHON_COMPILING_IN_CPYTHON #define __Pyx_TypeCheck(obj, type) __Pyx_IsSubtype(Py_TYPE(obj), (PyTypeObject *)type) static CYTHON_INLINE int __Pyx_IsSubtype(PyTypeObject *a, PyTypeObject *b); static CYTHON_INLINE int __Pyx_PyErr_GivenExceptionMatches(PyObject *err, PyObject *type); static CYTHON_INLINE int __Pyx_PyErr_GivenExceptionMatches2(PyObject *err, PyObject *type1, PyObject *type2); #else #define __Pyx_TypeCheck(obj, type) PyObject_TypeCheck(obj, (PyTypeObject *)type) #define __Pyx_PyErr_GivenExceptionMatches(err, type) PyErr_GivenExceptionMatches(err, type) #define __Pyx_PyErr_GivenExceptionMatches2(err, type1, type2) (PyErr_GivenExceptionMatches(err, type1) || PyErr_GivenExceptionMatches(err, type2)) #endif #define __Pyx_PyException_Check(obj) __Pyx_TypeCheck(obj, PyExc_Exception) /* CheckBinaryVersion.proto */ static int __Pyx_check_binary_version(void); /* InitStrings.proto */ static int __Pyx_InitStrings(__Pyx_StringTabEntry *t); /* Module declarations from 'libc.stdint' */ /* Module declarations from 'libcpp.utility' */ /* Module declarations from 'libcpp.set' */ /* Module declarations from 'libcpp.vector' */ /* Module declarations from 'cpython.buffer' */ /* Module declarations from 'libc.string' */ /* Module declarations from 'libc.stdio' */ /* Module declarations from '__builtin__' */ /* Module declarations from 'cpython.type' */ static PyTypeObject *__pyx_ptype_7cpython_4type_type = 0; /* Module declarations from 'cpython' */ /* Module declarations from 'cpython.object' */ /* Module declarations from 'cpython.ref' */ /* Module declarations from 'cpython.mem' */ /* Module declarations from 'numpy' */ /* Module declarations from 'numpy' */ static PyTypeObject *__pyx_ptype_5numpy_dtype = 0; static PyTypeObject *__pyx_ptype_5numpy_flatiter = 0; static PyTypeObject *__pyx_ptype_5numpy_broadcast = 0; static PyTypeObject *__pyx_ptype_5numpy_ndarray = 0; static PyTypeObject *__pyx_ptype_5numpy_ufunc = 0; static CYTHON_INLINE char *__pyx_f_5numpy__util_dtypestring(PyArray_Descr *, char *, char *, int *); /*proto*/ /* Module declarations from 'hummingbot.core.data_type.OrderBookEntry' */ /* Module declarations from 'libcpp.unordered_map' */ /* Module declarations from 'libcpp.unordered_set' */ /* Module declarations from 'hummingbot.core.PyRef' */ /* Module declarations from 'hummingbot.core.event.event_listener' */ static PyTypeObject *__pyx_ptype_10hummingbot_4core_5event_14event_listener_EventListener = 0; /* Module declarations from 'hummingbot.core.pubsub' */ static PyTypeObject *__pyx_ptype_10hummingbot_4core_6pubsub_PubSub = 0; /* Module declarations from 'hummingbot.core.data_type.order_book_query_result' */ static PyTypeObject *__pyx_ptype_10hummingbot_4core_9data_type_23order_book_query_result_OrderBookQueryResult = 0; static PyTypeObject *__pyx_ptype_10hummingbot_4core_9data_type_23order_book_query_result_ClientOrderBookQueryResult = 0; /* Module declarations from 'hummingbot.core.data_type.order_book' */ static PyTypeObject *__pyx_ptype_10hummingbot_4core_9data_type_10order_book_OrderBook = 0; /* Module declarations from 'hummingbot.market.kucoin.kucoin_order_book' */ static PyTypeObject *__pyx_ptype_10hummingbot_6market_6kucoin_17kucoin_order_book_KucoinOrderBook = 0; #define __Pyx_MODULE_NAME "hummingbot.market.kucoin.kucoin_order_book" extern int __pyx_module_is_main_hummingbot__market__kucoin__kucoin_order_book; int __pyx_module_is_main_hummingbot__market__kucoin__kucoin_order_book = 0; /* Implementation of 'hummingbot.market.kucoin.kucoin_order_book' */ static PyObject *__pyx_builtin_any; static PyObject *__pyx_builtin_TypeError; static PyObject *__pyx_builtin_ValueError; static PyObject *__pyx_builtin_range; static PyObject *__pyx_builtin_RuntimeError; static PyObject *__pyx_builtin_ImportError; static const char __pyx_k_BUY[] = "BUY"; static const char __pyx_k_any[] = "any"; static const char __pyx_k_buy[] = "buy"; static const char __pyx_k_msg[] = "msg"; static const char __pyx_k_DIFF[] = "DIFF"; static const char __pyx_k_Dict[] = "Dict"; static const char __pyx_k_SELL[] = "SELL"; static const char __pyx_k_asks[] = "asks"; static const char __pyx_k_bids[] = "bids"; static const char __pyx_k_data[] = "data"; static const char __pyx_k_json[] = "json"; static const char __pyx_k_main[] = "__main__"; static const char __pyx_k_name[] = "__name__"; static const char __pyx_k_side[] = "side"; static const char __pyx_k_size[] = "size"; static const char __pyx_k_test[] = "__test__"; static const char __pyx_k_time[] = "time"; static const char __pyx_k_TRADE[] = "TRADE"; static const char __pyx_k_loads[] = "loads"; static const char __pyx_k_price[] = "price"; static const char __pyx_k_range[] = "range"; static const char __pyx_k_ujson[] = "ujson"; static const char __pyx_k_utf_8[] = "utf-8"; static const char __pyx_k_value[] = "value"; static const char __pyx_k_amount[] = "amount"; static const char __pyx_k_decode[] = "decode"; static const char __pyx_k_import[] = "__import__"; static const char __pyx_k_logger[] = "logger"; static const char __pyx_k_record[] = "record"; static const char __pyx_k_reduce[] = "__reduce__"; static const char __pyx_k_symbol[] = "symbol"; static const char __pyx_k_typing[] = "typing"; static const char __pyx_k_update[] = "update"; static const char __pyx_k_changes[] = "changes"; static const char __pyx_k_logging[] = "logging"; static const char __pyx_k_tradeId[] = "tradeId"; static const char __pyx_k_Optional[] = "Optional"; static const char __pyx_k_RowProxy[] = "RowProxy"; static const char __pyx_k_SNAPSHOT[] = "SNAPSHOT"; static const char __pyx_k_aiokafka[] = "aiokafka"; static const char __pyx_k_getstate[] = "__getstate__"; static const char __pyx_k_metadata[] = "metadata"; static const char __pyx_k_sequence[] = "sequence"; static const char __pyx_k_setstate[] = "__setstate__"; static const char __pyx_k_trade_id[] = "trade_id"; static const char __pyx_k_TradeType[] = "TradeType"; static const char __pyx_k_TypeError[] = "TypeError"; static const char __pyx_k_getLogger[] = "getLogger"; static const char __pyx_k_reduce_ex[] = "__reduce_ex__"; static const char __pyx_k_timestamp[] = "timestamp"; static const char __pyx_k_update_id[] = "update_id"; static const char __pyx_k_ValueError[] = "ValueError"; static const char __pyx_k_kob_logger[] = "_kob_logger"; static const char __pyx_k_pyx_vtable[] = "__pyx_vtable__"; static const char __pyx_k_trade_type[] = "trade_type"; static const char __pyx_k_ImportError[] = "ImportError"; static const char __pyx_k_sequenceEnd[] = "sequenceEnd"; static const char __pyx_k_RuntimeError[] = "RuntimeError"; static const char __pyx_k_trading_pair[] = "trading_pair"; static const char __pyx_k_from_snapshot[] = "from_snapshot"; static const char __pyx_k_reduce_cython[] = "__reduce_cython__"; static const char __pyx_k_ConsumerRecord[] = "ConsumerRecord"; static const char __pyx_k_apply_snapshot[] = "apply_snapshot"; static const char __pyx_k_KucoinOrderBook[] = "KucoinOrderBook"; static const char __pyx_k_setstate_cython[] = "__setstate_cython__"; static const char __pyx_k_HummingbotLogger[] = "HummingbotLogger"; static const char __pyx_k_OrderBookMessage[] = "OrderBookMessage"; static const char __pyx_k_hummingbot_logger[] = "hummingbot.logger"; static const char __pyx_k_sqlalchemy_engine[] = "sqlalchemy.engine"; static const char __pyx_k_cline_in_traceback[] = "cline_in_traceback"; static const char __pyx_k_OrderBookMessageType[] = "OrderBookMessageType"; static const char __pyx_k_diff_message_from_db[] = "diff_message_from_db"; static const char __pyx_k_trade_message_from_db[] = "trade_message_from_db"; static const char __pyx_k_KucoinOrderBookMessage[] = "KucoinOrderBookMessage"; static const char __pyx_k_diff_message_from_kafka[] = "diff_message_from_kafka"; static const char __pyx_k_snapshot_message_from_db[] = "snapshot_message_from_db"; static const char __pyx_k_diff_message_from_exchange[] = "diff_message_from_exchange"; static const char __pyx_k_ndarray_is_not_C_contiguous[] = "ndarray is not C contiguous"; static const char __pyx_k_snapshot_message_from_kafka[] = "snapshot_message_from_kafka"; static const char __pyx_k_trade_message_from_exchange[] = "trade_message_from_exchange"; static const char __pyx_k_hummingbot_core_event_events[] = "hummingbot.core.event.events"; static const char __pyx_k_snapshot_message_from_exchange[] = "snapshot_message_from_exchange"; static const char __pyx_k_hummingbot_core_data_type_order[] = "hummingbot.core.data_type.order_book_message"; static const char __pyx_k_hummingbot_market_kucoin_kucoin[] = "hummingbot.market.kucoin.kucoin_order_book_message"; static const char __pyx_k_numpy_core_multiarray_failed_to[] = "numpy.core.multiarray failed to import"; static const char __pyx_k_unknown_dtype_code_in_numpy_pxd[] = "unknown dtype code in numpy.pxd (%d)"; static const char __pyx_k_Format_string_allocated_too_shor[] = "Format string allocated too short, see comment in numpy.pxd"; static const char __pyx_k_Non_native_byte_order_not_suppor[] = "Non-native byte order not supported"; static const char __pyx_k_ndarray_is_not_Fortran_contiguou[] = "ndarray is not Fortran contiguous"; static const char __pyx_k_numpy_core_umath_failed_to_impor[] = "numpy.core.umath failed to import"; static const char __pyx_k_self__ask_book_self__bid_book_se[] = "self._ask_book,self._bid_book,self._events cannot be converted to a Python object for pickling"; static const char __pyx_k_Format_string_allocated_too_shor_2[] = "Format string allocated too short."; static PyObject *__pyx_n_s_BUY; static PyObject *__pyx_n_s_ConsumerRecord; static PyObject *__pyx_n_s_DIFF; static PyObject *__pyx_n_s_Dict; static PyObject *__pyx_kp_u_Format_string_allocated_too_shor; static PyObject *__pyx_kp_u_Format_string_allocated_too_shor_2; static PyObject *__pyx_n_s_HummingbotLogger; static PyObject *__pyx_n_s_ImportError; static PyObject *__pyx_n_s_KucoinOrderBook; static PyObject *__pyx_n_s_KucoinOrderBookMessage; static PyObject *__pyx_kp_u_Non_native_byte_order_not_suppor; static PyObject *__pyx_n_s_Optional; static PyObject *__pyx_n_s_OrderBookMessage; static PyObject *__pyx_n_s_OrderBookMessageType; static PyObject *__pyx_n_s_RowProxy; static PyObject *__pyx_n_s_RuntimeError; static PyObject *__pyx_n_s_SELL; static PyObject *__pyx_n_s_SNAPSHOT; static PyObject *__pyx_n_s_TRADE; static PyObject *__pyx_n_s_TradeType; static PyObject *__pyx_n_s_TypeError; static PyObject *__pyx_n_s_ValueError; static PyObject *__pyx_n_s_aiokafka; static PyObject *__pyx_n_u_amount; static PyObject *__pyx_n_s_any; static PyObject *__pyx_n_s_apply_snapshot; static PyObject *__pyx_n_s_asks; static PyObject *__pyx_n_u_asks; static PyObject *__pyx_n_s_bids; static PyObject *__pyx_n_u_bids; static PyObject *__pyx_n_u_buy; static PyObject *__pyx_n_u_changes; static PyObject *__pyx_n_s_cline_in_traceback; static PyObject *__pyx_n_u_data; static PyObject *__pyx_n_s_decode; static PyObject *__pyx_n_s_diff_message_from_db; static PyObject *__pyx_n_s_diff_message_from_exchange; static PyObject *__pyx_n_s_diff_message_from_kafka; static PyObject *__pyx_n_s_from_snapshot; static PyObject *__pyx_n_s_getLogger; static PyObject *__pyx_n_s_getstate; static PyObject *__pyx_n_s_hummingbot_core_data_type_order; static PyObject *__pyx_n_s_hummingbot_core_event_events; static PyObject *__pyx_n_s_hummingbot_logger; static PyObject *__pyx_n_s_hummingbot_market_kucoin_kucoin; static PyObject *__pyx_n_s_import; static PyObject *__pyx_n_u_json; static PyObject *__pyx_n_s_kob_logger; static PyObject *__pyx_n_s_loads; static PyObject *__pyx_n_s_logger; static PyObject *__pyx_n_s_logging; static PyObject *__pyx_n_s_main; static PyObject *__pyx_n_s_metadata; static PyObject *__pyx_n_s_msg; static PyObject *__pyx_n_s_name; static PyObject *__pyx_kp_u_ndarray_is_not_C_contiguous; static PyObject *__pyx_kp_u_ndarray_is_not_Fortran_contiguou; static PyObject *__pyx_kp_u_numpy_core_multiarray_failed_to; static PyObject *__pyx_kp_u_numpy_core_umath_failed_to_impor; static PyObject *__pyx_n_u_price; static PyObject *__pyx_n_s_pyx_vtable; static PyObject *__pyx_n_s_range; static PyObject *__pyx_n_s_record; static PyObject *__pyx_n_s_reduce; static PyObject *__pyx_n_s_reduce_cython; static PyObject *__pyx_n_s_reduce_ex; static PyObject *__pyx_kp_s_self__ask_book_self__bid_book_se; static PyObject *__pyx_n_u_sequence; static PyObject *__pyx_n_u_sequenceEnd; static PyObject *__pyx_n_s_setstate; static PyObject *__pyx_n_s_setstate_cython; static PyObject *__pyx_n_u_side; static PyObject *__pyx_n_u_size; static PyObject *__pyx_n_s_snapshot_message_from_db; static PyObject *__pyx_n_s_snapshot_message_from_exchange; static PyObject *__pyx_n_s_snapshot_message_from_kafka; static PyObject *__pyx_n_s_sqlalchemy_engine; static PyObject *__pyx_n_u_symbol; static PyObject *__pyx_n_s_test; static PyObject *__pyx_n_u_time; static PyObject *__pyx_n_s_timestamp; static PyObject *__pyx_n_u_timestamp; static PyObject *__pyx_n_u_tradeId; static PyObject *__pyx_n_u_trade_id; static PyObject *__pyx_n_s_trade_message_from_db; static PyObject *__pyx_n_s_trade_message_from_exchange; static PyObject *__pyx_n_u_trade_type; static PyObject *__pyx_n_u_trading_pair; static PyObject *__pyx_n_s_typing; static PyObject *__pyx_n_s_ujson; static PyObject *__pyx_kp_u_unknown_dtype_code_in_numpy_pxd; static PyObject *__pyx_n_s_update; static PyObject *__pyx_n_s_update_id; static PyObject *__pyx_n_u_update_id; static PyObject *__pyx_kp_u_utf_8; static PyObject *__pyx_n_s_value; static PyObject *__pyx_pf_10hummingbot_6market_6kucoin_17kucoin_order_book_15KucoinOrderBook_logger(CYTHON_UNUSED PyTypeObject *__pyx_v_cls); /* proto */ static PyObject *__pyx_pf_10hummingbot_6market_6kucoin_17kucoin_order_book_15KucoinOrderBook_2snapshot_message_from_exchange(CYTHON_UNUSED PyTypeObject *__pyx_v_cls, PyObject *__pyx_v_msg, double __pyx_v_timestamp, PyObject *__pyx_v_metadata); /* proto */ static PyObject *__pyx_pf_10hummingbot_6market_6kucoin_17kucoin_order_book_15KucoinOrderBook_4diff_message_from_exchange(CYTHON_UNUSED PyTypeObject *__pyx_v_cls, PyObject *__pyx_v_msg, PyObject *__pyx_v_timestamp, PyObject *__pyx_v_metadata); /* proto */ static PyObject *__pyx_pf_10hummingbot_6market_6kucoin_17kucoin_order_book_15KucoinOrderBook_6snapshot_message_from_db(CYTHON_UNUSED PyTypeObject *__pyx_v_cls, PyObject *__pyx_v_record, PyObject *__pyx_v_metadata); /* proto */ static PyObject *__pyx_pf_10hummingbot_6market_6kucoin_17kucoin_order_book_15KucoinOrderBook_8diff_message_from_db(CYTHON_UNUSED PyTypeObject *__pyx_v_cls, PyObject *__pyx_v_record, PyObject *__pyx_v_metadata); /* proto */ static PyObject *__pyx_pf_10hummingbot_6market_6kucoin_17kucoin_order_book_15KucoinOrderBook_10snapshot_message_from_kafka(CYTHON_UNUSED PyTypeObject *__pyx_v_cls, PyObject *__pyx_v_record, PyObject *__pyx_v_metadata); /* proto */ static PyObject *__pyx_pf_10hummingbot_6market_6kucoin_17kucoin_order_book_15KucoinOrderBook_12diff_message_from_kafka(CYTHON_UNUSED PyTypeObject *__pyx_v_cls, PyObject *__pyx_v_record, PyObject *__pyx_v_metadata); /* proto */ static PyObject *__pyx_pf_10hummingbot_6market_6kucoin_17kucoin_order_book_15KucoinOrderBook_14trade_message_from_db(CYTHON_UNUSED PyTypeObject *__pyx_v_cls, PyObject *__pyx_v_record, PyObject *__pyx_v_metadata); /* proto */ static PyObject *__pyx_pf_10hummingbot_6market_6kucoin_17kucoin_order_book_15KucoinOrderBook_16trade_message_from_exchange(CYTHON_UNUSED PyTypeObject *__pyx_v_cls, PyObject *__pyx_v_msg, PyObject *__pyx_v_metadata); /* proto */ static struct __pyx_obj_10hummingbot_4core_9data_type_10order_book_OrderBook *__pyx_pf_10hummingbot_6market_6kucoin_17kucoin_order_book_15KucoinOrderBook_18from_snapshot(CYTHON_UNUSED PyTypeObject *__pyx_v_cls, PyObject *__pyx_v_msg); /* proto */ static PyObject *__pyx_pf_10hummingbot_6market_6kucoin_17kucoin_order_book_15KucoinOrderBook_20__reduce_cython__(CYTHON_UNUSED struct __pyx_obj_10hummingbot_6market_6kucoin_17kucoin_order_book_KucoinOrderBook *__pyx_v_self); /* proto */ static PyObject *__pyx_pf_10hummingbot_6market_6kucoin_17kucoin_order_book_15KucoinOrderBook_22__setstate_cython__(CYTHON_UNUSED struct __pyx_obj_10hummingbot_6market_6kucoin_17kucoin_order_book_KucoinOrderBook *__pyx_v_self, CYTHON_UNUSED PyObject *__pyx_v___pyx_state); /* proto */ static int __pyx_pf_5numpy_7ndarray___getbuffer__(PyArrayObject *__pyx_v_self, Py_buffer *__pyx_v_info, int __pyx_v_flags); /* proto */ static void __pyx_pf_5numpy_7ndarray_2__releasebuffer__(PyArrayObject *__pyx_v_self, Py_buffer *__pyx_v_info); /* proto */ static PyObject *__pyx_tp_new_10hummingbot_6market_6kucoin_17kucoin_order_book_KucoinOrderBook(PyTypeObject *t, PyObject *a, PyObject *k); /*proto*/ static PyObject *__pyx_float_1eneg_3; static PyObject *__pyx_float_1eneg_9; static PyObject *__pyx_tuple_; static PyObject *__pyx_tuple__2; static PyObject *__pyx_tuple__3; static PyObject *__pyx_tuple__4; static PyObject *__pyx_tuple__5; static PyObject *__pyx_tuple__6; static PyObject *__pyx_tuple__7; static PyObject *__pyx_tuple__8; static PyObject *__pyx_tuple__9; /* Late includes */ /* "hummingbot/market/kucoin/kucoin_order_book.pyx":26 * cdef class KucoinOrderBook(OrderBook): * @classmethod * def logger(cls) -> HummingbotLogger: # <<<<<<<<<<<<<< * global _kob_logger * if _kob_logger is None: */ /* Python wrapper */ static PyObject *__pyx_pw_10hummingbot_6market_6kucoin_17kucoin_order_book_15KucoinOrderBook_1logger(PyObject *__pyx_v_cls, CYTHON_UNUSED PyObject *unused); /*proto*/ static PyObject *__pyx_pw_10hummingbot_6market_6kucoin_17kucoin_order_book_15KucoinOrderBook_1logger(PyObject *__pyx_v_cls, CYTHON_UNUSED PyObject *unused) { PyObject *__pyx_r = 0; __Pyx_RefNannyDeclarations __Pyx_RefNannySetupContext("logger (wrapper)", 0); __pyx_r = __pyx_pf_10hummingbot_6market_6kucoin_17kucoin_order_book_15KucoinOrderBook_logger(((PyTypeObject*)__pyx_v_cls)); /* function exit code */ __Pyx_RefNannyFinishContext(); return __pyx_r; } static PyObject *__pyx_pf_10hummingbot_6market_6kucoin_17kucoin_order_book_15KucoinOrderBook_logger(CYTHON_UNUSED PyTypeObject *__pyx_v_cls) { PyObject *__pyx_r = NULL; __Pyx_RefNannyDeclarations PyObject *__pyx_t_1 = NULL; int __pyx_t_2; int __pyx_t_3; PyObject *__pyx_t_4 = NULL; PyObject *__pyx_t_5 = NULL; PyObject *__pyx_t_6 = NULL; __Pyx_RefNannySetupContext("logger", 0); /* "hummingbot/market/kucoin/kucoin_order_book.pyx":28 * def logger(cls) -> HummingbotLogger: * global _kob_logger * if _kob_logger is None: # <<<<<<<<<<<<<< * _kob_logger = logging.getLogger(__name__) * return _kob_logger */ __Pyx_GetModuleGlobalName(__pyx_t_1, __pyx_n_s_kob_logger); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 28, __pyx_L1_error) __Pyx_GOTREF(__pyx_t_1); __pyx_t_2 = (__pyx_t_1 == Py_None); __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; __pyx_t_3 = (__pyx_t_2 != 0); if (__pyx_t_3) { /* "hummingbot/market/kucoin/kucoin_order_book.pyx":29 * global _kob_logger * if _kob_logger is None: * _kob_logger = logging.getLogger(__name__) # <<<<<<<<<<<<<< * return _kob_logger * */ __Pyx_GetModuleGlobalName(__pyx_t_4, __pyx_n_s_logging); if (unlikely(!__pyx_t_4)) __PYX_ERR(0, 29, __pyx_L1_error) __Pyx_GOTREF(__pyx_t_4); __pyx_t_5 = __Pyx_PyObject_GetAttrStr(__pyx_t_4, __pyx_n_s_getLogger); if (unlikely(!__pyx_t_5)) __PYX_ERR(0, 29, __pyx_L1_error) __Pyx_GOTREF(__pyx_t_5); __Pyx_DECREF(__pyx_t_4); __pyx_t_4 = 0; __Pyx_GetModuleGlobalName(__pyx_t_4, __pyx_n_s_name); if (unlikely(!__pyx_t_4)) __PYX_ERR(0, 29, __pyx_L1_error) __Pyx_GOTREF(__pyx_t_4); __pyx_t_6 = NULL; if (CYTHON_UNPACK_METHODS && unlikely(PyMethod_Check(__pyx_t_5))) { __pyx_t_6 = PyMethod_GET_SELF(__pyx_t_5); if (likely(__pyx_t_6)) { PyObject* function = PyMethod_GET_FUNCTION(__pyx_t_5); __Pyx_INCREF(__pyx_t_6); __Pyx_INCREF(function); __Pyx_DECREF_SET(__pyx_t_5, function); } } __pyx_t_1 = (__pyx_t_6) ? __Pyx_PyObject_Call2Args(__pyx_t_5, __pyx_t_6, __pyx_t_4) : __Pyx_PyObject_CallOneArg(__pyx_t_5, __pyx_t_4); __Pyx_XDECREF(__pyx_t_6); __pyx_t_6 = 0; __Pyx_DECREF(__pyx_t_4); __pyx_t_4 = 0; if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 29, __pyx_L1_error) __Pyx_GOTREF(__pyx_t_1); __Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0; if (PyDict_SetItem(__pyx_d, __pyx_n_s_kob_logger, __pyx_t_1) < 0) __PYX_ERR(0, 29, __pyx_L1_error) __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; /* "hummingbot/market/kucoin/kucoin_order_book.pyx":28 * def logger(cls) -> HummingbotLogger: * global _kob_logger * if _kob_logger is None: # <<<<<<<<<<<<<< * _kob_logger = logging.getLogger(__name__) * return _kob_logger */ } /* "hummingbot/market/kucoin/kucoin_order_book.pyx":30 * if _kob_logger is None: * _kob_logger = logging.getLogger(__name__) * return _kob_logger # <<<<<<<<<<<<<< * * @classmethod */ __Pyx_XDECREF(__pyx_r); __Pyx_GetModuleGlobalName(__pyx_t_1, __pyx_n_s_kob_logger); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 30, __pyx_L1_error) __Pyx_GOTREF(__pyx_t_1); __pyx_r = __pyx_t_1; __pyx_t_1 = 0; goto __pyx_L0; /* "hummingbot/market/kucoin/kucoin_order_book.pyx":26 * cdef class KucoinOrderBook(OrderBook): * @classmethod * def logger(cls) -> HummingbotLogger: # <<<<<<<<<<<<<< * global _kob_logger * if _kob_logger is None: */ /* function exit code */ __pyx_L1_error:; __Pyx_XDECREF(__pyx_t_1); __Pyx_XDECREF(__pyx_t_4); __Pyx_XDECREF(__pyx_t_5); __Pyx_XDECREF(__pyx_t_6); __Pyx_AddTraceback("hummingbot.market.kucoin.kucoin_order_book.KucoinOrderBook.logger", __pyx_clineno, __pyx_lineno, __pyx_filename); __pyx_r = NULL; __pyx_L0:; __Pyx_XGIVEREF(__pyx_r); __Pyx_RefNannyFinishContext(); return __pyx_r; } /* "hummingbot/market/kucoin/kucoin_order_book.pyx":33 * * @classmethod * def snapshot_message_from_exchange(cls, # <<<<<<<<<<<<<< * msg: Dict[str, any], * timestamp: float, */ /* Python wrapper */ static PyObject *__pyx_pw_10hummingbot_6market_6kucoin_17kucoin_order_book_15KucoinOrderBook_3snapshot_message_from_exchange(PyObject *__pyx_v_cls, PyObject *__pyx_args, PyObject *__pyx_kwds); /*proto*/ static PyObject *__pyx_pw_10hummingbot_6market_6kucoin_17kucoin_order_book_15KucoinOrderBook_3snapshot_message_from_exchange(PyObject *__pyx_v_cls, PyObject *__pyx_args, PyObject *__pyx_kwds) { PyObject *__pyx_v_msg = 0; double __pyx_v_timestamp; PyObject *__pyx_v_metadata = 0; PyObject *__pyx_r = 0; __Pyx_RefNannyDeclarations __Pyx_RefNannySetupContext("snapshot_message_from_exchange (wrapper)", 0); { static PyObject **__pyx_pyargnames[] = {&__pyx_n_s_msg,&__pyx_n_s_timestamp,&__pyx_n_s_metadata,0}; PyObject* values[3] = {0,0,0}; /* "hummingbot/market/kucoin/kucoin_order_book.pyx":36 * msg: Dict[str, any], * timestamp: float, * metadata: Optional[Dict] = None) -> OrderBookMessage: # <<<<<<<<<<<<<< * if metadata: * msg.update(metadata) */ values[2] = ((PyObject *)Py_None); if (unlikely(__pyx_kwds)) { Py_ssize_t kw_args; const Py_ssize_t pos_args = PyTuple_GET_SIZE(__pyx_args); switch (pos_args) { case 3: values[2] = PyTuple_GET_ITEM(__pyx_args, 2); CYTHON_FALLTHROUGH; case 2: values[1] = PyTuple_GET_ITEM(__pyx_args, 1); CYTHON_FALLTHROUGH; case 1: values[0] = PyTuple_GET_ITEM(__pyx_args, 0); CYTHON_FALLTHROUGH; case 0: break; default: goto __pyx_L5_argtuple_error; } kw_args = PyDict_Size(__pyx_kwds); switch (pos_args) { case 0: if (likely((values[0] = __Pyx_PyDict_GetItemStr(__pyx_kwds, __pyx_n_s_msg)) != 0)) kw_args--; else goto __pyx_L5_argtuple_error; CYTHON_FALLTHROUGH; case 1: if (likely((values[1] = __Pyx_PyDict_GetItemStr(__pyx_kwds, __pyx_n_s_timestamp)) != 0)) kw_args--; else { __Pyx_RaiseArgtupleInvalid("snapshot_message_from_exchange", 0, 2, 3, 1); __PYX_ERR(0, 33, __pyx_L3_error) } CYTHON_FALLTHROUGH; case 2: if (kw_args > 0) { PyObject* value = __Pyx_PyDict_GetItemStr(__pyx_kwds, __pyx_n_s_metadata); if (value) { values[2] = value; kw_args--; } } } if (unlikely(kw_args > 0)) { if (unlikely(__Pyx_ParseOptionalKeywords(__pyx_kwds, __pyx_pyargnames, 0, values, pos_args, "snapshot_message_from_exchange") < 0)) __PYX_ERR(0, 33, __pyx_L3_error) } } else { switch (PyTuple_GET_SIZE(__pyx_args)) { case 3: values[2] = PyTuple_GET_ITEM(__pyx_args, 2); CYTHON_FALLTHROUGH; case 2: values[1] = PyTuple_GET_ITEM(__pyx_args, 1); values[0] = PyTuple_GET_ITEM(__pyx_args, 0); break; default: goto __pyx_L5_argtuple_error; } } __pyx_v_msg = values[0]; __pyx_v_timestamp = __pyx_PyFloat_AsDouble(values[1]); if (unlikely((__pyx_v_timestamp == (double)-1) && PyErr_Occurred())) __PYX_ERR(0, 35, __pyx_L3_error) __pyx_v_metadata = values[2]; } goto __pyx_L4_argument_unpacking_done; __pyx_L5_argtuple_error:; __Pyx_RaiseArgtupleInvalid("snapshot_message_from_exchange", 0, 2, 3, PyTuple_GET_SIZE(__pyx_args)); __PYX_ERR(0, 33, __pyx_L3_error) __pyx_L3_error:; __Pyx_AddTraceback("hummingbot.market.kucoin.kucoin_order_book.KucoinOrderBook.snapshot_message_from_exchange", __pyx_clineno, __pyx_lineno, __pyx_filename); __Pyx_RefNannyFinishContext(); return NULL; __pyx_L4_argument_unpacking_done:; __pyx_r = __pyx_pf_10hummingbot_6market_6kucoin_17kucoin_order_book_15KucoinOrderBook_2snapshot_message_from_exchange(((PyTypeObject*)__pyx_v_cls), __pyx_v_msg, __pyx_v_timestamp, __pyx_v_metadata); /* "hummingbot/market/kucoin/kucoin_order_book.pyx":33 * * @classmethod * def snapshot_message_from_exchange(cls, # <<<<<<<<<<<<<< * msg: Dict[str, any], * timestamp: float, */ /* function exit code */ __Pyx_RefNannyFinishContext(); return __pyx_r; } static PyObject *__pyx_pf_10hummingbot_6market_6kucoin_17kucoin_order_book_15KucoinOrderBook_2snapshot_message_from_exchange(CYTHON_UNUSED PyTypeObject *__pyx_v_cls, PyObject *__pyx_v_msg, double __pyx_v_timestamp, PyObject *__pyx_v_metadata) { PyObject *__pyx_r = NULL; __Pyx_RefNannyDeclarations int __pyx_t_1; PyObject *__pyx_t_2 = NULL; PyObject *__pyx_t_3 = NULL; PyObject *__pyx_t_4 = NULL; PyObject *__pyx_t_5 = NULL; PyObject *__pyx_t_6 = NULL; __Pyx_RefNannySetupContext("snapshot_message_from_exchange", 0); /* "hummingbot/market/kucoin/kucoin_order_book.pyx":37 * timestamp: float, * metadata: Optional[Dict] = None) -> OrderBookMessage: * if metadata: # <<<<<<<<<<<<<< * msg.update(metadata) * return KucoinOrderBookMessage(OrderBookMessageType.SNAPSHOT, { */ __pyx_t_1 = __Pyx_PyObject_IsTrue(__pyx_v_metadata); if (unlikely(__pyx_t_1 < 0)) __PYX_ERR(0, 37, __pyx_L1_error) if (__pyx_t_1) { /* "hummingbot/market/kucoin/kucoin_order_book.pyx":38 * metadata: Optional[Dict] = None) -> OrderBookMessage: * if metadata: * msg.update(metadata) # <<<<<<<<<<<<<< * return KucoinOrderBookMessage(OrderBookMessageType.SNAPSHOT, { * "trading_pair": msg["symbol"], */ __pyx_t_3 = __Pyx_PyObject_GetAttrStr(__pyx_v_msg, __pyx_n_s_update); if (unlikely(!__pyx_t_3)) __PYX_ERR(0, 38, __pyx_L1_error) __Pyx_GOTREF(__pyx_t_3); __pyx_t_4 = NULL; if (CYTHON_UNPACK_METHODS && likely(PyMethod_Check(__pyx_t_3))) { __pyx_t_4 = PyMethod_GET_SELF(__pyx_t_3); if (likely(__pyx_t_4)) { PyObject* function = PyMethod_GET_FUNCTION(__pyx_t_3); __Pyx_INCREF(__pyx_t_4); __Pyx_INCREF(function); __Pyx_DECREF_SET(__pyx_t_3, function); } } __pyx_t_2 = (__pyx_t_4) ? __Pyx_PyObject_Call2Args(__pyx_t_3, __pyx_t_4, __pyx_v_metadata) : __Pyx_PyObject_CallOneArg(__pyx_t_3, __pyx_v_metadata); __Pyx_XDECREF(__pyx_t_4); __pyx_t_4 = 0; if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 38, __pyx_L1_error) __Pyx_GOTREF(__pyx_t_2); __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0; __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0; /* "hummingbot/market/kucoin/kucoin_order_book.pyx":37 * timestamp: float, * metadata: Optional[Dict] = None) -> OrderBookMessage: * if metadata: # <<<<<<<<<<<<<< * msg.update(metadata) * return KucoinOrderBookMessage(OrderBookMessageType.SNAPSHOT, { */ } /* "hummingbot/market/kucoin/kucoin_order_book.pyx":39 * if metadata: * msg.update(metadata) * return KucoinOrderBookMessage(OrderBookMessageType.SNAPSHOT, { # <<<<<<<<<<<<<< * "trading_pair": msg["symbol"], * "update_id": int(msg["data"]["sequence"]), */ __Pyx_XDECREF(__pyx_r); __Pyx_GetModuleGlobalName(__pyx_t_2, __pyx_n_s_KucoinOrderBookMessage); if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 39, __pyx_L1_error) __Pyx_GOTREF(__pyx_t_2); __Pyx_GetModuleGlobalName(__pyx_t_3, __pyx_n_s_OrderBookMessageType); if (unlikely(!__pyx_t_3)) __PYX_ERR(0, 39, __pyx_L1_error) __Pyx_GOTREF(__pyx_t_3); __pyx_t_4 = __Pyx_PyObject_GetAttrStr(__pyx_t_3, __pyx_n_s_SNAPSHOT); if (unlikely(!__pyx_t_4)) __PYX_ERR(0, 39, __pyx_L1_error) __Pyx_GOTREF(__pyx_t_4); __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0; /* "hummingbot/market/kucoin/kucoin_order_book.pyx":40 * msg.update(metadata) * return KucoinOrderBookMessage(OrderBookMessageType.SNAPSHOT, { * "trading_pair": msg["symbol"], # <<<<<<<<<<<<<< * "update_id": int(msg["data"]["sequence"]), * "bids": msg["data"]["bids"], */ __pyx_t_3 = __Pyx_PyDict_NewPresized(4); if (unlikely(!__pyx_t_3)) __PYX_ERR(0, 40, __pyx_L1_error) __Pyx_GOTREF(__pyx_t_3); __pyx_t_5 = __Pyx_PyObject_Dict_GetItem(__pyx_v_msg, __pyx_n_u_symbol); if (unlikely(!__pyx_t_5)) __PYX_ERR(0, 40, __pyx_L1_error) __Pyx_GOTREF(__pyx_t_5); if (PyDict_SetItem(__pyx_t_3, __pyx_n_u_trading_pair, __pyx_t_5) < 0) __PYX_ERR(0, 40, __pyx_L1_error) __Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0; /* "hummingbot/market/kucoin/kucoin_order_book.pyx":41 * return KucoinOrderBookMessage(OrderBookMessageType.SNAPSHOT, { * "trading_pair": msg["symbol"], * "update_id": int(msg["data"]["sequence"]), # <<<<<<<<<<<<<< * "bids": msg["data"]["bids"], * "asks": msg["data"]["asks"] */ __pyx_t_5 = __Pyx_PyObject_Dict_GetItem(__pyx_v_msg, __pyx_n_u_data); if (unlikely(!__pyx_t_5)) __PYX_ERR(0, 41, __pyx_L1_error) __Pyx_GOTREF(__pyx_t_5); __pyx_t_6 = __Pyx_PyObject_Dict_GetItem(__pyx_t_5, __pyx_n_u_sequence); if (unlikely(!__pyx_t_6)) __PYX_ERR(0, 41, __pyx_L1_error) __Pyx_GOTREF(__pyx_t_6); __Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0; __pyx_t_5 = __Pyx_PyNumber_Int(__pyx_t_6); if (unlikely(!__pyx_t_5)) __PYX_ERR(0, 41, __pyx_L1_error) __Pyx_GOTREF(__pyx_t_5); __Pyx_DECREF(__pyx_t_6); __pyx_t_6 = 0; if (PyDict_SetItem(__pyx_t_3, __pyx_n_u_update_id, __pyx_t_5) < 0) __PYX_ERR(0, 40, __pyx_L1_error) __Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0; /* "hummingbot/market/kucoin/kucoin_order_book.pyx":42 * "trading_pair": msg["symbol"], * "update_id": int(msg["data"]["sequence"]), * "bids": msg["data"]["bids"], # <<<<<<<<<<<<<< * "asks": msg["data"]["asks"] * }, timestamp=timestamp) */ __pyx_t_5 = __Pyx_PyObject_Dict_GetItem(__pyx_v_msg, __pyx_n_u_data); if (unlikely(!__pyx_t_5)) __PYX_ERR(0, 42, __pyx_L1_error) __Pyx_GOTREF(__pyx_t_5); __pyx_t_6 = __Pyx_PyObject_Dict_GetItem(__pyx_t_5, __pyx_n_u_bids); if (unlikely(!__pyx_t_6)) __PYX_ERR(0, 42, __pyx_L1_error) __Pyx_GOTREF(__pyx_t_6); __Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0; if (PyDict_SetItem(__pyx_t_3, __pyx_n_u_bids, __pyx_t_6) < 0) __PYX_ERR(0, 40, __pyx_L1_error) __Pyx_DECREF(__pyx_t_6); __pyx_t_6 = 0; /* "hummingbot/market/kucoin/kucoin_order_book.pyx":43 * "update_id": int(msg["data"]["sequence"]), * "bids": msg["data"]["bids"], * "asks": msg["data"]["asks"] # <<<<<<<<<<<<<< * }, timestamp=timestamp) * */ __pyx_t_6 = __Pyx_PyObject_Dict_GetItem(__pyx_v_msg, __pyx_n_u_data); if (unlikely(!__pyx_t_6)) __PYX_ERR(0, 43, __pyx_L1_error) __Pyx_GOTREF(__pyx_t_6); __pyx_t_5 = __Pyx_PyObject_Dict_GetItem(__pyx_t_6, __pyx_n_u_asks); if (unlikely(!__pyx_t_5)) __PYX_ERR(0, 43, __pyx_L1_error) __Pyx_GOTREF(__pyx_t_5); __Pyx_DECREF(__pyx_t_6); __pyx_t_6 = 0; if (PyDict_SetItem(__pyx_t_3, __pyx_n_u_asks, __pyx_t_5) < 0) __PYX_ERR(0, 40, __pyx_L1_error) __Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0; /* "hummingbot/market/kucoin/kucoin_order_book.pyx":39 * if metadata: * msg.update(metadata) * return KucoinOrderBookMessage(OrderBookMessageType.SNAPSHOT, { # <<<<<<<<<<<<<< * "trading_pair": msg["symbol"], * "update_id": int(msg["data"]["sequence"]), */ __pyx_t_5 = PyTuple_New(2); if (unlikely(!__pyx_t_5)) __PYX_ERR(0, 39, __pyx_L1_error) __Pyx_GOTREF(__pyx_t_5); __Pyx_GIVEREF(__pyx_t_4); PyTuple_SET_ITEM(__pyx_t_5, 0, __pyx_t_4); __Pyx_GIVEREF(__pyx_t_3); PyTuple_SET_ITEM(__pyx_t_5, 1, __pyx_t_3); __pyx_t_4 = 0; __pyx_t_3 = 0; /* "hummingbot/market/kucoin/kucoin_order_book.pyx":44 * "bids": msg["data"]["bids"], * "asks": msg["data"]["asks"] * }, timestamp=timestamp) # <<<<<<<<<<<<<< * * @classmethod */ __pyx_t_3 = __Pyx_PyDict_NewPresized(1); if (unlikely(!__pyx_t_3)) __PYX_ERR(0, 44, __pyx_L1_error) __Pyx_GOTREF(__pyx_t_3); __pyx_t_4 = PyFloat_FromDouble(__pyx_v_timestamp); if (unlikely(!__pyx_t_4)) __PYX_ERR(0, 44, __pyx_L1_error) __Pyx_GOTREF(__pyx_t_4); if (PyDict_SetItem(__pyx_t_3, __pyx_n_s_timestamp, __pyx_t_4) < 0) __PYX_ERR(0, 44, __pyx_L1_error) __Pyx_DECREF(__pyx_t_4); __pyx_t_4 = 0; /* "hummingbot/market/kucoin/kucoin_order_book.pyx":39 * if metadata: * msg.update(metadata) * return KucoinOrderBookMessage(OrderBookMessageType.SNAPSHOT, { # <<<<<<<<<<<<<< * "trading_pair": msg["symbol"], * "update_id": int(msg["data"]["sequence"]), */ __pyx_t_4 = __Pyx_PyObject_Call(__pyx_t_2, __pyx_t_5, __pyx_t_3); if (unlikely(!__pyx_t_4)) __PYX_ERR(0, 39, __pyx_L1_error) __Pyx_GOTREF(__pyx_t_4); __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0; __Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0; __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0; __pyx_r = __pyx_t_4; __pyx_t_4 = 0; goto __pyx_L0; /* "hummingbot/market/kucoin/kucoin_order_book.pyx":33 * * @classmethod * def snapshot_message_from_exchange(cls, # <<<<<<<<<<<<<< * msg: Dict[str, any], * timestamp: float, */ /* function exit code */ __pyx_L1_error:; __Pyx_XDECREF(__pyx_t_2); __Pyx_XDECREF(__pyx_t_3); __Pyx_XDECREF(__pyx_t_4); __Pyx_XDECREF(__pyx_t_5); __Pyx_XDECREF(__pyx_t_6); __Pyx_AddTraceback("hummingbot.market.kucoin.kucoin_order_book.KucoinOrderBook.snapshot_message_from_exchange", __pyx_clineno, __pyx_lineno, __pyx_filename); __pyx_r = NULL; __pyx_L0:; __Pyx_XGIVEREF(__pyx_r); __Pyx_RefNannyFinishContext(); return __pyx_r; } /* "hummingbot/market/kucoin/kucoin_order_book.pyx":47 * * @classmethod * def diff_message_from_exchange(cls, # <<<<<<<<<<<<<< * msg: Dict[str, any], * timestamp: Optional[float] = None, */ /* Python wrapper */ static PyObject *__pyx_pw_10hummingbot_6market_6kucoin_17kucoin_order_book_15KucoinOrderBook_5diff_message_from_exchange(PyObject *__pyx_v_cls, PyObject *__pyx_args, PyObject *__pyx_kwds); /*proto*/ static PyObject *__pyx_pw_10hummingbot_6market_6kucoin_17kucoin_order_book_15KucoinOrderBook_5diff_message_from_exchange(PyObject *__pyx_v_cls, PyObject *__pyx_args, PyObject *__pyx_kwds) { PyObject *__pyx_v_msg = 0; PyObject *__pyx_v_timestamp = 0; PyObject *__pyx_v_metadata = 0; PyObject *__pyx_r = 0; __Pyx_RefNannyDeclarations __Pyx_RefNannySetupContext("diff_message_from_exchange (wrapper)", 0); { static PyObject **__pyx_pyargnames[] = {&__pyx_n_s_msg,&__pyx_n_s_timestamp,&__pyx_n_s_metadata,0}; PyObject* values[3] = {0,0,0}; /* "hummingbot/market/kucoin/kucoin_order_book.pyx":49 * def diff_message_from_exchange(cls, * msg: Dict[str, any], * timestamp: Optional[float] = None, # <<<<<<<<<<<<<< * metadata: Optional[Dict] = None) -> OrderBookMessage: * if metadata: */ values[1] = ((PyObject *)Py_None); /* "hummingbot/market/kucoin/kucoin_order_book.pyx":50 * msg: Dict[str, any], * timestamp: Optional[float] = None, * metadata: Optional[Dict] = None) -> OrderBookMessage: # <<<<<<<<<<<<<< * if metadata: * msg.update(metadata) */ values[2] = ((PyObject *)Py_None); if (unlikely(__pyx_kwds)) { Py_ssize_t kw_args; const Py_ssize_t pos_args = PyTuple_GET_SIZE(__pyx_args); switch (pos_args) { case 3: values[2] = PyTuple_GET_ITEM(__pyx_args, 2); CYTHON_FALLTHROUGH; case 2: values[1] = PyTuple_GET_ITEM(__pyx_args, 1); CYTHON_FALLTHROUGH; case 1: values[0] = PyTuple_GET_ITEM(__pyx_args, 0); CYTHON_FALLTHROUGH; case 0: break; default: goto __pyx_L5_argtuple_error; } kw_args = PyDict_Size(__pyx_kwds); switch (pos_args) { case 0: if (likely((values[0] = __Pyx_PyDict_GetItemStr(__pyx_kwds, __pyx_n_s_msg)) != 0)) kw_args--; else goto __pyx_L5_argtuple_error; CYTHON_FALLTHROUGH; case 1: if (kw_args > 0) { PyObject* value = __Pyx_PyDict_GetItemStr(__pyx_kwds, __pyx_n_s_timestamp); if (value) { values[1] = value; kw_args--; } } CYTHON_FALLTHROUGH; case 2: if (kw_args > 0) { PyObject* value = __Pyx_PyDict_GetItemStr(__pyx_kwds, __pyx_n_s_metadata); if (value) { values[2] = value; kw_args--; } } } if (unlikely(kw_args > 0)) { if (unlikely(__Pyx_ParseOptionalKeywords(__pyx_kwds, __pyx_pyargnames, 0, values, pos_args, "diff_message_from_exchange") < 0)) __PYX_ERR(0, 47, __pyx_L3_error) } } else { switch (PyTuple_GET_SIZE(__pyx_args)) { case 3: values[2] = PyTuple_GET_ITEM(__pyx_args, 2); CYTHON_FALLTHROUGH; case 2: values[1] = PyTuple_GET_ITEM(__pyx_args, 1); CYTHON_FALLTHROUGH; case 1: values[0] = PyTuple_GET_ITEM(__pyx_args, 0); break; default: goto __pyx_L5_argtuple_error; } } __pyx_v_msg = values[0]; __pyx_v_timestamp = values[1]; __pyx_v_metadata = values[2]; } goto __pyx_L4_argument_unpacking_done; __pyx_L5_argtuple_error:; __Pyx_RaiseArgtupleInvalid("diff_message_from_exchange", 0, 1, 3, PyTuple_GET_SIZE(__pyx_args)); __PYX_ERR(0, 47, __pyx_L3_error) __pyx_L3_error:; __Pyx_AddTraceback("hummingbot.market.kucoin.kucoin_order_book.KucoinOrderBook.diff_message_from_exchange", __pyx_clineno, __pyx_lineno, __pyx_filename); __Pyx_RefNannyFinishContext(); return NULL; __pyx_L4_argument_unpacking_done:; __pyx_r = __pyx_pf_10hummingbot_6market_6kucoin_17kucoin_order_book_15KucoinOrderBook_4diff_message_from_exchange(((PyTypeObject*)__pyx_v_cls), __pyx_v_msg, __pyx_v_timestamp, __pyx_v_metadata); /* "hummingbot/market/kucoin/kucoin_order_book.pyx":47 * * @classmethod * def diff_message_from_exchange(cls, # <<<<<<<<<<<<<< * msg: Dict[str, any], * timestamp: Optional[float] = None, */ /* function exit code */ __Pyx_RefNannyFinishContext(); return __pyx_r; } static PyObject *__pyx_pf_10hummingbot_6market_6kucoin_17kucoin_order_book_15KucoinOrderBook_4diff_message_from_exchange(CYTHON_UNUSED PyTypeObject *__pyx_v_cls, PyObject *__pyx_v_msg, PyObject *__pyx_v_timestamp, PyObject *__pyx_v_metadata) { PyObject *__pyx_r = NULL; __Pyx_RefNannyDeclarations int __pyx_t_1; PyObject *__pyx_t_2 = NULL; PyObject *__pyx_t_3 = NULL; PyObject *__pyx_t_4 = NULL; PyObject *__pyx_t_5 = NULL; PyObject *__pyx_t_6 = NULL; __Pyx_RefNannySetupContext("diff_message_from_exchange", 0); /* "hummingbot/market/kucoin/kucoin_order_book.pyx":51 * timestamp: Optional[float] = None, * metadata: Optional[Dict] = None) -> OrderBookMessage: * if metadata: # <<<<<<<<<<<<<< * msg.update(metadata) * return KucoinOrderBookMessage(OrderBookMessageType.DIFF, { */ __pyx_t_1 = __Pyx_PyObject_IsTrue(__pyx_v_metadata); if (unlikely(__pyx_t_1 < 0)) __PYX_ERR(0, 51, __pyx_L1_error) if (__pyx_t_1) { /* "hummingbot/market/kucoin/kucoin_order_book.pyx":52 * metadata: Optional[Dict] = None) -> OrderBookMessage: * if metadata: * msg.update(metadata) # <<<<<<<<<<<<<< * return KucoinOrderBookMessage(OrderBookMessageType.DIFF, { * "trading_pair": msg["data"]["symbol"], */ __pyx_t_3 = __Pyx_PyObject_GetAttrStr(__pyx_v_msg, __pyx_n_s_update); if (unlikely(!__pyx_t_3)) __PYX_ERR(0, 52, __pyx_L1_error) __Pyx_GOTREF(__pyx_t_3); __pyx_t_4 = NULL; if (CYTHON_UNPACK_METHODS && likely(PyMethod_Check(__pyx_t_3))) { __pyx_t_4 = PyMethod_GET_SELF(__pyx_t_3); if (likely(__pyx_t_4)) { PyObject* function = PyMethod_GET_FUNCTION(__pyx_t_3); __Pyx_INCREF(__pyx_t_4); __Pyx_INCREF(function); __Pyx_DECREF_SET(__pyx_t_3, function); } } __pyx_t_2 = (__pyx_t_4) ? __Pyx_PyObject_Call2Args(__pyx_t_3, __pyx_t_4, __pyx_v_metadata) : __Pyx_PyObject_CallOneArg(__pyx_t_3, __pyx_v_metadata); __Pyx_XDECREF(__pyx_t_4); __pyx_t_4 = 0; if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 52, __pyx_L1_error) __Pyx_GOTREF(__pyx_t_2); __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0; __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0; /* "hummingbot/market/kucoin/kucoin_order_book.pyx":51 * timestamp: Optional[float] = None, * metadata: Optional[Dict] = None) -> OrderBookMessage: * if metadata: # <<<<<<<<<<<<<< * msg.update(metadata) * return KucoinOrderBookMessage(OrderBookMessageType.DIFF, { */ } /* "hummingbot/market/kucoin/kucoin_order_book.pyx":53 * if metadata: * msg.update(metadata) * return KucoinOrderBookMessage(OrderBookMessageType.DIFF, { # <<<<<<<<<<<<<< * "trading_pair": msg["data"]["symbol"], * "update_id": msg["data"]["sequenceEnd"], */ __Pyx_XDECREF(__pyx_r); __Pyx_GetModuleGlobalName(__pyx_t_2, __pyx_n_s_KucoinOrderBookMessage); if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 53, __pyx_L1_error) __Pyx_GOTREF(__pyx_t_2); __Pyx_GetModuleGlobalName(__pyx_t_3, __pyx_n_s_OrderBookMessageType); if (unlikely(!__pyx_t_3)) __PYX_ERR(0, 53, __pyx_L1_error) __Pyx_GOTREF(__pyx_t_3); __pyx_t_4 = __Pyx_PyObject_GetAttrStr(__pyx_t_3, __pyx_n_s_DIFF); if (unlikely(!__pyx_t_4)) __PYX_ERR(0, 53, __pyx_L1_error) __Pyx_GOTREF(__pyx_t_4); __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0; /* "hummingbot/market/kucoin/kucoin_order_book.pyx":54 * msg.update(metadata) * return KucoinOrderBookMessage(OrderBookMessageType.DIFF, { * "trading_pair": msg["data"]["symbol"], # <<<<<<<<<<<<<< * "update_id": msg["data"]["sequenceEnd"], * "bids": msg["data"]["changes"]["bids"], */ __pyx_t_3 = __Pyx_PyDict_NewPresized(4); if (unlikely(!__pyx_t_3)) __PYX_ERR(0, 54, __pyx_L1_error) __Pyx_GOTREF(__pyx_t_3); __pyx_t_5 = __Pyx_PyObject_Dict_GetItem(__pyx_v_msg, __pyx_n_u_data); if (unlikely(!__pyx_t_5)) __PYX_ERR(0, 54, __pyx_L1_error) __Pyx_GOTREF(__pyx_t_5); __pyx_t_6 = __Pyx_PyObject_Dict_GetItem(__pyx_t_5, __pyx_n_u_symbol); if (unlikely(!__pyx_t_6)) __PYX_ERR(0, 54, __pyx_L1_error) __Pyx_GOTREF(__pyx_t_6); __Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0; if (PyDict_SetItem(__pyx_t_3, __pyx_n_u_trading_pair, __pyx_t_6) < 0) __PYX_ERR(0, 54, __pyx_L1_error) __Pyx_DECREF(__pyx_t_6); __pyx_t_6 = 0; /* "hummingbot/market/kucoin/kucoin_order_book.pyx":55 * return KucoinOrderBookMessage(OrderBookMessageType.DIFF, { * "trading_pair": msg["data"]["symbol"], * "update_id": msg["data"]["sequenceEnd"], # <<<<<<<<<<<<<< * "bids": msg["data"]["changes"]["bids"], * "asks": msg["data"]["changes"]["asks"] */ __pyx_t_6 = __Pyx_PyObject_Dict_GetItem(__pyx_v_msg, __pyx_n_u_data); if (unlikely(!__pyx_t_6)) __PYX_ERR(0, 55, __pyx_L1_error) __Pyx_GOTREF(__pyx_t_6); __pyx_t_5 = __Pyx_PyObject_Dict_GetItem(__pyx_t_6, __pyx_n_u_sequenceEnd); if (unlikely(!__pyx_t_5)) __PYX_ERR(0, 55, __pyx_L1_error) __Pyx_GOTREF(__pyx_t_5); __Pyx_DECREF(__pyx_t_6); __pyx_t_6 = 0; if (PyDict_SetItem(__pyx_t_3, __pyx_n_u_update_id, __pyx_t_5) < 0) __PYX_ERR(0, 54, __pyx_L1_error) __Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0; /* "hummingbot/market/kucoin/kucoin_order_book.pyx":56 * "trading_pair": msg["data"]["symbol"], * "update_id": msg["data"]["sequenceEnd"], * "bids": msg["data"]["changes"]["bids"], # <<<<<<<<<<<<<< * "asks": msg["data"]["changes"]["asks"] * }, timestamp=timestamp) */ __pyx_t_5 = __Pyx_PyObject_Dict_GetItem(__pyx_v_msg, __pyx_n_u_data); if (unlikely(!__pyx_t_5)) __PYX_ERR(0, 56, __pyx_L1_error) __Pyx_GOTREF(__pyx_t_5); __pyx_t_6 = __Pyx_PyObject_Dict_GetItem(__pyx_t_5, __pyx_n_u_changes); if (unlikely(!__pyx_t_6)) __PYX_ERR(0, 56, __pyx_L1_error) __Pyx_GOTREF(__pyx_t_6); __Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0; __pyx_t_5 = __Pyx_PyObject_Dict_GetItem(__pyx_t_6, __pyx_n_u_bids); if (unlikely(!__pyx_t_5)) __PYX_ERR(0, 56, __pyx_L1_error) __Pyx_GOTREF(__pyx_t_5); __Pyx_DECREF(__pyx_t_6); __pyx_t_6 = 0; if (PyDict_SetItem(__pyx_t_3, __pyx_n_u_bids, __pyx_t_5) < 0) __PYX_ERR(0, 54, __pyx_L1_error) __Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0; /* "hummingbot/market/kucoin/kucoin_order_book.pyx":57 * "update_id": msg["data"]["sequenceEnd"], * "bids": msg["data"]["changes"]["bids"], * "asks": msg["data"]["changes"]["asks"] # <<<<<<<<<<<<<< * }, timestamp=timestamp) * */ __pyx_t_5 = __Pyx_PyObject_Dict_GetItem(__pyx_v_msg, __pyx_n_u_data); if (unlikely(!__pyx_t_5)) __PYX_ERR(0, 57, __pyx_L1_error) __Pyx_GOTREF(__pyx_t_5); __pyx_t_6 = __Pyx_PyObject_Dict_GetItem(__pyx_t_5, __pyx_n_u_changes); if (unlikely(!__pyx_t_6)) __PYX_ERR(0, 57, __pyx_L1_error) __Pyx_GOTREF(__pyx_t_6); __Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0; __pyx_t_5 = __Pyx_PyObject_Dict_GetItem(__pyx_t_6, __pyx_n_u_asks); if (unlikely(!__pyx_t_5)) __PYX_ERR(0, 57, __pyx_L1_error) __Pyx_GOTREF(__pyx_t_5); __Pyx_DECREF(__pyx_t_6); __pyx_t_6 = 0; if (PyDict_SetItem(__pyx_t_3, __pyx_n_u_asks, __pyx_t_5) < 0) __PYX_ERR(0, 54, __pyx_L1_error) __Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0; /* "hummingbot/market/kucoin/kucoin_order_book.pyx":53 * if metadata: * msg.update(metadata) * return KucoinOrderBookMessage(OrderBookMessageType.DIFF, { # <<<<<<<<<<<<<< * "trading_pair": msg["data"]["symbol"], * "update_id": msg["data"]["sequenceEnd"], */ __pyx_t_5 = PyTuple_New(2); if (unlikely(!__pyx_t_5)) __PYX_ERR(0, 53, __pyx_L1_error) __Pyx_GOTREF(__pyx_t_5); __Pyx_GIVEREF(__pyx_t_4); PyTuple_SET_ITEM(__pyx_t_5, 0, __pyx_t_4); __Pyx_GIVEREF(__pyx_t_3); PyTuple_SET_ITEM(__pyx_t_5, 1, __pyx_t_3); __pyx_t_4 = 0; __pyx_t_3 = 0; /* "hummingbot/market/kucoin/kucoin_order_book.pyx":58 * "bids": msg["data"]["changes"]["bids"], * "asks": msg["data"]["changes"]["asks"] * }, timestamp=timestamp) # <<<<<<<<<<<<<< * * @classmethod */ __pyx_t_3 = __Pyx_PyDict_NewPresized(1); if (unlikely(!__pyx_t_3)) __PYX_ERR(0, 58, __pyx_L1_error) __Pyx_GOTREF(__pyx_t_3); if (PyDict_SetItem(__pyx_t_3, __pyx_n_s_timestamp, __pyx_v_timestamp) < 0) __PYX_ERR(0, 58, __pyx_L1_error) /* "hummingbot/market/kucoin/kucoin_order_book.pyx":53 * if metadata: * msg.update(metadata) * return KucoinOrderBookMessage(OrderBookMessageType.DIFF, { # <<<<<<<<<<<<<< * "trading_pair": msg["data"]["symbol"], * "update_id": msg["data"]["sequenceEnd"], */ __pyx_t_4 = __Pyx_PyObject_Call(__pyx_t_2, __pyx_t_5, __pyx_t_3); if (unlikely(!__pyx_t_4)) __PYX_ERR(0, 53, __pyx_L1_error) __Pyx_GOTREF(__pyx_t_4); __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0; __Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0; __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0; __pyx_r = __pyx_t_4; __pyx_t_4 = 0; goto __pyx_L0; /* "hummingbot/market/kucoin/kucoin_order_book.pyx":47 * * @classmethod * def diff_message_from_exchange(cls, # <<<<<<<<<<<<<< * msg: Dict[str, any], * timestamp: Optional[float] = None, */ /* function exit code */ __pyx_L1_error:; __Pyx_XDECREF(__pyx_t_2); __Pyx_XDECREF(__pyx_t_3); __Pyx_XDECREF(__pyx_t_4); __Pyx_XDECREF(__pyx_t_5); __Pyx_XDECREF(__pyx_t_6); __Pyx_AddTraceback("hummingbot.market.kucoin.kucoin_order_book.KucoinOrderBook.diff_message_from_exchange", __pyx_clineno, __pyx_lineno, __pyx_filename); __pyx_r = NULL; __pyx_L0:; __Pyx_XGIVEREF(__pyx_r); __Pyx_RefNannyFinishContext(); return __pyx_r; } /* "hummingbot/market/kucoin/kucoin_order_book.pyx":61 * * @classmethod * def snapshot_message_from_db(cls, record: RowProxy, metadata: Optional[Dict] = None) -> OrderBookMessage: # <<<<<<<<<<<<<< * ts = record["timestamp"] * msg = record["json"] if type(record["json"]) == dict else ujson.loads(record["json"]) */ /* Python wrapper */ static PyObject *__pyx_pw_10hummingbot_6market_6kucoin_17kucoin_order_book_15KucoinOrderBook_7snapshot_message_from_db(PyObject *__pyx_v_cls, PyObject *__pyx_args, PyObject *__pyx_kwds); /*proto*/ static PyObject *__pyx_pw_10hummingbot_6market_6kucoin_17kucoin_order_book_15KucoinOrderBook_7snapshot_message_from_db(PyObject *__pyx_v_cls, PyObject *__pyx_args, PyObject *__pyx_kwds) { PyObject *__pyx_v_record = 0; PyObject *__pyx_v_metadata = 0; PyObject *__pyx_r = 0; __Pyx_RefNannyDeclarations __Pyx_RefNannySetupContext("snapshot_message_from_db (wrapper)", 0); { static PyObject **__pyx_pyargnames[] = {&__pyx_n_s_record,&__pyx_n_s_metadata,0}; PyObject* values[2] = {0,0}; values[1] = ((PyObject *)Py_None); if (unlikely(__pyx_kwds)) { Py_ssize_t kw_args; const Py_ssize_t pos_args = PyTuple_GET_SIZE(__pyx_args); switch (pos_args) { case 2: values[1] = PyTuple_GET_ITEM(__pyx_args, 1); CYTHON_FALLTHROUGH; case 1: values[0] = PyTuple_GET_ITEM(__pyx_args, 0); CYTHON_FALLTHROUGH; case 0: break; default: goto __pyx_L5_argtuple_error; } kw_args = PyDict_Size(__pyx_kwds); switch (pos_args) { case 0: if (likely((values[0] = __Pyx_PyDict_GetItemStr(__pyx_kwds, __pyx_n_s_record)) != 0)) kw_args--; else goto __pyx_L5_argtuple_error; CYTHON_FALLTHROUGH; case 1: if (kw_args > 0) { PyObject* value = __Pyx_PyDict_GetItemStr(__pyx_kwds, __pyx_n_s_metadata); if (value) { values[1] = value; kw_args--; } } } if (unlikely(kw_args > 0)) { if (unlikely(__Pyx_ParseOptionalKeywords(__pyx_kwds, __pyx_pyargnames, 0, values, pos_args, "snapshot_message_from_db") < 0)) __PYX_ERR(0, 61, __pyx_L3_error) } } else { switch (PyTuple_GET_SIZE(__pyx_args)) { case 2: values[1] = PyTuple_GET_ITEM(__pyx_args, 1); CYTHON_FALLTHROUGH; case 1: values[0] = PyTuple_GET_ITEM(__pyx_args, 0); break; default: goto __pyx_L5_argtuple_error; } } __pyx_v_record = values[0]; __pyx_v_metadata = values[1]; } goto __pyx_L4_argument_unpacking_done; __pyx_L5_argtuple_error:; __Pyx_RaiseArgtupleInvalid("snapshot_message_from_db", 0, 1, 2, PyTuple_GET_SIZE(__pyx_args)); __PYX_ERR(0, 61, __pyx_L3_error) __pyx_L3_error:; __Pyx_AddTraceback("hummingbot.market.kucoin.kucoin_order_book.KucoinOrderBook.snapshot_message_from_db", __pyx_clineno, __pyx_lineno, __pyx_filename); __Pyx_RefNannyFinishContext(); return NULL; __pyx_L4_argument_unpacking_done:; __pyx_r = __pyx_pf_10hummingbot_6market_6kucoin_17kucoin_order_book_15KucoinOrderBook_6snapshot_message_from_db(((PyTypeObject*)__pyx_v_cls), __pyx_v_record, __pyx_v_metadata); /* function exit code */ __Pyx_RefNannyFinishContext(); return __pyx_r; } static PyObject *__pyx_pf_10hummingbot_6market_6kucoin_17kucoin_order_book_15KucoinOrderBook_6snapshot_message_from_db(CYTHON_UNUSED PyTypeObject *__pyx_v_cls, PyObject *__pyx_v_record, PyObject *__pyx_v_metadata) { PyObject *__pyx_v_ts = NULL; PyObject *__pyx_v_msg = NULL; PyObject *__pyx_r = NULL; __Pyx_RefNannyDeclarations PyObject *__pyx_t_1 = NULL; PyObject *__pyx_t_2 = NULL; PyObject *__pyx_t_3 = NULL; int __pyx_t_4; PyObject *__pyx_t_5 = NULL; PyObject *__pyx_t_6 = NULL; __Pyx_RefNannySetupContext("snapshot_message_from_db", 0); /* "hummingbot/market/kucoin/kucoin_order_book.pyx":62 * @classmethod * def snapshot_message_from_db(cls, record: RowProxy, metadata: Optional[Dict] = None) -> OrderBookMessage: * ts = record["timestamp"] # <<<<<<<<<<<<<< * msg = record["json"] if type(record["json"]) == dict else ujson.loads(record["json"]) * if metadata: */ __pyx_t_1 = __Pyx_PyObject_Dict_GetItem(__pyx_v_record, __pyx_n_u_timestamp); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 62, __pyx_L1_error) __Pyx_GOTREF(__pyx_t_1); __pyx_v_ts = __pyx_t_1; __pyx_t_1 = 0; /* "hummingbot/market/kucoin/kucoin_order_book.pyx":63 * def snapshot_message_from_db(cls, record: RowProxy, metadata: Optional[Dict] = None) -> OrderBookMessage: * ts = record["timestamp"] * msg = record["json"] if type(record["json"]) == dict else ujson.loads(record["json"]) # <<<<<<<<<<<<<< * if metadata: * msg.update(metadata) */ __pyx_t_2 = __Pyx_PyObject_Dict_GetItem(__pyx_v_record, __pyx_n_u_json); if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 63, __pyx_L1_error) __Pyx_GOTREF(__pyx_t_2); __pyx_t_3 = PyObject_RichCompare(((PyObject *)Py_TYPE(__pyx_t_2)), ((PyObject *)(&PyDict_Type)), Py_EQ); __Pyx_XGOTREF(__pyx_t_3); if (unlikely(!__pyx_t_3)) __PYX_ERR(0, 63, __pyx_L1_error) __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0; __pyx_t_4 = __Pyx_PyObject_IsTrue(__pyx_t_3); if (unlikely(__pyx_t_4 < 0)) __PYX_ERR(0, 63, __pyx_L1_error) __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0; if (__pyx_t_4) { __pyx_t_3 = __Pyx_PyObject_Dict_GetItem(__pyx_v_record, __pyx_n_u_json); if (unlikely(!__pyx_t_3)) __PYX_ERR(0, 63, __pyx_L1_error) __Pyx_GOTREF(__pyx_t_3); __pyx_t_1 = __pyx_t_3; __pyx_t_3 = 0; } else { __Pyx_GetModuleGlobalName(__pyx_t_2, __pyx_n_s_ujson); if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 63, __pyx_L1_error) __Pyx_GOTREF(__pyx_t_2); __pyx_t_5 = __Pyx_PyObject_GetAttrStr(__pyx_t_2, __pyx_n_s_loads); if (unlikely(!__pyx_t_5)) __PYX_ERR(0, 63, __pyx_L1_error) __Pyx_GOTREF(__pyx_t_5); __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0; __pyx_t_2 = __Pyx_PyObject_Dict_GetItem(__pyx_v_record, __pyx_n_u_json); if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 63, __pyx_L1_error) __Pyx_GOTREF(__pyx_t_2); __pyx_t_6 = NULL; if (CYTHON_UNPACK_METHODS && unlikely(PyMethod_Check(__pyx_t_5))) { __pyx_t_6 = PyMethod_GET_SELF(__pyx_t_5); if (likely(__pyx_t_6)) { PyObject* function = PyMethod_GET_FUNCTION(__pyx_t_5); __Pyx_INCREF(__pyx_t_6); __Pyx_INCREF(function); __Pyx_DECREF_SET(__pyx_t_5, function); } } __pyx_t_3 = (__pyx_t_6) ? __Pyx_PyObject_Call2Args(__pyx_t_5, __pyx_t_6, __pyx_t_2) : __Pyx_PyObject_CallOneArg(__pyx_t_5, __pyx_t_2); __Pyx_XDECREF(__pyx_t_6); __pyx_t_6 = 0; __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0; if (unlikely(!__pyx_t_3)) __PYX_ERR(0, 63, __pyx_L1_error) __Pyx_GOTREF(__pyx_t_3); __Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0; __pyx_t_1 = __pyx_t_3; __pyx_t_3 = 0; } __pyx_v_msg = __pyx_t_1; __pyx_t_1 = 0; /* "hummingbot/market/kucoin/kucoin_order_book.pyx":64 * ts = record["timestamp"] * msg = record["json"] if type(record["json"]) == dict else ujson.loads(record["json"]) * if metadata: # <<<<<<<<<<<<<< * msg.update(metadata) * return OrderBookMessage(OrderBookMessageType.SNAPSHOT, { */ __pyx_t_4 = __Pyx_PyObject_IsTrue(__pyx_v_metadata); if (unlikely(__pyx_t_4 < 0)) __PYX_ERR(0, 64, __pyx_L1_error) if (__pyx_t_4) { /* "hummingbot/market/kucoin/kucoin_order_book.pyx":65 * msg = record["json"] if type(record["json"]) == dict else ujson.loads(record["json"]) * if metadata: * msg.update(metadata) # <<<<<<<<<<<<<< * return OrderBookMessage(OrderBookMessageType.SNAPSHOT, { * "trading_pair": msg["symbol"], */ __pyx_t_3 = __Pyx_PyObject_GetAttrStr(__pyx_v_msg, __pyx_n_s_update); if (unlikely(!__pyx_t_3)) __PYX_ERR(0, 65, __pyx_L1_error) __Pyx_GOTREF(__pyx_t_3); __pyx_t_5 = NULL; if (CYTHON_UNPACK_METHODS && likely(PyMethod_Check(__pyx_t_3))) { __pyx_t_5 = PyMethod_GET_SELF(__pyx_t_3); if (likely(__pyx_t_5)) { PyObject* function = PyMethod_GET_FUNCTION(__pyx_t_3); __Pyx_INCREF(__pyx_t_5); __Pyx_INCREF(function); __Pyx_DECREF_SET(__pyx_t_3, function); } } __pyx_t_1 = (__pyx_t_5) ? __Pyx_PyObject_Call2Args(__pyx_t_3, __pyx_t_5, __pyx_v_metadata) : __Pyx_PyObject_CallOneArg(__pyx_t_3, __pyx_v_metadata); __Pyx_XDECREF(__pyx_t_5); __pyx_t_5 = 0; if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 65, __pyx_L1_error) __Pyx_GOTREF(__pyx_t_1); __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0; __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; /* "hummingbot/market/kucoin/kucoin_order_book.pyx":64 * ts = record["timestamp"] * msg = record["json"] if type(record["json"]) == dict else ujson.loads(record["json"]) * if metadata: # <<<<<<<<<<<<<< * msg.update(metadata) * return OrderBookMessage(OrderBookMessageType.SNAPSHOT, { */ } /* "hummingbot/market/kucoin/kucoin_order_book.pyx":66 * if metadata: * msg.update(metadata) * return OrderBookMessage(OrderBookMessageType.SNAPSHOT, { # <<<<<<<<<<<<<< * "trading_pair": msg["symbol"], * "update_id": int(ts), */ __Pyx_XDECREF(__pyx_r); __Pyx_GetModuleGlobalName(__pyx_t_1, __pyx_n_s_OrderBookMessage); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 66, __pyx_L1_error) __Pyx_GOTREF(__pyx_t_1); __Pyx_GetModuleGlobalName(__pyx_t_3, __pyx_n_s_OrderBookMessageType); if (unlikely(!__pyx_t_3)) __PYX_ERR(0, 66, __pyx_L1_error) __Pyx_GOTREF(__pyx_t_3); __pyx_t_5 = __Pyx_PyObject_GetAttrStr(__pyx_t_3, __pyx_n_s_SNAPSHOT); if (unlikely(!__pyx_t_5)) __PYX_ERR(0, 66, __pyx_L1_error) __Pyx_GOTREF(__pyx_t_5); __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0; /* "hummingbot/market/kucoin/kucoin_order_book.pyx":67 * msg.update(metadata) * return OrderBookMessage(OrderBookMessageType.SNAPSHOT, { * "trading_pair": msg["symbol"], # <<<<<<<<<<<<<< * "update_id": int(ts), * "bids": msg["data"]["bids"], */ __pyx_t_3 = __Pyx_PyDict_NewPresized(4); if (unlikely(!__pyx_t_3)) __PYX_ERR(0, 67, __pyx_L1_error) __Pyx_GOTREF(__pyx_t_3); __pyx_t_2 = __Pyx_PyObject_Dict_GetItem(__pyx_v_msg, __pyx_n_u_symbol); if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 67, __pyx_L1_error) __Pyx_GOTREF(__pyx_t_2); if (PyDict_SetItem(__pyx_t_3, __pyx_n_u_trading_pair, __pyx_t_2) < 0) __PYX_ERR(0, 67, __pyx_L1_error) __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0; /* "hummingbot/market/kucoin/kucoin_order_book.pyx":68 * return OrderBookMessage(OrderBookMessageType.SNAPSHOT, { * "trading_pair": msg["symbol"], * "update_id": int(ts), # <<<<<<<<<<<<<< * "bids": msg["data"]["bids"], * "asks": msg["data"]["asks"] */ __pyx_t_2 = __Pyx_PyNumber_Int(__pyx_v_ts); if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 68, __pyx_L1_error) __Pyx_GOTREF(__pyx_t_2); if (PyDict_SetItem(__pyx_t_3, __pyx_n_u_update_id, __pyx_t_2) < 0) __PYX_ERR(0, 67, __pyx_L1_error) __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0; /* "hummingbot/market/kucoin/kucoin_order_book.pyx":69 * "trading_pair": msg["symbol"], * "update_id": int(ts), * "bids": msg["data"]["bids"], # <<<<<<<<<<<<<< * "asks": msg["data"]["asks"] * }, timestamp=record["timestamp"] * 1e-3) */ __pyx_t_2 = __Pyx_PyObject_Dict_GetItem(__pyx_v_msg, __pyx_n_u_data); if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 69, __pyx_L1_error) __Pyx_GOTREF(__pyx_t_2); __pyx_t_6 = __Pyx_PyObject_Dict_GetItem(__pyx_t_2, __pyx_n_u_bids); if (unlikely(!__pyx_t_6)) __PYX_ERR(0, 69, __pyx_L1_error) __Pyx_GOTREF(__pyx_t_6); __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0; if (PyDict_SetItem(__pyx_t_3, __pyx_n_u_bids, __pyx_t_6) < 0) __PYX_ERR(0, 67, __pyx_L1_error) __Pyx_DECREF(__pyx_t_6); __pyx_t_6 = 0; /* "hummingbot/market/kucoin/kucoin_order_book.pyx":70 * "update_id": int(ts), * "bids": msg["data"]["bids"], * "asks": msg["data"]["asks"] # <<<<<<<<<<<<<< * }, timestamp=record["timestamp"] * 1e-3) * */ __pyx_t_6 = __Pyx_PyObject_Dict_GetItem(__pyx_v_msg, __pyx_n_u_data); if (unlikely(!__pyx_t_6)) __PYX_ERR(0, 70, __pyx_L1_error) __Pyx_GOTREF(__pyx_t_6); __pyx_t_2 = __Pyx_PyObject_Dict_GetItem(__pyx_t_6, __pyx_n_u_asks); if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 70, __pyx_L1_error) __Pyx_GOTREF(__pyx_t_2); __Pyx_DECREF(__pyx_t_6); __pyx_t_6 = 0; if (PyDict_SetItem(__pyx_t_3, __pyx_n_u_asks, __pyx_t_2) < 0) __PYX_ERR(0, 67, __pyx_L1_error) __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0; /* "hummingbot/market/kucoin/kucoin_order_book.pyx":66 * if metadata: * msg.update(metadata) * return OrderBookMessage(OrderBookMessageType.SNAPSHOT, { # <<<<<<<<<<<<<< * "trading_pair": msg["symbol"], * "update_id": int(ts), */ __pyx_t_2 = PyTuple_New(2); if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 66, __pyx_L1_error) __Pyx_GOTREF(__pyx_t_2); __Pyx_GIVEREF(__pyx_t_5); PyTuple_SET_ITEM(__pyx_t_2, 0, __pyx_t_5); __Pyx_GIVEREF(__pyx_t_3); PyTuple_SET_ITEM(__pyx_t_2, 1, __pyx_t_3); __pyx_t_5 = 0; __pyx_t_3 = 0; /* "hummingbot/market/kucoin/kucoin_order_book.pyx":71 * "bids": msg["data"]["bids"], * "asks": msg["data"]["asks"] * }, timestamp=record["timestamp"] * 1e-3) # <<<<<<<<<<<<<< * * @classmethod */ __pyx_t_3 = __Pyx_PyDict_NewPresized(1); if (unlikely(!__pyx_t_3)) __PYX_ERR(0, 71, __pyx_L1_error) __Pyx_GOTREF(__pyx_t_3); __pyx_t_5 = __Pyx_PyObject_Dict_GetItem(__pyx_v_record, __pyx_n_u_timestamp); if (unlikely(!__pyx_t_5)) __PYX_ERR(0, 71, __pyx_L1_error) __Pyx_GOTREF(__pyx_t_5); __pyx_t_6 = PyNumber_Multiply(__pyx_t_5, __pyx_float_1eneg_3); if (unlikely(!__pyx_t_6)) __PYX_ERR(0, 71, __pyx_L1_error) __Pyx_GOTREF(__pyx_t_6); __Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0; if (PyDict_SetItem(__pyx_t_3, __pyx_n_s_timestamp, __pyx_t_6) < 0) __PYX_ERR(0, 71, __pyx_L1_error) __Pyx_DECREF(__pyx_t_6); __pyx_t_6 = 0; /* "hummingbot/market/kucoin/kucoin_order_book.pyx":66 * if metadata: * msg.update(metadata) * return OrderBookMessage(OrderBookMessageType.SNAPSHOT, { # <<<<<<<<<<<<<< * "trading_pair": msg["symbol"], * "update_id": int(ts), */ __pyx_t_6 = __Pyx_PyObject_Call(__pyx_t_1, __pyx_t_2, __pyx_t_3); if (unlikely(!__pyx_t_6)) __PYX_ERR(0, 66, __pyx_L1_error) __Pyx_GOTREF(__pyx_t_6); __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0; __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0; __pyx_r = __pyx_t_6; __pyx_t_6 = 0; goto __pyx_L0; /* "hummingbot/market/kucoin/kucoin_order_book.pyx":61 * * @classmethod * def snapshot_message_from_db(cls, record: RowProxy, metadata: Optional[Dict] = None) -> OrderBookMessage: # <<<<<<<<<<<<<< * ts = record["timestamp"] * msg = record["json"] if type(record["json"]) == dict else ujson.loads(record["json"]) */ /* function exit code */ __pyx_L1_error:; __Pyx_XDECREF(__pyx_t_1); __Pyx_XDECREF(__pyx_t_2); __Pyx_XDECREF(__pyx_t_3); __Pyx_XDECREF(__pyx_t_5); __Pyx_XDECREF(__pyx_t_6); __Pyx_AddTraceback("hummingbot.market.kucoin.kucoin_order_book.KucoinOrderBook.snapshot_message_from_db", __pyx_clineno, __pyx_lineno, __pyx_filename); __pyx_r = NULL; __pyx_L0:; __Pyx_XDECREF(__pyx_v_ts); __Pyx_XDECREF(__pyx_v_msg); __Pyx_XGIVEREF(__pyx_r); __Pyx_RefNannyFinishContext(); return __pyx_r; } /* "hummingbot/market/kucoin/kucoin_order_book.pyx":74 * * @classmethod * def diff_message_from_db(cls, record: RowProxy, metadata: Optional[Dict] = None) -> OrderBookMessage: # <<<<<<<<<<<<<< * ts = record["timestamp"] * msg = ujson.loads(record["json"]) # Kucoin json in DB is TEXT */ /* Python wrapper */ static PyObject *__pyx_pw_10hummingbot_6market_6kucoin_17kucoin_order_book_15KucoinOrderBook_9diff_message_from_db(PyObject *__pyx_v_cls, PyObject *__pyx_args, PyObject *__pyx_kwds); /*proto*/ static PyObject *__pyx_pw_10hummingbot_6market_6kucoin_17kucoin_order_book_15KucoinOrderBook_9diff_message_from_db(PyObject *__pyx_v_cls, PyObject *__pyx_args, PyObject *__pyx_kwds) { PyObject *__pyx_v_record = 0; PyObject *__pyx_v_metadata = 0; PyObject *__pyx_r = 0; __Pyx_RefNannyDeclarations __Pyx_RefNannySetupContext("diff_message_from_db (wrapper)", 0); { static PyObject **__pyx_pyargnames[] = {&__pyx_n_s_record,&__pyx_n_s_metadata,0}; PyObject* values[2] = {0,0}; values[1] = ((PyObject *)Py_None); if (unlikely(__pyx_kwds)) { Py_ssize_t kw_args; const Py_ssize_t pos_args = PyTuple_GET_SIZE(__pyx_args); switch (pos_args) { case 2: values[1] = PyTuple_GET_ITEM(__pyx_args, 1); CYTHON_FALLTHROUGH; case 1: values[0] = PyTuple_GET_ITEM(__pyx_args, 0); CYTHON_FALLTHROUGH; case 0: break; default: goto __pyx_L5_argtuple_error; } kw_args = PyDict_Size(__pyx_kwds); switch (pos_args) { case 0: if (likely((values[0] = __Pyx_PyDict_GetItemStr(__pyx_kwds, __pyx_n_s_record)) != 0)) kw_args--; else goto __pyx_L5_argtuple_error; CYTHON_FALLTHROUGH; case 1: if (kw_args > 0) { PyObject* value = __Pyx_PyDict_GetItemStr(__pyx_kwds, __pyx_n_s_metadata); if (value) { values[1] = value; kw_args--; } } } if (unlikely(kw_args > 0)) { if (unlikely(__Pyx_ParseOptionalKeywords(__pyx_kwds, __pyx_pyargnames, 0, values, pos_args, "diff_message_from_db") < 0)) __PYX_ERR(0, 74, __pyx_L3_error) } } else { switch (PyTuple_GET_SIZE(__pyx_args)) { case 2: values[1] = PyTuple_GET_ITEM(__pyx_args, 1); CYTHON_FALLTHROUGH; case 1: values[0] = PyTuple_GET_ITEM(__pyx_args, 0); break; default: goto __pyx_L5_argtuple_error; } } __pyx_v_record = values[0]; __pyx_v_metadata = values[1]; } goto __pyx_L4_argument_unpacking_done; __pyx_L5_argtuple_error:; __Pyx_RaiseArgtupleInvalid("diff_message_from_db", 0, 1, 2, PyTuple_GET_SIZE(__pyx_args)); __PYX_ERR(0, 74, __pyx_L3_error) __pyx_L3_error:; __Pyx_AddTraceback("hummingbot.market.kucoin.kucoin_order_book.KucoinOrderBook.diff_message_from_db", __pyx_clineno, __pyx_lineno, __pyx_filename); __Pyx_RefNannyFinishContext(); return NULL; __pyx_L4_argument_unpacking_done:; __pyx_r = __pyx_pf_10hummingbot_6market_6kucoin_17kucoin_order_book_15KucoinOrderBook_8diff_message_from_db(((PyTypeObject*)__pyx_v_cls), __pyx_v_record, __pyx_v_metadata); /* function exit code */ __Pyx_RefNannyFinishContext(); return __pyx_r; } static PyObject *__pyx_pf_10hummingbot_6market_6kucoin_17kucoin_order_book_15KucoinOrderBook_8diff_message_from_db(CYTHON_UNUSED PyTypeObject *__pyx_v_cls, PyObject *__pyx_v_record, PyObject *__pyx_v_metadata) { PyObject *__pyx_v_ts = NULL; PyObject *__pyx_v_msg = NULL; PyObject *__pyx_r = NULL; __Pyx_RefNannyDeclarations PyObject *__pyx_t_1 = NULL; PyObject *__pyx_t_2 = NULL; PyObject *__pyx_t_3 = NULL; PyObject *__pyx_t_4 = NULL; int __pyx_t_5; PyObject *__pyx_t_6 = NULL; __Pyx_RefNannySetupContext("diff_message_from_db", 0); /* "hummingbot/market/kucoin/kucoin_order_book.pyx":75 * @classmethod * def diff_message_from_db(cls, record: RowProxy, metadata: Optional[Dict] = None) -> OrderBookMessage: * ts = record["timestamp"] # <<<<<<<<<<<<<< * msg = ujson.loads(record["json"]) # Kucoin json in DB is TEXT * if metadata: */ __pyx_t_1 = __Pyx_PyObject_Dict_GetItem(__pyx_v_record, __pyx_n_u_timestamp); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 75, __pyx_L1_error) __Pyx_GOTREF(__pyx_t_1); __pyx_v_ts = __pyx_t_1; __pyx_t_1 = 0; /* "hummingbot/market/kucoin/kucoin_order_book.pyx":76 * def diff_message_from_db(cls, record: RowProxy, metadata: Optional[Dict] = None) -> OrderBookMessage: * ts = record["timestamp"] * msg = ujson.loads(record["json"]) # Kucoin json in DB is TEXT # <<<<<<<<<<<<<< * if metadata: * msg.update(metadata) */ __Pyx_GetModuleGlobalName(__pyx_t_2, __pyx_n_s_ujson); if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 76, __pyx_L1_error) __Pyx_GOTREF(__pyx_t_2); __pyx_t_3 = __Pyx_PyObject_GetAttrStr(__pyx_t_2, __pyx_n_s_loads); if (unlikely(!__pyx_t_3)) __PYX_ERR(0, 76, __pyx_L1_error) __Pyx_GOTREF(__pyx_t_3); __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0; __pyx_t_2 = __Pyx_PyObject_Dict_GetItem(__pyx_v_record, __pyx_n_u_json); if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 76, __pyx_L1_error) __Pyx_GOTREF(__pyx_t_2); __pyx_t_4 = NULL; if (CYTHON_UNPACK_METHODS && unlikely(PyMethod_Check(__pyx_t_3))) { __pyx_t_4 = PyMethod_GET_SELF(__pyx_t_3); if (likely(__pyx_t_4)) { PyObject* function = PyMethod_GET_FUNCTION(__pyx_t_3); __Pyx_INCREF(__pyx_t_4); __Pyx_INCREF(function); __Pyx_DECREF_SET(__pyx_t_3, function); } } __pyx_t_1 = (__pyx_t_4) ? __Pyx_PyObject_Call2Args(__pyx_t_3, __pyx_t_4, __pyx_t_2) : __Pyx_PyObject_CallOneArg(__pyx_t_3, __pyx_t_2); __Pyx_XDECREF(__pyx_t_4); __pyx_t_4 = 0; __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0; if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 76, __pyx_L1_error) __Pyx_GOTREF(__pyx_t_1); __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0; __pyx_v_msg = __pyx_t_1; __pyx_t_1 = 0; /* "hummingbot/market/kucoin/kucoin_order_book.pyx":77 * ts = record["timestamp"] * msg = ujson.loads(record["json"]) # Kucoin json in DB is TEXT * if metadata: # <<<<<<<<<<<<<< * msg.update(metadata) * return OrderBookMessage(OrderBookMessageType.DIFF, { */ __pyx_t_5 = __Pyx_PyObject_IsTrue(__pyx_v_metadata); if (unlikely(__pyx_t_5 < 0)) __PYX_ERR(0, 77, __pyx_L1_error) if (__pyx_t_5) { /* "hummingbot/market/kucoin/kucoin_order_book.pyx":78 * msg = ujson.loads(record["json"]) # Kucoin json in DB is TEXT * if metadata: * msg.update(metadata) # <<<<<<<<<<<<<< * return OrderBookMessage(OrderBookMessageType.DIFF, { * "trading_pair": msg["symbol"], */ __pyx_t_3 = __Pyx_PyObject_GetAttrStr(__pyx_v_msg, __pyx_n_s_update); if (unlikely(!__pyx_t_3)) __PYX_ERR(0, 78, __pyx_L1_error) __Pyx_GOTREF(__pyx_t_3); __pyx_t_2 = NULL; if (CYTHON_UNPACK_METHODS && likely(PyMethod_Check(__pyx_t_3))) { __pyx_t_2 = PyMethod_GET_SELF(__pyx_t_3); if (likely(__pyx_t_2)) { PyObject* function = PyMethod_GET_FUNCTION(__pyx_t_3); __Pyx_INCREF(__pyx_t_2); __Pyx_INCREF(function); __Pyx_DECREF_SET(__pyx_t_3, function); } } __pyx_t_1 = (__pyx_t_2) ? __Pyx_PyObject_Call2Args(__pyx_t_3, __pyx_t_2, __pyx_v_metadata) : __Pyx_PyObject_CallOneArg(__pyx_t_3, __pyx_v_metadata); __Pyx_XDECREF(__pyx_t_2); __pyx_t_2 = 0; if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 78, __pyx_L1_error) __Pyx_GOTREF(__pyx_t_1); __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0; __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; /* "hummingbot/market/kucoin/kucoin_order_book.pyx":77 * ts = record["timestamp"] * msg = ujson.loads(record["json"]) # Kucoin json in DB is TEXT * if metadata: # <<<<<<<<<<<<<< * msg.update(metadata) * return OrderBookMessage(OrderBookMessageType.DIFF, { */ } /* "hummingbot/market/kucoin/kucoin_order_book.pyx":79 * if metadata: * msg.update(metadata) * return OrderBookMessage(OrderBookMessageType.DIFF, { # <<<<<<<<<<<<<< * "trading_pair": msg["symbol"], * "update_id": ts, */ __Pyx_XDECREF(__pyx_r); __Pyx_GetModuleGlobalName(__pyx_t_1, __pyx_n_s_OrderBookMessage); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 79, __pyx_L1_error) __Pyx_GOTREF(__pyx_t_1); __Pyx_GetModuleGlobalName(__pyx_t_3, __pyx_n_s_OrderBookMessageType); if (unlikely(!__pyx_t_3)) __PYX_ERR(0, 79, __pyx_L1_error) __Pyx_GOTREF(__pyx_t_3); __pyx_t_2 = __Pyx_PyObject_GetAttrStr(__pyx_t_3, __pyx_n_s_DIFF); if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 79, __pyx_L1_error) __Pyx_GOTREF(__pyx_t_2); __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0; /* "hummingbot/market/kucoin/kucoin_order_book.pyx":80 * msg.update(metadata) * return OrderBookMessage(OrderBookMessageType.DIFF, { * "trading_pair": msg["symbol"], # <<<<<<<<<<<<<< * "update_id": ts, * "bids": msg["data"]["bids"], */ __pyx_t_3 = __Pyx_PyDict_NewPresized(4); if (unlikely(!__pyx_t_3)) __PYX_ERR(0, 80, __pyx_L1_error) __Pyx_GOTREF(__pyx_t_3); __pyx_t_4 = __Pyx_PyObject_Dict_GetItem(__pyx_v_msg, __pyx_n_u_symbol); if (unlikely(!__pyx_t_4)) __PYX_ERR(0, 80, __pyx_L1_error) __Pyx_GOTREF(__pyx_t_4); if (PyDict_SetItem(__pyx_t_3, __pyx_n_u_trading_pair, __pyx_t_4) < 0) __PYX_ERR(0, 80, __pyx_L1_error) __Pyx_DECREF(__pyx_t_4); __pyx_t_4 = 0; /* "hummingbot/market/kucoin/kucoin_order_book.pyx":81 * return OrderBookMessage(OrderBookMessageType.DIFF, { * "trading_pair": msg["symbol"], * "update_id": ts, # <<<<<<<<<<<<<< * "bids": msg["data"]["bids"], * "asks": msg["data"]["asks"] */ if (PyDict_SetItem(__pyx_t_3, __pyx_n_u_update_id, __pyx_v_ts) < 0) __PYX_ERR(0, 80, __pyx_L1_error) /* "hummingbot/market/kucoin/kucoin_order_book.pyx":82 * "trading_pair": msg["symbol"], * "update_id": ts, * "bids": msg["data"]["bids"], # <<<<<<<<<<<<<< * "asks": msg["data"]["asks"] * }, timestamp=record["timestamp"] * 1e-3) */ __pyx_t_4 = __Pyx_PyObject_Dict_GetItem(__pyx_v_msg, __pyx_n_u_data); if (unlikely(!__pyx_t_4)) __PYX_ERR(0, 82, __pyx_L1_error) __Pyx_GOTREF(__pyx_t_4); __pyx_t_6 = __Pyx_PyObject_Dict_GetItem(__pyx_t_4, __pyx_n_u_bids); if (unlikely(!__pyx_t_6)) __PYX_ERR(0, 82, __pyx_L1_error) __Pyx_GOTREF(__pyx_t_6); __Pyx_DECREF(__pyx_t_4); __pyx_t_4 = 0; if (PyDict_SetItem(__pyx_t_3, __pyx_n_u_bids, __pyx_t_6) < 0) __PYX_ERR(0, 80, __pyx_L1_error) __Pyx_DECREF(__pyx_t_6); __pyx_t_6 = 0; /* "hummingbot/market/kucoin/kucoin_order_book.pyx":83 * "update_id": ts, * "bids": msg["data"]["bids"], * "asks": msg["data"]["asks"] # <<<<<<<<<<<<<< * }, timestamp=record["timestamp"] * 1e-3) * */ __pyx_t_6 = __Pyx_PyObject_Dict_GetItem(__pyx_v_msg, __pyx_n_u_data); if (unlikely(!__pyx_t_6)) __PYX_ERR(0, 83, __pyx_L1_error) __Pyx_GOTREF(__pyx_t_6); __pyx_t_4 = __Pyx_PyObject_Dict_GetItem(__pyx_t_6, __pyx_n_u_asks); if (unlikely(!__pyx_t_4)) __PYX_ERR(0, 83, __pyx_L1_error) __Pyx_GOTREF(__pyx_t_4); __Pyx_DECREF(__pyx_t_6); __pyx_t_6 = 0; if (PyDict_SetItem(__pyx_t_3, __pyx_n_u_asks, __pyx_t_4) < 0) __PYX_ERR(0, 80, __pyx_L1_error) __Pyx_DECREF(__pyx_t_4); __pyx_t_4 = 0; /* "hummingbot/market/kucoin/kucoin_order_book.pyx":79 * if metadata: * msg.update(metadata) * return OrderBookMessage(OrderBookMessageType.DIFF, { # <<<<<<<<<<<<<< * "trading_pair": msg["symbol"], * "update_id": ts, */ __pyx_t_4 = PyTuple_New(2); if (unlikely(!__pyx_t_4)) __PYX_ERR(0, 79, __pyx_L1_error) __Pyx_GOTREF(__pyx_t_4); __Pyx_GIVEREF(__pyx_t_2); PyTuple_SET_ITEM(__pyx_t_4, 0, __pyx_t_2); __Pyx_GIVEREF(__pyx_t_3); PyTuple_SET_ITEM(__pyx_t_4, 1, __pyx_t_3); __pyx_t_2 = 0; __pyx_t_3 = 0; /* "hummingbot/market/kucoin/kucoin_order_book.pyx":84 * "bids": msg["data"]["bids"], * "asks": msg["data"]["asks"] * }, timestamp=record["timestamp"] * 1e-3) # <<<<<<<<<<<<<< * * @classmethod */ __pyx_t_3 = __Pyx_PyDict_NewPresized(1); if (unlikely(!__pyx_t_3)) __PYX_ERR(0, 84, __pyx_L1_error) __Pyx_GOTREF(__pyx_t_3); __pyx_t_2 = __Pyx_PyObject_Dict_GetItem(__pyx_v_record, __pyx_n_u_timestamp); if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 84, __pyx_L1_error) __Pyx_GOTREF(__pyx_t_2); __pyx_t_6 = PyNumber_Multiply(__pyx_t_2, __pyx_float_1eneg_3); if (unlikely(!__pyx_t_6)) __PYX_ERR(0, 84, __pyx_L1_error) __Pyx_GOTREF(__pyx_t_6); __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0; if (PyDict_SetItem(__pyx_t_3, __pyx_n_s_timestamp, __pyx_t_6) < 0) __PYX_ERR(0, 84, __pyx_L1_error) __Pyx_DECREF(__pyx_t_6); __pyx_t_6 = 0; /* "hummingbot/market/kucoin/kucoin_order_book.pyx":79 * if metadata: * msg.update(metadata) * return OrderBookMessage(OrderBookMessageType.DIFF, { # <<<<<<<<<<<<<< * "trading_pair": msg["symbol"], * "update_id": ts, */ __pyx_t_6 = __Pyx_PyObject_Call(__pyx_t_1, __pyx_t_4, __pyx_t_3); if (unlikely(!__pyx_t_6)) __PYX_ERR(0, 79, __pyx_L1_error) __Pyx_GOTREF(__pyx_t_6); __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; __Pyx_DECREF(__pyx_t_4); __pyx_t_4 = 0; __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0; __pyx_r = __pyx_t_6; __pyx_t_6 = 0; goto __pyx_L0; /* "hummingbot/market/kucoin/kucoin_order_book.pyx":74 * * @classmethod * def diff_message_from_db(cls, record: RowProxy, metadata: Optional[Dict] = None) -> OrderBookMessage: # <<<<<<<<<<<<<< * ts = record["timestamp"] * msg = ujson.loads(record["json"]) # Kucoin json in DB is TEXT */ /* function exit code */ __pyx_L1_error:; __Pyx_XDECREF(__pyx_t_1); __Pyx_XDECREF(__pyx_t_2); __Pyx_XDECREF(__pyx_t_3); __Pyx_XDECREF(__pyx_t_4); __Pyx_XDECREF(__pyx_t_6); __Pyx_AddTraceback("hummingbot.market.kucoin.kucoin_order_book.KucoinOrderBook.diff_message_from_db", __pyx_clineno, __pyx_lineno, __pyx_filename); __pyx_r = NULL; __pyx_L0:; __Pyx_XDECREF(__pyx_v_ts); __Pyx_XDECREF(__pyx_v_msg); __Pyx_XGIVEREF(__pyx_r); __Pyx_RefNannyFinishContext(); return __pyx_r; } /* "hummingbot/market/kucoin/kucoin_order_book.pyx":87 * * @classmethod * def snapshot_message_from_kafka(cls, record: ConsumerRecord, metadata: Optional[Dict] = None) -> OrderBookMessage: # <<<<<<<<<<<<<< * ts = record.timestamp * msg = ujson.loads(record.value.decode("utf-8")) */ /* Python wrapper */ static PyObject *__pyx_pw_10hummingbot_6market_6kucoin_17kucoin_order_book_15KucoinOrderBook_11snapshot_message_from_kafka(PyObject *__pyx_v_cls, PyObject *__pyx_args, PyObject *__pyx_kwds); /*proto*/ static PyObject *__pyx_pw_10hummingbot_6market_6kucoin_17kucoin_order_book_15KucoinOrderBook_11snapshot_message_from_kafka(PyObject *__pyx_v_cls, PyObject *__pyx_args, PyObject *__pyx_kwds) { PyObject *__pyx_v_record = 0; PyObject *__pyx_v_metadata = 0; PyObject *__pyx_r = 0; __Pyx_RefNannyDeclarations __Pyx_RefNannySetupContext("snapshot_message_from_kafka (wrapper)", 0); { static PyObject **__pyx_pyargnames[] = {&__pyx_n_s_record,&__pyx_n_s_metadata,0}; PyObject* values[2] = {0,0}; values[1] = ((PyObject *)Py_None); if (unlikely(__pyx_kwds)) { Py_ssize_t kw_args; const Py_ssize_t pos_args = PyTuple_GET_SIZE(__pyx_args); switch (pos_args) { case 2: values[1] = PyTuple_GET_ITEM(__pyx_args, 1); CYTHON_FALLTHROUGH; case 1: values[0] = PyTuple_GET_ITEM(__pyx_args, 0); CYTHON_FALLTHROUGH; case 0: break; default: goto __pyx_L5_argtuple_error; } kw_args = PyDict_Size(__pyx_kwds); switch (pos_args) { case 0: if (likely((values[0] = __Pyx_PyDict_GetItemStr(__pyx_kwds, __pyx_n_s_record)) != 0)) kw_args--; else goto __pyx_L5_argtuple_error; CYTHON_FALLTHROUGH; case 1: if (kw_args > 0) { PyObject* value = __Pyx_PyDict_GetItemStr(__pyx_kwds, __pyx_n_s_metadata); if (value) { values[1] = value; kw_args--; } } } if (unlikely(kw_args > 0)) { if (unlikely(__Pyx_ParseOptionalKeywords(__pyx_kwds, __pyx_pyargnames, 0, values, pos_args, "snapshot_message_from_kafka") < 0)) __PYX_ERR(0, 87, __pyx_L3_error) } } else { switch (PyTuple_GET_SIZE(__pyx_args)) { case 2: values[1] = PyTuple_GET_ITEM(__pyx_args, 1); CYTHON_FALLTHROUGH; case 1: values[0] = PyTuple_GET_ITEM(__pyx_args, 0); break; default: goto __pyx_L5_argtuple_error; } } __pyx_v_record = values[0]; __pyx_v_metadata = values[1]; } goto __pyx_L4_argument_unpacking_done; __pyx_L5_argtuple_error:; __Pyx_RaiseArgtupleInvalid("snapshot_message_from_kafka", 0, 1, 2, PyTuple_GET_SIZE(__pyx_args)); __PYX_ERR(0, 87, __pyx_L3_error) __pyx_L3_error:; __Pyx_AddTraceback("hummingbot.market.kucoin.kucoin_order_book.KucoinOrderBook.snapshot_message_from_kafka", __pyx_clineno, __pyx_lineno, __pyx_filename); __Pyx_RefNannyFinishContext(); return NULL; __pyx_L4_argument_unpacking_done:; __pyx_r = __pyx_pf_10hummingbot_6market_6kucoin_17kucoin_order_book_15KucoinOrderBook_10snapshot_message_from_kafka(((PyTypeObject*)__pyx_v_cls), __pyx_v_record, __pyx_v_metadata); /* function exit code */ __Pyx_RefNannyFinishContext(); return __pyx_r; } static PyObject *__pyx_pf_10hummingbot_6market_6kucoin_17kucoin_order_book_15KucoinOrderBook_10snapshot_message_from_kafka(CYTHON_UNUSED PyTypeObject *__pyx_v_cls, PyObject *__pyx_v_record, PyObject *__pyx_v_metadata) { PyObject *__pyx_v_ts = NULL; PyObject *__pyx_v_msg = NULL; PyObject *__pyx_r = NULL; __Pyx_RefNannyDeclarations PyObject *__pyx_t_1 = NULL; PyObject *__pyx_t_2 = NULL; PyObject *__pyx_t_3 = NULL; PyObject *__pyx_t_4 = NULL; PyObject *__pyx_t_5 = NULL; int __pyx_t_6; __Pyx_RefNannySetupContext("snapshot_message_from_kafka", 0); /* "hummingbot/market/kucoin/kucoin_order_book.pyx":88 * @classmethod * def snapshot_message_from_kafka(cls, record: ConsumerRecord, metadata: Optional[Dict] = None) -> OrderBookMessage: * ts = record.timestamp # <<<<<<<<<<<<<< * msg = ujson.loads(record.value.decode("utf-8")) * if metadata: */ __pyx_t_1 = __Pyx_PyObject_GetAttrStr(__pyx_v_record, __pyx_n_s_timestamp); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 88, __pyx_L1_error) __Pyx_GOTREF(__pyx_t_1); __pyx_v_ts = __pyx_t_1; __pyx_t_1 = 0; /* "hummingbot/market/kucoin/kucoin_order_book.pyx":89 * def snapshot_message_from_kafka(cls, record: ConsumerRecord, metadata: Optional[Dict] = None) -> OrderBookMessage: * ts = record.timestamp * msg = ujson.loads(record.value.decode("utf-8")) # <<<<<<<<<<<<<< * if metadata: * msg.update(metadata) */ __Pyx_GetModuleGlobalName(__pyx_t_2, __pyx_n_s_ujson); if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 89, __pyx_L1_error) __Pyx_GOTREF(__pyx_t_2); __pyx_t_3 = __Pyx_PyObject_GetAttrStr(__pyx_t_2, __pyx_n_s_loads); if (unlikely(!__pyx_t_3)) __PYX_ERR(0, 89, __pyx_L1_error) __Pyx_GOTREF(__pyx_t_3); __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0; __pyx_t_4 = __Pyx_PyObject_GetAttrStr(__pyx_v_record, __pyx_n_s_value); if (unlikely(!__pyx_t_4)) __PYX_ERR(0, 89, __pyx_L1_error) __Pyx_GOTREF(__pyx_t_4); __pyx_t_5 = __Pyx_PyObject_GetAttrStr(__pyx_t_4, __pyx_n_s_decode); if (unlikely(!__pyx_t_5)) __PYX_ERR(0, 89, __pyx_L1_error) __Pyx_GOTREF(__pyx_t_5); __Pyx_DECREF(__pyx_t_4); __pyx_t_4 = 0; __pyx_t_4 = NULL; if (CYTHON_UNPACK_METHODS && likely(PyMethod_Check(__pyx_t_5))) { __pyx_t_4 = PyMethod_GET_SELF(__pyx_t_5); if (likely(__pyx_t_4)) { PyObject* function = PyMethod_GET_FUNCTION(__pyx_t_5); __Pyx_INCREF(__pyx_t_4); __Pyx_INCREF(function); __Pyx_DECREF_SET(__pyx_t_5, function); } } __pyx_t_2 = (__pyx_t_4) ? __Pyx_PyObject_Call2Args(__pyx_t_5, __pyx_t_4, __pyx_kp_u_utf_8) : __Pyx_PyObject_CallOneArg(__pyx_t_5, __pyx_kp_u_utf_8); __Pyx_XDECREF(__pyx_t_4); __pyx_t_4 = 0; if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 89, __pyx_L1_error) __Pyx_GOTREF(__pyx_t_2); __Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0; __pyx_t_5 = NULL; if (CYTHON_UNPACK_METHODS && unlikely(PyMethod_Check(__pyx_t_3))) { __pyx_t_5 = PyMethod_GET_SELF(__pyx_t_3); if (likely(__pyx_t_5)) { PyObject* function = PyMethod_GET_FUNCTION(__pyx_t_3); __Pyx_INCREF(__pyx_t_5); __Pyx_INCREF(function); __Pyx_DECREF_SET(__pyx_t_3, function); } } __pyx_t_1 = (__pyx_t_5) ? __Pyx_PyObject_Call2Args(__pyx_t_3, __pyx_t_5, __pyx_t_2) : __Pyx_PyObject_CallOneArg(__pyx_t_3, __pyx_t_2); __Pyx_XDECREF(__pyx_t_5); __pyx_t_5 = 0; __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0; if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 89, __pyx_L1_error) __Pyx_GOTREF(__pyx_t_1); __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0; __pyx_v_msg = __pyx_t_1; __pyx_t_1 = 0; /* "hummingbot/market/kucoin/kucoin_order_book.pyx":90 * ts = record.timestamp * msg = ujson.loads(record.value.decode("utf-8")) * if metadata: # <<<<<<<<<<<<<< * msg.update(metadata) * return OrderBookMessage(OrderBookMessageType.SNAPSHOT, { */ __pyx_t_6 = __Pyx_PyObject_IsTrue(__pyx_v_metadata); if (unlikely(__pyx_t_6 < 0)) __PYX_ERR(0, 90, __pyx_L1_error) if (__pyx_t_6) { /* "hummingbot/market/kucoin/kucoin_order_book.pyx":91 * msg = ujson.loads(record.value.decode("utf-8")) * if metadata: * msg.update(metadata) # <<<<<<<<<<<<<< * return OrderBookMessage(OrderBookMessageType.SNAPSHOT, { * "trading_pair": msg["symbol"], */ __pyx_t_3 = __Pyx_PyObject_GetAttrStr(__pyx_v_msg, __pyx_n_s_update); if (unlikely(!__pyx_t_3)) __PYX_ERR(0, 91, __pyx_L1_error) __Pyx_GOTREF(__pyx_t_3); __pyx_t_2 = NULL; if (CYTHON_UNPACK_METHODS && likely(PyMethod_Check(__pyx_t_3))) { __pyx_t_2 = PyMethod_GET_SELF(__pyx_t_3); if (likely(__pyx_t_2)) { PyObject* function = PyMethod_GET_FUNCTION(__pyx_t_3); __Pyx_INCREF(__pyx_t_2); __Pyx_INCREF(function); __Pyx_DECREF_SET(__pyx_t_3, function); } } __pyx_t_1 = (__pyx_t_2) ? __Pyx_PyObject_Call2Args(__pyx_t_3, __pyx_t_2, __pyx_v_metadata) : __Pyx_PyObject_CallOneArg(__pyx_t_3, __pyx_v_metadata); __Pyx_XDECREF(__pyx_t_2); __pyx_t_2 = 0; if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 91, __pyx_L1_error) __Pyx_GOTREF(__pyx_t_1); __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0; __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; /* "hummingbot/market/kucoin/kucoin_order_book.pyx":90 * ts = record.timestamp * msg = ujson.loads(record.value.decode("utf-8")) * if metadata: # <<<<<<<<<<<<<< * msg.update(metadata) * return OrderBookMessage(OrderBookMessageType.SNAPSHOT, { */ } /* "hummingbot/market/kucoin/kucoin_order_book.pyx":92 * if metadata: * msg.update(metadata) * return OrderBookMessage(OrderBookMessageType.SNAPSHOT, { # <<<<<<<<<<<<<< * "trading_pair": msg["symbol"], * "update_id": ts, */ __Pyx_XDECREF(__pyx_r); __Pyx_GetModuleGlobalName(__pyx_t_1, __pyx_n_s_OrderBookMessage); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 92, __pyx_L1_error) __Pyx_GOTREF(__pyx_t_1); __Pyx_GetModuleGlobalName(__pyx_t_3, __pyx_n_s_OrderBookMessageType); if (unlikely(!__pyx_t_3)) __PYX_ERR(0, 92, __pyx_L1_error) __Pyx_GOTREF(__pyx_t_3); __pyx_t_2 = __Pyx_PyObject_GetAttrStr(__pyx_t_3, __pyx_n_s_SNAPSHOT); if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 92, __pyx_L1_error) __Pyx_GOTREF(__pyx_t_2); __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0; /* "hummingbot/market/kucoin/kucoin_order_book.pyx":93 * msg.update(metadata) * return OrderBookMessage(OrderBookMessageType.SNAPSHOT, { * "trading_pair": msg["symbol"], # <<<<<<<<<<<<<< * "update_id": ts, * "bids": msg["data"]["bids"], */ __pyx_t_3 = __Pyx_PyDict_NewPresized(4); if (unlikely(!__pyx_t_3)) __PYX_ERR(0, 93, __pyx_L1_error) __Pyx_GOTREF(__pyx_t_3); __pyx_t_5 = __Pyx_PyObject_Dict_GetItem(__pyx_v_msg, __pyx_n_u_symbol); if (unlikely(!__pyx_t_5)) __PYX_ERR(0, 93, __pyx_L1_error) __Pyx_GOTREF(__pyx_t_5); if (PyDict_SetItem(__pyx_t_3, __pyx_n_u_trading_pair, __pyx_t_5) < 0) __PYX_ERR(0, 93, __pyx_L1_error) __Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0; /* "hummingbot/market/kucoin/kucoin_order_book.pyx":94 * return OrderBookMessage(OrderBookMessageType.SNAPSHOT, { * "trading_pair": msg["symbol"], * "update_id": ts, # <<<<<<<<<<<<<< * "bids": msg["data"]["bids"], * "asks": msg["data"]["asks"] */ if (PyDict_SetItem(__pyx_t_3, __pyx_n_u_update_id, __pyx_v_ts) < 0) __PYX_ERR(0, 93, __pyx_L1_error) /* "hummingbot/market/kucoin/kucoin_order_book.pyx":95 * "trading_pair": msg["symbol"], * "update_id": ts, * "bids": msg["data"]["bids"], # <<<<<<<<<<<<<< * "asks": msg["data"]["asks"] * }, timestamp=record.timestamp * 1e-3) */ __pyx_t_5 = __Pyx_PyObject_Dict_GetItem(__pyx_v_msg, __pyx_n_u_data); if (unlikely(!__pyx_t_5)) __PYX_ERR(0, 95, __pyx_L1_error) __Pyx_GOTREF(__pyx_t_5); __pyx_t_4 = __Pyx_PyObject_Dict_GetItem(__pyx_t_5, __pyx_n_u_bids); if (unlikely(!__pyx_t_4)) __PYX_ERR(0, 95, __pyx_L1_error) __Pyx_GOTREF(__pyx_t_4); __Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0; if (PyDict_SetItem(__pyx_t_3, __pyx_n_u_bids, __pyx_t_4) < 0) __PYX_ERR(0, 93, __pyx_L1_error) __Pyx_DECREF(__pyx_t_4); __pyx_t_4 = 0; /* "hummingbot/market/kucoin/kucoin_order_book.pyx":96 * "update_id": ts, * "bids": msg["data"]["bids"], * "asks": msg["data"]["asks"] # <<<<<<<<<<<<<< * }, timestamp=record.timestamp * 1e-3) * */ __pyx_t_4 = __Pyx_PyObject_Dict_GetItem(__pyx_v_msg, __pyx_n_u_data); if (unlikely(!__pyx_t_4)) __PYX_ERR(0, 96, __pyx_L1_error) __Pyx_GOTREF(__pyx_t_4); __pyx_t_5 = __Pyx_PyObject_Dict_GetItem(__pyx_t_4, __pyx_n_u_asks); if (unlikely(!__pyx_t_5)) __PYX_ERR(0, 96, __pyx_L1_error) __Pyx_GOTREF(__pyx_t_5); __Pyx_DECREF(__pyx_t_4); __pyx_t_4 = 0; if (PyDict_SetItem(__pyx_t_3, __pyx_n_u_asks, __pyx_t_5) < 0) __PYX_ERR(0, 93, __pyx_L1_error) __Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0; /* "hummingbot/market/kucoin/kucoin_order_book.pyx":92 * if metadata: * msg.update(metadata) * return OrderBookMessage(OrderBookMessageType.SNAPSHOT, { # <<<<<<<<<<<<<< * "trading_pair": msg["symbol"], * "update_id": ts, */ __pyx_t_5 = PyTuple_New(2); if (unlikely(!__pyx_t_5)) __PYX_ERR(0, 92, __pyx_L1_error) __Pyx_GOTREF(__pyx_t_5); __Pyx_GIVEREF(__pyx_t_2); PyTuple_SET_ITEM(__pyx_t_5, 0, __pyx_t_2); __Pyx_GIVEREF(__pyx_t_3); PyTuple_SET_ITEM(__pyx_t_5, 1, __pyx_t_3); __pyx_t_2 = 0; __pyx_t_3 = 0; /* "hummingbot/market/kucoin/kucoin_order_book.pyx":97 * "bids": msg["data"]["bids"], * "asks": msg["data"]["asks"] * }, timestamp=record.timestamp * 1e-3) # <<<<<<<<<<<<<< * * @classmethod */ __pyx_t_3 = __Pyx_PyDict_NewPresized(1); if (unlikely(!__pyx_t_3)) __PYX_ERR(0, 97, __pyx_L1_error) __Pyx_GOTREF(__pyx_t_3); __pyx_t_2 = __Pyx_PyObject_GetAttrStr(__pyx_v_record, __pyx_n_s_timestamp); if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 97, __pyx_L1_error) __Pyx_GOTREF(__pyx_t_2); __pyx_t_4 = PyNumber_Multiply(__pyx_t_2, __pyx_float_1eneg_3); if (unlikely(!__pyx_t_4)) __PYX_ERR(0, 97, __pyx_L1_error) __Pyx_GOTREF(__pyx_t_4); __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0; if (PyDict_SetItem(__pyx_t_3, __pyx_n_s_timestamp, __pyx_t_4) < 0) __PYX_ERR(0, 97, __pyx_L1_error) __Pyx_DECREF(__pyx_t_4); __pyx_t_4 = 0; /* "hummingbot/market/kucoin/kucoin_order_book.pyx":92 * if metadata: * msg.update(metadata) * return OrderBookMessage(OrderBookMessageType.SNAPSHOT, { # <<<<<<<<<<<<<< * "trading_pair": msg["symbol"], * "update_id": ts, */ __pyx_t_4 = __Pyx_PyObject_Call(__pyx_t_1, __pyx_t_5, __pyx_t_3); if (unlikely(!__pyx_t_4)) __PYX_ERR(0, 92, __pyx_L1_error) __Pyx_GOTREF(__pyx_t_4); __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; __Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0; __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0; __pyx_r = __pyx_t_4; __pyx_t_4 = 0; goto __pyx_L0; /* "hummingbot/market/kucoin/kucoin_order_book.pyx":87 * * @classmethod * def snapshot_message_from_kafka(cls, record: ConsumerRecord, metadata: Optional[Dict] = None) -> OrderBookMessage: # <<<<<<<<<<<<<< * ts = record.timestamp * msg = ujson.loads(record.value.decode("utf-8")) */ /* function exit code */ __pyx_L1_error:; __Pyx_XDECREF(__pyx_t_1); __Pyx_XDECREF(__pyx_t_2); __Pyx_XDECREF(__pyx_t_3); __Pyx_XDECREF(__pyx_t_4); __Pyx_XDECREF(__pyx_t_5); __Pyx_AddTraceback("hummingbot.market.kucoin.kucoin_order_book.KucoinOrderBook.snapshot_message_from_kafka", __pyx_clineno, __pyx_lineno, __pyx_filename); __pyx_r = NULL; __pyx_L0:; __Pyx_XDECREF(__pyx_v_ts); __Pyx_XDECREF(__pyx_v_msg); __Pyx_XGIVEREF(__pyx_r); __Pyx_RefNannyFinishContext(); return __pyx_r; } /* "hummingbot/market/kucoin/kucoin_order_book.pyx":100 * * @classmethod * def diff_message_from_kafka(cls, record: ConsumerRecord, metadata: Optional[Dict] = None) -> OrderBookMessage: # <<<<<<<<<<<<<< * msg = ujson.loads(record.value.decode("utf-8")) * if metadata: */ /* Python wrapper */ static PyObject *__pyx_pw_10hummingbot_6market_6kucoin_17kucoin_order_book_15KucoinOrderBook_13diff_message_from_kafka(PyObject *__pyx_v_cls, PyObject *__pyx_args, PyObject *__pyx_kwds); /*proto*/ static PyObject *__pyx_pw_10hummingbot_6market_6kucoin_17kucoin_order_book_15KucoinOrderBook_13diff_message_from_kafka(PyObject *__pyx_v_cls, PyObject *__pyx_args, PyObject *__pyx_kwds) { PyObject *__pyx_v_record = 0; PyObject *__pyx_v_metadata = 0; PyObject *__pyx_r = 0; __Pyx_RefNannyDeclarations __Pyx_RefNannySetupContext("diff_message_from_kafka (wrapper)", 0); { static PyObject **__pyx_pyargnames[] = {&__pyx_n_s_record,&__pyx_n_s_metadata,0}; PyObject* values[2] = {0,0}; values[1] = ((PyObject *)Py_None); if (unlikely(__pyx_kwds)) { Py_ssize_t kw_args; const Py_ssize_t pos_args = PyTuple_GET_SIZE(__pyx_args); switch (pos_args) { case 2: values[1] = PyTuple_GET_ITEM(__pyx_args, 1); CYTHON_FALLTHROUGH; case 1: values[0] = PyTuple_GET_ITEM(__pyx_args, 0); CYTHON_FALLTHROUGH; case 0: break; default: goto __pyx_L5_argtuple_error; } kw_args = PyDict_Size(__pyx_kwds); switch (pos_args) { case 0: if (likely((values[0] = __Pyx_PyDict_GetItemStr(__pyx_kwds, __pyx_n_s_record)) != 0)) kw_args--; else goto __pyx_L5_argtuple_error; CYTHON_FALLTHROUGH; case 1: if (kw_args > 0) { PyObject* value = __Pyx_PyDict_GetItemStr(__pyx_kwds, __pyx_n_s_metadata); if (value) { values[1] = value; kw_args--; } } } if (unlikely(kw_args > 0)) { if (unlikely(__Pyx_ParseOptionalKeywords(__pyx_kwds, __pyx_pyargnames, 0, values, pos_args, "diff_message_from_kafka") < 0)) __PYX_ERR(0, 100, __pyx_L3_error) } } else { switch (PyTuple_GET_SIZE(__pyx_args)) { case 2: values[1] = PyTuple_GET_ITEM(__pyx_args, 1); CYTHON_FALLTHROUGH; case 1: values[0] = PyTuple_GET_ITEM(__pyx_args, 0); break; default: goto __pyx_L5_argtuple_error; } } __pyx_v_record = values[0]; __pyx_v_metadata = values[1]; } goto __pyx_L4_argument_unpacking_done; __pyx_L5_argtuple_error:; __Pyx_RaiseArgtupleInvalid("diff_message_from_kafka", 0, 1, 2, PyTuple_GET_SIZE(__pyx_args)); __PYX_ERR(0, 100, __pyx_L3_error) __pyx_L3_error:; __Pyx_AddTraceback("hummingbot.market.kucoin.kucoin_order_book.KucoinOrderBook.diff_message_from_kafka", __pyx_clineno, __pyx_lineno, __pyx_filename); __Pyx_RefNannyFinishContext(); return NULL; __pyx_L4_argument_unpacking_done:; __pyx_r = __pyx_pf_10hummingbot_6market_6kucoin_17kucoin_order_book_15KucoinOrderBook_12diff_message_from_kafka(((PyTypeObject*)__pyx_v_cls), __pyx_v_record, __pyx_v_metadata); /* function exit code */ __Pyx_RefNannyFinishContext(); return __pyx_r; } static PyObject *__pyx_pf_10hummingbot_6market_6kucoin_17kucoin_order_book_15KucoinOrderBook_12diff_message_from_kafka(CYTHON_UNUSED PyTypeObject *__pyx_v_cls, PyObject *__pyx_v_record, PyObject *__pyx_v_metadata) { PyObject *__pyx_v_msg = NULL; PyObject *__pyx_r = NULL; __Pyx_RefNannyDeclarations PyObject *__pyx_t_1 = NULL; PyObject *__pyx_t_2 = NULL; PyObject *__pyx_t_3 = NULL; PyObject *__pyx_t_4 = NULL; PyObject *__pyx_t_5 = NULL; int __pyx_t_6; __Pyx_RefNannySetupContext("diff_message_from_kafka", 0); /* "hummingbot/market/kucoin/kucoin_order_book.pyx":101 * @classmethod * def diff_message_from_kafka(cls, record: ConsumerRecord, metadata: Optional[Dict] = None) -> OrderBookMessage: * msg = ujson.loads(record.value.decode("utf-8")) # <<<<<<<<<<<<<< * if metadata: * msg.update(metadata) */ __Pyx_GetModuleGlobalName(__pyx_t_2, __pyx_n_s_ujson); if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 101, __pyx_L1_error) __Pyx_GOTREF(__pyx_t_2); __pyx_t_3 = __Pyx_PyObject_GetAttrStr(__pyx_t_2, __pyx_n_s_loads); if (unlikely(!__pyx_t_3)) __PYX_ERR(0, 101, __pyx_L1_error) __Pyx_GOTREF(__pyx_t_3); __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0; __pyx_t_4 = __Pyx_PyObject_GetAttrStr(__pyx_v_record, __pyx_n_s_value); if (unlikely(!__pyx_t_4)) __PYX_ERR(0, 101, __pyx_L1_error) __Pyx_GOTREF(__pyx_t_4); __pyx_t_5 = __Pyx_PyObject_GetAttrStr(__pyx_t_4, __pyx_n_s_decode); if (unlikely(!__pyx_t_5)) __PYX_ERR(0, 101, __pyx_L1_error) __Pyx_GOTREF(__pyx_t_5); __Pyx_DECREF(__pyx_t_4); __pyx_t_4 = 0; __pyx_t_4 = NULL; if (CYTHON_UNPACK_METHODS && likely(PyMethod_Check(__pyx_t_5))) { __pyx_t_4 = PyMethod_GET_SELF(__pyx_t_5); if (likely(__pyx_t_4)) { PyObject* function = PyMethod_GET_FUNCTION(__pyx_t_5); __Pyx_INCREF(__pyx_t_4); __Pyx_INCREF(function); __Pyx_DECREF_SET(__pyx_t_5, function); } } __pyx_t_2 = (__pyx_t_4) ? __Pyx_PyObject_Call2Args(__pyx_t_5, __pyx_t_4, __pyx_kp_u_utf_8) : __Pyx_PyObject_CallOneArg(__pyx_t_5, __pyx_kp_u_utf_8); __Pyx_XDECREF(__pyx_t_4); __pyx_t_4 = 0; if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 101, __pyx_L1_error) __Pyx_GOTREF(__pyx_t_2); __Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0; __pyx_t_5 = NULL; if (CYTHON_UNPACK_METHODS && unlikely(PyMethod_Check(__pyx_t_3))) { __pyx_t_5 = PyMethod_GET_SELF(__pyx_t_3); if (likely(__pyx_t_5)) { PyObject* function = PyMethod_GET_FUNCTION(__pyx_t_3); __Pyx_INCREF(__pyx_t_5); __Pyx_INCREF(function); __Pyx_DECREF_SET(__pyx_t_3, function); } } __pyx_t_1 = (__pyx_t_5) ? __Pyx_PyObject_Call2Args(__pyx_t_3, __pyx_t_5, __pyx_t_2) : __Pyx_PyObject_CallOneArg(__pyx_t_3, __pyx_t_2); __Pyx_XDECREF(__pyx_t_5); __pyx_t_5 = 0; __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0; if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 101, __pyx_L1_error) __Pyx_GOTREF(__pyx_t_1); __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0; __pyx_v_msg = __pyx_t_1; __pyx_t_1 = 0; /* "hummingbot/market/kucoin/kucoin_order_book.pyx":102 * def diff_message_from_kafka(cls, record: ConsumerRecord, metadata: Optional[Dict] = None) -> OrderBookMessage: * msg = ujson.loads(record.value.decode("utf-8")) * if metadata: # <<<<<<<<<<<<<< * msg.update(metadata) * return OrderBookMessage(OrderBookMessageType.DIFF, { */ __pyx_t_6 = __Pyx_PyObject_IsTrue(__pyx_v_metadata); if (unlikely(__pyx_t_6 < 0)) __PYX_ERR(0, 102, __pyx_L1_error) if (__pyx_t_6) { /* "hummingbot/market/kucoin/kucoin_order_book.pyx":103 * msg = ujson.loads(record.value.decode("utf-8")) * if metadata: * msg.update(metadata) # <<<<<<<<<<<<<< * return OrderBookMessage(OrderBookMessageType.DIFF, { * "trading_pair": msg["symbol"], */ __pyx_t_3 = __Pyx_PyObject_GetAttrStr(__pyx_v_msg, __pyx_n_s_update); if (unlikely(!__pyx_t_3)) __PYX_ERR(0, 103, __pyx_L1_error) __Pyx_GOTREF(__pyx_t_3); __pyx_t_2 = NULL; if (CYTHON_UNPACK_METHODS && likely(PyMethod_Check(__pyx_t_3))) { __pyx_t_2 = PyMethod_GET_SELF(__pyx_t_3); if (likely(__pyx_t_2)) { PyObject* function = PyMethod_GET_FUNCTION(__pyx_t_3); __Pyx_INCREF(__pyx_t_2); __Pyx_INCREF(function); __Pyx_DECREF_SET(__pyx_t_3, function); } } __pyx_t_1 = (__pyx_t_2) ? __Pyx_PyObject_Call2Args(__pyx_t_3, __pyx_t_2, __pyx_v_metadata) : __Pyx_PyObject_CallOneArg(__pyx_t_3, __pyx_v_metadata); __Pyx_XDECREF(__pyx_t_2); __pyx_t_2 = 0; if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 103, __pyx_L1_error) __Pyx_GOTREF(__pyx_t_1); __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0; __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; /* "hummingbot/market/kucoin/kucoin_order_book.pyx":102 * def diff_message_from_kafka(cls, record: ConsumerRecord, metadata: Optional[Dict] = None) -> OrderBookMessage: * msg = ujson.loads(record.value.decode("utf-8")) * if metadata: # <<<<<<<<<<<<<< * msg.update(metadata) * return OrderBookMessage(OrderBookMessageType.DIFF, { */ } /* "hummingbot/market/kucoin/kucoin_order_book.pyx":104 * if metadata: * msg.update(metadata) * return OrderBookMessage(OrderBookMessageType.DIFF, { # <<<<<<<<<<<<<< * "trading_pair": msg["symbol"], * "update_id": record.timestamp, */ __Pyx_XDECREF(__pyx_r); __Pyx_GetModuleGlobalName(__pyx_t_1, __pyx_n_s_OrderBookMessage); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 104, __pyx_L1_error) __Pyx_GOTREF(__pyx_t_1); __Pyx_GetModuleGlobalName(__pyx_t_3, __pyx_n_s_OrderBookMessageType); if (unlikely(!__pyx_t_3)) __PYX_ERR(0, 104, __pyx_L1_error) __Pyx_GOTREF(__pyx_t_3); __pyx_t_2 = __Pyx_PyObject_GetAttrStr(__pyx_t_3, __pyx_n_s_DIFF); if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 104, __pyx_L1_error) __Pyx_GOTREF(__pyx_t_2); __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0; /* "hummingbot/market/kucoin/kucoin_order_book.pyx":105 * msg.update(metadata) * return OrderBookMessage(OrderBookMessageType.DIFF, { * "trading_pair": msg["symbol"], # <<<<<<<<<<<<<< * "update_id": record.timestamp, * "bids": msg["data"]["bids"], */ __pyx_t_3 = __Pyx_PyDict_NewPresized(4); if (unlikely(!__pyx_t_3)) __PYX_ERR(0, 105, __pyx_L1_error) __Pyx_GOTREF(__pyx_t_3); __pyx_t_5 = __Pyx_PyObject_Dict_GetItem(__pyx_v_msg, __pyx_n_u_symbol); if (unlikely(!__pyx_t_5)) __PYX_ERR(0, 105, __pyx_L1_error) __Pyx_GOTREF(__pyx_t_5); if (PyDict_SetItem(__pyx_t_3, __pyx_n_u_trading_pair, __pyx_t_5) < 0) __PYX_ERR(0, 105, __pyx_L1_error) __Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0; /* "hummingbot/market/kucoin/kucoin_order_book.pyx":106 * return OrderBookMessage(OrderBookMessageType.DIFF, { * "trading_pair": msg["symbol"], * "update_id": record.timestamp, # <<<<<<<<<<<<<< * "bids": msg["data"]["bids"], * "asks": msg["data"]["asks"] */ __pyx_t_5 = __Pyx_PyObject_GetAttrStr(__pyx_v_record, __pyx_n_s_timestamp); if (unlikely(!__pyx_t_5)) __PYX_ERR(0, 106, __pyx_L1_error) __Pyx_GOTREF(__pyx_t_5); if (PyDict_SetItem(__pyx_t_3, __pyx_n_u_update_id, __pyx_t_5) < 0) __PYX_ERR(0, 105, __pyx_L1_error) __Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0; /* "hummingbot/market/kucoin/kucoin_order_book.pyx":107 * "trading_pair": msg["symbol"], * "update_id": record.timestamp, * "bids": msg["data"]["bids"], # <<<<<<<<<<<<<< * "asks": msg["data"]["asks"] * */ __pyx_t_5 = __Pyx_PyObject_Dict_GetItem(__pyx_v_msg, __pyx_n_u_data); if (unlikely(!__pyx_t_5)) __PYX_ERR(0, 107, __pyx_L1_error) __Pyx_GOTREF(__pyx_t_5); __pyx_t_4 = __Pyx_PyObject_Dict_GetItem(__pyx_t_5, __pyx_n_u_bids); if (unlikely(!__pyx_t_4)) __PYX_ERR(0, 107, __pyx_L1_error) __Pyx_GOTREF(__pyx_t_4); __Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0; if (PyDict_SetItem(__pyx_t_3, __pyx_n_u_bids, __pyx_t_4) < 0) __PYX_ERR(0, 105, __pyx_L1_error) __Pyx_DECREF(__pyx_t_4); __pyx_t_4 = 0; /* "hummingbot/market/kucoin/kucoin_order_book.pyx":108 * "update_id": record.timestamp, * "bids": msg["data"]["bids"], * "asks": msg["data"]["asks"] # <<<<<<<<<<<<<< * * }, timestamp=record.timestamp * 1e-3) */ __pyx_t_4 = __Pyx_PyObject_Dict_GetItem(__pyx_v_msg, __pyx_n_u_data); if (unlikely(!__pyx_t_4)) __PYX_ERR(0, 108, __pyx_L1_error) __Pyx_GOTREF(__pyx_t_4); __pyx_t_5 = __Pyx_PyObject_Dict_GetItem(__pyx_t_4, __pyx_n_u_asks); if (unlikely(!__pyx_t_5)) __PYX_ERR(0, 108, __pyx_L1_error) __Pyx_GOTREF(__pyx_t_5); __Pyx_DECREF(__pyx_t_4); __pyx_t_4 = 0; if (PyDict_SetItem(__pyx_t_3, __pyx_n_u_asks, __pyx_t_5) < 0) __PYX_ERR(0, 105, __pyx_L1_error) __Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0; /* "hummingbot/market/kucoin/kucoin_order_book.pyx":104 * if metadata: * msg.update(metadata) * return OrderBookMessage(OrderBookMessageType.DIFF, { # <<<<<<<<<<<<<< * "trading_pair": msg["symbol"], * "update_id": record.timestamp, */ __pyx_t_5 = PyTuple_New(2); if (unlikely(!__pyx_t_5)) __PYX_ERR(0, 104, __pyx_L1_error) __Pyx_GOTREF(__pyx_t_5); __Pyx_GIVEREF(__pyx_t_2); PyTuple_SET_ITEM(__pyx_t_5, 0, __pyx_t_2); __Pyx_GIVEREF(__pyx_t_3); PyTuple_SET_ITEM(__pyx_t_5, 1, __pyx_t_3); __pyx_t_2 = 0; __pyx_t_3 = 0; /* "hummingbot/market/kucoin/kucoin_order_book.pyx":110 * "asks": msg["data"]["asks"] * * }, timestamp=record.timestamp * 1e-3) # <<<<<<<<<<<<<< * * @classmethod */ __pyx_t_3 = __Pyx_PyDict_NewPresized(1); if (unlikely(!__pyx_t_3)) __PYX_ERR(0, 110, __pyx_L1_error) __Pyx_GOTREF(__pyx_t_3); __pyx_t_2 = __Pyx_PyObject_GetAttrStr(__pyx_v_record, __pyx_n_s_timestamp); if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 110, __pyx_L1_error) __Pyx_GOTREF(__pyx_t_2); __pyx_t_4 = PyNumber_Multiply(__pyx_t_2, __pyx_float_1eneg_3); if (unlikely(!__pyx_t_4)) __PYX_ERR(0, 110, __pyx_L1_error) __Pyx_GOTREF(__pyx_t_4); __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0; if (PyDict_SetItem(__pyx_t_3, __pyx_n_s_timestamp, __pyx_t_4) < 0) __PYX_ERR(0, 110, __pyx_L1_error) __Pyx_DECREF(__pyx_t_4); __pyx_t_4 = 0; /* "hummingbot/market/kucoin/kucoin_order_book.pyx":104 * if metadata: * msg.update(metadata) * return OrderBookMessage(OrderBookMessageType.DIFF, { # <<<<<<<<<<<<<< * "trading_pair": msg["symbol"], * "update_id": record.timestamp, */ __pyx_t_4 = __Pyx_PyObject_Call(__pyx_t_1, __pyx_t_5, __pyx_t_3); if (unlikely(!__pyx_t_4)) __PYX_ERR(0, 104, __pyx_L1_error) __Pyx_GOTREF(__pyx_t_4); __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; __Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0; __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0; __pyx_r = __pyx_t_4; __pyx_t_4 = 0; goto __pyx_L0; /* "hummingbot/market/kucoin/kucoin_order_book.pyx":100 * * @classmethod * def diff_message_from_kafka(cls, record: ConsumerRecord, metadata: Optional[Dict] = None) -> OrderBookMessage: # <<<<<<<<<<<<<< * msg = ujson.loads(record.value.decode("utf-8")) * if metadata: */ /* function exit code */ __pyx_L1_error:; __Pyx_XDECREF(__pyx_t_1); __Pyx_XDECREF(__pyx_t_2); __Pyx_XDECREF(__pyx_t_3); __Pyx_XDECREF(__pyx_t_4); __Pyx_XDECREF(__pyx_t_5); __Pyx_AddTraceback("hummingbot.market.kucoin.kucoin_order_book.KucoinOrderBook.diff_message_from_kafka", __pyx_clineno, __pyx_lineno, __pyx_filename); __pyx_r = NULL; __pyx_L0:; __Pyx_XDECREF(__pyx_v_msg); __Pyx_XGIVEREF(__pyx_r); __Pyx_RefNannyFinishContext(); return __pyx_r; } /* "hummingbot/market/kucoin/kucoin_order_book.pyx":113 * * @classmethod * def trade_message_from_db(cls, record: RowProxy, metadata: Optional[Dict] = None): # <<<<<<<<<<<<<< * msg = record["json"] * if metadata: */ /* Python wrapper */ static PyObject *__pyx_pw_10hummingbot_6market_6kucoin_17kucoin_order_book_15KucoinOrderBook_15trade_message_from_db(PyObject *__pyx_v_cls, PyObject *__pyx_args, PyObject *__pyx_kwds); /*proto*/ static PyObject *__pyx_pw_10hummingbot_6market_6kucoin_17kucoin_order_book_15KucoinOrderBook_15trade_message_from_db(PyObject *__pyx_v_cls, PyObject *__pyx_args, PyObject *__pyx_kwds) { PyObject *__pyx_v_record = 0; PyObject *__pyx_v_metadata = 0; PyObject *__pyx_r = 0; __Pyx_RefNannyDeclarations __Pyx_RefNannySetupContext("trade_message_from_db (wrapper)", 0); { static PyObject **__pyx_pyargnames[] = {&__pyx_n_s_record,&__pyx_n_s_metadata,0}; PyObject* values[2] = {0,0}; values[1] = ((PyObject *)Py_None); if (unlikely(__pyx_kwds)) { Py_ssize_t kw_args; const Py_ssize_t pos_args = PyTuple_GET_SIZE(__pyx_args); switch (pos_args) { case 2: values[1] = PyTuple_GET_ITEM(__pyx_args, 1); CYTHON_FALLTHROUGH; case 1: values[0] = PyTuple_GET_ITEM(__pyx_args, 0); CYTHON_FALLTHROUGH; case 0: break; default: goto __pyx_L5_argtuple_error; } kw_args = PyDict_Size(__pyx_kwds); switch (pos_args) { case 0: if (likely((values[0] = __Pyx_PyDict_GetItemStr(__pyx_kwds, __pyx_n_s_record)) != 0)) kw_args--; else goto __pyx_L5_argtuple_error; CYTHON_FALLTHROUGH; case 1: if (kw_args > 0) { PyObject* value = __Pyx_PyDict_GetItemStr(__pyx_kwds, __pyx_n_s_metadata); if (value) { values[1] = value; kw_args--; } } } if (unlikely(kw_args > 0)) { if (unlikely(__Pyx_ParseOptionalKeywords(__pyx_kwds, __pyx_pyargnames, 0, values, pos_args, "trade_message_from_db") < 0)) __PYX_ERR(0, 113, __pyx_L3_error) } } else { switch (PyTuple_GET_SIZE(__pyx_args)) { case 2: values[1] = PyTuple_GET_ITEM(__pyx_args, 1); CYTHON_FALLTHROUGH; case 1: values[0] = PyTuple_GET_ITEM(__pyx_args, 0); break; default: goto __pyx_L5_argtuple_error; } } __pyx_v_record = values[0]; __pyx_v_metadata = values[1]; } goto __pyx_L4_argument_unpacking_done; __pyx_L5_argtuple_error:; __Pyx_RaiseArgtupleInvalid("trade_message_from_db", 0, 1, 2, PyTuple_GET_SIZE(__pyx_args)); __PYX_ERR(0, 113, __pyx_L3_error) __pyx_L3_error:; __Pyx_AddTraceback("hummingbot.market.kucoin.kucoin_order_book.KucoinOrderBook.trade_message_from_db", __pyx_clineno, __pyx_lineno, __pyx_filename); __Pyx_RefNannyFinishContext(); return NULL; __pyx_L4_argument_unpacking_done:; __pyx_r = __pyx_pf_10hummingbot_6market_6kucoin_17kucoin_order_book_15KucoinOrderBook_14trade_message_from_db(((PyTypeObject*)__pyx_v_cls), __pyx_v_record, __pyx_v_metadata); /* function exit code */ __Pyx_RefNannyFinishContext(); return __pyx_r; } static PyObject *__pyx_pf_10hummingbot_6market_6kucoin_17kucoin_order_book_15KucoinOrderBook_14trade_message_from_db(CYTHON_UNUSED PyTypeObject *__pyx_v_cls, PyObject *__pyx_v_record, PyObject *__pyx_v_metadata) { PyObject *__pyx_v_msg = NULL; PyObject *__pyx_r = NULL; __Pyx_RefNannyDeclarations PyObject *__pyx_t_1 = NULL; int __pyx_t_2; PyObject *__pyx_t_3 = NULL; PyObject *__pyx_t_4 = NULL; PyObject *__pyx_t_5 = NULL; PyObject *__pyx_t_6 = NULL; PyObject *__pyx_t_7 = NULL; __Pyx_RefNannySetupContext("trade_message_from_db", 0); /* "hummingbot/market/kucoin/kucoin_order_book.pyx":114 * @classmethod * def trade_message_from_db(cls, record: RowProxy, metadata: Optional[Dict] = None): * msg = record["json"] # <<<<<<<<<<<<<< * if metadata: * msg.update(metadata) */ __pyx_t_1 = __Pyx_PyObject_Dict_GetItem(__pyx_v_record, __pyx_n_u_json); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 114, __pyx_L1_error) __Pyx_GOTREF(__pyx_t_1); __pyx_v_msg = __pyx_t_1; __pyx_t_1 = 0; /* "hummingbot/market/kucoin/kucoin_order_book.pyx":115 * def trade_message_from_db(cls, record: RowProxy, metadata: Optional[Dict] = None): * msg = record["json"] * if metadata: # <<<<<<<<<<<<<< * msg.update(metadata) * return OrderBookMessage(OrderBookMessageType.TRADE, { */ __pyx_t_2 = __Pyx_PyObject_IsTrue(__pyx_v_metadata); if (unlikely(__pyx_t_2 < 0)) __PYX_ERR(0, 115, __pyx_L1_error) if (__pyx_t_2) { /* "hummingbot/market/kucoin/kucoin_order_book.pyx":116 * msg = record["json"] * if metadata: * msg.update(metadata) # <<<<<<<<<<<<<< * return OrderBookMessage(OrderBookMessageType.TRADE, { * "trading_pair": msg["symbol"], */ __pyx_t_3 = __Pyx_PyObject_GetAttrStr(__pyx_v_msg, __pyx_n_s_update); if (unlikely(!__pyx_t_3)) __PYX_ERR(0, 116, __pyx_L1_error) __Pyx_GOTREF(__pyx_t_3); __pyx_t_4 = NULL; if (CYTHON_UNPACK_METHODS && likely(PyMethod_Check(__pyx_t_3))) { __pyx_t_4 = PyMethod_GET_SELF(__pyx_t_3); if (likely(__pyx_t_4)) { PyObject* function = PyMethod_GET_FUNCTION(__pyx_t_3); __Pyx_INCREF(__pyx_t_4); __Pyx_INCREF(function); __Pyx_DECREF_SET(__pyx_t_3, function); } } __pyx_t_1 = (__pyx_t_4) ? __Pyx_PyObject_Call2Args(__pyx_t_3, __pyx_t_4, __pyx_v_metadata) : __Pyx_PyObject_CallOneArg(__pyx_t_3, __pyx_v_metadata); __Pyx_XDECREF(__pyx_t_4); __pyx_t_4 = 0; if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 116, __pyx_L1_error) __Pyx_GOTREF(__pyx_t_1); __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0; __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; /* "hummingbot/market/kucoin/kucoin_order_book.pyx":115 * def trade_message_from_db(cls, record: RowProxy, metadata: Optional[Dict] = None): * msg = record["json"] * if metadata: # <<<<<<<<<<<<<< * msg.update(metadata) * return OrderBookMessage(OrderBookMessageType.TRADE, { */ } /* "hummingbot/market/kucoin/kucoin_order_book.pyx":117 * if metadata: * msg.update(metadata) * return OrderBookMessage(OrderBookMessageType.TRADE, { # <<<<<<<<<<<<<< * "trading_pair": msg["symbol"], * "trade_type": float(TradeType.BUY.value) if msg["side"] == "buy" */ __Pyx_XDECREF(__pyx_r); __Pyx_GetModuleGlobalName(__pyx_t_1, __pyx_n_s_OrderBookMessage); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 117, __pyx_L1_error) __Pyx_GOTREF(__pyx_t_1); __Pyx_GetModuleGlobalName(__pyx_t_3, __pyx_n_s_OrderBookMessageType); if (unlikely(!__pyx_t_3)) __PYX_ERR(0, 117, __pyx_L1_error) __Pyx_GOTREF(__pyx_t_3); __pyx_t_4 = __Pyx_PyObject_GetAttrStr(__pyx_t_3, __pyx_n_s_TRADE); if (unlikely(!__pyx_t_4)) __PYX_ERR(0, 117, __pyx_L1_error) __Pyx_GOTREF(__pyx_t_4); __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0; /* "hummingbot/market/kucoin/kucoin_order_book.pyx":118 * msg.update(metadata) * return OrderBookMessage(OrderBookMessageType.TRADE, { * "trading_pair": msg["symbol"], # <<<<<<<<<<<<<< * "trade_type": float(TradeType.BUY.value) if msg["side"] == "buy" * else float(TradeType.SELL.value), */ __pyx_t_3 = __Pyx_PyDict_NewPresized(6); if (unlikely(!__pyx_t_3)) __PYX_ERR(0, 118, __pyx_L1_error) __Pyx_GOTREF(__pyx_t_3); __pyx_t_5 = __Pyx_PyObject_Dict_GetItem(__pyx_v_msg, __pyx_n_u_symbol); if (unlikely(!__pyx_t_5)) __PYX_ERR(0, 118, __pyx_L1_error) __Pyx_GOTREF(__pyx_t_5); if (PyDict_SetItem(__pyx_t_3, __pyx_n_u_trading_pair, __pyx_t_5) < 0) __PYX_ERR(0, 118, __pyx_L1_error) __Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0; /* "hummingbot/market/kucoin/kucoin_order_book.pyx":119 * return OrderBookMessage(OrderBookMessageType.TRADE, { * "trading_pair": msg["symbol"], * "trade_type": float(TradeType.BUY.value) if msg["side"] == "buy" # <<<<<<<<<<<<<< * else float(TradeType.SELL.value), * "trade_id": msg["tradeId"], */ __pyx_t_6 = __Pyx_PyObject_Dict_GetItem(__pyx_v_msg, __pyx_n_u_side); if (unlikely(!__pyx_t_6)) __PYX_ERR(0, 119, __pyx_L1_error) __Pyx_GOTREF(__pyx_t_6); __pyx_t_2 = (__Pyx_PyUnicode_Equals(__pyx_t_6, __pyx_n_u_buy, Py_EQ)); if (unlikely(__pyx_t_2 < 0)) __PYX_ERR(0, 119, __pyx_L1_error) __Pyx_DECREF(__pyx_t_6); __pyx_t_6 = 0; if (__pyx_t_2) { __Pyx_GetModuleGlobalName(__pyx_t_6, __pyx_n_s_TradeType); if (unlikely(!__pyx_t_6)) __PYX_ERR(0, 119, __pyx_L1_error) __Pyx_GOTREF(__pyx_t_6); __pyx_t_7 = __Pyx_PyObject_GetAttrStr(__pyx_t_6, __pyx_n_s_BUY); if (unlikely(!__pyx_t_7)) __PYX_ERR(0, 119, __pyx_L1_error) __Pyx_GOTREF(__pyx_t_7); __Pyx_DECREF(__pyx_t_6); __pyx_t_6 = 0; __pyx_t_6 = __Pyx_PyObject_GetAttrStr(__pyx_t_7, __pyx_n_s_value); if (unlikely(!__pyx_t_6)) __PYX_ERR(0, 119, __pyx_L1_error) __Pyx_GOTREF(__pyx_t_6); __Pyx_DECREF(__pyx_t_7); __pyx_t_7 = 0; __pyx_t_7 = __Pyx_PyNumber_Float(__pyx_t_6); if (unlikely(!__pyx_t_7)) __PYX_ERR(0, 119, __pyx_L1_error) __Pyx_GOTREF(__pyx_t_7); __Pyx_DECREF(__pyx_t_6); __pyx_t_6 = 0; __pyx_t_5 = __pyx_t_7; __pyx_t_7 = 0; } else { /* "hummingbot/market/kucoin/kucoin_order_book.pyx":120 * "trading_pair": msg["symbol"], * "trade_type": float(TradeType.BUY.value) if msg["side"] == "buy" * else float(TradeType.SELL.value), # <<<<<<<<<<<<<< * "trade_id": msg["tradeId"], * "update_id": msg["sequence"], */ __Pyx_GetModuleGlobalName(__pyx_t_7, __pyx_n_s_TradeType); if (unlikely(!__pyx_t_7)) __PYX_ERR(0, 120, __pyx_L1_error) __Pyx_GOTREF(__pyx_t_7); __pyx_t_6 = __Pyx_PyObject_GetAttrStr(__pyx_t_7, __pyx_n_s_SELL); if (unlikely(!__pyx_t_6)) __PYX_ERR(0, 120, __pyx_L1_error) __Pyx_GOTREF(__pyx_t_6); __Pyx_DECREF(__pyx_t_7); __pyx_t_7 = 0; __pyx_t_7 = __Pyx_PyObject_GetAttrStr(__pyx_t_6, __pyx_n_s_value); if (unlikely(!__pyx_t_7)) __PYX_ERR(0, 120, __pyx_L1_error) __Pyx_GOTREF(__pyx_t_7); __Pyx_DECREF(__pyx_t_6); __pyx_t_6 = 0; __pyx_t_6 = __Pyx_PyNumber_Float(__pyx_t_7); if (unlikely(!__pyx_t_6)) __PYX_ERR(0, 120, __pyx_L1_error) __Pyx_GOTREF(__pyx_t_6); __Pyx_DECREF(__pyx_t_7); __pyx_t_7 = 0; __pyx_t_5 = __pyx_t_6; __pyx_t_6 = 0; } if (PyDict_SetItem(__pyx_t_3, __pyx_n_u_trade_type, __pyx_t_5) < 0) __PYX_ERR(0, 118, __pyx_L1_error) __Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0; /* "hummingbot/market/kucoin/kucoin_order_book.pyx":121 * "trade_type": float(TradeType.BUY.value) if msg["side"] == "buy" * else float(TradeType.SELL.value), * "trade_id": msg["tradeId"], # <<<<<<<<<<<<<< * "update_id": msg["sequence"], * "price": msg["price"], */ __pyx_t_5 = __Pyx_PyObject_Dict_GetItem(__pyx_v_msg, __pyx_n_u_tradeId); if (unlikely(!__pyx_t_5)) __PYX_ERR(0, 121, __pyx_L1_error) __Pyx_GOTREF(__pyx_t_5); if (PyDict_SetItem(__pyx_t_3, __pyx_n_u_trade_id, __pyx_t_5) < 0) __PYX_ERR(0, 118, __pyx_L1_error) __Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0; /* "hummingbot/market/kucoin/kucoin_order_book.pyx":122 * else float(TradeType.SELL.value), * "trade_id": msg["tradeId"], * "update_id": msg["sequence"], # <<<<<<<<<<<<<< * "price": msg["price"], * "amount": msg["size"] */ __pyx_t_5 = __Pyx_PyObject_Dict_GetItem(__pyx_v_msg, __pyx_n_u_sequence); if (unlikely(!__pyx_t_5)) __PYX_ERR(0, 122, __pyx_L1_error) __Pyx_GOTREF(__pyx_t_5); if (PyDict_SetItem(__pyx_t_3, __pyx_n_u_update_id, __pyx_t_5) < 0) __PYX_ERR(0, 118, __pyx_L1_error) __Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0; /* "hummingbot/market/kucoin/kucoin_order_book.pyx":123 * "trade_id": msg["tradeId"], * "update_id": msg["sequence"], * "price": msg["price"], # <<<<<<<<<<<<<< * "amount": msg["size"] * }, timestamp=record.timestamp * 1e-9) */ __pyx_t_5 = __Pyx_PyObject_Dict_GetItem(__pyx_v_msg, __pyx_n_u_price); if (unlikely(!__pyx_t_5)) __PYX_ERR(0, 123, __pyx_L1_error) __Pyx_GOTREF(__pyx_t_5); if (PyDict_SetItem(__pyx_t_3, __pyx_n_u_price, __pyx_t_5) < 0) __PYX_ERR(0, 118, __pyx_L1_error) __Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0; /* "hummingbot/market/kucoin/kucoin_order_book.pyx":124 * "update_id": msg["sequence"], * "price": msg["price"], * "amount": msg["size"] # <<<<<<<<<<<<<< * }, timestamp=record.timestamp * 1e-9) * */ __pyx_t_5 = __Pyx_PyObject_Dict_GetItem(__pyx_v_msg, __pyx_n_u_size); if (unlikely(!__pyx_t_5)) __PYX_ERR(0, 124, __pyx_L1_error) __Pyx_GOTREF(__pyx_t_5); if (PyDict_SetItem(__pyx_t_3, __pyx_n_u_amount, __pyx_t_5) < 0) __PYX_ERR(0, 118, __pyx_L1_error) __Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0; /* "hummingbot/market/kucoin/kucoin_order_book.pyx":117 * if metadata: * msg.update(metadata) * return OrderBookMessage(OrderBookMessageType.TRADE, { # <<<<<<<<<<<<<< * "trading_pair": msg["symbol"], * "trade_type": float(TradeType.BUY.value) if msg["side"] == "buy" */ __pyx_t_5 = PyTuple_New(2); if (unlikely(!__pyx_t_5)) __PYX_ERR(0, 117, __pyx_L1_error) __Pyx_GOTREF(__pyx_t_5); __Pyx_GIVEREF(__pyx_t_4); PyTuple_SET_ITEM(__pyx_t_5, 0, __pyx_t_4); __Pyx_GIVEREF(__pyx_t_3); PyTuple_SET_ITEM(__pyx_t_5, 1, __pyx_t_3); __pyx_t_4 = 0; __pyx_t_3 = 0; /* "hummingbot/market/kucoin/kucoin_order_book.pyx":125 * "price": msg["price"], * "amount": msg["size"] * }, timestamp=record.timestamp * 1e-9) # <<<<<<<<<<<<<< * * @classmethod */ __pyx_t_3 = __Pyx_PyDict_NewPresized(1); if (unlikely(!__pyx_t_3)) __PYX_ERR(0, 125, __pyx_L1_error) __Pyx_GOTREF(__pyx_t_3); __pyx_t_4 = __Pyx_PyObject_GetAttrStr(__pyx_v_record, __pyx_n_s_timestamp); if (unlikely(!__pyx_t_4)) __PYX_ERR(0, 125, __pyx_L1_error) __Pyx_GOTREF(__pyx_t_4); __pyx_t_6 = PyNumber_Multiply(__pyx_t_4, __pyx_float_1eneg_9); if (unlikely(!__pyx_t_6)) __PYX_ERR(0, 125, __pyx_L1_error) __Pyx_GOTREF(__pyx_t_6); __Pyx_DECREF(__pyx_t_4); __pyx_t_4 = 0; if (PyDict_SetItem(__pyx_t_3, __pyx_n_s_timestamp, __pyx_t_6) < 0) __PYX_ERR(0, 125, __pyx_L1_error) __Pyx_DECREF(__pyx_t_6); __pyx_t_6 = 0; /* "hummingbot/market/kucoin/kucoin_order_book.pyx":117 * if metadata: * msg.update(metadata) * return OrderBookMessage(OrderBookMessageType.TRADE, { # <<<<<<<<<<<<<< * "trading_pair": msg["symbol"], * "trade_type": float(TradeType.BUY.value) if msg["side"] == "buy" */ __pyx_t_6 = __Pyx_PyObject_Call(__pyx_t_1, __pyx_t_5, __pyx_t_3); if (unlikely(!__pyx_t_6)) __PYX_ERR(0, 117, __pyx_L1_error) __Pyx_GOTREF(__pyx_t_6); __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; __Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0; __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0; __pyx_r = __pyx_t_6; __pyx_t_6 = 0; goto __pyx_L0; /* "hummingbot/market/kucoin/kucoin_order_book.pyx":113 * * @classmethod * def trade_message_from_db(cls, record: RowProxy, metadata: Optional[Dict] = None): # <<<<<<<<<<<<<< * msg = record["json"] * if metadata: */ /* function exit code */ __pyx_L1_error:; __Pyx_XDECREF(__pyx_t_1); __Pyx_XDECREF(__pyx_t_3); __Pyx_XDECREF(__pyx_t_4); __Pyx_XDECREF(__pyx_t_5); __Pyx_XDECREF(__pyx_t_6); __Pyx_XDECREF(__pyx_t_7); __Pyx_AddTraceback("hummingbot.market.kucoin.kucoin_order_book.KucoinOrderBook.trade_message_from_db", __pyx_clineno, __pyx_lineno, __pyx_filename); __pyx_r = NULL; __pyx_L0:; __Pyx_XDECREF(__pyx_v_msg); __Pyx_XGIVEREF(__pyx_r); __Pyx_RefNannyFinishContext(); return __pyx_r; } /* "hummingbot/market/kucoin/kucoin_order_book.pyx":128 * * @classmethod * def trade_message_from_exchange(cls, msg: Dict[str, any], metadata: Optional[Dict] = None): # <<<<<<<<<<<<<< * if metadata: * msg.update(metadata) */ /* Python wrapper */ static PyObject *__pyx_pw_10hummingbot_6market_6kucoin_17kucoin_order_book_15KucoinOrderBook_17trade_message_from_exchange(PyObject *__pyx_v_cls, PyObject *__pyx_args, PyObject *__pyx_kwds); /*proto*/ static PyObject *__pyx_pw_10hummingbot_6market_6kucoin_17kucoin_order_book_15KucoinOrderBook_17trade_message_from_exchange(PyObject *__pyx_v_cls, PyObject *__pyx_args, PyObject *__pyx_kwds) { PyObject *__pyx_v_msg = 0; PyObject *__pyx_v_metadata = 0; PyObject *__pyx_r = 0; __Pyx_RefNannyDeclarations __Pyx_RefNannySetupContext("trade_message_from_exchange (wrapper)", 0); { static PyObject **__pyx_pyargnames[] = {&__pyx_n_s_msg,&__pyx_n_s_metadata,0}; PyObject* values[2] = {0,0}; values[1] = ((PyObject *)Py_None); if (unlikely(__pyx_kwds)) { Py_ssize_t kw_args; const Py_ssize_t pos_args = PyTuple_GET_SIZE(__pyx_args); switch (pos_args) { case 2: values[1] = PyTuple_GET_ITEM(__pyx_args, 1); CYTHON_FALLTHROUGH; case 1: values[0] = PyTuple_GET_ITEM(__pyx_args, 0); CYTHON_FALLTHROUGH; case 0: break; default: goto __pyx_L5_argtuple_error; } kw_args = PyDict_Size(__pyx_kwds); switch (pos_args) { case 0: if (likely((values[0] = __Pyx_PyDict_GetItemStr(__pyx_kwds, __pyx_n_s_msg)) != 0)) kw_args--; else goto __pyx_L5_argtuple_error; CYTHON_FALLTHROUGH; case 1: if (kw_args > 0) { PyObject* value = __Pyx_PyDict_GetItemStr(__pyx_kwds, __pyx_n_s_metadata); if (value) { values[1] = value; kw_args--; } } } if (unlikely(kw_args > 0)) { if (unlikely(__Pyx_ParseOptionalKeywords(__pyx_kwds, __pyx_pyargnames, 0, values, pos_args, "trade_message_from_exchange") < 0)) __PYX_ERR(0, 128, __pyx_L3_error) } } else { switch (PyTuple_GET_SIZE(__pyx_args)) { case 2: values[1] = PyTuple_GET_ITEM(__pyx_args, 1); CYTHON_FALLTHROUGH; case 1: values[0] = PyTuple_GET_ITEM(__pyx_args, 0); break; default: goto __pyx_L5_argtuple_error; } } __pyx_v_msg = values[0]; __pyx_v_metadata = values[1]; } goto __pyx_L4_argument_unpacking_done; __pyx_L5_argtuple_error:; __Pyx_RaiseArgtupleInvalid("trade_message_from_exchange", 0, 1, 2, PyTuple_GET_SIZE(__pyx_args)); __PYX_ERR(0, 128, __pyx_L3_error) __pyx_L3_error:; __Pyx_AddTraceback("hummingbot.market.kucoin.kucoin_order_book.KucoinOrderBook.trade_message_from_exchange", __pyx_clineno, __pyx_lineno, __pyx_filename); __Pyx_RefNannyFinishContext(); return NULL; __pyx_L4_argument_unpacking_done:; __pyx_r = __pyx_pf_10hummingbot_6market_6kucoin_17kucoin_order_book_15KucoinOrderBook_16trade_message_from_exchange(((PyTypeObject*)__pyx_v_cls), __pyx_v_msg, __pyx_v_metadata); /* function exit code */ __Pyx_RefNannyFinishContext(); return __pyx_r; } static PyObject *__pyx_pf_10hummingbot_6market_6kucoin_17kucoin_order_book_15KucoinOrderBook_16trade_message_from_exchange(CYTHON_UNUSED PyTypeObject *__pyx_v_cls, PyObject *__pyx_v_msg, PyObject *__pyx_v_metadata) { PyObject *__pyx_r = NULL; __Pyx_RefNannyDeclarations int __pyx_t_1; PyObject *__pyx_t_2 = NULL; PyObject *__pyx_t_3 = NULL; PyObject *__pyx_t_4 = NULL; PyObject *__pyx_t_5 = NULL; PyObject *__pyx_t_6 = NULL; PyObject *__pyx_t_7 = NULL; __Pyx_RefNannySetupContext("trade_message_from_exchange", 0); /* "hummingbot/market/kucoin/kucoin_order_book.pyx":129 * @classmethod * def trade_message_from_exchange(cls, msg: Dict[str, any], metadata: Optional[Dict] = None): * if metadata: # <<<<<<<<<<<<<< * msg.update(metadata) * return OrderBookMessage(OrderBookMessageType.TRADE, { */ __pyx_t_1 = __Pyx_PyObject_IsTrue(__pyx_v_metadata); if (unlikely(__pyx_t_1 < 0)) __PYX_ERR(0, 129, __pyx_L1_error) if (__pyx_t_1) { /* "hummingbot/market/kucoin/kucoin_order_book.pyx":130 * def trade_message_from_exchange(cls, msg: Dict[str, any], metadata: Optional[Dict] = None): * if metadata: * msg.update(metadata) # <<<<<<<<<<<<<< * return OrderBookMessage(OrderBookMessageType.TRADE, { * "trading_pair": msg["symbol"], */ __pyx_t_3 = __Pyx_PyObject_GetAttrStr(__pyx_v_msg, __pyx_n_s_update); if (unlikely(!__pyx_t_3)) __PYX_ERR(0, 130, __pyx_L1_error) __Pyx_GOTREF(__pyx_t_3); __pyx_t_4 = NULL; if (CYTHON_UNPACK_METHODS && likely(PyMethod_Check(__pyx_t_3))) { __pyx_t_4 = PyMethod_GET_SELF(__pyx_t_3); if (likely(__pyx_t_4)) { PyObject* function = PyMethod_GET_FUNCTION(__pyx_t_3); __Pyx_INCREF(__pyx_t_4); __Pyx_INCREF(function); __Pyx_DECREF_SET(__pyx_t_3, function); } } __pyx_t_2 = (__pyx_t_4) ? __Pyx_PyObject_Call2Args(__pyx_t_3, __pyx_t_4, __pyx_v_metadata) : __Pyx_PyObject_CallOneArg(__pyx_t_3, __pyx_v_metadata); __Pyx_XDECREF(__pyx_t_4); __pyx_t_4 = 0; if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 130, __pyx_L1_error) __Pyx_GOTREF(__pyx_t_2); __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0; __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0; /* "hummingbot/market/kucoin/kucoin_order_book.pyx":129 * @classmethod * def trade_message_from_exchange(cls, msg: Dict[str, any], metadata: Optional[Dict] = None): * if metadata: # <<<<<<<<<<<<<< * msg.update(metadata) * return OrderBookMessage(OrderBookMessageType.TRADE, { */ } /* "hummingbot/market/kucoin/kucoin_order_book.pyx":131 * if metadata: * msg.update(metadata) * return OrderBookMessage(OrderBookMessageType.TRADE, { # <<<<<<<<<<<<<< * "trading_pair": msg["symbol"], * "trade_type": float(TradeType.BUY.value) if msg["side"] == "buy" */ __Pyx_XDECREF(__pyx_r); __Pyx_GetModuleGlobalName(__pyx_t_2, __pyx_n_s_OrderBookMessage); if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 131, __pyx_L1_error) __Pyx_GOTREF(__pyx_t_2); __Pyx_GetModuleGlobalName(__pyx_t_3, __pyx_n_s_OrderBookMessageType); if (unlikely(!__pyx_t_3)) __PYX_ERR(0, 131, __pyx_L1_error) __Pyx_GOTREF(__pyx_t_3); __pyx_t_4 = __Pyx_PyObject_GetAttrStr(__pyx_t_3, __pyx_n_s_TRADE); if (unlikely(!__pyx_t_4)) __PYX_ERR(0, 131, __pyx_L1_error) __Pyx_GOTREF(__pyx_t_4); __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0; /* "hummingbot/market/kucoin/kucoin_order_book.pyx":132 * msg.update(metadata) * return OrderBookMessage(OrderBookMessageType.TRADE, { * "trading_pair": msg["symbol"], # <<<<<<<<<<<<<< * "trade_type": float(TradeType.BUY.value) if msg["side"] == "buy" * else float(TradeType.SELL.value), */ __pyx_t_3 = __Pyx_PyDict_NewPresized(6); if (unlikely(!__pyx_t_3)) __PYX_ERR(0, 132, __pyx_L1_error) __Pyx_GOTREF(__pyx_t_3); __pyx_t_5 = __Pyx_PyObject_Dict_GetItem(__pyx_v_msg, __pyx_n_u_symbol); if (unlikely(!__pyx_t_5)) __PYX_ERR(0, 132, __pyx_L1_error) __Pyx_GOTREF(__pyx_t_5); if (PyDict_SetItem(__pyx_t_3, __pyx_n_u_trading_pair, __pyx_t_5) < 0) __PYX_ERR(0, 132, __pyx_L1_error) __Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0; /* "hummingbot/market/kucoin/kucoin_order_book.pyx":133 * return OrderBookMessage(OrderBookMessageType.TRADE, { * "trading_pair": msg["symbol"], * "trade_type": float(TradeType.BUY.value) if msg["side"] == "buy" # <<<<<<<<<<<<<< * else float(TradeType.SELL.value), * "trade_id": msg["tradeId"], */ __pyx_t_6 = __Pyx_PyObject_Dict_GetItem(__pyx_v_msg, __pyx_n_u_side); if (unlikely(!__pyx_t_6)) __PYX_ERR(0, 133, __pyx_L1_error) __Pyx_GOTREF(__pyx_t_6); __pyx_t_1 = (__Pyx_PyUnicode_Equals(__pyx_t_6, __pyx_n_u_buy, Py_EQ)); if (unlikely(__pyx_t_1 < 0)) __PYX_ERR(0, 133, __pyx_L1_error) __Pyx_DECREF(__pyx_t_6); __pyx_t_6 = 0; if (__pyx_t_1) { __Pyx_GetModuleGlobalName(__pyx_t_6, __pyx_n_s_TradeType); if (unlikely(!__pyx_t_6)) __PYX_ERR(0, 133, __pyx_L1_error) __Pyx_GOTREF(__pyx_t_6); __pyx_t_7 = __Pyx_PyObject_GetAttrStr(__pyx_t_6, __pyx_n_s_BUY); if (unlikely(!__pyx_t_7)) __PYX_ERR(0, 133, __pyx_L1_error) __Pyx_GOTREF(__pyx_t_7); __Pyx_DECREF(__pyx_t_6); __pyx_t_6 = 0; __pyx_t_6 = __Pyx_PyObject_GetAttrStr(__pyx_t_7, __pyx_n_s_value); if (unlikely(!__pyx_t_6)) __PYX_ERR(0, 133, __pyx_L1_error) __Pyx_GOTREF(__pyx_t_6); __Pyx_DECREF(__pyx_t_7); __pyx_t_7 = 0; __pyx_t_7 = __Pyx_PyNumber_Float(__pyx_t_6); if (unlikely(!__pyx_t_7)) __PYX_ERR(0, 133, __pyx_L1_error) __Pyx_GOTREF(__pyx_t_7); __Pyx_DECREF(__pyx_t_6); __pyx_t_6 = 0; __pyx_t_5 = __pyx_t_7; __pyx_t_7 = 0; } else { /* "hummingbot/market/kucoin/kucoin_order_book.pyx":134 * "trading_pair": msg["symbol"], * "trade_type": float(TradeType.BUY.value) if msg["side"] == "buy" * else float(TradeType.SELL.value), # <<<<<<<<<<<<<< * "trade_id": msg["tradeId"], * "update_id": msg["sequence"], */ __Pyx_GetModuleGlobalName(__pyx_t_7, __pyx_n_s_TradeType); if (unlikely(!__pyx_t_7)) __PYX_ERR(0, 134, __pyx_L1_error) __Pyx_GOTREF(__pyx_t_7); __pyx_t_6 = __Pyx_PyObject_GetAttrStr(__pyx_t_7, __pyx_n_s_SELL); if (unlikely(!__pyx_t_6)) __PYX_ERR(0, 134, __pyx_L1_error) __Pyx_GOTREF(__pyx_t_6); __Pyx_DECREF(__pyx_t_7); __pyx_t_7 = 0; __pyx_t_7 = __Pyx_PyObject_GetAttrStr(__pyx_t_6, __pyx_n_s_value); if (unlikely(!__pyx_t_7)) __PYX_ERR(0, 134, __pyx_L1_error) __Pyx_GOTREF(__pyx_t_7); __Pyx_DECREF(__pyx_t_6); __pyx_t_6 = 0; __pyx_t_6 = __Pyx_PyNumber_Float(__pyx_t_7); if (unlikely(!__pyx_t_6)) __PYX_ERR(0, 134, __pyx_L1_error) __Pyx_GOTREF(__pyx_t_6); __Pyx_DECREF(__pyx_t_7); __pyx_t_7 = 0; __pyx_t_5 = __pyx_t_6; __pyx_t_6 = 0; } if (PyDict_SetItem(__pyx_t_3, __pyx_n_u_trade_type, __pyx_t_5) < 0) __PYX_ERR(0, 132, __pyx_L1_error) __Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0; /* "hummingbot/market/kucoin/kucoin_order_book.pyx":135 * "trade_type": float(TradeType.BUY.value) if msg["side"] == "buy" * else float(TradeType.SELL.value), * "trade_id": msg["tradeId"], # <<<<<<<<<<<<<< * "update_id": msg["sequence"], * "price": msg["price"], */ __pyx_t_5 = __Pyx_PyObject_Dict_GetItem(__pyx_v_msg, __pyx_n_u_tradeId); if (unlikely(!__pyx_t_5)) __PYX_ERR(0, 135, __pyx_L1_error) __Pyx_GOTREF(__pyx_t_5); if (PyDict_SetItem(__pyx_t_3, __pyx_n_u_trade_id, __pyx_t_5) < 0) __PYX_ERR(0, 132, __pyx_L1_error) __Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0; /* "hummingbot/market/kucoin/kucoin_order_book.pyx":136 * else float(TradeType.SELL.value), * "trade_id": msg["tradeId"], * "update_id": msg["sequence"], # <<<<<<<<<<<<<< * "price": msg["price"], * "amount": msg["size"] */ __pyx_t_5 = __Pyx_PyObject_Dict_GetItem(__pyx_v_msg, __pyx_n_u_sequence); if (unlikely(!__pyx_t_5)) __PYX_ERR(0, 136, __pyx_L1_error) __Pyx_GOTREF(__pyx_t_5); if (PyDict_SetItem(__pyx_t_3, __pyx_n_u_update_id, __pyx_t_5) < 0) __PYX_ERR(0, 132, __pyx_L1_error) __Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0; /* "hummingbot/market/kucoin/kucoin_order_book.pyx":137 * "trade_id": msg["tradeId"], * "update_id": msg["sequence"], * "price": msg["price"], # <<<<<<<<<<<<<< * "amount": msg["size"] * }, timestamp=(int(msg["time"]) * 1e-9)) */ __pyx_t_5 = __Pyx_PyObject_Dict_GetItem(__pyx_v_msg, __pyx_n_u_price); if (unlikely(!__pyx_t_5)) __PYX_ERR(0, 137, __pyx_L1_error) __Pyx_GOTREF(__pyx_t_5); if (PyDict_SetItem(__pyx_t_3, __pyx_n_u_price, __pyx_t_5) < 0) __PYX_ERR(0, 132, __pyx_L1_error) __Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0; /* "hummingbot/market/kucoin/kucoin_order_book.pyx":138 * "update_id": msg["sequence"], * "price": msg["price"], * "amount": msg["size"] # <<<<<<<<<<<<<< * }, timestamp=(int(msg["time"]) * 1e-9)) * */ __pyx_t_5 = __Pyx_PyObject_Dict_GetItem(__pyx_v_msg, __pyx_n_u_size); if (unlikely(!__pyx_t_5)) __PYX_ERR(0, 138, __pyx_L1_error) __Pyx_GOTREF(__pyx_t_5); if (PyDict_SetItem(__pyx_t_3, __pyx_n_u_amount, __pyx_t_5) < 0) __PYX_ERR(0, 132, __pyx_L1_error) __Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0; /* "hummingbot/market/kucoin/kucoin_order_book.pyx":131 * if metadata: * msg.update(metadata) * return OrderBookMessage(OrderBookMessageType.TRADE, { # <<<<<<<<<<<<<< * "trading_pair": msg["symbol"], * "trade_type": float(TradeType.BUY.value) if msg["side"] == "buy" */ __pyx_t_5 = PyTuple_New(2); if (unlikely(!__pyx_t_5)) __PYX_ERR(0, 131, __pyx_L1_error) __Pyx_GOTREF(__pyx_t_5); __Pyx_GIVEREF(__pyx_t_4); PyTuple_SET_ITEM(__pyx_t_5, 0, __pyx_t_4); __Pyx_GIVEREF(__pyx_t_3); PyTuple_SET_ITEM(__pyx_t_5, 1, __pyx_t_3); __pyx_t_4 = 0; __pyx_t_3 = 0; /* "hummingbot/market/kucoin/kucoin_order_book.pyx":139 * "price": msg["price"], * "amount": msg["size"] * }, timestamp=(int(msg["time"]) * 1e-9)) # <<<<<<<<<<<<<< * * @classmethod */ __pyx_t_3 = __Pyx_PyDict_NewPresized(1); if (unlikely(!__pyx_t_3)) __PYX_ERR(0, 139, __pyx_L1_error) __Pyx_GOTREF(__pyx_t_3); __pyx_t_4 = __Pyx_PyObject_Dict_GetItem(__pyx_v_msg, __pyx_n_u_time); if (unlikely(!__pyx_t_4)) __PYX_ERR(0, 139, __pyx_L1_error) __Pyx_GOTREF(__pyx_t_4); __pyx_t_6 = __Pyx_PyNumber_Int(__pyx_t_4); if (unlikely(!__pyx_t_6)) __PYX_ERR(0, 139, __pyx_L1_error) __Pyx_GOTREF(__pyx_t_6); __Pyx_DECREF(__pyx_t_4); __pyx_t_4 = 0; __pyx_t_4 = PyNumber_Multiply(__pyx_t_6, __pyx_float_1eneg_9); if (unlikely(!__pyx_t_4)) __PYX_ERR(0, 139, __pyx_L1_error) __Pyx_GOTREF(__pyx_t_4); __Pyx_DECREF(__pyx_t_6); __pyx_t_6 = 0; if (PyDict_SetItem(__pyx_t_3, __pyx_n_s_timestamp, __pyx_t_4) < 0) __PYX_ERR(0, 139, __pyx_L1_error) __Pyx_DECREF(__pyx_t_4); __pyx_t_4 = 0; /* "hummingbot/market/kucoin/kucoin_order_book.pyx":131 * if metadata: * msg.update(metadata) * return OrderBookMessage(OrderBookMessageType.TRADE, { # <<<<<<<<<<<<<< * "trading_pair": msg["symbol"], * "trade_type": float(TradeType.BUY.value) if msg["side"] == "buy" */ __pyx_t_4 = __Pyx_PyObject_Call(__pyx_t_2, __pyx_t_5, __pyx_t_3); if (unlikely(!__pyx_t_4)) __PYX_ERR(0, 131, __pyx_L1_error) __Pyx_GOTREF(__pyx_t_4); __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0; __Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0; __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0; __pyx_r = __pyx_t_4; __pyx_t_4 = 0; goto __pyx_L0; /* "hummingbot/market/kucoin/kucoin_order_book.pyx":128 * * @classmethod * def trade_message_from_exchange(cls, msg: Dict[str, any], metadata: Optional[Dict] = None): # <<<<<<<<<<<<<< * if metadata: * msg.update(metadata) */ /* function exit code */ __pyx_L1_error:; __Pyx_XDECREF(__pyx_t_2); __Pyx_XDECREF(__pyx_t_3); __Pyx_XDECREF(__pyx_t_4); __Pyx_XDECREF(__pyx_t_5); __Pyx_XDECREF(__pyx_t_6); __Pyx_XDECREF(__pyx_t_7); __Pyx_AddTraceback("hummingbot.market.kucoin.kucoin_order_book.KucoinOrderBook.trade_message_from_exchange", __pyx_clineno, __pyx_lineno, __pyx_filename); __pyx_r = NULL; __pyx_L0:; __Pyx_XGIVEREF(__pyx_r); __Pyx_RefNannyFinishContext(); return __pyx_r; } /* "hummingbot/market/kucoin/kucoin_order_book.pyx":142 * * @classmethod * def from_snapshot(cls, msg: OrderBookMessage) -> "OrderBook": # <<<<<<<<<<<<<< * retval = KucoinOrderBook() * retval.apply_snapshot(msg.bids, msg.asks, msg.update_id) */ /* Python wrapper */ static struct __pyx_obj_10hummingbot_4core_9data_type_10order_book_OrderBook *__pyx_pw_10hummingbot_6market_6kucoin_17kucoin_order_book_15KucoinOrderBook_19from_snapshot(PyObject *__pyx_v_cls, PyObject *__pyx_v_msg); /*proto*/ static struct __pyx_obj_10hummingbot_4core_9data_type_10order_book_OrderBook *__pyx_pw_10hummingbot_6market_6kucoin_17kucoin_order_book_15KucoinOrderBook_19from_snapshot(PyObject *__pyx_v_cls, PyObject *__pyx_v_msg) { struct __pyx_obj_10hummingbot_4core_9data_type_10order_book_OrderBook *__pyx_r = 0; __Pyx_RefNannyDeclarations __Pyx_RefNannySetupContext("from_snapshot (wrapper)", 0); __pyx_r = __pyx_pf_10hummingbot_6market_6kucoin_17kucoin_order_book_15KucoinOrderBook_18from_snapshot(((PyTypeObject*)__pyx_v_cls), ((PyObject *)__pyx_v_msg)); /* function exit code */ __Pyx_RefNannyFinishContext(); return __pyx_r; } static struct __pyx_obj_10hummingbot_4core_9data_type_10order_book_OrderBook *__pyx_pf_10hummingbot_6market_6kucoin_17kucoin_order_book_15KucoinOrderBook_18from_snapshot(CYTHON_UNUSED PyTypeObject *__pyx_v_cls, PyObject *__pyx_v_msg) { struct __pyx_obj_10hummingbot_6market_6kucoin_17kucoin_order_book_KucoinOrderBook *__pyx_v_retval = NULL; struct __pyx_obj_10hummingbot_4core_9data_type_10order_book_OrderBook *__pyx_r = NULL; __Pyx_RefNannyDeclarations PyObject *__pyx_t_1 = NULL; PyObject *__pyx_t_2 = NULL; PyObject *__pyx_t_3 = NULL; PyObject *__pyx_t_4 = NULL; PyObject *__pyx_t_5 = NULL; PyObject *__pyx_t_6 = NULL; int __pyx_t_7; PyObject *__pyx_t_8 = NULL; __Pyx_RefNannySetupContext("from_snapshot", 0); /* "hummingbot/market/kucoin/kucoin_order_book.pyx":143 * @classmethod * def from_snapshot(cls, msg: OrderBookMessage) -> "OrderBook": * retval = KucoinOrderBook() # <<<<<<<<<<<<<< * retval.apply_snapshot(msg.bids, msg.asks, msg.update_id) * return retval */ __pyx_t_1 = __Pyx_PyObject_CallNoArg(((PyObject *)__pyx_ptype_10hummingbot_6market_6kucoin_17kucoin_order_book_KucoinOrderBook)); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 143, __pyx_L1_error) __Pyx_GOTREF(__pyx_t_1); __pyx_v_retval = ((struct __pyx_obj_10hummingbot_6market_6kucoin_17kucoin_order_book_KucoinOrderBook *)__pyx_t_1); __pyx_t_1 = 0; /* "hummingbot/market/kucoin/kucoin_order_book.pyx":144 * def from_snapshot(cls, msg: OrderBookMessage) -> "OrderBook": * retval = KucoinOrderBook() * retval.apply_snapshot(msg.bids, msg.asks, msg.update_id) # <<<<<<<<<<<<<< * return retval */ __pyx_t_2 = __Pyx_PyObject_GetAttrStr(((PyObject *)__pyx_v_retval), __pyx_n_s_apply_snapshot); if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 144, __pyx_L1_error) __Pyx_GOTREF(__pyx_t_2); __pyx_t_3 = __Pyx_PyObject_GetAttrStr(__pyx_v_msg, __pyx_n_s_bids); if (unlikely(!__pyx_t_3)) __PYX_ERR(0, 144, __pyx_L1_error) __Pyx_GOTREF(__pyx_t_3); __pyx_t_4 = __Pyx_PyObject_GetAttrStr(__pyx_v_msg, __pyx_n_s_asks); if (unlikely(!__pyx_t_4)) __PYX_ERR(0, 144, __pyx_L1_error) __Pyx_GOTREF(__pyx_t_4); __pyx_t_5 = __Pyx_PyObject_GetAttrStr(__pyx_v_msg, __pyx_n_s_update_id); if (unlikely(!__pyx_t_5)) __PYX_ERR(0, 144, __pyx_L1_error) __Pyx_GOTREF(__pyx_t_5); __pyx_t_6 = NULL; __pyx_t_7 = 0; if (CYTHON_UNPACK_METHODS && likely(PyMethod_Check(__pyx_t_2))) { __pyx_t_6 = PyMethod_GET_SELF(__pyx_t_2); if (likely(__pyx_t_6)) { PyObject* function = PyMethod_GET_FUNCTION(__pyx_t_2); __Pyx_INCREF(__pyx_t_6); __Pyx_INCREF(function); __Pyx_DECREF_SET(__pyx_t_2, function); __pyx_t_7 = 1; } } #if CYTHON_FAST_PYCALL if (PyFunction_Check(__pyx_t_2)) { PyObject *__pyx_temp[4] = {__pyx_t_6, __pyx_t_3, __pyx_t_4, __pyx_t_5}; __pyx_t_1 = __Pyx_PyFunction_FastCall(__pyx_t_2, __pyx_temp+1-__pyx_t_7, 3+__pyx_t_7); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 144, __pyx_L1_error) __Pyx_XDECREF(__pyx_t_6); __pyx_t_6 = 0; __Pyx_GOTREF(__pyx_t_1); __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0; __Pyx_DECREF(__pyx_t_4); __pyx_t_4 = 0; __Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0; } else #endif #if CYTHON_FAST_PYCCALL if (__Pyx_PyFastCFunction_Check(__pyx_t_2)) { PyObject *__pyx_temp[4] = {__pyx_t_6, __pyx_t_3, __pyx_t_4, __pyx_t_5}; __pyx_t_1 = __Pyx_PyCFunction_FastCall(__pyx_t_2, __pyx_temp+1-__pyx_t_7, 3+__pyx_t_7); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 144, __pyx_L1_error) __Pyx_XDECREF(__pyx_t_6); __pyx_t_6 = 0; __Pyx_GOTREF(__pyx_t_1); __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0; __Pyx_DECREF(__pyx_t_4); __pyx_t_4 = 0; __Pyx_DECREF(__pyx_t_5); __pyx_t_5 = 0; } else #endif { __pyx_t_8 = PyTuple_New(3+__pyx_t_7); if (unlikely(!__pyx_t_8)) __PYX_ERR(0, 144, __pyx_L1_error) __Pyx_GOTREF(__pyx_t_8); if (__pyx_t_6) { __Pyx_GIVEREF(__pyx_t_6); PyTuple_SET_ITEM(__pyx_t_8, 0, __pyx_t_6); __pyx_t_6 = NULL; } __Pyx_GIVEREF(__pyx_t_3); PyTuple_SET_ITEM(__pyx_t_8, 0+__pyx_t_7, __pyx_t_3); __Pyx_GIVEREF(__pyx_t_4); PyTuple_SET_ITEM(__pyx_t_8, 1+__pyx_t_7, __pyx_t_4); __Pyx_GIVEREF(__pyx_t_5); PyTuple_SET_ITEM(__pyx_t_8, 2+__pyx_t_7, __pyx_t_5); __pyx_t_3 = 0; __pyx_t_4 = 0; __pyx_t_5 = 0; __pyx_t_1 = __Pyx_PyObject_Call(__pyx_t_2, __pyx_t_8, NULL); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 144, __pyx_L1_error) __Pyx_GOTREF(__pyx_t_1); __Pyx_DECREF(__pyx_t_8); __pyx_t_8 = 0; } __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0; __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; /* "hummingbot/market/kucoin/kucoin_order_book.pyx":145 * retval = KucoinOrderBook() * retval.apply_snapshot(msg.bids, msg.asks, msg.update_id) * return retval # <<<<<<<<<<<<<< */ __Pyx_XDECREF(((PyObject *)__pyx_r)); __Pyx_INCREF(((PyObject *)__pyx_v_retval)); __pyx_r = ((struct __pyx_obj_10hummingbot_4core_9data_type_10order_book_OrderBook *)__pyx_v_retval); goto __pyx_L0; /* "hummingbot/market/kucoin/kucoin_order_book.pyx":142 * * @classmethod * def from_snapshot(cls, msg: OrderBookMessage) -> "OrderBook": # <<<<<<<<<<<<<< * retval = KucoinOrderBook() * retval.apply_snapshot(msg.bids, msg.asks, msg.update_id) */ /* function exit code */ __pyx_L1_error:; __Pyx_XDECREF(__pyx_t_1); __Pyx_XDECREF(__pyx_t_2); __Pyx_XDECREF(__pyx_t_3); __Pyx_XDECREF(__pyx_t_4); __Pyx_XDECREF(__pyx_t_5); __Pyx_XDECREF(__pyx_t_6); __Pyx_XDECREF(__pyx_t_8); __Pyx_AddTraceback("hummingbot.market.kucoin.kucoin_order_book.KucoinOrderBook.from_snapshot", __pyx_clineno, __pyx_lineno, __pyx_filename); __pyx_r = NULL; __pyx_L0:; __Pyx_XDECREF((PyObject *)__pyx_v_retval); __Pyx_XGIVEREF((PyObject *)__pyx_r); __Pyx_RefNannyFinishContext(); return __pyx_r; } /* "(tree fragment)":1 * def __reduce_cython__(self): # <<<<<<<<<<<<<< * raise TypeError("self._ask_book,self._bid_book,self._events cannot be converted to a Python object for pickling") * def __setstate_cython__(self, __pyx_state): */ /* Python wrapper */ static PyObject *__pyx_pw_10hummingbot_6market_6kucoin_17kucoin_order_book_15KucoinOrderBook_21__reduce_cython__(PyObject *__pyx_v_self, CYTHON_UNUSED PyObject *unused); /*proto*/ static PyObject *__pyx_pw_10hummingbot_6market_6kucoin_17kucoin_order_book_15KucoinOrderBook_21__reduce_cython__(PyObject *__pyx_v_self, CYTHON_UNUSED PyObject *unused) { PyObject *__pyx_r = 0; __Pyx_RefNannyDeclarations __Pyx_RefNannySetupContext("__reduce_cython__ (wrapper)", 0); __pyx_r = __pyx_pf_10hummingbot_6market_6kucoin_17kucoin_order_book_15KucoinOrderBook_20__reduce_cython__(((struct __pyx_obj_10hummingbot_6market_6kucoin_17kucoin_order_book_KucoinOrderBook *)__pyx_v_self)); /* function exit code */ __Pyx_RefNannyFinishContext(); return __pyx_r; } static PyObject *__pyx_pf_10hummingbot_6market_6kucoin_17kucoin_order_book_15KucoinOrderBook_20__reduce_cython__(CYTHON_UNUSED struct __pyx_obj_10hummingbot_6market_6kucoin_17kucoin_order_book_KucoinOrderBook *__pyx_v_self) { PyObject *__pyx_r = NULL; __Pyx_RefNannyDeclarations PyObject *__pyx_t_1 = NULL; __Pyx_RefNannySetupContext("__reduce_cython__", 0); /* "(tree fragment)":2 * def __reduce_cython__(self): * raise TypeError("self._ask_book,self._bid_book,self._events cannot be converted to a Python object for pickling") # <<<<<<<<<<<<<< * def __setstate_cython__(self, __pyx_state): * raise TypeError("self._ask_book,self._bid_book,self._events cannot be converted to a Python object for pickling") */ __pyx_t_1 = __Pyx_PyObject_Call(__pyx_builtin_TypeError, __pyx_tuple_, NULL); if (unlikely(!__pyx_t_1)) __PYX_ERR(1, 2, __pyx_L1_error) __Pyx_GOTREF(__pyx_t_1); __Pyx_Raise(__pyx_t_1, 0, 0, 0); __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; __PYX_ERR(1, 2, __pyx_L1_error) /* "(tree fragment)":1 * def __reduce_cython__(self): # <<<<<<<<<<<<<< * raise TypeError("self._ask_book,self._bid_book,self._events cannot be converted to a Python object for pickling") * def __setstate_cython__(self, __pyx_state): */ /* function exit code */ __pyx_L1_error:; __Pyx_XDECREF(__pyx_t_1); __Pyx_AddTraceback("hummingbot.market.kucoin.kucoin_order_book.KucoinOrderBook.__reduce_cython__", __pyx_clineno, __pyx_lineno, __pyx_filename); __pyx_r = NULL; __Pyx_XGIVEREF(__pyx_r); __Pyx_RefNannyFinishContext(); return __pyx_r; } /* "(tree fragment)":3 * def __reduce_cython__(self): * raise TypeError("self._ask_book,self._bid_book,self._events cannot be converted to a Python object for pickling") * def __setstate_cython__(self, __pyx_state): # <<<<<<<<<<<<<< * raise TypeError("self._ask_book,self._bid_book,self._events cannot be converted to a Python object for pickling") */ /* Python wrapper */ static PyObject *__pyx_pw_10hummingbot_6market_6kucoin_17kucoin_order_book_15KucoinOrderBook_23__setstate_cython__(PyObject *__pyx_v_self, PyObject *__pyx_v___pyx_state); /*proto*/ static PyObject *__pyx_pw_10hummingbot_6market_6kucoin_17kucoin_order_book_15KucoinOrderBook_23__setstate_cython__(PyObject *__pyx_v_self, PyObject *__pyx_v___pyx_state) { PyObject *__pyx_r = 0; __Pyx_RefNannyDeclarations __Pyx_RefNannySetupContext("__setstate_cython__ (wrapper)", 0); __pyx_r = __pyx_pf_10hummingbot_6market_6kucoin_17kucoin_order_book_15KucoinOrderBook_22__setstate_cython__(((struct __pyx_obj_10hummingbot_6market_6kucoin_17kucoin_order_book_KucoinOrderBook *)__pyx_v_self), ((PyObject *)__pyx_v___pyx_state)); /* function exit code */ __Pyx_RefNannyFinishContext(); return __pyx_r; } static PyObject *__pyx_pf_10hummingbot_6market_6kucoin_17kucoin_order_book_15KucoinOrderBook_22__setstate_cython__(CYTHON_UNUSED struct __pyx_obj_10hummingbot_6market_6kucoin_17kucoin_order_book_KucoinOrderBook *__pyx_v_self, CYTHON_UNUSED PyObject *__pyx_v___pyx_state) { PyObject *__pyx_r = NULL; __Pyx_RefNannyDeclarations PyObject *__pyx_t_1 = NULL; __Pyx_RefNannySetupContext("__setstate_cython__", 0); /* "(tree fragment)":4 * raise TypeError("self._ask_book,self._bid_book,self._events cannot be converted to a Python object for pickling") * def __setstate_cython__(self, __pyx_state): * raise TypeError("self._ask_book,self._bid_book,self._events cannot be converted to a Python object for pickling") # <<<<<<<<<<<<<< */ __pyx_t_1 = __Pyx_PyObject_Call(__pyx_builtin_TypeError, __pyx_tuple__2, NULL); if (unlikely(!__pyx_t_1)) __PYX_ERR(1, 4, __pyx_L1_error) __Pyx_GOTREF(__pyx_t_1); __Pyx_Raise(__pyx_t_1, 0, 0, 0); __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; __PYX_ERR(1, 4, __pyx_L1_error) /* "(tree fragment)":3 * def __reduce_cython__(self): * raise TypeError("self._ask_book,self._bid_book,self._events cannot be converted to a Python object for pickling") * def __setstate_cython__(self, __pyx_state): # <<<<<<<<<<<<<< * raise TypeError("self._ask_book,self._bid_book,self._events cannot be converted to a Python object for pickling") */ /* function exit code */ __pyx_L1_error:; __Pyx_XDECREF(__pyx_t_1); __Pyx_AddTraceback("hummingbot.market.kucoin.kucoin_order_book.KucoinOrderBook.__setstate_cython__", __pyx_clineno, __pyx_lineno, __pyx_filename); __pyx_r = NULL; __Pyx_XGIVEREF(__pyx_r); __Pyx_RefNannyFinishContext(); return __pyx_r; } /* "../../miniconda3/envs/hummingbot/lib/python3.6/site-packages/Cython/Includes/numpy/__init__.pxd":258 * # experimental exception made for __getbuffer__ and __releasebuffer__ * # -- the details of this may change. * def __getbuffer__(ndarray self, Py_buffer* info, int flags): # <<<<<<<<<<<<<< * # This implementation of getbuffer is geared towards Cython * # requirements, and does not yet fulfill the PEP. */ /* Python wrapper */ static CYTHON_UNUSED int __pyx_pw_5numpy_7ndarray_1__getbuffer__(PyObject *__pyx_v_self, Py_buffer *__pyx_v_info, int __pyx_v_flags); /*proto*/ static CYTHON_UNUSED int __pyx_pw_5numpy_7ndarray_1__getbuffer__(PyObject *__pyx_v_self, Py_buffer *__pyx_v_info, int __pyx_v_flags) { int __pyx_r; __Pyx_RefNannyDeclarations __Pyx_RefNannySetupContext("__getbuffer__ (wrapper)", 0); __pyx_r = __pyx_pf_5numpy_7ndarray___getbuffer__(((PyArrayObject *)__pyx_v_self), ((Py_buffer *)__pyx_v_info), ((int)__pyx_v_flags)); /* function exit code */ __Pyx_RefNannyFinishContext(); return __pyx_r; } static int __pyx_pf_5numpy_7ndarray___getbuffer__(PyArrayObject *__pyx_v_self, Py_buffer *__pyx_v_info, int __pyx_v_flags) { int __pyx_v_i; int __pyx_v_ndim; int __pyx_v_endian_detector; int __pyx_v_little_endian; int __pyx_v_t; char *__pyx_v_f; PyArray_Descr *__pyx_v_descr = 0; int __pyx_v_offset; int __pyx_r; __Pyx_RefNannyDeclarations int __pyx_t_1; int __pyx_t_2; PyObject *__pyx_t_3 = NULL; int __pyx_t_4; int __pyx_t_5; int __pyx_t_6; PyArray_Descr *__pyx_t_7; PyObject *__pyx_t_8 = NULL; char *__pyx_t_9; if (__pyx_v_info == NULL) { PyErr_SetString(PyExc_BufferError, "PyObject_GetBuffer: view==NULL argument is obsolete"); return -1; } __Pyx_RefNannySetupContext("__getbuffer__", 0); __pyx_v_info->obj = Py_None; __Pyx_INCREF(Py_None); __Pyx_GIVEREF(__pyx_v_info->obj); /* "../../miniconda3/envs/hummingbot/lib/python3.6/site-packages/Cython/Includes/numpy/__init__.pxd":265 * * cdef int i, ndim * cdef int endian_detector = 1 # <<<<<<<<<<<<<< * cdef bint little_endian = ((<char*>&endian_detector)[0] != 0) * */ __pyx_v_endian_detector = 1; /* "../../miniconda3/envs/hummingbot/lib/python3.6/site-packages/Cython/Includes/numpy/__init__.pxd":266 * cdef int i, ndim * cdef int endian_detector = 1 * cdef bint little_endian = ((<char*>&endian_detector)[0] != 0) # <<<<<<<<<<<<<< * * ndim = PyArray_NDIM(self) */ __pyx_v_little_endian = ((((char *)(&__pyx_v_endian_detector))[0]) != 0); /* "../../miniconda3/envs/hummingbot/lib/python3.6/site-packages/Cython/Includes/numpy/__init__.pxd":268 * cdef bint little_endian = ((<char*>&endian_detector)[0] != 0) * * ndim = PyArray_NDIM(self) # <<<<<<<<<<<<<< * * if ((flags & pybuf.PyBUF_C_CONTIGUOUS == pybuf.PyBUF_C_CONTIGUOUS) */ __pyx_v_ndim = PyArray_NDIM(__pyx_v_self); /* "../../miniconda3/envs/hummingbot/lib/python3.6/site-packages/Cython/Includes/numpy/__init__.pxd":270 * ndim = PyArray_NDIM(self) * * if ((flags & pybuf.PyBUF_C_CONTIGUOUS == pybuf.PyBUF_C_CONTIGUOUS) # <<<<<<<<<<<<<< * and not PyArray_CHKFLAGS(self, NPY_ARRAY_C_CONTIGUOUS)): * raise ValueError(u"ndarray is not C contiguous") */ __pyx_t_2 = (((__pyx_v_flags & PyBUF_C_CONTIGUOUS) == PyBUF_C_CONTIGUOUS) != 0); if (__pyx_t_2) { } else { __pyx_t_1 = __pyx_t_2; goto __pyx_L4_bool_binop_done; } /* "../../miniconda3/envs/hummingbot/lib/python3.6/site-packages/Cython/Includes/numpy/__init__.pxd":271 * * if ((flags & pybuf.PyBUF_C_CONTIGUOUS == pybuf.PyBUF_C_CONTIGUOUS) * and not PyArray_CHKFLAGS(self, NPY_ARRAY_C_CONTIGUOUS)): # <<<<<<<<<<<<<< * raise ValueError(u"ndarray is not C contiguous") * */ __pyx_t_2 = ((!(PyArray_CHKFLAGS(__pyx_v_self, NPY_ARRAY_C_CONTIGUOUS) != 0)) != 0); __pyx_t_1 = __pyx_t_2; __pyx_L4_bool_binop_done:; /* "../../miniconda3/envs/hummingbot/lib/python3.6/site-packages/Cython/Includes/numpy/__init__.pxd":270 * ndim = PyArray_NDIM(self) * * if ((flags & pybuf.PyBUF_C_CONTIGUOUS == pybuf.PyBUF_C_CONTIGUOUS) # <<<<<<<<<<<<<< * and not PyArray_CHKFLAGS(self, NPY_ARRAY_C_CONTIGUOUS)): * raise ValueError(u"ndarray is not C contiguous") */ if (unlikely(__pyx_t_1)) { /* "../../miniconda3/envs/hummingbot/lib/python3.6/site-packages/Cython/Includes/numpy/__init__.pxd":272 * if ((flags & pybuf.PyBUF_C_CONTIGUOUS == pybuf.PyBUF_C_CONTIGUOUS) * and not PyArray_CHKFLAGS(self, NPY_ARRAY_C_CONTIGUOUS)): * raise ValueError(u"ndarray is not C contiguous") # <<<<<<<<<<<<<< * * if ((flags & pybuf.PyBUF_F_CONTIGUOUS == pybuf.PyBUF_F_CONTIGUOUS) */ __pyx_t_3 = __Pyx_PyObject_Call(__pyx_builtin_ValueError, __pyx_tuple__3, NULL); if (unlikely(!__pyx_t_3)) __PYX_ERR(2, 272, __pyx_L1_error) __Pyx_GOTREF(__pyx_t_3); __Pyx_Raise(__pyx_t_3, 0, 0, 0); __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0; __PYX_ERR(2, 272, __pyx_L1_error) /* "../../miniconda3/envs/hummingbot/lib/python3.6/site-packages/Cython/Includes/numpy/__init__.pxd":270 * ndim = PyArray_NDIM(self) * * if ((flags & pybuf.PyBUF_C_CONTIGUOUS == pybuf.PyBUF_C_CONTIGUOUS) # <<<<<<<<<<<<<< * and not PyArray_CHKFLAGS(self, NPY_ARRAY_C_CONTIGUOUS)): * raise ValueError(u"ndarray is not C contiguous") */ } /* "../../miniconda3/envs/hummingbot/lib/python3.6/site-packages/Cython/Includes/numpy/__init__.pxd":274 * raise ValueError(u"ndarray is not C contiguous") * * if ((flags & pybuf.PyBUF_F_CONTIGUOUS == pybuf.PyBUF_F_CONTIGUOUS) # <<<<<<<<<<<<<< * and not PyArray_CHKFLAGS(self, NPY_ARRAY_F_CONTIGUOUS)): * raise ValueError(u"ndarray is not Fortran contiguous") */ __pyx_t_2 = (((__pyx_v_flags & PyBUF_F_CONTIGUOUS) == PyBUF_F_CONTIGUOUS) != 0); if (__pyx_t_2) { } else { __pyx_t_1 = __pyx_t_2; goto __pyx_L7_bool_binop_done; } /* "../../miniconda3/envs/hummingbot/lib/python3.6/site-packages/Cython/Includes/numpy/__init__.pxd":275 * * if ((flags & pybuf.PyBUF_F_CONTIGUOUS == pybuf.PyBUF_F_CONTIGUOUS) * and not PyArray_CHKFLAGS(self, NPY_ARRAY_F_CONTIGUOUS)): # <<<<<<<<<<<<<< * raise ValueError(u"ndarray is not Fortran contiguous") * */ __pyx_t_2 = ((!(PyArray_CHKFLAGS(__pyx_v_self, NPY_ARRAY_F_CONTIGUOUS) != 0)) != 0); __pyx_t_1 = __pyx_t_2; __pyx_L7_bool_binop_done:; /* "../../miniconda3/envs/hummingbot/lib/python3.6/site-packages/Cython/Includes/numpy/__init__.pxd":274 * raise ValueError(u"ndarray is not C contiguous") * * if ((flags & pybuf.PyBUF_F_CONTIGUOUS == pybuf.PyBUF_F_CONTIGUOUS) # <<<<<<<<<<<<<< * and not PyArray_CHKFLAGS(self, NPY_ARRAY_F_CONTIGUOUS)): * raise ValueError(u"ndarray is not Fortran contiguous") */ if (unlikely(__pyx_t_1)) { /* "../../miniconda3/envs/hummingbot/lib/python3.6/site-packages/Cython/Includes/numpy/__init__.pxd":276 * if ((flags & pybuf.PyBUF_F_CONTIGUOUS == pybuf.PyBUF_F_CONTIGUOUS) * and not PyArray_CHKFLAGS(self, NPY_ARRAY_F_CONTIGUOUS)): * raise ValueError(u"ndarray is not Fortran contiguous") # <<<<<<<<<<<<<< * * info.buf = PyArray_DATA(self) */ __pyx_t_3 = __Pyx_PyObject_Call(__pyx_builtin_ValueError, __pyx_tuple__4, NULL); if (unlikely(!__pyx_t_3)) __PYX_ERR(2, 276, __pyx_L1_error) __Pyx_GOTREF(__pyx_t_3); __Pyx_Raise(__pyx_t_3, 0, 0, 0); __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0; __PYX_ERR(2, 276, __pyx_L1_error) /* "../../miniconda3/envs/hummingbot/lib/python3.6/site-packages/Cython/Includes/numpy/__init__.pxd":274 * raise ValueError(u"ndarray is not C contiguous") * * if ((flags & pybuf.PyBUF_F_CONTIGUOUS == pybuf.PyBUF_F_CONTIGUOUS) # <<<<<<<<<<<<<< * and not PyArray_CHKFLAGS(self, NPY_ARRAY_F_CONTIGUOUS)): * raise ValueError(u"ndarray is not Fortran contiguous") */ } /* "../../miniconda3/envs/hummingbot/lib/python3.6/site-packages/Cython/Includes/numpy/__init__.pxd":278 * raise ValueError(u"ndarray is not Fortran contiguous") * * info.buf = PyArray_DATA(self) # <<<<<<<<<<<<<< * info.ndim = ndim * if sizeof(npy_intp) != sizeof(Py_ssize_t): */ __pyx_v_info->buf = PyArray_DATA(__pyx_v_self); /* "../../miniconda3/envs/hummingbot/lib/python3.6/site-packages/Cython/Includes/numpy/__init__.pxd":279 * * info.buf = PyArray_DATA(self) * info.ndim = ndim # <<<<<<<<<<<<<< * if sizeof(npy_intp) != sizeof(Py_ssize_t): * # Allocate new buffer for strides and shape info. */ __pyx_v_info->ndim = __pyx_v_ndim; /* "../../miniconda3/envs/hummingbot/lib/python3.6/site-packages/Cython/Includes/numpy/__init__.pxd":280 * info.buf = PyArray_DATA(self) * info.ndim = ndim * if sizeof(npy_intp) != sizeof(Py_ssize_t): # <<<<<<<<<<<<<< * # Allocate new buffer for strides and shape info. * # This is allocated as one block, strides first. */ __pyx_t_1 = (((sizeof(npy_intp)) != (sizeof(Py_ssize_t))) != 0); if (__pyx_t_1) { /* "../../miniconda3/envs/hummingbot/lib/python3.6/site-packages/Cython/Includes/numpy/__init__.pxd":283 * # Allocate new buffer for strides and shape info. * # This is allocated as one block, strides first. * info.strides = <Py_ssize_t*>PyObject_Malloc(sizeof(Py_ssize_t) * 2 * <size_t>ndim) # <<<<<<<<<<<<<< * info.shape = info.strides + ndim * for i in range(ndim): */ __pyx_v_info->strides = ((Py_ssize_t *)PyObject_Malloc((((sizeof(Py_ssize_t)) * 2) * ((size_t)__pyx_v_ndim)))); /* "../../miniconda3/envs/hummingbot/lib/python3.6/site-packages/Cython/Includes/numpy/__init__.pxd":284 * # This is allocated as one block, strides first. * info.strides = <Py_ssize_t*>PyObject_Malloc(sizeof(Py_ssize_t) * 2 * <size_t>ndim) * info.shape = info.strides + ndim # <<<<<<<<<<<<<< * for i in range(ndim): * info.strides[i] = PyArray_STRIDES(self)[i] */ __pyx_v_info->shape = (__pyx_v_info->strides + __pyx_v_ndim); /* "../../miniconda3/envs/hummingbot/lib/python3.6/site-packages/Cython/Includes/numpy/__init__.pxd":285 * info.strides = <Py_ssize_t*>PyObject_Malloc(sizeof(Py_ssize_t) * 2 * <size_t>ndim) * info.shape = info.strides + ndim * for i in range(ndim): # <<<<<<<<<<<<<< * info.strides[i] = PyArray_STRIDES(self)[i] * info.shape[i] = PyArray_DIMS(self)[i] */ __pyx_t_4 = __pyx_v_ndim; __pyx_t_5 = __pyx_t_4; for (__pyx_t_6 = 0; __pyx_t_6 < __pyx_t_5; __pyx_t_6+=1) { __pyx_v_i = __pyx_t_6; /* "../../miniconda3/envs/hummingbot/lib/python3.6/site-packages/Cython/Includes/numpy/__init__.pxd":286 * info.shape = info.strides + ndim * for i in range(ndim): * info.strides[i] = PyArray_STRIDES(self)[i] # <<<<<<<<<<<<<< * info.shape[i] = PyArray_DIMS(self)[i] * else: */ (__pyx_v_info->strides[__pyx_v_i]) = (PyArray_STRIDES(__pyx_v_self)[__pyx_v_i]); /* "../../miniconda3/envs/hummingbot/lib/python3.6/site-packages/Cython/Includes/numpy/__init__.pxd":287 * for i in range(ndim): * info.strides[i] = PyArray_STRIDES(self)[i] * info.shape[i] = PyArray_DIMS(self)[i] # <<<<<<<<<<<<<< * else: * info.strides = <Py_ssize_t*>PyArray_STRIDES(self) */ (__pyx_v_info->shape[__pyx_v_i]) = (PyArray_DIMS(__pyx_v_self)[__pyx_v_i]); } /* "../../miniconda3/envs/hummingbot/lib/python3.6/site-packages/Cython/Includes/numpy/__init__.pxd":280 * info.buf = PyArray_DATA(self) * info.ndim = ndim * if sizeof(npy_intp) != sizeof(Py_ssize_t): # <<<<<<<<<<<<<< * # Allocate new buffer for strides and shape info. * # This is allocated as one block, strides first. */ goto __pyx_L9; } /* "../../miniconda3/envs/hummingbot/lib/python3.6/site-packages/Cython/Includes/numpy/__init__.pxd":289 * info.shape[i] = PyArray_DIMS(self)[i] * else: * info.strides = <Py_ssize_t*>PyArray_STRIDES(self) # <<<<<<<<<<<<<< * info.shape = <Py_ssize_t*>PyArray_DIMS(self) * info.suboffsets = NULL */ /*else*/ { __pyx_v_info->strides = ((Py_ssize_t *)PyArray_STRIDES(__pyx_v_self)); /* "../../miniconda3/envs/hummingbot/lib/python3.6/site-packages/Cython/Includes/numpy/__init__.pxd":290 * else: * info.strides = <Py_ssize_t*>PyArray_STRIDES(self) * info.shape = <Py_ssize_t*>PyArray_DIMS(self) # <<<<<<<<<<<<<< * info.suboffsets = NULL * info.itemsize = PyArray_ITEMSIZE(self) */ __pyx_v_info->shape = ((Py_ssize_t *)PyArray_DIMS(__pyx_v_self)); } __pyx_L9:; /* "../../miniconda3/envs/hummingbot/lib/python3.6/site-packages/Cython/Includes/numpy/__init__.pxd":291 * info.strides = <Py_ssize_t*>PyArray_STRIDES(self) * info.shape = <Py_ssize_t*>PyArray_DIMS(self) * info.suboffsets = NULL # <<<<<<<<<<<<<< * info.itemsize = PyArray_ITEMSIZE(self) * info.readonly = not PyArray_ISWRITEABLE(self) */ __pyx_v_info->suboffsets = NULL; /* "../../miniconda3/envs/hummingbot/lib/python3.6/site-packages/Cython/Includes/numpy/__init__.pxd":292 * info.shape = <Py_ssize_t*>PyArray_DIMS(self) * info.suboffsets = NULL * info.itemsize = PyArray_ITEMSIZE(self) # <<<<<<<<<<<<<< * info.readonly = not PyArray_ISWRITEABLE(self) * */ __pyx_v_info->itemsize = PyArray_ITEMSIZE(__pyx_v_self); /* "../../miniconda3/envs/hummingbot/lib/python3.6/site-packages/Cython/Includes/numpy/__init__.pxd":293 * info.suboffsets = NULL * info.itemsize = PyArray_ITEMSIZE(self) * info.readonly = not PyArray_ISWRITEABLE(self) # <<<<<<<<<<<<<< * * cdef int t */ __pyx_v_info->readonly = (!(PyArray_ISWRITEABLE(__pyx_v_self) != 0)); /* "../../miniconda3/envs/hummingbot/lib/python3.6/site-packages/Cython/Includes/numpy/__init__.pxd":296 * * cdef int t * cdef char* f = NULL # <<<<<<<<<<<<<< * cdef dtype descr = <dtype>PyArray_DESCR(self) * cdef int offset */ __pyx_v_f = NULL; /* "../../miniconda3/envs/hummingbot/lib/python3.6/site-packages/Cython/Includes/numpy/__init__.pxd":297 * cdef int t * cdef char* f = NULL * cdef dtype descr = <dtype>PyArray_DESCR(self) # <<<<<<<<<<<<<< * cdef int offset * */ __pyx_t_7 = PyArray_DESCR(__pyx_v_self); __pyx_t_3 = ((PyObject *)__pyx_t_7); __Pyx_INCREF(__pyx_t_3); __pyx_v_descr = ((PyArray_Descr *)__pyx_t_3); __pyx_t_3 = 0; /* "../../miniconda3/envs/hummingbot/lib/python3.6/site-packages/Cython/Includes/numpy/__init__.pxd":300 * cdef int offset * * info.obj = self # <<<<<<<<<<<<<< * * if not PyDataType_HASFIELDS(descr): */ __Pyx_INCREF(((PyObject *)__pyx_v_self)); __Pyx_GIVEREF(((PyObject *)__pyx_v_self)); __Pyx_GOTREF(__pyx_v_info->obj); __Pyx_DECREF(__pyx_v_info->obj); __pyx_v_info->obj = ((PyObject *)__pyx_v_self); /* "../../miniconda3/envs/hummingbot/lib/python3.6/site-packages/Cython/Includes/numpy/__init__.pxd":302 * info.obj = self * * if not PyDataType_HASFIELDS(descr): # <<<<<<<<<<<<<< * t = descr.type_num * if ((descr.byteorder == c'>' and little_endian) or */ __pyx_t_1 = ((!(PyDataType_HASFIELDS(__pyx_v_descr) != 0)) != 0); if (__pyx_t_1) { /* "../../miniconda3/envs/hummingbot/lib/python3.6/site-packages/Cython/Includes/numpy/__init__.pxd":303 * * if not PyDataType_HASFIELDS(descr): * t = descr.type_num # <<<<<<<<<<<<<< * if ((descr.byteorder == c'>' and little_endian) or * (descr.byteorder == c'<' and not little_endian)): */ __pyx_t_4 = __pyx_v_descr->type_num; __pyx_v_t = __pyx_t_4; /* "../../miniconda3/envs/hummingbot/lib/python3.6/site-packages/Cython/Includes/numpy/__init__.pxd":304 * if not PyDataType_HASFIELDS(descr): * t = descr.type_num * if ((descr.byteorder == c'>' and little_endian) or # <<<<<<<<<<<<<< * (descr.byteorder == c'<' and not little_endian)): * raise ValueError(u"Non-native byte order not supported") */ __pyx_t_2 = ((__pyx_v_descr->byteorder == '>') != 0); if (!__pyx_t_2) { goto __pyx_L15_next_or; } else { } __pyx_t_2 = (__pyx_v_little_endian != 0); if (!__pyx_t_2) { } else { __pyx_t_1 = __pyx_t_2; goto __pyx_L14_bool_binop_done; } __pyx_L15_next_or:; /* "../../miniconda3/envs/hummingbot/lib/python3.6/site-packages/Cython/Includes/numpy/__init__.pxd":305 * t = descr.type_num * if ((descr.byteorder == c'>' and little_endian) or * (descr.byteorder == c'<' and not little_endian)): # <<<<<<<<<<<<<< * raise ValueError(u"Non-native byte order not supported") * if t == NPY_BYTE: f = "b" */ __pyx_t_2 = ((__pyx_v_descr->byteorder == '<') != 0); if (__pyx_t_2) { } else { __pyx_t_1 = __pyx_t_2; goto __pyx_L14_bool_binop_done; } __pyx_t_2 = ((!(__pyx_v_little_endian != 0)) != 0); __pyx_t_1 = __pyx_t_2; __pyx_L14_bool_binop_done:; /* "../../miniconda3/envs/hummingbot/lib/python3.6/site-packages/Cython/Includes/numpy/__init__.pxd":304 * if not PyDataType_HASFIELDS(descr): * t = descr.type_num * if ((descr.byteorder == c'>' and little_endian) or # <<<<<<<<<<<<<< * (descr.byteorder == c'<' and not little_endian)): * raise ValueError(u"Non-native byte order not supported") */ if (unlikely(__pyx_t_1)) { /* "../../miniconda3/envs/hummingbot/lib/python3.6/site-packages/Cython/Includes/numpy/__init__.pxd":306 * if ((descr.byteorder == c'>' and little_endian) or * (descr.byteorder == c'<' and not little_endian)): * raise ValueError(u"Non-native byte order not supported") # <<<<<<<<<<<<<< * if t == NPY_BYTE: f = "b" * elif t == NPY_UBYTE: f = "B" */ __pyx_t_3 = __Pyx_PyObject_Call(__pyx_builtin_ValueError, __pyx_tuple__5, NULL); if (unlikely(!__pyx_t_3)) __PYX_ERR(2, 306, __pyx_L1_error) __Pyx_GOTREF(__pyx_t_3); __Pyx_Raise(__pyx_t_3, 0, 0, 0); __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0; __PYX_ERR(2, 306, __pyx_L1_error) /* "../../miniconda3/envs/hummingbot/lib/python3.6/site-packages/Cython/Includes/numpy/__init__.pxd":304 * if not PyDataType_HASFIELDS(descr): * t = descr.type_num * if ((descr.byteorder == c'>' and little_endian) or # <<<<<<<<<<<<<< * (descr.byteorder == c'<' and not little_endian)): * raise ValueError(u"Non-native byte order not supported") */ } /* "../../miniconda3/envs/hummingbot/lib/python3.6/site-packages/Cython/Includes/numpy/__init__.pxd":307 * (descr.byteorder == c'<' and not little_endian)): * raise ValueError(u"Non-native byte order not supported") * if t == NPY_BYTE: f = "b" # <<<<<<<<<<<<<< * elif t == NPY_UBYTE: f = "B" * elif t == NPY_SHORT: f = "h" */ switch (__pyx_v_t) { case NPY_BYTE: __pyx_v_f = ((char *)"b"); break; case NPY_UBYTE: /* "../../miniconda3/envs/hummingbot/lib/python3.6/site-packages/Cython/Includes/numpy/__init__.pxd":308 * raise ValueError(u"Non-native byte order not supported") * if t == NPY_BYTE: f = "b" * elif t == NPY_UBYTE: f = "B" # <<<<<<<<<<<<<< * elif t == NPY_SHORT: f = "h" * elif t == NPY_USHORT: f = "H" */ __pyx_v_f = ((char *)"B"); break; case NPY_SHORT: /* "../../miniconda3/envs/hummingbot/lib/python3.6/site-packages/Cython/Includes/numpy/__init__.pxd":309 * if t == NPY_BYTE: f = "b" * elif t == NPY_UBYTE: f = "B" * elif t == NPY_SHORT: f = "h" # <<<<<<<<<<<<<< * elif t == NPY_USHORT: f = "H" * elif t == NPY_INT: f = "i" */ __pyx_v_f = ((char *)"h"); break; case NPY_USHORT: /* "../../miniconda3/envs/hummingbot/lib/python3.6/site-packages/Cython/Includes/numpy/__init__.pxd":310 * elif t == NPY_UBYTE: f = "B" * elif t == NPY_SHORT: f = "h" * elif t == NPY_USHORT: f = "H" # <<<<<<<<<<<<<< * elif t == NPY_INT: f = "i" * elif t == NPY_UINT: f = "I" */ __pyx_v_f = ((char *)"H"); break; case NPY_INT: /* "../../miniconda3/envs/hummingbot/lib/python3.6/site-packages/Cython/Includes/numpy/__init__.pxd":311 * elif t == NPY_SHORT: f = "h" * elif t == NPY_USHORT: f = "H" * elif t == NPY_INT: f = "i" # <<<<<<<<<<<<<< * elif t == NPY_UINT: f = "I" * elif t == NPY_LONG: f = "l" */ __pyx_v_f = ((char *)"i"); break; case NPY_UINT: /* "../../miniconda3/envs/hummingbot/lib/python3.6/site-packages/Cython/Includes/numpy/__init__.pxd":312 * elif t == NPY_USHORT: f = "H" * elif t == NPY_INT: f = "i" * elif t == NPY_UINT: f = "I" # <<<<<<<<<<<<<< * elif t == NPY_LONG: f = "l" * elif t == NPY_ULONG: f = "L" */ __pyx_v_f = ((char *)"I"); break; case NPY_LONG: /* "../../miniconda3/envs/hummingbot/lib/python3.6/site-packages/Cython/Includes/numpy/__init__.pxd":313 * elif t == NPY_INT: f = "i" * elif t == NPY_UINT: f = "I" * elif t == NPY_LONG: f = "l" # <<<<<<<<<<<<<< * elif t == NPY_ULONG: f = "L" * elif t == NPY_LONGLONG: f = "q" */ __pyx_v_f = ((char *)"l"); break; case NPY_ULONG: /* "../../miniconda3/envs/hummingbot/lib/python3.6/site-packages/Cython/Includes/numpy/__init__.pxd":314 * elif t == NPY_UINT: f = "I" * elif t == NPY_LONG: f = "l" * elif t == NPY_ULONG: f = "L" # <<<<<<<<<<<<<< * elif t == NPY_LONGLONG: f = "q" * elif t == NPY_ULONGLONG: f = "Q" */ __pyx_v_f = ((char *)"L"); break; case NPY_LONGLONG: /* "../../miniconda3/envs/hummingbot/lib/python3.6/site-packages/Cython/Includes/numpy/__init__.pxd":315 * elif t == NPY_LONG: f = "l" * elif t == NPY_ULONG: f = "L" * elif t == NPY_LONGLONG: f = "q" # <<<<<<<<<<<<<< * elif t == NPY_ULONGLONG: f = "Q" * elif t == NPY_FLOAT: f = "f" */ __pyx_v_f = ((char *)"q"); break; case NPY_ULONGLONG: /* "../../miniconda3/envs/hummingbot/lib/python3.6/site-packages/Cython/Includes/numpy/__init__.pxd":316 * elif t == NPY_ULONG: f = "L" * elif t == NPY_LONGLONG: f = "q" * elif t == NPY_ULONGLONG: f = "Q" # <<<<<<<<<<<<<< * elif t == NPY_FLOAT: f = "f" * elif t == NPY_DOUBLE: f = "d" */ __pyx_v_f = ((char *)"Q"); break; case NPY_FLOAT: /* "../../miniconda3/envs/hummingbot/lib/python3.6/site-packages/Cython/Includes/numpy/__init__.pxd":317 * elif t == NPY_LONGLONG: f = "q" * elif t == NPY_ULONGLONG: f = "Q" * elif t == NPY_FLOAT: f = "f" # <<<<<<<<<<<<<< * elif t == NPY_DOUBLE: f = "d" * elif t == NPY_LONGDOUBLE: f = "g" */ __pyx_v_f = ((char *)"f"); break; case NPY_DOUBLE: /* "../../miniconda3/envs/hummingbot/lib/python3.6/site-packages/Cython/Includes/numpy/__init__.pxd":318 * elif t == NPY_ULONGLONG: f = "Q" * elif t == NPY_FLOAT: f = "f" * elif t == NPY_DOUBLE: f = "d" # <<<<<<<<<<<<<< * elif t == NPY_LONGDOUBLE: f = "g" * elif t == NPY_CFLOAT: f = "Zf" */ __pyx_v_f = ((char *)"d"); break; case NPY_LONGDOUBLE: /* "../../miniconda3/envs/hummingbot/lib/python3.6/site-packages/Cython/Includes/numpy/__init__.pxd":319 * elif t == NPY_FLOAT: f = "f" * elif t == NPY_DOUBLE: f = "d" * elif t == NPY_LONGDOUBLE: f = "g" # <<<<<<<<<<<<<< * elif t == NPY_CFLOAT: f = "Zf" * elif t == NPY_CDOUBLE: f = "Zd" */ __pyx_v_f = ((char *)"g"); break; case NPY_CFLOAT: /* "../../miniconda3/envs/hummingbot/lib/python3.6/site-packages/Cython/Includes/numpy/__init__.pxd":320 * elif t == NPY_DOUBLE: f = "d" * elif t == NPY_LONGDOUBLE: f = "g" * elif t == NPY_CFLOAT: f = "Zf" # <<<<<<<<<<<<<< * elif t == NPY_CDOUBLE: f = "Zd" * elif t == NPY_CLONGDOUBLE: f = "Zg" */ __pyx_v_f = ((char *)"Zf"); break; case NPY_CDOUBLE: /* "../../miniconda3/envs/hummingbot/lib/python3.6/site-packages/Cython/Includes/numpy/__init__.pxd":321 * elif t == NPY_LONGDOUBLE: f = "g" * elif t == NPY_CFLOAT: f = "Zf" * elif t == NPY_CDOUBLE: f = "Zd" # <<<<<<<<<<<<<< * elif t == NPY_CLONGDOUBLE: f = "Zg" * elif t == NPY_OBJECT: f = "O" */ __pyx_v_f = ((char *)"Zd"); break; case NPY_CLONGDOUBLE: /* "../../miniconda3/envs/hummingbot/lib/python3.6/site-packages/Cython/Includes/numpy/__init__.pxd":322 * elif t == NPY_CFLOAT: f = "Zf" * elif t == NPY_CDOUBLE: f = "Zd" * elif t == NPY_CLONGDOUBLE: f = "Zg" # <<<<<<<<<<<<<< * elif t == NPY_OBJECT: f = "O" * else: */ __pyx_v_f = ((char *)"Zg"); break; case NPY_OBJECT: /* "../../miniconda3/envs/hummingbot/lib/python3.6/site-packages/Cython/Includes/numpy/__init__.pxd":323 * elif t == NPY_CDOUBLE: f = "Zd" * elif t == NPY_CLONGDOUBLE: f = "Zg" * elif t == NPY_OBJECT: f = "O" # <<<<<<<<<<<<<< * else: * raise ValueError(u"unknown dtype code in numpy.pxd (%d)" % t) */ __pyx_v_f = ((char *)"O"); break; default: /* "../../miniconda3/envs/hummingbot/lib/python3.6/site-packages/Cython/Includes/numpy/__init__.pxd":325 * elif t == NPY_OBJECT: f = "O" * else: * raise ValueError(u"unknown dtype code in numpy.pxd (%d)" % t) # <<<<<<<<<<<<<< * info.format = f * return */ __pyx_t_3 = __Pyx_PyInt_From_int(__pyx_v_t); if (unlikely(!__pyx_t_3)) __PYX_ERR(2, 325, __pyx_L1_error) __Pyx_GOTREF(__pyx_t_3); __pyx_t_8 = PyUnicode_Format(__pyx_kp_u_unknown_dtype_code_in_numpy_pxd, __pyx_t_3); if (unlikely(!__pyx_t_8)) __PYX_ERR(2, 325, __pyx_L1_error) __Pyx_GOTREF(__pyx_t_8); __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0; __pyx_t_3 = __Pyx_PyObject_CallOneArg(__pyx_builtin_ValueError, __pyx_t_8); if (unlikely(!__pyx_t_3)) __PYX_ERR(2, 325, __pyx_L1_error) __Pyx_GOTREF(__pyx_t_3); __Pyx_DECREF(__pyx_t_8); __pyx_t_8 = 0; __Pyx_Raise(__pyx_t_3, 0, 0, 0); __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0; __PYX_ERR(2, 325, __pyx_L1_error) break; } /* "../../miniconda3/envs/hummingbot/lib/python3.6/site-packages/Cython/Includes/numpy/__init__.pxd":326 * else: * raise ValueError(u"unknown dtype code in numpy.pxd (%d)" % t) * info.format = f # <<<<<<<<<<<<<< * return * else: */ __pyx_v_info->format = __pyx_v_f; /* "../../miniconda3/envs/hummingbot/lib/python3.6/site-packages/Cython/Includes/numpy/__init__.pxd":327 * raise ValueError(u"unknown dtype code in numpy.pxd (%d)" % t) * info.format = f * return # <<<<<<<<<<<<<< * else: * info.format = <char*>PyObject_Malloc(_buffer_format_string_len) */ __pyx_r = 0; goto __pyx_L0; /* "../../miniconda3/envs/hummingbot/lib/python3.6/site-packages/Cython/Includes/numpy/__init__.pxd":302 * info.obj = self * * if not PyDataType_HASFIELDS(descr): # <<<<<<<<<<<<<< * t = descr.type_num * if ((descr.byteorder == c'>' and little_endian) or */ } /* "../../miniconda3/envs/hummingbot/lib/python3.6/site-packages/Cython/Includes/numpy/__init__.pxd":329 * return * else: * info.format = <char*>PyObject_Malloc(_buffer_format_string_len) # <<<<<<<<<<<<<< * info.format[0] = c'^' # Native data types, manual alignment * offset = 0 */ /*else*/ { __pyx_v_info->format = ((char *)PyObject_Malloc(0xFF)); /* "../../miniconda3/envs/hummingbot/lib/python3.6/site-packages/Cython/Includes/numpy/__init__.pxd":330 * else: * info.format = <char*>PyObject_Malloc(_buffer_format_string_len) * info.format[0] = c'^' # Native data types, manual alignment # <<<<<<<<<<<<<< * offset = 0 * f = _util_dtypestring(descr, info.format + 1, */ (__pyx_v_info->format[0]) = '^'; /* "../../miniconda3/envs/hummingbot/lib/python3.6/site-packages/Cython/Includes/numpy/__init__.pxd":331 * info.format = <char*>PyObject_Malloc(_buffer_format_string_len) * info.format[0] = c'^' # Native data types, manual alignment * offset = 0 # <<<<<<<<<<<<<< * f = _util_dtypestring(descr, info.format + 1, * info.format + _buffer_format_string_len, */ __pyx_v_offset = 0; /* "../../miniconda3/envs/hummingbot/lib/python3.6/site-packages/Cython/Includes/numpy/__init__.pxd":332 * info.format[0] = c'^' # Native data types, manual alignment * offset = 0 * f = _util_dtypestring(descr, info.format + 1, # <<<<<<<<<<<<<< * info.format + _buffer_format_string_len, * &offset) */ __pyx_t_9 = __pyx_f_5numpy__util_dtypestring(__pyx_v_descr, (__pyx_v_info->format + 1), (__pyx_v_info->format + 0xFF), (&__pyx_v_offset)); if (unlikely(__pyx_t_9 == ((char *)NULL))) __PYX_ERR(2, 332, __pyx_L1_error) __pyx_v_f = __pyx_t_9; /* "../../miniconda3/envs/hummingbot/lib/python3.6/site-packages/Cython/Includes/numpy/__init__.pxd":335 * info.format + _buffer_format_string_len, * &offset) * f[0] = c'\0' # Terminate format string # <<<<<<<<<<<<<< * * def __releasebuffer__(ndarray self, Py_buffer* info): */ (__pyx_v_f[0]) = '\x00'; } /* "../../miniconda3/envs/hummingbot/lib/python3.6/site-packages/Cython/Includes/numpy/__init__.pxd":258 * # experimental exception made for __getbuffer__ and __releasebuffer__ * # -- the details of this may change. * def __getbuffer__(ndarray self, Py_buffer* info, int flags): # <<<<<<<<<<<<<< * # This implementation of getbuffer is geared towards Cython * # requirements, and does not yet fulfill the PEP. */ /* function exit code */ __pyx_r = 0; goto __pyx_L0; __pyx_L1_error:; __Pyx_XDECREF(__pyx_t_3); __Pyx_XDECREF(__pyx_t_8); __Pyx_AddTraceback("numpy.ndarray.__getbuffer__", __pyx_clineno, __pyx_lineno, __pyx_filename); __pyx_r = -1; if (__pyx_v_info->obj != NULL) { __Pyx_GOTREF(__pyx_v_info->obj); __Pyx_DECREF(__pyx_v_info->obj); __pyx_v_info->obj = 0; } goto __pyx_L2; __pyx_L0:; if (__pyx_v_info->obj == Py_None) { __Pyx_GOTREF(__pyx_v_info->obj); __Pyx_DECREF(__pyx_v_info->obj); __pyx_v_info->obj = 0; } __pyx_L2:; __Pyx_XDECREF((PyObject *)__pyx_v_descr); __Pyx_RefNannyFinishContext(); return __pyx_r; } /* "../../miniconda3/envs/hummingbot/lib/python3.6/site-packages/Cython/Includes/numpy/__init__.pxd":337 * f[0] = c'\0' # Terminate format string * * def __releasebuffer__(ndarray self, Py_buffer* info): # <<<<<<<<<<<<<< * if PyArray_HASFIELDS(self): * PyObject_Free(info.format) */ /* Python wrapper */ static CYTHON_UNUSED void __pyx_pw_5numpy_7ndarray_3__releasebuffer__(PyObject *__pyx_v_self, Py_buffer *__pyx_v_info); /*proto*/ static CYTHON_UNUSED void __pyx_pw_5numpy_7ndarray_3__releasebuffer__(PyObject *__pyx_v_self, Py_buffer *__pyx_v_info) { __Pyx_RefNannyDeclarations __Pyx_RefNannySetupContext("__releasebuffer__ (wrapper)", 0); __pyx_pf_5numpy_7ndarray_2__releasebuffer__(((PyArrayObject *)__pyx_v_self), ((Py_buffer *)__pyx_v_info)); /* function exit code */ __Pyx_RefNannyFinishContext(); } static void __pyx_pf_5numpy_7ndarray_2__releasebuffer__(PyArrayObject *__pyx_v_self, Py_buffer *__pyx_v_info) { __Pyx_RefNannyDeclarations int __pyx_t_1; __Pyx_RefNannySetupContext("__releasebuffer__", 0); /* "../../miniconda3/envs/hummingbot/lib/python3.6/site-packages/Cython/Includes/numpy/__init__.pxd":338 * * def __releasebuffer__(ndarray self, Py_buffer* info): * if PyArray_HASFIELDS(self): # <<<<<<<<<<<<<< * PyObject_Free(info.format) * if sizeof(npy_intp) != sizeof(Py_ssize_t): */ __pyx_t_1 = (PyArray_HASFIELDS(__pyx_v_self) != 0); if (__pyx_t_1) { /* "../../miniconda3/envs/hummingbot/lib/python3.6/site-packages/Cython/Includes/numpy/__init__.pxd":339 * def __releasebuffer__(ndarray self, Py_buffer* info): * if PyArray_HASFIELDS(self): * PyObject_Free(info.format) # <<<<<<<<<<<<<< * if sizeof(npy_intp) != sizeof(Py_ssize_t): * PyObject_Free(info.strides) */ PyObject_Free(__pyx_v_info->format); /* "../../miniconda3/envs/hummingbot/lib/python3.6/site-packages/Cython/Includes/numpy/__init__.pxd":338 * * def __releasebuffer__(ndarray self, Py_buffer* info): * if PyArray_HASFIELDS(self): # <<<<<<<<<<<<<< * PyObject_Free(info.format) * if sizeof(npy_intp) != sizeof(Py_ssize_t): */ } /* "../../miniconda3/envs/hummingbot/lib/python3.6/site-packages/Cython/Includes/numpy/__init__.pxd":340 * if PyArray_HASFIELDS(self): * PyObject_Free(info.format) * if sizeof(npy_intp) != sizeof(Py_ssize_t): # <<<<<<<<<<<<<< * PyObject_Free(info.strides) * # info.shape was stored after info.strides in the same block */ __pyx_t_1 = (((sizeof(npy_intp)) != (sizeof(Py_ssize_t))) != 0); if (__pyx_t_1) { /* "../../miniconda3/envs/hummingbot/lib/python3.6/site-packages/Cython/Includes/numpy/__init__.pxd":341 * PyObject_Free(info.format) * if sizeof(npy_intp) != sizeof(Py_ssize_t): * PyObject_Free(info.strides) # <<<<<<<<<<<<<< * # info.shape was stored after info.strides in the same block * */ PyObject_Free(__pyx_v_info->strides); /* "../../miniconda3/envs/hummingbot/lib/python3.6/site-packages/Cython/Includes/numpy/__init__.pxd":340 * if PyArray_HASFIELDS(self): * PyObject_Free(info.format) * if sizeof(npy_intp) != sizeof(Py_ssize_t): # <<<<<<<<<<<<<< * PyObject_Free(info.strides) * # info.shape was stored after info.strides in the same block */ } /* "../../miniconda3/envs/hummingbot/lib/python3.6/site-packages/Cython/Includes/numpy/__init__.pxd":337 * f[0] = c'\0' # Terminate format string * * def __releasebuffer__(ndarray self, Py_buffer* info): # <<<<<<<<<<<<<< * if PyArray_HASFIELDS(self): * PyObject_Free(info.format) */ /* function exit code */ __Pyx_RefNannyFinishContext(); } /* "../../miniconda3/envs/hummingbot/lib/python3.6/site-packages/Cython/Includes/numpy/__init__.pxd":821 * ctypedef npy_cdouble complex_t * * cdef inline object PyArray_MultiIterNew1(a): # <<<<<<<<<<<<<< * return PyArray_MultiIterNew(1, <void*>a) * */ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew1(PyObject *__pyx_v_a) { PyObject *__pyx_r = NULL; __Pyx_RefNannyDeclarations PyObject *__pyx_t_1 = NULL; __Pyx_RefNannySetupContext("PyArray_MultiIterNew1", 0); /* "../../miniconda3/envs/hummingbot/lib/python3.6/site-packages/Cython/Includes/numpy/__init__.pxd":822 * * cdef inline object PyArray_MultiIterNew1(a): * return PyArray_MultiIterNew(1, <void*>a) # <<<<<<<<<<<<<< * * cdef inline object PyArray_MultiIterNew2(a, b): */ __Pyx_XDECREF(__pyx_r); __pyx_t_1 = PyArray_MultiIterNew(1, ((void *)__pyx_v_a)); if (unlikely(!__pyx_t_1)) __PYX_ERR(2, 822, __pyx_L1_error) __Pyx_GOTREF(__pyx_t_1); __pyx_r = __pyx_t_1; __pyx_t_1 = 0; goto __pyx_L0; /* "../../miniconda3/envs/hummingbot/lib/python3.6/site-packages/Cython/Includes/numpy/__init__.pxd":821 * ctypedef npy_cdouble complex_t * * cdef inline object PyArray_MultiIterNew1(a): # <<<<<<<<<<<<<< * return PyArray_MultiIterNew(1, <void*>a) * */ /* function exit code */ __pyx_L1_error:; __Pyx_XDECREF(__pyx_t_1); __Pyx_AddTraceback("numpy.PyArray_MultiIterNew1", __pyx_clineno, __pyx_lineno, __pyx_filename); __pyx_r = 0; __pyx_L0:; __Pyx_XGIVEREF(__pyx_r); __Pyx_RefNannyFinishContext(); return __pyx_r; } /* "../../miniconda3/envs/hummingbot/lib/python3.6/site-packages/Cython/Includes/numpy/__init__.pxd":824 * return PyArray_MultiIterNew(1, <void*>a) * * cdef inline object PyArray_MultiIterNew2(a, b): # <<<<<<<<<<<<<< * return PyArray_MultiIterNew(2, <void*>a, <void*>b) * */ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew2(PyObject *__pyx_v_a, PyObject *__pyx_v_b) { PyObject *__pyx_r = NULL; __Pyx_RefNannyDeclarations PyObject *__pyx_t_1 = NULL; __Pyx_RefNannySetupContext("PyArray_MultiIterNew2", 0); /* "../../miniconda3/envs/hummingbot/lib/python3.6/site-packages/Cython/Includes/numpy/__init__.pxd":825 * * cdef inline object PyArray_MultiIterNew2(a, b): * return PyArray_MultiIterNew(2, <void*>a, <void*>b) # <<<<<<<<<<<<<< * * cdef inline object PyArray_MultiIterNew3(a, b, c): */ __Pyx_XDECREF(__pyx_r); __pyx_t_1 = PyArray_MultiIterNew(2, ((void *)__pyx_v_a), ((void *)__pyx_v_b)); if (unlikely(!__pyx_t_1)) __PYX_ERR(2, 825, __pyx_L1_error) __Pyx_GOTREF(__pyx_t_1); __pyx_r = __pyx_t_1; __pyx_t_1 = 0; goto __pyx_L0; /* "../../miniconda3/envs/hummingbot/lib/python3.6/site-packages/Cython/Includes/numpy/__init__.pxd":824 * return PyArray_MultiIterNew(1, <void*>a) * * cdef inline object PyArray_MultiIterNew2(a, b): # <<<<<<<<<<<<<< * return PyArray_MultiIterNew(2, <void*>a, <void*>b) * */ /* function exit code */ __pyx_L1_error:; __Pyx_XDECREF(__pyx_t_1); __Pyx_AddTraceback("numpy.PyArray_MultiIterNew2", __pyx_clineno, __pyx_lineno, __pyx_filename); __pyx_r = 0; __pyx_L0:; __Pyx_XGIVEREF(__pyx_r); __Pyx_RefNannyFinishContext(); return __pyx_r; } /* "../../miniconda3/envs/hummingbot/lib/python3.6/site-packages/Cython/Includes/numpy/__init__.pxd":827 * return PyArray_MultiIterNew(2, <void*>a, <void*>b) * * cdef inline object PyArray_MultiIterNew3(a, b, c): # <<<<<<<<<<<<<< * return PyArray_MultiIterNew(3, <void*>a, <void*>b, <void*> c) * */ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew3(PyObject *__pyx_v_a, PyObject *__pyx_v_b, PyObject *__pyx_v_c) { PyObject *__pyx_r = NULL; __Pyx_RefNannyDeclarations PyObject *__pyx_t_1 = NULL; __Pyx_RefNannySetupContext("PyArray_MultiIterNew3", 0); /* "../../miniconda3/envs/hummingbot/lib/python3.6/site-packages/Cython/Includes/numpy/__init__.pxd":828 * * cdef inline object PyArray_MultiIterNew3(a, b, c): * return PyArray_MultiIterNew(3, <void*>a, <void*>b, <void*> c) # <<<<<<<<<<<<<< * * cdef inline object PyArray_MultiIterNew4(a, b, c, d): */ __Pyx_XDECREF(__pyx_r); __pyx_t_1 = PyArray_MultiIterNew(3, ((void *)__pyx_v_a), ((void *)__pyx_v_b), ((void *)__pyx_v_c)); if (unlikely(!__pyx_t_1)) __PYX_ERR(2, 828, __pyx_L1_error) __Pyx_GOTREF(__pyx_t_1); __pyx_r = __pyx_t_1; __pyx_t_1 = 0; goto __pyx_L0; /* "../../miniconda3/envs/hummingbot/lib/python3.6/site-packages/Cython/Includes/numpy/__init__.pxd":827 * return PyArray_MultiIterNew(2, <void*>a, <void*>b) * * cdef inline object PyArray_MultiIterNew3(a, b, c): # <<<<<<<<<<<<<< * return PyArray_MultiIterNew(3, <void*>a, <void*>b, <void*> c) * */ /* function exit code */ __pyx_L1_error:; __Pyx_XDECREF(__pyx_t_1); __Pyx_AddTraceback("numpy.PyArray_MultiIterNew3", __pyx_clineno, __pyx_lineno, __pyx_filename); __pyx_r = 0; __pyx_L0:; __Pyx_XGIVEREF(__pyx_r); __Pyx_RefNannyFinishContext(); return __pyx_r; } /* "../../miniconda3/envs/hummingbot/lib/python3.6/site-packages/Cython/Includes/numpy/__init__.pxd":830 * return PyArray_MultiIterNew(3, <void*>a, <void*>b, <void*> c) * * cdef inline object PyArray_MultiIterNew4(a, b, c, d): # <<<<<<<<<<<<<< * return PyArray_MultiIterNew(4, <void*>a, <void*>b, <void*>c, <void*> d) * */ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew4(PyObject *__pyx_v_a, PyObject *__pyx_v_b, PyObject *__pyx_v_c, PyObject *__pyx_v_d) { PyObject *__pyx_r = NULL; __Pyx_RefNannyDeclarations PyObject *__pyx_t_1 = NULL; __Pyx_RefNannySetupContext("PyArray_MultiIterNew4", 0); /* "../../miniconda3/envs/hummingbot/lib/python3.6/site-packages/Cython/Includes/numpy/__init__.pxd":831 * * cdef inline object PyArray_MultiIterNew4(a, b, c, d): * return PyArray_MultiIterNew(4, <void*>a, <void*>b, <void*>c, <void*> d) # <<<<<<<<<<<<<< * * cdef inline object PyArray_MultiIterNew5(a, b, c, d, e): */ __Pyx_XDECREF(__pyx_r); __pyx_t_1 = PyArray_MultiIterNew(4, ((void *)__pyx_v_a), ((void *)__pyx_v_b), ((void *)__pyx_v_c), ((void *)__pyx_v_d)); if (unlikely(!__pyx_t_1)) __PYX_ERR(2, 831, __pyx_L1_error) __Pyx_GOTREF(__pyx_t_1); __pyx_r = __pyx_t_1; __pyx_t_1 = 0; goto __pyx_L0; /* "../../miniconda3/envs/hummingbot/lib/python3.6/site-packages/Cython/Includes/numpy/__init__.pxd":830 * return PyArray_MultiIterNew(3, <void*>a, <void*>b, <void*> c) * * cdef inline object PyArray_MultiIterNew4(a, b, c, d): # <<<<<<<<<<<<<< * return PyArray_MultiIterNew(4, <void*>a, <void*>b, <void*>c, <void*> d) * */ /* function exit code */ __pyx_L1_error:; __Pyx_XDECREF(__pyx_t_1); __Pyx_AddTraceback("numpy.PyArray_MultiIterNew4", __pyx_clineno, __pyx_lineno, __pyx_filename); __pyx_r = 0; __pyx_L0:; __Pyx_XGIVEREF(__pyx_r); __Pyx_RefNannyFinishContext(); return __pyx_r; } /* "../../miniconda3/envs/hummingbot/lib/python3.6/site-packages/Cython/Includes/numpy/__init__.pxd":833 * return PyArray_MultiIterNew(4, <void*>a, <void*>b, <void*>c, <void*> d) * * cdef inline object PyArray_MultiIterNew5(a, b, c, d, e): # <<<<<<<<<<<<<< * return PyArray_MultiIterNew(5, <void*>a, <void*>b, <void*>c, <void*> d, <void*> e) * */ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyArray_MultiIterNew5(PyObject *__pyx_v_a, PyObject *__pyx_v_b, PyObject *__pyx_v_c, PyObject *__pyx_v_d, PyObject *__pyx_v_e) { PyObject *__pyx_r = NULL; __Pyx_RefNannyDeclarations PyObject *__pyx_t_1 = NULL; __Pyx_RefNannySetupContext("PyArray_MultiIterNew5", 0); /* "../../miniconda3/envs/hummingbot/lib/python3.6/site-packages/Cython/Includes/numpy/__init__.pxd":834 * * cdef inline object PyArray_MultiIterNew5(a, b, c, d, e): * return PyArray_MultiIterNew(5, <void*>a, <void*>b, <void*>c, <void*> d, <void*> e) # <<<<<<<<<<<<<< * * cdef inline tuple PyDataType_SHAPE(dtype d): */ __Pyx_XDECREF(__pyx_r); __pyx_t_1 = PyArray_MultiIterNew(5, ((void *)__pyx_v_a), ((void *)__pyx_v_b), ((void *)__pyx_v_c), ((void *)__pyx_v_d), ((void *)__pyx_v_e)); if (unlikely(!__pyx_t_1)) __PYX_ERR(2, 834, __pyx_L1_error) __Pyx_GOTREF(__pyx_t_1); __pyx_r = __pyx_t_1; __pyx_t_1 = 0; goto __pyx_L0; /* "../../miniconda3/envs/hummingbot/lib/python3.6/site-packages/Cython/Includes/numpy/__init__.pxd":833 * return PyArray_MultiIterNew(4, <void*>a, <void*>b, <void*>c, <void*> d) * * cdef inline object PyArray_MultiIterNew5(a, b, c, d, e): # <<<<<<<<<<<<<< * return PyArray_MultiIterNew(5, <void*>a, <void*>b, <void*>c, <void*> d, <void*> e) * */ /* function exit code */ __pyx_L1_error:; __Pyx_XDECREF(__pyx_t_1); __Pyx_AddTraceback("numpy.PyArray_MultiIterNew5", __pyx_clineno, __pyx_lineno, __pyx_filename); __pyx_r = 0; __pyx_L0:; __Pyx_XGIVEREF(__pyx_r); __Pyx_RefNannyFinishContext(); return __pyx_r; } /* "../../miniconda3/envs/hummingbot/lib/python3.6/site-packages/Cython/Includes/numpy/__init__.pxd":836 * return PyArray_MultiIterNew(5, <void*>a, <void*>b, <void*>c, <void*> d, <void*> e) * * cdef inline tuple PyDataType_SHAPE(dtype d): # <<<<<<<<<<<<<< * if PyDataType_HASSUBARRAY(d): * return <tuple>d.subarray.shape */ static CYTHON_INLINE PyObject *__pyx_f_5numpy_PyDataType_SHAPE(PyArray_Descr *__pyx_v_d) { PyObject *__pyx_r = NULL; __Pyx_RefNannyDeclarations int __pyx_t_1; __Pyx_RefNannySetupContext("PyDataType_SHAPE", 0); /* "../../miniconda3/envs/hummingbot/lib/python3.6/site-packages/Cython/Includes/numpy/__init__.pxd":837 * * cdef inline tuple PyDataType_SHAPE(dtype d): * if PyDataType_HASSUBARRAY(d): # <<<<<<<<<<<<<< * return <tuple>d.subarray.shape * else: */ __pyx_t_1 = (PyDataType_HASSUBARRAY(__pyx_v_d) != 0); if (__pyx_t_1) { /* "../../miniconda3/envs/hummingbot/lib/python3.6/site-packages/Cython/Includes/numpy/__init__.pxd":838 * cdef inline tuple PyDataType_SHAPE(dtype d): * if PyDataType_HASSUBARRAY(d): * return <tuple>d.subarray.shape # <<<<<<<<<<<<<< * else: * return () */ __Pyx_XDECREF(__pyx_r); __Pyx_INCREF(((PyObject*)__pyx_v_d->subarray->shape)); __pyx_r = ((PyObject*)__pyx_v_d->subarray->shape); goto __pyx_L0; /* "../../miniconda3/envs/hummingbot/lib/python3.6/site-packages/Cython/Includes/numpy/__init__.pxd":837 * * cdef inline tuple PyDataType_SHAPE(dtype d): * if PyDataType_HASSUBARRAY(d): # <<<<<<<<<<<<<< * return <tuple>d.subarray.shape * else: */ } /* "../../miniconda3/envs/hummingbot/lib/python3.6/site-packages/Cython/Includes/numpy/__init__.pxd":840 * return <tuple>d.subarray.shape * else: * return () # <<<<<<<<<<<<<< * * cdef inline char* _util_dtypestring(dtype descr, char* f, char* end, int* offset) except NULL: */ /*else*/ { __Pyx_XDECREF(__pyx_r); __Pyx_INCREF(__pyx_empty_tuple); __pyx_r = __pyx_empty_tuple; goto __pyx_L0; } /* "../../miniconda3/envs/hummingbot/lib/python3.6/site-packages/Cython/Includes/numpy/__init__.pxd":836 * return PyArray_MultiIterNew(5, <void*>a, <void*>b, <void*>c, <void*> d, <void*> e) * * cdef inline tuple PyDataType_SHAPE(dtype d): # <<<<<<<<<<<<<< * if PyDataType_HASSUBARRAY(d): * return <tuple>d.subarray.shape */ /* function exit code */ __pyx_L0:; __Pyx_XGIVEREF(__pyx_r); __Pyx_RefNannyFinishContext(); return __pyx_r; } /* "../../miniconda3/envs/hummingbot/lib/python3.6/site-packages/Cython/Includes/numpy/__init__.pxd":842 * return () * * cdef inline char* _util_dtypestring(dtype descr, char* f, char* end, int* offset) except NULL: # <<<<<<<<<<<<<< * # Recursive utility function used in __getbuffer__ to get format * # string. The new location in the format string is returned. */ static CYTHON_INLINE char *__pyx_f_5numpy__util_dtypestring(PyArray_Descr *__pyx_v_descr, char *__pyx_v_f, char *__pyx_v_end, int *__pyx_v_offset) { PyArray_Descr *__pyx_v_child = 0; int __pyx_v_endian_detector; int __pyx_v_little_endian; PyObject *__pyx_v_fields = 0; PyObject *__pyx_v_childname = NULL; PyObject *__pyx_v_new_offset = NULL; PyObject *__pyx_v_t = NULL; char *__pyx_r; __Pyx_RefNannyDeclarations PyObject *__pyx_t_1 = NULL; Py_ssize_t __pyx_t_2; PyObject *__pyx_t_3 = NULL; PyObject *__pyx_t_4 = NULL; int __pyx_t_5; int __pyx_t_6; int __pyx_t_7; long __pyx_t_8; char *__pyx_t_9; __Pyx_RefNannySetupContext("_util_dtypestring", 0); /* "../../miniconda3/envs/hummingbot/lib/python3.6/site-packages/Cython/Includes/numpy/__init__.pxd":847 * * cdef dtype child * cdef int endian_detector = 1 # <<<<<<<<<<<<<< * cdef bint little_endian = ((<char*>&endian_detector)[0] != 0) * cdef tuple fields */ __pyx_v_endian_detector = 1; /* "../../miniconda3/envs/hummingbot/lib/python3.6/site-packages/Cython/Includes/numpy/__init__.pxd":848 * cdef dtype child * cdef int endian_detector = 1 * cdef bint little_endian = ((<char*>&endian_detector)[0] != 0) # <<<<<<<<<<<<<< * cdef tuple fields * */ __pyx_v_little_endian = ((((char *)(&__pyx_v_endian_detector))[0]) != 0); /* "../../miniconda3/envs/hummingbot/lib/python3.6/site-packages/Cython/Includes/numpy/__init__.pxd":851 * cdef tuple fields * * for childname in descr.names: # <<<<<<<<<<<<<< * fields = descr.fields[childname] * child, new_offset = fields */ if (unlikely(__pyx_v_descr->names == Py_None)) { PyErr_SetString(PyExc_TypeError, "'NoneType' object is not iterable"); __PYX_ERR(2, 851, __pyx_L1_error) } __pyx_t_1 = __pyx_v_descr->names; __Pyx_INCREF(__pyx_t_1); __pyx_t_2 = 0; for (;;) { if (__pyx_t_2 >= PyTuple_GET_SIZE(__pyx_t_1)) break; #if CYTHON_ASSUME_SAFE_MACROS && !CYTHON_AVOID_BORROWED_REFS __pyx_t_3 = PyTuple_GET_ITEM(__pyx_t_1, __pyx_t_2); __Pyx_INCREF(__pyx_t_3); __pyx_t_2++; if (unlikely(0 < 0)) __PYX_ERR(2, 851, __pyx_L1_error) #else __pyx_t_3 = PySequence_ITEM(__pyx_t_1, __pyx_t_2); __pyx_t_2++; if (unlikely(!__pyx_t_3)) __PYX_ERR(2, 851, __pyx_L1_error) __Pyx_GOTREF(__pyx_t_3); #endif __Pyx_XDECREF_SET(__pyx_v_childname, __pyx_t_3); __pyx_t_3 = 0; /* "../../miniconda3/envs/hummingbot/lib/python3.6/site-packages/Cython/Includes/numpy/__init__.pxd":852 * * for childname in descr.names: * fields = descr.fields[childname] # <<<<<<<<<<<<<< * child, new_offset = fields * */ if (unlikely(__pyx_v_descr->fields == Py_None)) { PyErr_SetString(PyExc_TypeError, "'NoneType' object is not subscriptable"); __PYX_ERR(2, 852, __pyx_L1_error) } __pyx_t_3 = __Pyx_PyDict_GetItem(__pyx_v_descr->fields, __pyx_v_childname); if (unlikely(!__pyx_t_3)) __PYX_ERR(2, 852, __pyx_L1_error) __Pyx_GOTREF(__pyx_t_3); if (!(likely(PyTuple_CheckExact(__pyx_t_3))||((__pyx_t_3) == Py_None)||(PyErr_Format(PyExc_TypeError, "Expected %.16s, got %.200s", "tuple", Py_TYPE(__pyx_t_3)->tp_name), 0))) __PYX_ERR(2, 852, __pyx_L1_error) __Pyx_XDECREF_SET(__pyx_v_fields, ((PyObject*)__pyx_t_3)); __pyx_t_3 = 0; /* "../../miniconda3/envs/hummingbot/lib/python3.6/site-packages/Cython/Includes/numpy/__init__.pxd":853 * for childname in descr.names: * fields = descr.fields[childname] * child, new_offset = fields # <<<<<<<<<<<<<< * * if (end - f) - <int>(new_offset - offset[0]) < 15: */ if (likely(__pyx_v_fields != Py_None)) { PyObject* sequence = __pyx_v_fields; Py_ssize_t size = __Pyx_PySequence_SIZE(sequence); if (unlikely(size != 2)) { if (size > 2) __Pyx_RaiseTooManyValuesError(2); else if (size >= 0) __Pyx_RaiseNeedMoreValuesError(size); __PYX_ERR(2, 853, __pyx_L1_error) } #if CYTHON_ASSUME_SAFE_MACROS && !CYTHON_AVOID_BORROWED_REFS __pyx_t_3 = PyTuple_GET_ITEM(sequence, 0); __pyx_t_4 = PyTuple_GET_ITEM(sequence, 1); __Pyx_INCREF(__pyx_t_3); __Pyx_INCREF(__pyx_t_4); #else __pyx_t_3 = PySequence_ITEM(sequence, 0); if (unlikely(!__pyx_t_3)) __PYX_ERR(2, 853, __pyx_L1_error) __Pyx_GOTREF(__pyx_t_3); __pyx_t_4 = PySequence_ITEM(sequence, 1); if (unlikely(!__pyx_t_4)) __PYX_ERR(2, 853, __pyx_L1_error) __Pyx_GOTREF(__pyx_t_4); #endif } else { __Pyx_RaiseNoneNotIterableError(); __PYX_ERR(2, 853, __pyx_L1_error) } if (!(likely(((__pyx_t_3) == Py_None) || likely(__Pyx_TypeTest(__pyx_t_3, __pyx_ptype_5numpy_dtype))))) __PYX_ERR(2, 853, __pyx_L1_error) __Pyx_XDECREF_SET(__pyx_v_child, ((PyArray_Descr *)__pyx_t_3)); __pyx_t_3 = 0; __Pyx_XDECREF_SET(__pyx_v_new_offset, __pyx_t_4); __pyx_t_4 = 0; /* "../../miniconda3/envs/hummingbot/lib/python3.6/site-packages/Cython/Includes/numpy/__init__.pxd":855 * child, new_offset = fields * * if (end - f) - <int>(new_offset - offset[0]) < 15: # <<<<<<<<<<<<<< * raise RuntimeError(u"Format string allocated too short, see comment in numpy.pxd") * */ __pyx_t_4 = __Pyx_PyInt_From_int((__pyx_v_offset[0])); if (unlikely(!__pyx_t_4)) __PYX_ERR(2, 855, __pyx_L1_error) __Pyx_GOTREF(__pyx_t_4); __pyx_t_3 = PyNumber_Subtract(__pyx_v_new_offset, __pyx_t_4); if (unlikely(!__pyx_t_3)) __PYX_ERR(2, 855, __pyx_L1_error) __Pyx_GOTREF(__pyx_t_3); __Pyx_DECREF(__pyx_t_4); __pyx_t_4 = 0; __pyx_t_5 = __Pyx_PyInt_As_int(__pyx_t_3); if (unlikely((__pyx_t_5 == (int)-1) && PyErr_Occurred())) __PYX_ERR(2, 855, __pyx_L1_error) __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0; __pyx_t_6 = ((((__pyx_v_end - __pyx_v_f) - ((int)__pyx_t_5)) < 15) != 0); if (unlikely(__pyx_t_6)) { /* "../../miniconda3/envs/hummingbot/lib/python3.6/site-packages/Cython/Includes/numpy/__init__.pxd":856 * * if (end - f) - <int>(new_offset - offset[0]) < 15: * raise RuntimeError(u"Format string allocated too short, see comment in numpy.pxd") # <<<<<<<<<<<<<< * * if ((child.byteorder == c'>' and little_endian) or */ __pyx_t_3 = __Pyx_PyObject_Call(__pyx_builtin_RuntimeError, __pyx_tuple__6, NULL); if (unlikely(!__pyx_t_3)) __PYX_ERR(2, 856, __pyx_L1_error) __Pyx_GOTREF(__pyx_t_3); __Pyx_Raise(__pyx_t_3, 0, 0, 0); __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0; __PYX_ERR(2, 856, __pyx_L1_error) /* "../../miniconda3/envs/hummingbot/lib/python3.6/site-packages/Cython/Includes/numpy/__init__.pxd":855 * child, new_offset = fields * * if (end - f) - <int>(new_offset - offset[0]) < 15: # <<<<<<<<<<<<<< * raise RuntimeError(u"Format string allocated too short, see comment in numpy.pxd") * */ } /* "../../miniconda3/envs/hummingbot/lib/python3.6/site-packages/Cython/Includes/numpy/__init__.pxd":858 * raise RuntimeError(u"Format string allocated too short, see comment in numpy.pxd") * * if ((child.byteorder == c'>' and little_endian) or # <<<<<<<<<<<<<< * (child.byteorder == c'<' and not little_endian)): * raise ValueError(u"Non-native byte order not supported") */ __pyx_t_7 = ((__pyx_v_child->byteorder == '>') != 0); if (!__pyx_t_7) { goto __pyx_L8_next_or; } else { } __pyx_t_7 = (__pyx_v_little_endian != 0); if (!__pyx_t_7) { } else { __pyx_t_6 = __pyx_t_7; goto __pyx_L7_bool_binop_done; } __pyx_L8_next_or:; /* "../../miniconda3/envs/hummingbot/lib/python3.6/site-packages/Cython/Includes/numpy/__init__.pxd":859 * * if ((child.byteorder == c'>' and little_endian) or * (child.byteorder == c'<' and not little_endian)): # <<<<<<<<<<<<<< * raise ValueError(u"Non-native byte order not supported") * # One could encode it in the format string and have Cython */ __pyx_t_7 = ((__pyx_v_child->byteorder == '<') != 0); if (__pyx_t_7) { } else { __pyx_t_6 = __pyx_t_7; goto __pyx_L7_bool_binop_done; } __pyx_t_7 = ((!(__pyx_v_little_endian != 0)) != 0); __pyx_t_6 = __pyx_t_7; __pyx_L7_bool_binop_done:; /* "../../miniconda3/envs/hummingbot/lib/python3.6/site-packages/Cython/Includes/numpy/__init__.pxd":858 * raise RuntimeError(u"Format string allocated too short, see comment in numpy.pxd") * * if ((child.byteorder == c'>' and little_endian) or # <<<<<<<<<<<<<< * (child.byteorder == c'<' and not little_endian)): * raise ValueError(u"Non-native byte order not supported") */ if (unlikely(__pyx_t_6)) { /* "../../miniconda3/envs/hummingbot/lib/python3.6/site-packages/Cython/Includes/numpy/__init__.pxd":860 * if ((child.byteorder == c'>' and little_endian) or * (child.byteorder == c'<' and not little_endian)): * raise ValueError(u"Non-native byte order not supported") # <<<<<<<<<<<<<< * # One could encode it in the format string and have Cython * # complain instead, BUT: < and > in format strings also imply */ __pyx_t_3 = __Pyx_PyObject_Call(__pyx_builtin_ValueError, __pyx_tuple__5, NULL); if (unlikely(!__pyx_t_3)) __PYX_ERR(2, 860, __pyx_L1_error) __Pyx_GOTREF(__pyx_t_3); __Pyx_Raise(__pyx_t_3, 0, 0, 0); __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0; __PYX_ERR(2, 860, __pyx_L1_error) /* "../../miniconda3/envs/hummingbot/lib/python3.6/site-packages/Cython/Includes/numpy/__init__.pxd":858 * raise RuntimeError(u"Format string allocated too short, see comment in numpy.pxd") * * if ((child.byteorder == c'>' and little_endian) or # <<<<<<<<<<<<<< * (child.byteorder == c'<' and not little_endian)): * raise ValueError(u"Non-native byte order not supported") */ } /* "../../miniconda3/envs/hummingbot/lib/python3.6/site-packages/Cython/Includes/numpy/__init__.pxd":870 * * # Output padding bytes * while offset[0] < new_offset: # <<<<<<<<<<<<<< * f[0] = 120 # "x"; pad byte * f += 1 */ while (1) { __pyx_t_3 = __Pyx_PyInt_From_int((__pyx_v_offset[0])); if (unlikely(!__pyx_t_3)) __PYX_ERR(2, 870, __pyx_L1_error) __Pyx_GOTREF(__pyx_t_3); __pyx_t_4 = PyObject_RichCompare(__pyx_t_3, __pyx_v_new_offset, Py_LT); __Pyx_XGOTREF(__pyx_t_4); if (unlikely(!__pyx_t_4)) __PYX_ERR(2, 870, __pyx_L1_error) __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0; __pyx_t_6 = __Pyx_PyObject_IsTrue(__pyx_t_4); if (unlikely(__pyx_t_6 < 0)) __PYX_ERR(2, 870, __pyx_L1_error) __Pyx_DECREF(__pyx_t_4); __pyx_t_4 = 0; if (!__pyx_t_6) break; /* "../../miniconda3/envs/hummingbot/lib/python3.6/site-packages/Cython/Includes/numpy/__init__.pxd":871 * # Output padding bytes * while offset[0] < new_offset: * f[0] = 120 # "x"; pad byte # <<<<<<<<<<<<<< * f += 1 * offset[0] += 1 */ (__pyx_v_f[0]) = 0x78; /* "../../miniconda3/envs/hummingbot/lib/python3.6/site-packages/Cython/Includes/numpy/__init__.pxd":872 * while offset[0] < new_offset: * f[0] = 120 # "x"; pad byte * f += 1 # <<<<<<<<<<<<<< * offset[0] += 1 * */ __pyx_v_f = (__pyx_v_f + 1); /* "../../miniconda3/envs/hummingbot/lib/python3.6/site-packages/Cython/Includes/numpy/__init__.pxd":873 * f[0] = 120 # "x"; pad byte * f += 1 * offset[0] += 1 # <<<<<<<<<<<<<< * * offset[0] += child.itemsize */ __pyx_t_8 = 0; (__pyx_v_offset[__pyx_t_8]) = ((__pyx_v_offset[__pyx_t_8]) + 1); } /* "../../miniconda3/envs/hummingbot/lib/python3.6/site-packages/Cython/Includes/numpy/__init__.pxd":875 * offset[0] += 1 * * offset[0] += child.itemsize # <<<<<<<<<<<<<< * * if not PyDataType_HASFIELDS(child): */ __pyx_t_8 = 0; (__pyx_v_offset[__pyx_t_8]) = ((__pyx_v_offset[__pyx_t_8]) + __pyx_v_child->elsize); /* "../../miniconda3/envs/hummingbot/lib/python3.6/site-packages/Cython/Includes/numpy/__init__.pxd":877 * offset[0] += child.itemsize * * if not PyDataType_HASFIELDS(child): # <<<<<<<<<<<<<< * t = child.type_num * if end - f < 5: */ __pyx_t_6 = ((!(PyDataType_HASFIELDS(__pyx_v_child) != 0)) != 0); if (__pyx_t_6) { /* "../../miniconda3/envs/hummingbot/lib/python3.6/site-packages/Cython/Includes/numpy/__init__.pxd":878 * * if not PyDataType_HASFIELDS(child): * t = child.type_num # <<<<<<<<<<<<<< * if end - f < 5: * raise RuntimeError(u"Format string allocated too short.") */ __pyx_t_4 = __Pyx_PyInt_From_int(__pyx_v_child->type_num); if (unlikely(!__pyx_t_4)) __PYX_ERR(2, 878, __pyx_L1_error) __Pyx_GOTREF(__pyx_t_4); __Pyx_XDECREF_SET(__pyx_v_t, __pyx_t_4); __pyx_t_4 = 0; /* "../../miniconda3/envs/hummingbot/lib/python3.6/site-packages/Cython/Includes/numpy/__init__.pxd":879 * if not PyDataType_HASFIELDS(child): * t = child.type_num * if end - f < 5: # <<<<<<<<<<<<<< * raise RuntimeError(u"Format string allocated too short.") * */ __pyx_t_6 = (((__pyx_v_end - __pyx_v_f) < 5) != 0); if (unlikely(__pyx_t_6)) { /* "../../miniconda3/envs/hummingbot/lib/python3.6/site-packages/Cython/Includes/numpy/__init__.pxd":880 * t = child.type_num * if end - f < 5: * raise RuntimeError(u"Format string allocated too short.") # <<<<<<<<<<<<<< * * # Until ticket #99 is fixed, use integers to avoid warnings */ __pyx_t_4 = __Pyx_PyObject_Call(__pyx_builtin_RuntimeError, __pyx_tuple__7, NULL); if (unlikely(!__pyx_t_4)) __PYX_ERR(2, 880, __pyx_L1_error) __Pyx_GOTREF(__pyx_t_4); __Pyx_Raise(__pyx_t_4, 0, 0, 0); __Pyx_DECREF(__pyx_t_4); __pyx_t_4 = 0; __PYX_ERR(2, 880, __pyx_L1_error) /* "../../miniconda3/envs/hummingbot/lib/python3.6/site-packages/Cython/Includes/numpy/__init__.pxd":879 * if not PyDataType_HASFIELDS(child): * t = child.type_num * if end - f < 5: # <<<<<<<<<<<<<< * raise RuntimeError(u"Format string allocated too short.") * */ } /* "../../miniconda3/envs/hummingbot/lib/python3.6/site-packages/Cython/Includes/numpy/__init__.pxd":883 * * # Until ticket #99 is fixed, use integers to avoid warnings * if t == NPY_BYTE: f[0] = 98 #"b" # <<<<<<<<<<<<<< * elif t == NPY_UBYTE: f[0] = 66 #"B" * elif t == NPY_SHORT: f[0] = 104 #"h" */ __pyx_t_4 = __Pyx_PyInt_From_enum__NPY_TYPES(NPY_BYTE); if (unlikely(!__pyx_t_4)) __PYX_ERR(2, 883, __pyx_L1_error) __Pyx_GOTREF(__pyx_t_4); __pyx_t_3 = PyObject_RichCompare(__pyx_v_t, __pyx_t_4, Py_EQ); __Pyx_XGOTREF(__pyx_t_3); if (unlikely(!__pyx_t_3)) __PYX_ERR(2, 883, __pyx_L1_error) __Pyx_DECREF(__pyx_t_4); __pyx_t_4 = 0; __pyx_t_6 = __Pyx_PyObject_IsTrue(__pyx_t_3); if (unlikely(__pyx_t_6 < 0)) __PYX_ERR(2, 883, __pyx_L1_error) __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0; if (__pyx_t_6) { (__pyx_v_f[0]) = 98; goto __pyx_L15; } /* "../../miniconda3/envs/hummingbot/lib/python3.6/site-packages/Cython/Includes/numpy/__init__.pxd":884 * # Until ticket #99 is fixed, use integers to avoid warnings * if t == NPY_BYTE: f[0] = 98 #"b" * elif t == NPY_UBYTE: f[0] = 66 #"B" # <<<<<<<<<<<<<< * elif t == NPY_SHORT: f[0] = 104 #"h" * elif t == NPY_USHORT: f[0] = 72 #"H" */ __pyx_t_3 = __Pyx_PyInt_From_enum__NPY_TYPES(NPY_UBYTE); if (unlikely(!__pyx_t_3)) __PYX_ERR(2, 884, __pyx_L1_error) __Pyx_GOTREF(__pyx_t_3); __pyx_t_4 = PyObject_RichCompare(__pyx_v_t, __pyx_t_3, Py_EQ); __Pyx_XGOTREF(__pyx_t_4); if (unlikely(!__pyx_t_4)) __PYX_ERR(2, 884, __pyx_L1_error) __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0; __pyx_t_6 = __Pyx_PyObject_IsTrue(__pyx_t_4); if (unlikely(__pyx_t_6 < 0)) __PYX_ERR(2, 884, __pyx_L1_error) __Pyx_DECREF(__pyx_t_4); __pyx_t_4 = 0; if (__pyx_t_6) { (__pyx_v_f[0]) = 66; goto __pyx_L15; } /* "../../miniconda3/envs/hummingbot/lib/python3.6/site-packages/Cython/Includes/numpy/__init__.pxd":885 * if t == NPY_BYTE: f[0] = 98 #"b" * elif t == NPY_UBYTE: f[0] = 66 #"B" * elif t == NPY_SHORT: f[0] = 104 #"h" # <<<<<<<<<<<<<< * elif t == NPY_USHORT: f[0] = 72 #"H" * elif t == NPY_INT: f[0] = 105 #"i" */ __pyx_t_4 = __Pyx_PyInt_From_enum__NPY_TYPES(NPY_SHORT); if (unlikely(!__pyx_t_4)) __PYX_ERR(2, 885, __pyx_L1_error) __Pyx_GOTREF(__pyx_t_4); __pyx_t_3 = PyObject_RichCompare(__pyx_v_t, __pyx_t_4, Py_EQ); __Pyx_XGOTREF(__pyx_t_3); if (unlikely(!__pyx_t_3)) __PYX_ERR(2, 885, __pyx_L1_error) __Pyx_DECREF(__pyx_t_4); __pyx_t_4 = 0; __pyx_t_6 = __Pyx_PyObject_IsTrue(__pyx_t_3); if (unlikely(__pyx_t_6 < 0)) __PYX_ERR(2, 885, __pyx_L1_error) __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0; if (__pyx_t_6) { (__pyx_v_f[0]) = 0x68; goto __pyx_L15; } /* "../../miniconda3/envs/hummingbot/lib/python3.6/site-packages/Cython/Includes/numpy/__init__.pxd":886 * elif t == NPY_UBYTE: f[0] = 66 #"B" * elif t == NPY_SHORT: f[0] = 104 #"h" * elif t == NPY_USHORT: f[0] = 72 #"H" # <<<<<<<<<<<<<< * elif t == NPY_INT: f[0] = 105 #"i" * elif t == NPY_UINT: f[0] = 73 #"I" */ __pyx_t_3 = __Pyx_PyInt_From_enum__NPY_TYPES(NPY_USHORT); if (unlikely(!__pyx_t_3)) __PYX_ERR(2, 886, __pyx_L1_error) __Pyx_GOTREF(__pyx_t_3); __pyx_t_4 = PyObject_RichCompare(__pyx_v_t, __pyx_t_3, Py_EQ); __Pyx_XGOTREF(__pyx_t_4); if (unlikely(!__pyx_t_4)) __PYX_ERR(2, 886, __pyx_L1_error) __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0; __pyx_t_6 = __Pyx_PyObject_IsTrue(__pyx_t_4); if (unlikely(__pyx_t_6 < 0)) __PYX_ERR(2, 886, __pyx_L1_error) __Pyx_DECREF(__pyx_t_4); __pyx_t_4 = 0; if (__pyx_t_6) { (__pyx_v_f[0]) = 72; goto __pyx_L15; } /* "../../miniconda3/envs/hummingbot/lib/python3.6/site-packages/Cython/Includes/numpy/__init__.pxd":887 * elif t == NPY_SHORT: f[0] = 104 #"h" * elif t == NPY_USHORT: f[0] = 72 #"H" * elif t == NPY_INT: f[0] = 105 #"i" # <<<<<<<<<<<<<< * elif t == NPY_UINT: f[0] = 73 #"I" * elif t == NPY_LONG: f[0] = 108 #"l" */ __pyx_t_4 = __Pyx_PyInt_From_enum__NPY_TYPES(NPY_INT); if (unlikely(!__pyx_t_4)) __PYX_ERR(2, 887, __pyx_L1_error) __Pyx_GOTREF(__pyx_t_4); __pyx_t_3 = PyObject_RichCompare(__pyx_v_t, __pyx_t_4, Py_EQ); __Pyx_XGOTREF(__pyx_t_3); if (unlikely(!__pyx_t_3)) __PYX_ERR(2, 887, __pyx_L1_error) __Pyx_DECREF(__pyx_t_4); __pyx_t_4 = 0; __pyx_t_6 = __Pyx_PyObject_IsTrue(__pyx_t_3); if (unlikely(__pyx_t_6 < 0)) __PYX_ERR(2, 887, __pyx_L1_error) __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0; if (__pyx_t_6) { (__pyx_v_f[0]) = 0x69; goto __pyx_L15; } /* "../../miniconda3/envs/hummingbot/lib/python3.6/site-packages/Cython/Includes/numpy/__init__.pxd":888 * elif t == NPY_USHORT: f[0] = 72 #"H" * elif t == NPY_INT: f[0] = 105 #"i" * elif t == NPY_UINT: f[0] = 73 #"I" # <<<<<<<<<<<<<< * elif t == NPY_LONG: f[0] = 108 #"l" * elif t == NPY_ULONG: f[0] = 76 #"L" */ __pyx_t_3 = __Pyx_PyInt_From_enum__NPY_TYPES(NPY_UINT); if (unlikely(!__pyx_t_3)) __PYX_ERR(2, 888, __pyx_L1_error) __Pyx_GOTREF(__pyx_t_3); __pyx_t_4 = PyObject_RichCompare(__pyx_v_t, __pyx_t_3, Py_EQ); __Pyx_XGOTREF(__pyx_t_4); if (unlikely(!__pyx_t_4)) __PYX_ERR(2, 888, __pyx_L1_error) __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0; __pyx_t_6 = __Pyx_PyObject_IsTrue(__pyx_t_4); if (unlikely(__pyx_t_6 < 0)) __PYX_ERR(2, 888, __pyx_L1_error) __Pyx_DECREF(__pyx_t_4); __pyx_t_4 = 0; if (__pyx_t_6) { (__pyx_v_f[0]) = 73; goto __pyx_L15; } /* "../../miniconda3/envs/hummingbot/lib/python3.6/site-packages/Cython/Includes/numpy/__init__.pxd":889 * elif t == NPY_INT: f[0] = 105 #"i" * elif t == NPY_UINT: f[0] = 73 #"I" * elif t == NPY_LONG: f[0] = 108 #"l" # <<<<<<<<<<<<<< * elif t == NPY_ULONG: f[0] = 76 #"L" * elif t == NPY_LONGLONG: f[0] = 113 #"q" */ __pyx_t_4 = __Pyx_PyInt_From_enum__NPY_TYPES(NPY_LONG); if (unlikely(!__pyx_t_4)) __PYX_ERR(2, 889, __pyx_L1_error) __Pyx_GOTREF(__pyx_t_4); __pyx_t_3 = PyObject_RichCompare(__pyx_v_t, __pyx_t_4, Py_EQ); __Pyx_XGOTREF(__pyx_t_3); if (unlikely(!__pyx_t_3)) __PYX_ERR(2, 889, __pyx_L1_error) __Pyx_DECREF(__pyx_t_4); __pyx_t_4 = 0; __pyx_t_6 = __Pyx_PyObject_IsTrue(__pyx_t_3); if (unlikely(__pyx_t_6 < 0)) __PYX_ERR(2, 889, __pyx_L1_error) __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0; if (__pyx_t_6) { (__pyx_v_f[0]) = 0x6C; goto __pyx_L15; } /* "../../miniconda3/envs/hummingbot/lib/python3.6/site-packages/Cython/Includes/numpy/__init__.pxd":890 * elif t == NPY_UINT: f[0] = 73 #"I" * elif t == NPY_LONG: f[0] = 108 #"l" * elif t == NPY_ULONG: f[0] = 76 #"L" # <<<<<<<<<<<<<< * elif t == NPY_LONGLONG: f[0] = 113 #"q" * elif t == NPY_ULONGLONG: f[0] = 81 #"Q" */ __pyx_t_3 = __Pyx_PyInt_From_enum__NPY_TYPES(NPY_ULONG); if (unlikely(!__pyx_t_3)) __PYX_ERR(2, 890, __pyx_L1_error) __Pyx_GOTREF(__pyx_t_3); __pyx_t_4 = PyObject_RichCompare(__pyx_v_t, __pyx_t_3, Py_EQ); __Pyx_XGOTREF(__pyx_t_4); if (unlikely(!__pyx_t_4)) __PYX_ERR(2, 890, __pyx_L1_error) __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0; __pyx_t_6 = __Pyx_PyObject_IsTrue(__pyx_t_4); if (unlikely(__pyx_t_6 < 0)) __PYX_ERR(2, 890, __pyx_L1_error) __Pyx_DECREF(__pyx_t_4); __pyx_t_4 = 0; if (__pyx_t_6) { (__pyx_v_f[0]) = 76; goto __pyx_L15; } /* "../../miniconda3/envs/hummingbot/lib/python3.6/site-packages/Cython/Includes/numpy/__init__.pxd":891 * elif t == NPY_LONG: f[0] = 108 #"l" * elif t == NPY_ULONG: f[0] = 76 #"L" * elif t == NPY_LONGLONG: f[0] = 113 #"q" # <<<<<<<<<<<<<< * elif t == NPY_ULONGLONG: f[0] = 81 #"Q" * elif t == NPY_FLOAT: f[0] = 102 #"f" */ __pyx_t_4 = __Pyx_PyInt_From_enum__NPY_TYPES(NPY_LONGLONG); if (unlikely(!__pyx_t_4)) __PYX_ERR(2, 891, __pyx_L1_error) __Pyx_GOTREF(__pyx_t_4); __pyx_t_3 = PyObject_RichCompare(__pyx_v_t, __pyx_t_4, Py_EQ); __Pyx_XGOTREF(__pyx_t_3); if (unlikely(!__pyx_t_3)) __PYX_ERR(2, 891, __pyx_L1_error) __Pyx_DECREF(__pyx_t_4); __pyx_t_4 = 0; __pyx_t_6 = __Pyx_PyObject_IsTrue(__pyx_t_3); if (unlikely(__pyx_t_6 < 0)) __PYX_ERR(2, 891, __pyx_L1_error) __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0; if (__pyx_t_6) { (__pyx_v_f[0]) = 0x71; goto __pyx_L15; } /* "../../miniconda3/envs/hummingbot/lib/python3.6/site-packages/Cython/Includes/numpy/__init__.pxd":892 * elif t == NPY_ULONG: f[0] = 76 #"L" * elif t == NPY_LONGLONG: f[0] = 113 #"q" * elif t == NPY_ULONGLONG: f[0] = 81 #"Q" # <<<<<<<<<<<<<< * elif t == NPY_FLOAT: f[0] = 102 #"f" * elif t == NPY_DOUBLE: f[0] = 100 #"d" */ __pyx_t_3 = __Pyx_PyInt_From_enum__NPY_TYPES(NPY_ULONGLONG); if (unlikely(!__pyx_t_3)) __PYX_ERR(2, 892, __pyx_L1_error) __Pyx_GOTREF(__pyx_t_3); __pyx_t_4 = PyObject_RichCompare(__pyx_v_t, __pyx_t_3, Py_EQ); __Pyx_XGOTREF(__pyx_t_4); if (unlikely(!__pyx_t_4)) __PYX_ERR(2, 892, __pyx_L1_error) __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0; __pyx_t_6 = __Pyx_PyObject_IsTrue(__pyx_t_4); if (unlikely(__pyx_t_6 < 0)) __PYX_ERR(2, 892, __pyx_L1_error) __Pyx_DECREF(__pyx_t_4); __pyx_t_4 = 0; if (__pyx_t_6) { (__pyx_v_f[0]) = 81; goto __pyx_L15; } /* "../../miniconda3/envs/hummingbot/lib/python3.6/site-packages/Cython/Includes/numpy/__init__.pxd":893 * elif t == NPY_LONGLONG: f[0] = 113 #"q" * elif t == NPY_ULONGLONG: f[0] = 81 #"Q" * elif t == NPY_FLOAT: f[0] = 102 #"f" # <<<<<<<<<<<<<< * elif t == NPY_DOUBLE: f[0] = 100 #"d" * elif t == NPY_LONGDOUBLE: f[0] = 103 #"g" */ __pyx_t_4 = __Pyx_PyInt_From_enum__NPY_TYPES(NPY_FLOAT); if (unlikely(!__pyx_t_4)) __PYX_ERR(2, 893, __pyx_L1_error) __Pyx_GOTREF(__pyx_t_4); __pyx_t_3 = PyObject_RichCompare(__pyx_v_t, __pyx_t_4, Py_EQ); __Pyx_XGOTREF(__pyx_t_3); if (unlikely(!__pyx_t_3)) __PYX_ERR(2, 893, __pyx_L1_error) __Pyx_DECREF(__pyx_t_4); __pyx_t_4 = 0; __pyx_t_6 = __Pyx_PyObject_IsTrue(__pyx_t_3); if (unlikely(__pyx_t_6 < 0)) __PYX_ERR(2, 893, __pyx_L1_error) __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0; if (__pyx_t_6) { (__pyx_v_f[0]) = 0x66; goto __pyx_L15; } /* "../../miniconda3/envs/hummingbot/lib/python3.6/site-packages/Cython/Includes/numpy/__init__.pxd":894 * elif t == NPY_ULONGLONG: f[0] = 81 #"Q" * elif t == NPY_FLOAT: f[0] = 102 #"f" * elif t == NPY_DOUBLE: f[0] = 100 #"d" # <<<<<<<<<<<<<< * elif t == NPY_LONGDOUBLE: f[0] = 103 #"g" * elif t == NPY_CFLOAT: f[0] = 90; f[1] = 102; f += 1 # Zf */ __pyx_t_3 = __Pyx_PyInt_From_enum__NPY_TYPES(NPY_DOUBLE); if (unlikely(!__pyx_t_3)) __PYX_ERR(2, 894, __pyx_L1_error) __Pyx_GOTREF(__pyx_t_3); __pyx_t_4 = PyObject_RichCompare(__pyx_v_t, __pyx_t_3, Py_EQ); __Pyx_XGOTREF(__pyx_t_4); if (unlikely(!__pyx_t_4)) __PYX_ERR(2, 894, __pyx_L1_error) __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0; __pyx_t_6 = __Pyx_PyObject_IsTrue(__pyx_t_4); if (unlikely(__pyx_t_6 < 0)) __PYX_ERR(2, 894, __pyx_L1_error) __Pyx_DECREF(__pyx_t_4); __pyx_t_4 = 0; if (__pyx_t_6) { (__pyx_v_f[0]) = 0x64; goto __pyx_L15; } /* "../../miniconda3/envs/hummingbot/lib/python3.6/site-packages/Cython/Includes/numpy/__init__.pxd":895 * elif t == NPY_FLOAT: f[0] = 102 #"f" * elif t == NPY_DOUBLE: f[0] = 100 #"d" * elif t == NPY_LONGDOUBLE: f[0] = 103 #"g" # <<<<<<<<<<<<<< * elif t == NPY_CFLOAT: f[0] = 90; f[1] = 102; f += 1 # Zf * elif t == NPY_CDOUBLE: f[0] = 90; f[1] = 100; f += 1 # Zd */ __pyx_t_4 = __Pyx_PyInt_From_enum__NPY_TYPES(NPY_LONGDOUBLE); if (unlikely(!__pyx_t_4)) __PYX_ERR(2, 895, __pyx_L1_error) __Pyx_GOTREF(__pyx_t_4); __pyx_t_3 = PyObject_RichCompare(__pyx_v_t, __pyx_t_4, Py_EQ); __Pyx_XGOTREF(__pyx_t_3); if (unlikely(!__pyx_t_3)) __PYX_ERR(2, 895, __pyx_L1_error) __Pyx_DECREF(__pyx_t_4); __pyx_t_4 = 0; __pyx_t_6 = __Pyx_PyObject_IsTrue(__pyx_t_3); if (unlikely(__pyx_t_6 < 0)) __PYX_ERR(2, 895, __pyx_L1_error) __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0; if (__pyx_t_6) { (__pyx_v_f[0]) = 0x67; goto __pyx_L15; } /* "../../miniconda3/envs/hummingbot/lib/python3.6/site-packages/Cython/Includes/numpy/__init__.pxd":896 * elif t == NPY_DOUBLE: f[0] = 100 #"d" * elif t == NPY_LONGDOUBLE: f[0] = 103 #"g" * elif t == NPY_CFLOAT: f[0] = 90; f[1] = 102; f += 1 # Zf # <<<<<<<<<<<<<< * elif t == NPY_CDOUBLE: f[0] = 90; f[1] = 100; f += 1 # Zd * elif t == NPY_CLONGDOUBLE: f[0] = 90; f[1] = 103; f += 1 # Zg */ __pyx_t_3 = __Pyx_PyInt_From_enum__NPY_TYPES(NPY_CFLOAT); if (unlikely(!__pyx_t_3)) __PYX_ERR(2, 896, __pyx_L1_error) __Pyx_GOTREF(__pyx_t_3); __pyx_t_4 = PyObject_RichCompare(__pyx_v_t, __pyx_t_3, Py_EQ); __Pyx_XGOTREF(__pyx_t_4); if (unlikely(!__pyx_t_4)) __PYX_ERR(2, 896, __pyx_L1_error) __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0; __pyx_t_6 = __Pyx_PyObject_IsTrue(__pyx_t_4); if (unlikely(__pyx_t_6 < 0)) __PYX_ERR(2, 896, __pyx_L1_error) __Pyx_DECREF(__pyx_t_4); __pyx_t_4 = 0; if (__pyx_t_6) { (__pyx_v_f[0]) = 90; (__pyx_v_f[1]) = 0x66; __pyx_v_f = (__pyx_v_f + 1); goto __pyx_L15; } /* "../../miniconda3/envs/hummingbot/lib/python3.6/site-packages/Cython/Includes/numpy/__init__.pxd":897 * elif t == NPY_LONGDOUBLE: f[0] = 103 #"g" * elif t == NPY_CFLOAT: f[0] = 90; f[1] = 102; f += 1 # Zf * elif t == NPY_CDOUBLE: f[0] = 90; f[1] = 100; f += 1 # Zd # <<<<<<<<<<<<<< * elif t == NPY_CLONGDOUBLE: f[0] = 90; f[1] = 103; f += 1 # Zg * elif t == NPY_OBJECT: f[0] = 79 #"O" */ __pyx_t_4 = __Pyx_PyInt_From_enum__NPY_TYPES(NPY_CDOUBLE); if (unlikely(!__pyx_t_4)) __PYX_ERR(2, 897, __pyx_L1_error) __Pyx_GOTREF(__pyx_t_4); __pyx_t_3 = PyObject_RichCompare(__pyx_v_t, __pyx_t_4, Py_EQ); __Pyx_XGOTREF(__pyx_t_3); if (unlikely(!__pyx_t_3)) __PYX_ERR(2, 897, __pyx_L1_error) __Pyx_DECREF(__pyx_t_4); __pyx_t_4 = 0; __pyx_t_6 = __Pyx_PyObject_IsTrue(__pyx_t_3); if (unlikely(__pyx_t_6 < 0)) __PYX_ERR(2, 897, __pyx_L1_error) __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0; if (__pyx_t_6) { (__pyx_v_f[0]) = 90; (__pyx_v_f[1]) = 0x64; __pyx_v_f = (__pyx_v_f + 1); goto __pyx_L15; } /* "../../miniconda3/envs/hummingbot/lib/python3.6/site-packages/Cython/Includes/numpy/__init__.pxd":898 * elif t == NPY_CFLOAT: f[0] = 90; f[1] = 102; f += 1 # Zf * elif t == NPY_CDOUBLE: f[0] = 90; f[1] = 100; f += 1 # Zd * elif t == NPY_CLONGDOUBLE: f[0] = 90; f[1] = 103; f += 1 # Zg # <<<<<<<<<<<<<< * elif t == NPY_OBJECT: f[0] = 79 #"O" * else: */ __pyx_t_3 = __Pyx_PyInt_From_enum__NPY_TYPES(NPY_CLONGDOUBLE); if (unlikely(!__pyx_t_3)) __PYX_ERR(2, 898, __pyx_L1_error) __Pyx_GOTREF(__pyx_t_3); __pyx_t_4 = PyObject_RichCompare(__pyx_v_t, __pyx_t_3, Py_EQ); __Pyx_XGOTREF(__pyx_t_4); if (unlikely(!__pyx_t_4)) __PYX_ERR(2, 898, __pyx_L1_error) __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0; __pyx_t_6 = __Pyx_PyObject_IsTrue(__pyx_t_4); if (unlikely(__pyx_t_6 < 0)) __PYX_ERR(2, 898, __pyx_L1_error) __Pyx_DECREF(__pyx_t_4); __pyx_t_4 = 0; if (__pyx_t_6) { (__pyx_v_f[0]) = 90; (__pyx_v_f[1]) = 0x67; __pyx_v_f = (__pyx_v_f + 1); goto __pyx_L15; } /* "../../miniconda3/envs/hummingbot/lib/python3.6/site-packages/Cython/Includes/numpy/__init__.pxd":899 * elif t == NPY_CDOUBLE: f[0] = 90; f[1] = 100; f += 1 # Zd * elif t == NPY_CLONGDOUBLE: f[0] = 90; f[1] = 103; f += 1 # Zg * elif t == NPY_OBJECT: f[0] = 79 #"O" # <<<<<<<<<<<<<< * else: * raise ValueError(u"unknown dtype code in numpy.pxd (%d)" % t) */ __pyx_t_4 = __Pyx_PyInt_From_enum__NPY_TYPES(NPY_OBJECT); if (unlikely(!__pyx_t_4)) __PYX_ERR(2, 899, __pyx_L1_error) __Pyx_GOTREF(__pyx_t_4); __pyx_t_3 = PyObject_RichCompare(__pyx_v_t, __pyx_t_4, Py_EQ); __Pyx_XGOTREF(__pyx_t_3); if (unlikely(!__pyx_t_3)) __PYX_ERR(2, 899, __pyx_L1_error) __Pyx_DECREF(__pyx_t_4); __pyx_t_4 = 0; __pyx_t_6 = __Pyx_PyObject_IsTrue(__pyx_t_3); if (unlikely(__pyx_t_6 < 0)) __PYX_ERR(2, 899, __pyx_L1_error) __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0; if (likely(__pyx_t_6)) { (__pyx_v_f[0]) = 79; goto __pyx_L15; } /* "../../miniconda3/envs/hummingbot/lib/python3.6/site-packages/Cython/Includes/numpy/__init__.pxd":901 * elif t == NPY_OBJECT: f[0] = 79 #"O" * else: * raise ValueError(u"unknown dtype code in numpy.pxd (%d)" % t) # <<<<<<<<<<<<<< * f += 1 * else: */ /*else*/ { __pyx_t_3 = __Pyx_PyUnicode_FormatSafe(__pyx_kp_u_unknown_dtype_code_in_numpy_pxd, __pyx_v_t); if (unlikely(!__pyx_t_3)) __PYX_ERR(2, 901, __pyx_L1_error) __Pyx_GOTREF(__pyx_t_3); __pyx_t_4 = __Pyx_PyObject_CallOneArg(__pyx_builtin_ValueError, __pyx_t_3); if (unlikely(!__pyx_t_4)) __PYX_ERR(2, 901, __pyx_L1_error) __Pyx_GOTREF(__pyx_t_4); __Pyx_DECREF(__pyx_t_3); __pyx_t_3 = 0; __Pyx_Raise(__pyx_t_4, 0, 0, 0); __Pyx_DECREF(__pyx_t_4); __pyx_t_4 = 0; __PYX_ERR(2, 901, __pyx_L1_error) } __pyx_L15:; /* "../../miniconda3/envs/hummingbot/lib/python3.6/site-packages/Cython/Includes/numpy/__init__.pxd":902 * else: * raise ValueError(u"unknown dtype code in numpy.pxd (%d)" % t) * f += 1 # <<<<<<<<<<<<<< * else: * # Cython ignores struct boundary information ("T{...}"), */ __pyx_v_f = (__pyx_v_f + 1); /* "../../miniconda3/envs/hummingbot/lib/python3.6/site-packages/Cython/Includes/numpy/__init__.pxd":877 * offset[0] += child.itemsize * * if not PyDataType_HASFIELDS(child): # <<<<<<<<<<<<<< * t = child.type_num * if end - f < 5: */ goto __pyx_L13; } /* "../../miniconda3/envs/hummingbot/lib/python3.6/site-packages/Cython/Includes/numpy/__init__.pxd":906 * # Cython ignores struct boundary information ("T{...}"), * # so don't output it * f = _util_dtypestring(child, f, end, offset) # <<<<<<<<<<<<<< * return f * */ /*else*/ { __pyx_t_9 = __pyx_f_5numpy__util_dtypestring(__pyx_v_child, __pyx_v_f, __pyx_v_end, __pyx_v_offset); if (unlikely(__pyx_t_9 == ((char *)NULL))) __PYX_ERR(2, 906, __pyx_L1_error) __pyx_v_f = __pyx_t_9; } __pyx_L13:; /* "../../miniconda3/envs/hummingbot/lib/python3.6/site-packages/Cython/Includes/numpy/__init__.pxd":851 * cdef tuple fields * * for childname in descr.names: # <<<<<<<<<<<<<< * fields = descr.fields[childname] * child, new_offset = fields */ } __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; /* "../../miniconda3/envs/hummingbot/lib/python3.6/site-packages/Cython/Includes/numpy/__init__.pxd":907 * # so don't output it * f = _util_dtypestring(child, f, end, offset) * return f # <<<<<<<<<<<<<< * * */ __pyx_r = __pyx_v_f; goto __pyx_L0; /* "../../miniconda3/envs/hummingbot/lib/python3.6/site-packages/Cython/Includes/numpy/__init__.pxd":842 * return () * * cdef inline char* _util_dtypestring(dtype descr, char* f, char* end, int* offset) except NULL: # <<<<<<<<<<<<<< * # Recursive utility function used in __getbuffer__ to get format * # string. The new location in the format string is returned. */ /* function exit code */ __pyx_L1_error:; __Pyx_XDECREF(__pyx_t_1); __Pyx_XDECREF(__pyx_t_3); __Pyx_XDECREF(__pyx_t_4); __Pyx_AddTraceback("numpy._util_dtypestring", __pyx_clineno, __pyx_lineno, __pyx_filename); __pyx_r = NULL; __pyx_L0:; __Pyx_XDECREF((PyObject *)__pyx_v_child); __Pyx_XDECREF(__pyx_v_fields); __Pyx_XDECREF(__pyx_v_childname); __Pyx_XDECREF(__pyx_v_new_offset); __Pyx_XDECREF(__pyx_v_t); __Pyx_RefNannyFinishContext(); return __pyx_r; } /* "../../miniconda3/envs/hummingbot/lib/python3.6/site-packages/Cython/Includes/numpy/__init__.pxd":1022 * int _import_umath() except -1 * * cdef inline void set_array_base(ndarray arr, object base): # <<<<<<<<<<<<<< * Py_INCREF(base) # important to do this before stealing the reference below! * PyArray_SetBaseObject(arr, base) */ static CYTHON_INLINE void __pyx_f_5numpy_set_array_base(PyArrayObject *__pyx_v_arr, PyObject *__pyx_v_base) { __Pyx_RefNannyDeclarations __Pyx_RefNannySetupContext("set_array_base", 0); /* "../../miniconda3/envs/hummingbot/lib/python3.6/site-packages/Cython/Includes/numpy/__init__.pxd":1023 * * cdef inline void set_array_base(ndarray arr, object base): * Py_INCREF(base) # important to do this before stealing the reference below! # <<<<<<<<<<<<<< * PyArray_SetBaseObject(arr, base) * */ Py_INCREF(__pyx_v_base); /* "../../miniconda3/envs/hummingbot/lib/python3.6/site-packages/Cython/Includes/numpy/__init__.pxd":1024 * cdef inline void set_array_base(ndarray arr, object base): * Py_INCREF(base) # important to do this before stealing the reference below! * PyArray_SetBaseObject(arr, base) # <<<<<<<<<<<<<< * * cdef inline object get_array_base(ndarray arr): */ (void)(PyArray_SetBaseObject(__pyx_v_arr, __pyx_v_base)); /* "../../miniconda3/envs/hummingbot/lib/python3.6/site-packages/Cython/Includes/numpy/__init__.pxd":1022 * int _import_umath() except -1 * * cdef inline void set_array_base(ndarray arr, object base): # <<<<<<<<<<<<<< * Py_INCREF(base) # important to do this before stealing the reference below! * PyArray_SetBaseObject(arr, base) */ /* function exit code */ __Pyx_RefNannyFinishContext(); } /* "../../miniconda3/envs/hummingbot/lib/python3.6/site-packages/Cython/Includes/numpy/__init__.pxd":1026 * PyArray_SetBaseObject(arr, base) * * cdef inline object get_array_base(ndarray arr): # <<<<<<<<<<<<<< * base = PyArray_BASE(arr) * if base is NULL: */ static CYTHON_INLINE PyObject *__pyx_f_5numpy_get_array_base(PyArrayObject *__pyx_v_arr) { PyObject *__pyx_v_base; PyObject *__pyx_r = NULL; __Pyx_RefNannyDeclarations int __pyx_t_1; __Pyx_RefNannySetupContext("get_array_base", 0); /* "../../miniconda3/envs/hummingbot/lib/python3.6/site-packages/Cython/Includes/numpy/__init__.pxd":1027 * * cdef inline object get_array_base(ndarray arr): * base = PyArray_BASE(arr) # <<<<<<<<<<<<<< * if base is NULL: * return None */ __pyx_v_base = PyArray_BASE(__pyx_v_arr); /* "../../miniconda3/envs/hummingbot/lib/python3.6/site-packages/Cython/Includes/numpy/__init__.pxd":1028 * cdef inline object get_array_base(ndarray arr): * base = PyArray_BASE(arr) * if base is NULL: # <<<<<<<<<<<<<< * return None * return <object>base */ __pyx_t_1 = ((__pyx_v_base == NULL) != 0); if (__pyx_t_1) { /* "../../miniconda3/envs/hummingbot/lib/python3.6/site-packages/Cython/Includes/numpy/__init__.pxd":1029 * base = PyArray_BASE(arr) * if base is NULL: * return None # <<<<<<<<<<<<<< * return <object>base * */ __Pyx_XDECREF(__pyx_r); __pyx_r = Py_None; __Pyx_INCREF(Py_None); goto __pyx_L0; /* "../../miniconda3/envs/hummingbot/lib/python3.6/site-packages/Cython/Includes/numpy/__init__.pxd":1028 * cdef inline object get_array_base(ndarray arr): * base = PyArray_BASE(arr) * if base is NULL: # <<<<<<<<<<<<<< * return None * return <object>base */ } /* "../../miniconda3/envs/hummingbot/lib/python3.6/site-packages/Cython/Includes/numpy/__init__.pxd":1030 * if base is NULL: * return None * return <object>base # <<<<<<<<<<<<<< * * # Versions of the import_* functions which are more suitable for */ __Pyx_XDECREF(__pyx_r); __Pyx_INCREF(((PyObject *)__pyx_v_base)); __pyx_r = ((PyObject *)__pyx_v_base); goto __pyx_L0; /* "../../miniconda3/envs/hummingbot/lib/python3.6/site-packages/Cython/Includes/numpy/__init__.pxd":1026 * PyArray_SetBaseObject(arr, base) * * cdef inline object get_array_base(ndarray arr): # <<<<<<<<<<<<<< * base = PyArray_BASE(arr) * if base is NULL: */ /* function exit code */ __pyx_L0:; __Pyx_XGIVEREF(__pyx_r); __Pyx_RefNannyFinishContext(); return __pyx_r; } /* "../../miniconda3/envs/hummingbot/lib/python3.6/site-packages/Cython/Includes/numpy/__init__.pxd":1034 * # Versions of the import_* functions which are more suitable for * # Cython code. * cdef inline int import_array() except -1: # <<<<<<<<<<<<<< * try: * _import_array() */ static CYTHON_INLINE int __pyx_f_5numpy_import_array(void) { int __pyx_r; __Pyx_RefNannyDeclarations PyObject *__pyx_t_1 = NULL; PyObject *__pyx_t_2 = NULL; PyObject *__pyx_t_3 = NULL; int __pyx_t_4; PyObject *__pyx_t_5 = NULL; PyObject *__pyx_t_6 = NULL; PyObject *__pyx_t_7 = NULL; PyObject *__pyx_t_8 = NULL; __Pyx_RefNannySetupContext("import_array", 0); /* "../../miniconda3/envs/hummingbot/lib/python3.6/site-packages/Cython/Includes/numpy/__init__.pxd":1035 * # Cython code. * cdef inline int import_array() except -1: * try: # <<<<<<<<<<<<<< * _import_array() * except Exception: */ { __Pyx_PyThreadState_declare __Pyx_PyThreadState_assign __Pyx_ExceptionSave(&__pyx_t_1, &__pyx_t_2, &__pyx_t_3); __Pyx_XGOTREF(__pyx_t_1); __Pyx_XGOTREF(__pyx_t_2); __Pyx_XGOTREF(__pyx_t_3); /*try:*/ { /* "../../miniconda3/envs/hummingbot/lib/python3.6/site-packages/Cython/Includes/numpy/__init__.pxd":1036 * cdef inline int import_array() except -1: * try: * _import_array() # <<<<<<<<<<<<<< * except Exception: * raise ImportError("numpy.core.multiarray failed to import") */ __pyx_t_4 = _import_array(); if (unlikely(__pyx_t_4 == ((int)-1))) __PYX_ERR(2, 1036, __pyx_L3_error) /* "../../miniconda3/envs/hummingbot/lib/python3.6/site-packages/Cython/Includes/numpy/__init__.pxd":1035 * # Cython code. * cdef inline int import_array() except -1: * try: # <<<<<<<<<<<<<< * _import_array() * except Exception: */ } __Pyx_XDECREF(__pyx_t_1); __pyx_t_1 = 0; __Pyx_XDECREF(__pyx_t_2); __pyx_t_2 = 0; __Pyx_XDECREF(__pyx_t_3); __pyx_t_3 = 0; goto __pyx_L8_try_end; __pyx_L3_error:; /* "../../miniconda3/envs/hummingbot/lib/python3.6/site-packages/Cython/Includes/numpy/__init__.pxd":1037 * try: * _import_array() * except Exception: # <<<<<<<<<<<<<< * raise ImportError("numpy.core.multiarray failed to import") * */ __pyx_t_4 = __Pyx_PyErr_ExceptionMatches(((PyObject *)(&((PyTypeObject*)PyExc_Exception)[0]))); if (__pyx_t_4) { __Pyx_AddTraceback("numpy.import_array", __pyx_clineno, __pyx_lineno, __pyx_filename); if (__Pyx_GetException(&__pyx_t_5, &__pyx_t_6, &__pyx_t_7) < 0) __PYX_ERR(2, 1037, __pyx_L5_except_error) __Pyx_GOTREF(__pyx_t_5); __Pyx_GOTREF(__pyx_t_6); __Pyx_GOTREF(__pyx_t_7); /* "../../miniconda3/envs/hummingbot/lib/python3.6/site-packages/Cython/Includes/numpy/__init__.pxd":1038 * _import_array() * except Exception: * raise ImportError("numpy.core.multiarray failed to import") # <<<<<<<<<<<<<< * * cdef inline int import_umath() except -1: */ __pyx_t_8 = __Pyx_PyObject_Call(__pyx_builtin_ImportError, __pyx_tuple__8, NULL); if (unlikely(!__pyx_t_8)) __PYX_ERR(2, 1038, __pyx_L5_except_error) __Pyx_GOTREF(__pyx_t_8); __Pyx_Raise(__pyx_t_8, 0, 0, 0); __Pyx_DECREF(__pyx_t_8); __pyx_t_8 = 0; __PYX_ERR(2, 1038, __pyx_L5_except_error) } goto __pyx_L5_except_error; __pyx_L5_except_error:; /* "../../miniconda3/envs/hummingbot/lib/python3.6/site-packages/Cython/Includes/numpy/__init__.pxd":1035 * # Cython code. * cdef inline int import_array() except -1: * try: # <<<<<<<<<<<<<< * _import_array() * except Exception: */ __Pyx_XGIVEREF(__pyx_t_1); __Pyx_XGIVEREF(__pyx_t_2); __Pyx_XGIVEREF(__pyx_t_3); __Pyx_ExceptionReset(__pyx_t_1, __pyx_t_2, __pyx_t_3); goto __pyx_L1_error; __pyx_L8_try_end:; } /* "../../miniconda3/envs/hummingbot/lib/python3.6/site-packages/Cython/Includes/numpy/__init__.pxd":1034 * # Versions of the import_* functions which are more suitable for * # Cython code. * cdef inline int import_array() except -1: # <<<<<<<<<<<<<< * try: * _import_array() */ /* function exit code */ __pyx_r = 0; goto __pyx_L0; __pyx_L1_error:; __Pyx_XDECREF(__pyx_t_5); __Pyx_XDECREF(__pyx_t_6); __Pyx_XDECREF(__pyx_t_7); __Pyx_XDECREF(__pyx_t_8); __Pyx_AddTraceback("numpy.import_array", __pyx_clineno, __pyx_lineno, __pyx_filename); __pyx_r = -1; __pyx_L0:; __Pyx_RefNannyFinishContext(); return __pyx_r; } /* "../../miniconda3/envs/hummingbot/lib/python3.6/site-packages/Cython/Includes/numpy/__init__.pxd":1040 * raise ImportError("numpy.core.multiarray failed to import") * * cdef inline int import_umath() except -1: # <<<<<<<<<<<<<< * try: * _import_umath() */ static CYTHON_INLINE int __pyx_f_5numpy_import_umath(void) { int __pyx_r; __Pyx_RefNannyDeclarations PyObject *__pyx_t_1 = NULL; PyObject *__pyx_t_2 = NULL; PyObject *__pyx_t_3 = NULL; int __pyx_t_4; PyObject *__pyx_t_5 = NULL; PyObject *__pyx_t_6 = NULL; PyObject *__pyx_t_7 = NULL; PyObject *__pyx_t_8 = NULL; __Pyx_RefNannySetupContext("import_umath", 0); /* "../../miniconda3/envs/hummingbot/lib/python3.6/site-packages/Cython/Includes/numpy/__init__.pxd":1041 * * cdef inline int import_umath() except -1: * try: # <<<<<<<<<<<<<< * _import_umath() * except Exception: */ { __Pyx_PyThreadState_declare __Pyx_PyThreadState_assign __Pyx_ExceptionSave(&__pyx_t_1, &__pyx_t_2, &__pyx_t_3); __Pyx_XGOTREF(__pyx_t_1); __Pyx_XGOTREF(__pyx_t_2); __Pyx_XGOTREF(__pyx_t_3); /*try:*/ { /* "../../miniconda3/envs/hummingbot/lib/python3.6/site-packages/Cython/Includes/numpy/__init__.pxd":1042 * cdef inline int import_umath() except -1: * try: * _import_umath() # <<<<<<<<<<<<<< * except Exception: * raise ImportError("numpy.core.umath failed to import") */ __pyx_t_4 = _import_umath(); if (unlikely(__pyx_t_4 == ((int)-1))) __PYX_ERR(2, 1042, __pyx_L3_error) /* "../../miniconda3/envs/hummingbot/lib/python3.6/site-packages/Cython/Includes/numpy/__init__.pxd":1041 * * cdef inline int import_umath() except -1: * try: # <<<<<<<<<<<<<< * _import_umath() * except Exception: */ } __Pyx_XDECREF(__pyx_t_1); __pyx_t_1 = 0; __Pyx_XDECREF(__pyx_t_2); __pyx_t_2 = 0; __Pyx_XDECREF(__pyx_t_3); __pyx_t_3 = 0; goto __pyx_L8_try_end; __pyx_L3_error:; /* "../../miniconda3/envs/hummingbot/lib/python3.6/site-packages/Cython/Includes/numpy/__init__.pxd":1043 * try: * _import_umath() * except Exception: # <<<<<<<<<<<<<< * raise ImportError("numpy.core.umath failed to import") * */ __pyx_t_4 = __Pyx_PyErr_ExceptionMatches(((PyObject *)(&((PyTypeObject*)PyExc_Exception)[0]))); if (__pyx_t_4) { __Pyx_AddTraceback("numpy.import_umath", __pyx_clineno, __pyx_lineno, __pyx_filename); if (__Pyx_GetException(&__pyx_t_5, &__pyx_t_6, &__pyx_t_7) < 0) __PYX_ERR(2, 1043, __pyx_L5_except_error) __Pyx_GOTREF(__pyx_t_5); __Pyx_GOTREF(__pyx_t_6); __Pyx_GOTREF(__pyx_t_7); /* "../../miniconda3/envs/hummingbot/lib/python3.6/site-packages/Cython/Includes/numpy/__init__.pxd":1044 * _import_umath() * except Exception: * raise ImportError("numpy.core.umath failed to import") # <<<<<<<<<<<<<< * * cdef inline int import_ufunc() except -1: */ __pyx_t_8 = __Pyx_PyObject_Call(__pyx_builtin_ImportError, __pyx_tuple__9, NULL); if (unlikely(!__pyx_t_8)) __PYX_ERR(2, 1044, __pyx_L5_except_error) __Pyx_GOTREF(__pyx_t_8); __Pyx_Raise(__pyx_t_8, 0, 0, 0); __Pyx_DECREF(__pyx_t_8); __pyx_t_8 = 0; __PYX_ERR(2, 1044, __pyx_L5_except_error) } goto __pyx_L5_except_error; __pyx_L5_except_error:; /* "../../miniconda3/envs/hummingbot/lib/python3.6/site-packages/Cython/Includes/numpy/__init__.pxd":1041 * * cdef inline int import_umath() except -1: * try: # <<<<<<<<<<<<<< * _import_umath() * except Exception: */ __Pyx_XGIVEREF(__pyx_t_1); __Pyx_XGIVEREF(__pyx_t_2); __Pyx_XGIVEREF(__pyx_t_3); __Pyx_ExceptionReset(__pyx_t_1, __pyx_t_2, __pyx_t_3); goto __pyx_L1_error; __pyx_L8_try_end:; } /* "../../miniconda3/envs/hummingbot/lib/python3.6/site-packages/Cython/Includes/numpy/__init__.pxd":1040 * raise ImportError("numpy.core.multiarray failed to import") * * cdef inline int import_umath() except -1: # <<<<<<<<<<<<<< * try: * _import_umath() */ /* function exit code */ __pyx_r = 0; goto __pyx_L0; __pyx_L1_error:; __Pyx_XDECREF(__pyx_t_5); __Pyx_XDECREF(__pyx_t_6); __Pyx_XDECREF(__pyx_t_7); __Pyx_XDECREF(__pyx_t_8); __Pyx_AddTraceback("numpy.import_umath", __pyx_clineno, __pyx_lineno, __pyx_filename); __pyx_r = -1; __pyx_L0:; __Pyx_RefNannyFinishContext(); return __pyx_r; } /* "../../miniconda3/envs/hummingbot/lib/python3.6/site-packages/Cython/Includes/numpy/__init__.pxd":1046 * raise ImportError("numpy.core.umath failed to import") * * cdef inline int import_ufunc() except -1: # <<<<<<<<<<<<<< * try: * _import_umath() */ static CYTHON_INLINE int __pyx_f_5numpy_import_ufunc(void) { int __pyx_r; __Pyx_RefNannyDeclarations PyObject *__pyx_t_1 = NULL; PyObject *__pyx_t_2 = NULL; PyObject *__pyx_t_3 = NULL; int __pyx_t_4; PyObject *__pyx_t_5 = NULL; PyObject *__pyx_t_6 = NULL; PyObject *__pyx_t_7 = NULL; PyObject *__pyx_t_8 = NULL; __Pyx_RefNannySetupContext("import_ufunc", 0); /* "../../miniconda3/envs/hummingbot/lib/python3.6/site-packages/Cython/Includes/numpy/__init__.pxd":1047 * * cdef inline int import_ufunc() except -1: * try: # <<<<<<<<<<<<<< * _import_umath() * except Exception: */ { __Pyx_PyThreadState_declare __Pyx_PyThreadState_assign __Pyx_ExceptionSave(&__pyx_t_1, &__pyx_t_2, &__pyx_t_3); __Pyx_XGOTREF(__pyx_t_1); __Pyx_XGOTREF(__pyx_t_2); __Pyx_XGOTREF(__pyx_t_3); /*try:*/ { /* "../../miniconda3/envs/hummingbot/lib/python3.6/site-packages/Cython/Includes/numpy/__init__.pxd":1048 * cdef inline int import_ufunc() except -1: * try: * _import_umath() # <<<<<<<<<<<<<< * except Exception: * raise ImportError("numpy.core.umath failed to import") */ __pyx_t_4 = _import_umath(); if (unlikely(__pyx_t_4 == ((int)-1))) __PYX_ERR(2, 1048, __pyx_L3_error) /* "../../miniconda3/envs/hummingbot/lib/python3.6/site-packages/Cython/Includes/numpy/__init__.pxd":1047 * * cdef inline int import_ufunc() except -1: * try: # <<<<<<<<<<<<<< * _import_umath() * except Exception: */ } __Pyx_XDECREF(__pyx_t_1); __pyx_t_1 = 0; __Pyx_XDECREF(__pyx_t_2); __pyx_t_2 = 0; __Pyx_XDECREF(__pyx_t_3); __pyx_t_3 = 0; goto __pyx_L8_try_end; __pyx_L3_error:; /* "../../miniconda3/envs/hummingbot/lib/python3.6/site-packages/Cython/Includes/numpy/__init__.pxd":1049 * try: * _import_umath() * except Exception: # <<<<<<<<<<<<<< * raise ImportError("numpy.core.umath failed to import") */ __pyx_t_4 = __Pyx_PyErr_ExceptionMatches(((PyObject *)(&((PyTypeObject*)PyExc_Exception)[0]))); if (__pyx_t_4) { __Pyx_AddTraceback("numpy.import_ufunc", __pyx_clineno, __pyx_lineno, __pyx_filename); if (__Pyx_GetException(&__pyx_t_5, &__pyx_t_6, &__pyx_t_7) < 0) __PYX_ERR(2, 1049, __pyx_L5_except_error) __Pyx_GOTREF(__pyx_t_5); __Pyx_GOTREF(__pyx_t_6); __Pyx_GOTREF(__pyx_t_7); /* "../../miniconda3/envs/hummingbot/lib/python3.6/site-packages/Cython/Includes/numpy/__init__.pxd":1050 * _import_umath() * except Exception: * raise ImportError("numpy.core.umath failed to import") # <<<<<<<<<<<<<< */ __pyx_t_8 = __Pyx_PyObject_Call(__pyx_builtin_ImportError, __pyx_tuple__9, NULL); if (unlikely(!__pyx_t_8)) __PYX_ERR(2, 1050, __pyx_L5_except_error) __Pyx_GOTREF(__pyx_t_8); __Pyx_Raise(__pyx_t_8, 0, 0, 0); __Pyx_DECREF(__pyx_t_8); __pyx_t_8 = 0; __PYX_ERR(2, 1050, __pyx_L5_except_error) } goto __pyx_L5_except_error; __pyx_L5_except_error:; /* "../../miniconda3/envs/hummingbot/lib/python3.6/site-packages/Cython/Includes/numpy/__init__.pxd":1047 * * cdef inline int import_ufunc() except -1: * try: # <<<<<<<<<<<<<< * _import_umath() * except Exception: */ __Pyx_XGIVEREF(__pyx_t_1); __Pyx_XGIVEREF(__pyx_t_2); __Pyx_XGIVEREF(__pyx_t_3); __Pyx_ExceptionReset(__pyx_t_1, __pyx_t_2, __pyx_t_3); goto __pyx_L1_error; __pyx_L8_try_end:; } /* "../../miniconda3/envs/hummingbot/lib/python3.6/site-packages/Cython/Includes/numpy/__init__.pxd":1046 * raise ImportError("numpy.core.umath failed to import") * * cdef inline int import_ufunc() except -1: # <<<<<<<<<<<<<< * try: * _import_umath() */ /* function exit code */ __pyx_r = 0; goto __pyx_L0; __pyx_L1_error:; __Pyx_XDECREF(__pyx_t_5); __Pyx_XDECREF(__pyx_t_6); __Pyx_XDECREF(__pyx_t_7); __Pyx_XDECREF(__pyx_t_8); __Pyx_AddTraceback("numpy.import_ufunc", __pyx_clineno, __pyx_lineno, __pyx_filename); __pyx_r = -1; __pyx_L0:; __Pyx_RefNannyFinishContext(); return __pyx_r; } static struct __pyx_vtabstruct_10hummingbot_6market_6kucoin_17kucoin_order_book_KucoinOrderBook __pyx_vtable_10hummingbot_6market_6kucoin_17kucoin_order_book_KucoinOrderBook; static PyObject *__pyx_tp_new_10hummingbot_6market_6kucoin_17kucoin_order_book_KucoinOrderBook(PyTypeObject *t, PyObject *a, PyObject *k) { struct __pyx_obj_10hummingbot_6market_6kucoin_17kucoin_order_book_KucoinOrderBook *p; PyObject *o = __pyx_ptype_10hummingbot_4core_9data_type_10order_book_OrderBook->tp_new(t, a, k); if (unlikely(!o)) return 0; p = ((struct __pyx_obj_10hummingbot_6market_6kucoin_17kucoin_order_book_KucoinOrderBook *)o); p->__pyx_base.__pyx_base.__pyx_vtab = (struct __pyx_vtabstruct_10hummingbot_4core_6pubsub_PubSub*)__pyx_vtabptr_10hummingbot_6market_6kucoin_17kucoin_order_book_KucoinOrderBook; return o; } static void __pyx_tp_dealloc_10hummingbot_6market_6kucoin_17kucoin_order_book_KucoinOrderBook(PyObject *o) { #if CYTHON_USE_TP_FINALIZE if (unlikely(PyType_HasFeature(Py_TYPE(o), Py_TPFLAGS_HAVE_FINALIZE) && Py_TYPE(o)->tp_finalize) && (!PyType_IS_GC(Py_TYPE(o)) || !_PyGC_FINALIZED(o))) { if (PyObject_CallFinalizerFromDealloc(o)) return; } #endif if (likely(__pyx_ptype_10hummingbot_4core_9data_type_10order_book_OrderBook)) __pyx_ptype_10hummingbot_4core_9data_type_10order_book_OrderBook->tp_dealloc(o); else __Pyx_call_next_tp_dealloc(o, __pyx_tp_dealloc_10hummingbot_6market_6kucoin_17kucoin_order_book_KucoinOrderBook); } static PyMethodDef __pyx_methods_10hummingbot_6market_6kucoin_17kucoin_order_book_KucoinOrderBook[] = { {"logger", (PyCFunction)__pyx_pw_10hummingbot_6market_6kucoin_17kucoin_order_book_15KucoinOrderBook_1logger, METH_NOARGS, 0}, {"snapshot_message_from_exchange", (PyCFunction)(void*)(PyCFunctionWithKeywords)__pyx_pw_10hummingbot_6market_6kucoin_17kucoin_order_book_15KucoinOrderBook_3snapshot_message_from_exchange, METH_VARARGS|METH_KEYWORDS, 0}, {"diff_message_from_exchange", (PyCFunction)(void*)(PyCFunctionWithKeywords)__pyx_pw_10hummingbot_6market_6kucoin_17kucoin_order_book_15KucoinOrderBook_5diff_message_from_exchange, METH_VARARGS|METH_KEYWORDS, 0}, {"snapshot_message_from_db", (PyCFunction)(void*)(PyCFunctionWithKeywords)__pyx_pw_10hummingbot_6market_6kucoin_17kucoin_order_book_15KucoinOrderBook_7snapshot_message_from_db, METH_VARARGS|METH_KEYWORDS, 0}, {"diff_message_from_db", (PyCFunction)(void*)(PyCFunctionWithKeywords)__pyx_pw_10hummingbot_6market_6kucoin_17kucoin_order_book_15KucoinOrderBook_9diff_message_from_db, METH_VARARGS|METH_KEYWORDS, 0}, {"snapshot_message_from_kafka", (PyCFunction)(void*)(PyCFunctionWithKeywords)__pyx_pw_10hummingbot_6market_6kucoin_17kucoin_order_book_15KucoinOrderBook_11snapshot_message_from_kafka, METH_VARARGS|METH_KEYWORDS, 0}, {"diff_message_from_kafka", (PyCFunction)(void*)(PyCFunctionWithKeywords)__pyx_pw_10hummingbot_6market_6kucoin_17kucoin_order_book_15KucoinOrderBook_13diff_message_from_kafka, METH_VARARGS|METH_KEYWORDS, 0}, {"trade_message_from_db", (PyCFunction)(void*)(PyCFunctionWithKeywords)__pyx_pw_10hummingbot_6market_6kucoin_17kucoin_order_book_15KucoinOrderBook_15trade_message_from_db, METH_VARARGS|METH_KEYWORDS, 0}, {"trade_message_from_exchange", (PyCFunction)(void*)(PyCFunctionWithKeywords)__pyx_pw_10hummingbot_6market_6kucoin_17kucoin_order_book_15KucoinOrderBook_17trade_message_from_exchange, METH_VARARGS|METH_KEYWORDS, 0}, {"from_snapshot", (PyCFunction)__pyx_pw_10hummingbot_6market_6kucoin_17kucoin_order_book_15KucoinOrderBook_19from_snapshot, METH_O, 0}, {"__reduce_cython__", (PyCFunction)__pyx_pw_10hummingbot_6market_6kucoin_17kucoin_order_book_15KucoinOrderBook_21__reduce_cython__, METH_NOARGS, 0}, {"__setstate_cython__", (PyCFunction)__pyx_pw_10hummingbot_6market_6kucoin_17kucoin_order_book_15KucoinOrderBook_23__setstate_cython__, METH_O, 0}, {0, 0, 0, 0} }; static PyTypeObject __pyx_type_10hummingbot_6market_6kucoin_17kucoin_order_book_KucoinOrderBook = { PyVarObject_HEAD_INIT(0, 0) "hummingbot.market.kucoin.kucoin_order_book.KucoinOrderBook", /*tp_name*/ sizeof(struct __pyx_obj_10hummingbot_6market_6kucoin_17kucoin_order_book_KucoinOrderBook), /*tp_basicsize*/ 0, /*tp_itemsize*/ __pyx_tp_dealloc_10hummingbot_6market_6kucoin_17kucoin_order_book_KucoinOrderBook, /*tp_dealloc*/ 0, /*tp_print*/ 0, /*tp_getattr*/ 0, /*tp_setattr*/ #if PY_MAJOR_VERSION < 3 0, /*tp_compare*/ #endif #if PY_MAJOR_VERSION >= 3 0, /*tp_as_async*/ #endif 0, /*tp_repr*/ 0, /*tp_as_number*/ 0, /*tp_as_sequence*/ 0, /*tp_as_mapping*/ 0, /*tp_hash*/ 0, /*tp_call*/ 0, /*tp_str*/ 0, /*tp_getattro*/ 0, /*tp_setattro*/ 0, /*tp_as_buffer*/ Py_TPFLAGS_DEFAULT|Py_TPFLAGS_HAVE_VERSION_TAG|Py_TPFLAGS_CHECKTYPES|Py_TPFLAGS_HAVE_NEWBUFFER|Py_TPFLAGS_BASETYPE, /*tp_flags*/ 0, /*tp_doc*/ 0, /*tp_traverse*/ 0, /*tp_clear*/ 0, /*tp_richcompare*/ 0, /*tp_weaklistoffset*/ 0, /*tp_iter*/ 0, /*tp_iternext*/ __pyx_methods_10hummingbot_6market_6kucoin_17kucoin_order_book_KucoinOrderBook, /*tp_methods*/ 0, /*tp_members*/ 0, /*tp_getset*/ 0, /*tp_base*/ 0, /*tp_dict*/ 0, /*tp_descr_get*/ 0, /*tp_descr_set*/ 0, /*tp_dictoffset*/ 0, /*tp_init*/ 0, /*tp_alloc*/ __pyx_tp_new_10hummingbot_6market_6kucoin_17kucoin_order_book_KucoinOrderBook, /*tp_new*/ 0, /*tp_free*/ 0, /*tp_is_gc*/ 0, /*tp_bases*/ 0, /*tp_mro*/ 0, /*tp_cache*/ 0, /*tp_subclasses*/ 0, /*tp_weaklist*/ 0, /*tp_del*/ 0, /*tp_version_tag*/ #if PY_VERSION_HEX >= 0x030400a1 0, /*tp_finalize*/ #endif }; static PyMethodDef __pyx_methods[] = { {0, 0, 0, 0} }; #if PY_MAJOR_VERSION >= 3 #if CYTHON_PEP489_MULTI_PHASE_INIT static PyObject* __pyx_pymod_create(PyObject *spec, PyModuleDef *def); /*proto*/ static int __pyx_pymod_exec_kucoin_order_book(PyObject* module); /*proto*/ static PyModuleDef_Slot __pyx_moduledef_slots[] = { {Py_mod_create, (void*)__pyx_pymod_create}, {Py_mod_exec, (void*)__pyx_pymod_exec_kucoin_order_book}, {0, NULL} }; #endif static struct PyModuleDef __pyx_moduledef = { PyModuleDef_HEAD_INIT, "kucoin_order_book", 0, /* m_doc */ #if CYTHON_PEP489_MULTI_PHASE_INIT 0, /* m_size */ #else -1, /* m_size */ #endif __pyx_methods /* m_methods */, #if CYTHON_PEP489_MULTI_PHASE_INIT __pyx_moduledef_slots, /* m_slots */ #else NULL, /* m_reload */ #endif NULL, /* m_traverse */ NULL, /* m_clear */ NULL /* m_free */ }; #endif #ifndef CYTHON_SMALL_CODE #if defined(__clang__) #define CYTHON_SMALL_CODE #elif defined(__GNUC__) && (__GNUC__ > 4 || (__GNUC__ == 4 && __GNUC_MINOR__ >= 3)) #define CYTHON_SMALL_CODE __attribute__((cold)) #else #define CYTHON_SMALL_CODE #endif #endif static __Pyx_StringTabEntry __pyx_string_tab[] = { {&__pyx_n_s_BUY, __pyx_k_BUY, sizeof(__pyx_k_BUY), 0, 0, 1, 1}, {&__pyx_n_s_ConsumerRecord, __pyx_k_ConsumerRecord, sizeof(__pyx_k_ConsumerRecord), 0, 0, 1, 1}, {&__pyx_n_s_DIFF, __pyx_k_DIFF, sizeof(__pyx_k_DIFF), 0, 0, 1, 1}, {&__pyx_n_s_Dict, __pyx_k_Dict, sizeof(__pyx_k_Dict), 0, 0, 1, 1}, {&__pyx_kp_u_Format_string_allocated_too_shor, __pyx_k_Format_string_allocated_too_shor, sizeof(__pyx_k_Format_string_allocated_too_shor), 0, 1, 0, 0}, {&__pyx_kp_u_Format_string_allocated_too_shor_2, __pyx_k_Format_string_allocated_too_shor_2, sizeof(__pyx_k_Format_string_allocated_too_shor_2), 0, 1, 0, 0}, {&__pyx_n_s_HummingbotLogger, __pyx_k_HummingbotLogger, sizeof(__pyx_k_HummingbotLogger), 0, 0, 1, 1}, {&__pyx_n_s_ImportError, __pyx_k_ImportError, sizeof(__pyx_k_ImportError), 0, 0, 1, 1}, {&__pyx_n_s_KucoinOrderBook, __pyx_k_KucoinOrderBook, sizeof(__pyx_k_KucoinOrderBook), 0, 0, 1, 1}, {&__pyx_n_s_KucoinOrderBookMessage, __pyx_k_KucoinOrderBookMessage, sizeof(__pyx_k_KucoinOrderBookMessage), 0, 0, 1, 1}, {&__pyx_kp_u_Non_native_byte_order_not_suppor, __pyx_k_Non_native_byte_order_not_suppor, sizeof(__pyx_k_Non_native_byte_order_not_suppor), 0, 1, 0, 0}, {&__pyx_n_s_Optional, __pyx_k_Optional, sizeof(__pyx_k_Optional), 0, 0, 1, 1}, {&__pyx_n_s_OrderBookMessage, __pyx_k_OrderBookMessage, sizeof(__pyx_k_OrderBookMessage), 0, 0, 1, 1}, {&__pyx_n_s_OrderBookMessageType, __pyx_k_OrderBookMessageType, sizeof(__pyx_k_OrderBookMessageType), 0, 0, 1, 1}, {&__pyx_n_s_RowProxy, __pyx_k_RowProxy, sizeof(__pyx_k_RowProxy), 0, 0, 1, 1}, {&__pyx_n_s_RuntimeError, __pyx_k_RuntimeError, sizeof(__pyx_k_RuntimeError), 0, 0, 1, 1}, {&__pyx_n_s_SELL, __pyx_k_SELL, sizeof(__pyx_k_SELL), 0, 0, 1, 1}, {&__pyx_n_s_SNAPSHOT, __pyx_k_SNAPSHOT, sizeof(__pyx_k_SNAPSHOT), 0, 0, 1, 1}, {&__pyx_n_s_TRADE, __pyx_k_TRADE, sizeof(__pyx_k_TRADE), 0, 0, 1, 1}, {&__pyx_n_s_TradeType, __pyx_k_TradeType, sizeof(__pyx_k_TradeType), 0, 0, 1, 1}, {&__pyx_n_s_TypeError, __pyx_k_TypeError, sizeof(__pyx_k_TypeError), 0, 0, 1, 1}, {&__pyx_n_s_ValueError, __pyx_k_ValueError, sizeof(__pyx_k_ValueError), 0, 0, 1, 1}, {&__pyx_n_s_aiokafka, __pyx_k_aiokafka, sizeof(__pyx_k_aiokafka), 0, 0, 1, 1}, {&__pyx_n_u_amount, __pyx_k_amount, sizeof(__pyx_k_amount), 0, 1, 0, 1}, {&__pyx_n_s_any, __pyx_k_any, sizeof(__pyx_k_any), 0, 0, 1, 1}, {&__pyx_n_s_apply_snapshot, __pyx_k_apply_snapshot, sizeof(__pyx_k_apply_snapshot), 0, 0, 1, 1}, {&__pyx_n_s_asks, __pyx_k_asks, sizeof(__pyx_k_asks), 0, 0, 1, 1}, {&__pyx_n_u_asks, __pyx_k_asks, sizeof(__pyx_k_asks), 0, 1, 0, 1}, {&__pyx_n_s_bids, __pyx_k_bids, sizeof(__pyx_k_bids), 0, 0, 1, 1}, {&__pyx_n_u_bids, __pyx_k_bids, sizeof(__pyx_k_bids), 0, 1, 0, 1}, {&__pyx_n_u_buy, __pyx_k_buy, sizeof(__pyx_k_buy), 0, 1, 0, 1}, {&__pyx_n_u_changes, __pyx_k_changes, sizeof(__pyx_k_changes), 0, 1, 0, 1}, {&__pyx_n_s_cline_in_traceback, __pyx_k_cline_in_traceback, sizeof(__pyx_k_cline_in_traceback), 0, 0, 1, 1}, {&__pyx_n_u_data, __pyx_k_data, sizeof(__pyx_k_data), 0, 1, 0, 1}, {&__pyx_n_s_decode, __pyx_k_decode, sizeof(__pyx_k_decode), 0, 0, 1, 1}, {&__pyx_n_s_diff_message_from_db, __pyx_k_diff_message_from_db, sizeof(__pyx_k_diff_message_from_db), 0, 0, 1, 1}, {&__pyx_n_s_diff_message_from_exchange, __pyx_k_diff_message_from_exchange, sizeof(__pyx_k_diff_message_from_exchange), 0, 0, 1, 1}, {&__pyx_n_s_diff_message_from_kafka, __pyx_k_diff_message_from_kafka, sizeof(__pyx_k_diff_message_from_kafka), 0, 0, 1, 1}, {&__pyx_n_s_from_snapshot, __pyx_k_from_snapshot, sizeof(__pyx_k_from_snapshot), 0, 0, 1, 1}, {&__pyx_n_s_getLogger, __pyx_k_getLogger, sizeof(__pyx_k_getLogger), 0, 0, 1, 1}, {&__pyx_n_s_getstate, __pyx_k_getstate, sizeof(__pyx_k_getstate), 0, 0, 1, 1}, {&__pyx_n_s_hummingbot_core_data_type_order, __pyx_k_hummingbot_core_data_type_order, sizeof(__pyx_k_hummingbot_core_data_type_order), 0, 0, 1, 1}, {&__pyx_n_s_hummingbot_core_event_events, __pyx_k_hummingbot_core_event_events, sizeof(__pyx_k_hummingbot_core_event_events), 0, 0, 1, 1}, {&__pyx_n_s_hummingbot_logger, __pyx_k_hummingbot_logger, sizeof(__pyx_k_hummingbot_logger), 0, 0, 1, 1}, {&__pyx_n_s_hummingbot_market_kucoin_kucoin, __pyx_k_hummingbot_market_kucoin_kucoin, sizeof(__pyx_k_hummingbot_market_kucoin_kucoin), 0, 0, 1, 1}, {&__pyx_n_s_import, __pyx_k_import, sizeof(__pyx_k_import), 0, 0, 1, 1}, {&__pyx_n_u_json, __pyx_k_json, sizeof(__pyx_k_json), 0, 1, 0, 1}, {&__pyx_n_s_kob_logger, __pyx_k_kob_logger, sizeof(__pyx_k_kob_logger), 0, 0, 1, 1}, {&__pyx_n_s_loads, __pyx_k_loads, sizeof(__pyx_k_loads), 0, 0, 1, 1}, {&__pyx_n_s_logger, __pyx_k_logger, sizeof(__pyx_k_logger), 0, 0, 1, 1}, {&__pyx_n_s_logging, __pyx_k_logging, sizeof(__pyx_k_logging), 0, 0, 1, 1}, {&__pyx_n_s_main, __pyx_k_main, sizeof(__pyx_k_main), 0, 0, 1, 1}, {&__pyx_n_s_metadata, __pyx_k_metadata, sizeof(__pyx_k_metadata), 0, 0, 1, 1}, {&__pyx_n_s_msg, __pyx_k_msg, sizeof(__pyx_k_msg), 0, 0, 1, 1}, {&__pyx_n_s_name, __pyx_k_name, sizeof(__pyx_k_name), 0, 0, 1, 1}, {&__pyx_kp_u_ndarray_is_not_C_contiguous, __pyx_k_ndarray_is_not_C_contiguous, sizeof(__pyx_k_ndarray_is_not_C_contiguous), 0, 1, 0, 0}, {&__pyx_kp_u_ndarray_is_not_Fortran_contiguou, __pyx_k_ndarray_is_not_Fortran_contiguou, sizeof(__pyx_k_ndarray_is_not_Fortran_contiguou), 0, 1, 0, 0}, {&__pyx_kp_u_numpy_core_multiarray_failed_to, __pyx_k_numpy_core_multiarray_failed_to, sizeof(__pyx_k_numpy_core_multiarray_failed_to), 0, 1, 0, 0}, {&__pyx_kp_u_numpy_core_umath_failed_to_impor, __pyx_k_numpy_core_umath_failed_to_impor, sizeof(__pyx_k_numpy_core_umath_failed_to_impor), 0, 1, 0, 0}, {&__pyx_n_u_price, __pyx_k_price, sizeof(__pyx_k_price), 0, 1, 0, 1}, {&__pyx_n_s_pyx_vtable, __pyx_k_pyx_vtable, sizeof(__pyx_k_pyx_vtable), 0, 0, 1, 1}, {&__pyx_n_s_range, __pyx_k_range, sizeof(__pyx_k_range), 0, 0, 1, 1}, {&__pyx_n_s_record, __pyx_k_record, sizeof(__pyx_k_record), 0, 0, 1, 1}, {&__pyx_n_s_reduce, __pyx_k_reduce, sizeof(__pyx_k_reduce), 0, 0, 1, 1}, {&__pyx_n_s_reduce_cython, __pyx_k_reduce_cython, sizeof(__pyx_k_reduce_cython), 0, 0, 1, 1}, {&__pyx_n_s_reduce_ex, __pyx_k_reduce_ex, sizeof(__pyx_k_reduce_ex), 0, 0, 1, 1}, {&__pyx_kp_s_self__ask_book_self__bid_book_se, __pyx_k_self__ask_book_self__bid_book_se, sizeof(__pyx_k_self__ask_book_self__bid_book_se), 0, 0, 1, 0}, {&__pyx_n_u_sequence, __pyx_k_sequence, sizeof(__pyx_k_sequence), 0, 1, 0, 1}, {&__pyx_n_u_sequenceEnd, __pyx_k_sequenceEnd, sizeof(__pyx_k_sequenceEnd), 0, 1, 0, 1}, {&__pyx_n_s_setstate, __pyx_k_setstate, sizeof(__pyx_k_setstate), 0, 0, 1, 1}, {&__pyx_n_s_setstate_cython, __pyx_k_setstate_cython, sizeof(__pyx_k_setstate_cython), 0, 0, 1, 1}, {&__pyx_n_u_side, __pyx_k_side, sizeof(__pyx_k_side), 0, 1, 0, 1}, {&__pyx_n_u_size, __pyx_k_size, sizeof(__pyx_k_size), 0, 1, 0, 1}, {&__pyx_n_s_snapshot_message_from_db, __pyx_k_snapshot_message_from_db, sizeof(__pyx_k_snapshot_message_from_db), 0, 0, 1, 1}, {&__pyx_n_s_snapshot_message_from_exchange, __pyx_k_snapshot_message_from_exchange, sizeof(__pyx_k_snapshot_message_from_exchange), 0, 0, 1, 1}, {&__pyx_n_s_snapshot_message_from_kafka, __pyx_k_snapshot_message_from_kafka, sizeof(__pyx_k_snapshot_message_from_kafka), 0, 0, 1, 1}, {&__pyx_n_s_sqlalchemy_engine, __pyx_k_sqlalchemy_engine, sizeof(__pyx_k_sqlalchemy_engine), 0, 0, 1, 1}, {&__pyx_n_u_symbol, __pyx_k_symbol, sizeof(__pyx_k_symbol), 0, 1, 0, 1}, {&__pyx_n_s_test, __pyx_k_test, sizeof(__pyx_k_test), 0, 0, 1, 1}, {&__pyx_n_u_time, __pyx_k_time, sizeof(__pyx_k_time), 0, 1, 0, 1}, {&__pyx_n_s_timestamp, __pyx_k_timestamp, sizeof(__pyx_k_timestamp), 0, 0, 1, 1}, {&__pyx_n_u_timestamp, __pyx_k_timestamp, sizeof(__pyx_k_timestamp), 0, 1, 0, 1}, {&__pyx_n_u_tradeId, __pyx_k_tradeId, sizeof(__pyx_k_tradeId), 0, 1, 0, 1}, {&__pyx_n_u_trade_id, __pyx_k_trade_id, sizeof(__pyx_k_trade_id), 0, 1, 0, 1}, {&__pyx_n_s_trade_message_from_db, __pyx_k_trade_message_from_db, sizeof(__pyx_k_trade_message_from_db), 0, 0, 1, 1}, {&__pyx_n_s_trade_message_from_exchange, __pyx_k_trade_message_from_exchange, sizeof(__pyx_k_trade_message_from_exchange), 0, 0, 1, 1}, {&__pyx_n_u_trade_type, __pyx_k_trade_type, sizeof(__pyx_k_trade_type), 0, 1, 0, 1}, {&__pyx_n_u_trading_pair, __pyx_k_trading_pair, sizeof(__pyx_k_trading_pair), 0, 1, 0, 1}, {&__pyx_n_s_typing, __pyx_k_typing, sizeof(__pyx_k_typing), 0, 0, 1, 1}, {&__pyx_n_s_ujson, __pyx_k_ujson, sizeof(__pyx_k_ujson), 0, 0, 1, 1}, {&__pyx_kp_u_unknown_dtype_code_in_numpy_pxd, __pyx_k_unknown_dtype_code_in_numpy_pxd, sizeof(__pyx_k_unknown_dtype_code_in_numpy_pxd), 0, 1, 0, 0}, {&__pyx_n_s_update, __pyx_k_update, sizeof(__pyx_k_update), 0, 0, 1, 1}, {&__pyx_n_s_update_id, __pyx_k_update_id, sizeof(__pyx_k_update_id), 0, 0, 1, 1}, {&__pyx_n_u_update_id, __pyx_k_update_id, sizeof(__pyx_k_update_id), 0, 1, 0, 1}, {&__pyx_kp_u_utf_8, __pyx_k_utf_8, sizeof(__pyx_k_utf_8), 0, 1, 0, 0}, {&__pyx_n_s_value, __pyx_k_value, sizeof(__pyx_k_value), 0, 0, 1, 1}, {0, 0, 0, 0, 0, 0, 0} }; static CYTHON_SMALL_CODE int __Pyx_InitCachedBuiltins(void) { __pyx_builtin_any = __Pyx_GetBuiltinName(__pyx_n_s_any); if (!__pyx_builtin_any) __PYX_ERR(0, 34, __pyx_L1_error) __pyx_builtin_TypeError = __Pyx_GetBuiltinName(__pyx_n_s_TypeError); if (!__pyx_builtin_TypeError) __PYX_ERR(1, 2, __pyx_L1_error) __pyx_builtin_ValueError = __Pyx_GetBuiltinName(__pyx_n_s_ValueError); if (!__pyx_builtin_ValueError) __PYX_ERR(2, 272, __pyx_L1_error) __pyx_builtin_range = __Pyx_GetBuiltinName(__pyx_n_s_range); if (!__pyx_builtin_range) __PYX_ERR(2, 285, __pyx_L1_error) __pyx_builtin_RuntimeError = __Pyx_GetBuiltinName(__pyx_n_s_RuntimeError); if (!__pyx_builtin_RuntimeError) __PYX_ERR(2, 856, __pyx_L1_error) __pyx_builtin_ImportError = __Pyx_GetBuiltinName(__pyx_n_s_ImportError); if (!__pyx_builtin_ImportError) __PYX_ERR(2, 1038, __pyx_L1_error) return 0; __pyx_L1_error:; return -1; } static CYTHON_SMALL_CODE int __Pyx_InitCachedConstants(void) { __Pyx_RefNannyDeclarations __Pyx_RefNannySetupContext("__Pyx_InitCachedConstants", 0); /* "(tree fragment)":2 * def __reduce_cython__(self): * raise TypeError("self._ask_book,self._bid_book,self._events cannot be converted to a Python object for pickling") # <<<<<<<<<<<<<< * def __setstate_cython__(self, __pyx_state): * raise TypeError("self._ask_book,self._bid_book,self._events cannot be converted to a Python object for pickling") */ __pyx_tuple_ = PyTuple_Pack(1, __pyx_kp_s_self__ask_book_self__bid_book_se); if (unlikely(!__pyx_tuple_)) __PYX_ERR(1, 2, __pyx_L1_error) __Pyx_GOTREF(__pyx_tuple_); __Pyx_GIVEREF(__pyx_tuple_); /* "(tree fragment)":4 * raise TypeError("self._ask_book,self._bid_book,self._events cannot be converted to a Python object for pickling") * def __setstate_cython__(self, __pyx_state): * raise TypeError("self._ask_book,self._bid_book,self._events cannot be converted to a Python object for pickling") # <<<<<<<<<<<<<< */ __pyx_tuple__2 = PyTuple_Pack(1, __pyx_kp_s_self__ask_book_self__bid_book_se); if (unlikely(!__pyx_tuple__2)) __PYX_ERR(1, 4, __pyx_L1_error) __Pyx_GOTREF(__pyx_tuple__2); __Pyx_GIVEREF(__pyx_tuple__2); /* "../../miniconda3/envs/hummingbot/lib/python3.6/site-packages/Cython/Includes/numpy/__init__.pxd":272 * if ((flags & pybuf.PyBUF_C_CONTIGUOUS == pybuf.PyBUF_C_CONTIGUOUS) * and not PyArray_CHKFLAGS(self, NPY_ARRAY_C_CONTIGUOUS)): * raise ValueError(u"ndarray is not C contiguous") # <<<<<<<<<<<<<< * * if ((flags & pybuf.PyBUF_F_CONTIGUOUS == pybuf.PyBUF_F_CONTIGUOUS) */ __pyx_tuple__3 = PyTuple_Pack(1, __pyx_kp_u_ndarray_is_not_C_contiguous); if (unlikely(!__pyx_tuple__3)) __PYX_ERR(2, 272, __pyx_L1_error) __Pyx_GOTREF(__pyx_tuple__3); __Pyx_GIVEREF(__pyx_tuple__3); /* "../../miniconda3/envs/hummingbot/lib/python3.6/site-packages/Cython/Includes/numpy/__init__.pxd":276 * if ((flags & pybuf.PyBUF_F_CONTIGUOUS == pybuf.PyBUF_F_CONTIGUOUS) * and not PyArray_CHKFLAGS(self, NPY_ARRAY_F_CONTIGUOUS)): * raise ValueError(u"ndarray is not Fortran contiguous") # <<<<<<<<<<<<<< * * info.buf = PyArray_DATA(self) */ __pyx_tuple__4 = PyTuple_Pack(1, __pyx_kp_u_ndarray_is_not_Fortran_contiguou); if (unlikely(!__pyx_tuple__4)) __PYX_ERR(2, 276, __pyx_L1_error) __Pyx_GOTREF(__pyx_tuple__4); __Pyx_GIVEREF(__pyx_tuple__4); /* "../../miniconda3/envs/hummingbot/lib/python3.6/site-packages/Cython/Includes/numpy/__init__.pxd":306 * if ((descr.byteorder == c'>' and little_endian) or * (descr.byteorder == c'<' and not little_endian)): * raise ValueError(u"Non-native byte order not supported") # <<<<<<<<<<<<<< * if t == NPY_BYTE: f = "b" * elif t == NPY_UBYTE: f = "B" */ __pyx_tuple__5 = PyTuple_Pack(1, __pyx_kp_u_Non_native_byte_order_not_suppor); if (unlikely(!__pyx_tuple__5)) __PYX_ERR(2, 306, __pyx_L1_error) __Pyx_GOTREF(__pyx_tuple__5); __Pyx_GIVEREF(__pyx_tuple__5); /* "../../miniconda3/envs/hummingbot/lib/python3.6/site-packages/Cython/Includes/numpy/__init__.pxd":856 * * if (end - f) - <int>(new_offset - offset[0]) < 15: * raise RuntimeError(u"Format string allocated too short, see comment in numpy.pxd") # <<<<<<<<<<<<<< * * if ((child.byteorder == c'>' and little_endian) or */ __pyx_tuple__6 = PyTuple_Pack(1, __pyx_kp_u_Format_string_allocated_too_shor); if (unlikely(!__pyx_tuple__6)) __PYX_ERR(2, 856, __pyx_L1_error) __Pyx_GOTREF(__pyx_tuple__6); __Pyx_GIVEREF(__pyx_tuple__6); /* "../../miniconda3/envs/hummingbot/lib/python3.6/site-packages/Cython/Includes/numpy/__init__.pxd":880 * t = child.type_num * if end - f < 5: * raise RuntimeError(u"Format string allocated too short.") # <<<<<<<<<<<<<< * * # Until ticket #99 is fixed, use integers to avoid warnings */ __pyx_tuple__7 = PyTuple_Pack(1, __pyx_kp_u_Format_string_allocated_too_shor_2); if (unlikely(!__pyx_tuple__7)) __PYX_ERR(2, 880, __pyx_L1_error) __Pyx_GOTREF(__pyx_tuple__7); __Pyx_GIVEREF(__pyx_tuple__7); /* "../../miniconda3/envs/hummingbot/lib/python3.6/site-packages/Cython/Includes/numpy/__init__.pxd":1038 * _import_array() * except Exception: * raise ImportError("numpy.core.multiarray failed to import") # <<<<<<<<<<<<<< * * cdef inline int import_umath() except -1: */ __pyx_tuple__8 = PyTuple_Pack(1, __pyx_kp_u_numpy_core_multiarray_failed_to); if (unlikely(!__pyx_tuple__8)) __PYX_ERR(2, 1038, __pyx_L1_error) __Pyx_GOTREF(__pyx_tuple__8); __Pyx_GIVEREF(__pyx_tuple__8); /* "../../miniconda3/envs/hummingbot/lib/python3.6/site-packages/Cython/Includes/numpy/__init__.pxd":1044 * _import_umath() * except Exception: * raise ImportError("numpy.core.umath failed to import") # <<<<<<<<<<<<<< * * cdef inline int import_ufunc() except -1: */ __pyx_tuple__9 = PyTuple_Pack(1, __pyx_kp_u_numpy_core_umath_failed_to_impor); if (unlikely(!__pyx_tuple__9)) __PYX_ERR(2, 1044, __pyx_L1_error) __Pyx_GOTREF(__pyx_tuple__9); __Pyx_GIVEREF(__pyx_tuple__9); __Pyx_RefNannyFinishContext(); return 0; __pyx_L1_error:; __Pyx_RefNannyFinishContext(); return -1; } static CYTHON_SMALL_CODE int __Pyx_InitGlobals(void) { if (__Pyx_InitStrings(__pyx_string_tab) < 0) __PYX_ERR(0, 1, __pyx_L1_error); __pyx_float_1eneg_3 = PyFloat_FromDouble(1e-3); if (unlikely(!__pyx_float_1eneg_3)) __PYX_ERR(0, 1, __pyx_L1_error) __pyx_float_1eneg_9 = PyFloat_FromDouble(1e-9); if (unlikely(!__pyx_float_1eneg_9)) __PYX_ERR(0, 1, __pyx_L1_error) return 0; __pyx_L1_error:; return -1; } static CYTHON_SMALL_CODE int __Pyx_modinit_global_init_code(void); /*proto*/ static CYTHON_SMALL_CODE int __Pyx_modinit_variable_export_code(void); /*proto*/ static CYTHON_SMALL_CODE int __Pyx_modinit_function_export_code(void); /*proto*/ static CYTHON_SMALL_CODE int __Pyx_modinit_type_init_code(void); /*proto*/ static CYTHON_SMALL_CODE int __Pyx_modinit_type_import_code(void); /*proto*/ static CYTHON_SMALL_CODE int __Pyx_modinit_variable_import_code(void); /*proto*/ static CYTHON_SMALL_CODE int __Pyx_modinit_function_import_code(void); /*proto*/ static int __Pyx_modinit_global_init_code(void) { __Pyx_RefNannyDeclarations __Pyx_RefNannySetupContext("__Pyx_modinit_global_init_code", 0); /*--- Global init code ---*/ __Pyx_RefNannyFinishContext(); return 0; } static int __Pyx_modinit_variable_export_code(void) { __Pyx_RefNannyDeclarations __Pyx_RefNannySetupContext("__Pyx_modinit_variable_export_code", 0); /*--- Variable export code ---*/ __Pyx_RefNannyFinishContext(); return 0; } static int __Pyx_modinit_function_export_code(void) { __Pyx_RefNannyDeclarations __Pyx_RefNannySetupContext("__Pyx_modinit_function_export_code", 0); /*--- Function export code ---*/ __Pyx_RefNannyFinishContext(); return 0; } static int __Pyx_modinit_type_init_code(void) { __Pyx_RefNannyDeclarations PyObject *__pyx_t_1 = NULL; __Pyx_RefNannySetupContext("__Pyx_modinit_type_init_code", 0); /*--- Type init code ---*/ __pyx_t_1 = PyImport_ImportModule("hummingbot.core.data_type.order_book"); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 1, __pyx_L1_error) __Pyx_GOTREF(__pyx_t_1); __pyx_ptype_10hummingbot_4core_9data_type_10order_book_OrderBook = __Pyx_ImportType(__pyx_t_1, "hummingbot.core.data_type.order_book", "OrderBook", sizeof(struct __pyx_obj_10hummingbot_4core_9data_type_10order_book_OrderBook), __Pyx_ImportType_CheckSize_Warn); if (!__pyx_ptype_10hummingbot_4core_9data_type_10order_book_OrderBook) __PYX_ERR(0, 1, __pyx_L1_error) __pyx_vtabptr_10hummingbot_4core_9data_type_10order_book_OrderBook = (struct __pyx_vtabstruct_10hummingbot_4core_9data_type_10order_book_OrderBook*)__Pyx_GetVtable(__pyx_ptype_10hummingbot_4core_9data_type_10order_book_OrderBook->tp_dict); if (unlikely(!__pyx_vtabptr_10hummingbot_4core_9data_type_10order_book_OrderBook)) __PYX_ERR(0, 1, __pyx_L1_error) __pyx_vtabptr_10hummingbot_6market_6kucoin_17kucoin_order_book_KucoinOrderBook = &__pyx_vtable_10hummingbot_6market_6kucoin_17kucoin_order_book_KucoinOrderBook; __pyx_vtable_10hummingbot_6market_6kucoin_17kucoin_order_book_KucoinOrderBook.__pyx_base = *__pyx_vtabptr_10hummingbot_4core_9data_type_10order_book_OrderBook; __pyx_type_10hummingbot_6market_6kucoin_17kucoin_order_book_KucoinOrderBook.tp_base = __pyx_ptype_10hummingbot_4core_9data_type_10order_book_OrderBook; if (PyType_Ready(&__pyx_type_10hummingbot_6market_6kucoin_17kucoin_order_book_KucoinOrderBook) < 0) __PYX_ERR(0, 24, __pyx_L1_error) __pyx_type_10hummingbot_6market_6kucoin_17kucoin_order_book_KucoinOrderBook.tp_print = 0; if ((CYTHON_USE_TYPE_SLOTS && CYTHON_USE_PYTYPE_LOOKUP) && likely(!__pyx_type_10hummingbot_6market_6kucoin_17kucoin_order_book_KucoinOrderBook.tp_dictoffset && __pyx_type_10hummingbot_6market_6kucoin_17kucoin_order_book_KucoinOrderBook.tp_getattro == PyObject_GenericGetAttr)) { __pyx_type_10hummingbot_6market_6kucoin_17kucoin_order_book_KucoinOrderBook.tp_getattro = __Pyx_PyObject_GenericGetAttr; } if (__Pyx_SetVtable(__pyx_type_10hummingbot_6market_6kucoin_17kucoin_order_book_KucoinOrderBook.tp_dict, __pyx_vtabptr_10hummingbot_6market_6kucoin_17kucoin_order_book_KucoinOrderBook) < 0) __PYX_ERR(0, 24, __pyx_L1_error) if (PyObject_SetAttr(__pyx_m, __pyx_n_s_KucoinOrderBook, (PyObject *)&__pyx_type_10hummingbot_6market_6kucoin_17kucoin_order_book_KucoinOrderBook) < 0) __PYX_ERR(0, 24, __pyx_L1_error) if (__pyx_type_10hummingbot_6market_6kucoin_17kucoin_order_book_KucoinOrderBook.tp_weaklistoffset == 0) __pyx_type_10hummingbot_6market_6kucoin_17kucoin_order_book_KucoinOrderBook.tp_weaklistoffset = offsetof(struct __pyx_obj_10hummingbot_6market_6kucoin_17kucoin_order_book_KucoinOrderBook, __pyx_base.__pyx_base.__weakref__); if (__Pyx_setup_reduce((PyObject*)&__pyx_type_10hummingbot_6market_6kucoin_17kucoin_order_book_KucoinOrderBook) < 0) __PYX_ERR(0, 24, __pyx_L1_error) __pyx_ptype_10hummingbot_6market_6kucoin_17kucoin_order_book_KucoinOrderBook = &__pyx_type_10hummingbot_6market_6kucoin_17kucoin_order_book_KucoinOrderBook; __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; __Pyx_RefNannyFinishContext(); return 0; __pyx_L1_error:; __Pyx_XDECREF(__pyx_t_1); __Pyx_RefNannyFinishContext(); return -1; } static int __Pyx_modinit_type_import_code(void) { __Pyx_RefNannyDeclarations PyObject *__pyx_t_1 = NULL; __Pyx_RefNannySetupContext("__Pyx_modinit_type_import_code", 0); /*--- Type import code ---*/ __pyx_t_1 = PyImport_ImportModule(__Pyx_BUILTIN_MODULE_NAME); if (unlikely(!__pyx_t_1)) __PYX_ERR(3, 9, __pyx_L1_error) __Pyx_GOTREF(__pyx_t_1); __pyx_ptype_7cpython_4type_type = __Pyx_ImportType(__pyx_t_1, __Pyx_BUILTIN_MODULE_NAME, "type", #if defined(PYPY_VERSION_NUM) && PYPY_VERSION_NUM < 0x050B0000 sizeof(PyTypeObject), #else sizeof(PyHeapTypeObject), #endif __Pyx_ImportType_CheckSize_Warn); if (!__pyx_ptype_7cpython_4type_type) __PYX_ERR(3, 9, __pyx_L1_error) __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; __pyx_t_1 = PyImport_ImportModule("numpy"); if (unlikely(!__pyx_t_1)) __PYX_ERR(2, 206, __pyx_L1_error) __Pyx_GOTREF(__pyx_t_1); __pyx_ptype_5numpy_dtype = __Pyx_ImportType(__pyx_t_1, "numpy", "dtype", sizeof(PyArray_Descr), __Pyx_ImportType_CheckSize_Ignore); if (!__pyx_ptype_5numpy_dtype) __PYX_ERR(2, 206, __pyx_L1_error) __pyx_ptype_5numpy_flatiter = __Pyx_ImportType(__pyx_t_1, "numpy", "flatiter", sizeof(PyArrayIterObject), __Pyx_ImportType_CheckSize_Warn); if (!__pyx_ptype_5numpy_flatiter) __PYX_ERR(2, 229, __pyx_L1_error) __pyx_ptype_5numpy_broadcast = __Pyx_ImportType(__pyx_t_1, "numpy", "broadcast", sizeof(PyArrayMultiIterObject), __Pyx_ImportType_CheckSize_Warn); if (!__pyx_ptype_5numpy_broadcast) __PYX_ERR(2, 233, __pyx_L1_error) __pyx_ptype_5numpy_ndarray = __Pyx_ImportType(__pyx_t_1, "numpy", "ndarray", sizeof(PyArrayObject), __Pyx_ImportType_CheckSize_Ignore); if (!__pyx_ptype_5numpy_ndarray) __PYX_ERR(2, 242, __pyx_L1_error) __pyx_ptype_5numpy_ufunc = __Pyx_ImportType(__pyx_t_1, "numpy", "ufunc", sizeof(PyUFuncObject), __Pyx_ImportType_CheckSize_Warn); if (!__pyx_ptype_5numpy_ufunc) __PYX_ERR(2, 918, __pyx_L1_error) __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; __pyx_t_1 = PyImport_ImportModule("hummingbot.core.event.event_listener"); if (unlikely(!__pyx_t_1)) __PYX_ERR(4, 6, __pyx_L1_error) __Pyx_GOTREF(__pyx_t_1); __pyx_ptype_10hummingbot_4core_5event_14event_listener_EventListener = __Pyx_ImportType(__pyx_t_1, "hummingbot.core.event.event_listener", "EventListener", sizeof(struct __pyx_obj_10hummingbot_4core_5event_14event_listener_EventListener), __Pyx_ImportType_CheckSize_Warn); if (!__pyx_ptype_10hummingbot_4core_5event_14event_listener_EventListener) __PYX_ERR(4, 6, __pyx_L1_error) __pyx_vtabptr_10hummingbot_4core_5event_14event_listener_EventListener = (struct __pyx_vtabstruct_10hummingbot_4core_5event_14event_listener_EventListener*)__Pyx_GetVtable(__pyx_ptype_10hummingbot_4core_5event_14event_listener_EventListener->tp_dict); if (unlikely(!__pyx_vtabptr_10hummingbot_4core_5event_14event_listener_EventListener)) __PYX_ERR(4, 6, __pyx_L1_error) __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; __pyx_t_1 = PyImport_ImportModule("hummingbot.core.pubsub"); if (unlikely(!__pyx_t_1)) __PYX_ERR(5, 17, __pyx_L1_error) __Pyx_GOTREF(__pyx_t_1); __pyx_ptype_10hummingbot_4core_6pubsub_PubSub = __Pyx_ImportType(__pyx_t_1, "hummingbot.core.pubsub", "PubSub", sizeof(struct __pyx_obj_10hummingbot_4core_6pubsub_PubSub), __Pyx_ImportType_CheckSize_Warn); if (!__pyx_ptype_10hummingbot_4core_6pubsub_PubSub) __PYX_ERR(5, 17, __pyx_L1_error) __pyx_vtabptr_10hummingbot_4core_6pubsub_PubSub = (struct __pyx_vtabstruct_10hummingbot_4core_6pubsub_PubSub*)__Pyx_GetVtable(__pyx_ptype_10hummingbot_4core_6pubsub_PubSub->tp_dict); if (unlikely(!__pyx_vtabptr_10hummingbot_4core_6pubsub_PubSub)) __PYX_ERR(5, 17, __pyx_L1_error) __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; __pyx_t_1 = PyImport_ImportModule("hummingbot.core.data_type.order_book_query_result"); if (unlikely(!__pyx_t_1)) __PYX_ERR(6, 3, __pyx_L1_error) __Pyx_GOTREF(__pyx_t_1); __pyx_ptype_10hummingbot_4core_9data_type_23order_book_query_result_OrderBookQueryResult = __Pyx_ImportType(__pyx_t_1, "hummingbot.core.data_type.order_book_query_result", "OrderBookQueryResult", sizeof(struct __pyx_obj_10hummingbot_4core_9data_type_23order_book_query_result_OrderBookQueryResult), __Pyx_ImportType_CheckSize_Warn); if (!__pyx_ptype_10hummingbot_4core_9data_type_23order_book_query_result_OrderBookQueryResult) __PYX_ERR(6, 3, __pyx_L1_error) __pyx_ptype_10hummingbot_4core_9data_type_23order_book_query_result_ClientOrderBookQueryResult = __Pyx_ImportType(__pyx_t_1, "hummingbot.core.data_type.order_book_query_result", "ClientOrderBookQueryResult", sizeof(struct __pyx_obj_10hummingbot_4core_9data_type_23order_book_query_result_ClientOrderBookQueryResult), __Pyx_ImportType_CheckSize_Warn); if (!__pyx_ptype_10hummingbot_4core_9data_type_23order_book_query_result_ClientOrderBookQueryResult) __PYX_ERR(6, 11, __pyx_L1_error) __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; __Pyx_RefNannyFinishContext(); return 0; __pyx_L1_error:; __Pyx_XDECREF(__pyx_t_1); __Pyx_RefNannyFinishContext(); return -1; } static int __Pyx_modinit_variable_import_code(void) { __Pyx_RefNannyDeclarations __Pyx_RefNannySetupContext("__Pyx_modinit_variable_import_code", 0); /*--- Variable import code ---*/ __Pyx_RefNannyFinishContext(); return 0; } static int __Pyx_modinit_function_import_code(void) { __Pyx_RefNannyDeclarations __Pyx_RefNannySetupContext("__Pyx_modinit_function_import_code", 0); /*--- Function import code ---*/ __Pyx_RefNannyFinishContext(); return 0; } #if PY_MAJOR_VERSION < 3 #ifdef CYTHON_NO_PYINIT_EXPORT #define __Pyx_PyMODINIT_FUNC void #else #define __Pyx_PyMODINIT_FUNC PyMODINIT_FUNC #endif #else #ifdef CYTHON_NO_PYINIT_EXPORT #define __Pyx_PyMODINIT_FUNC PyObject * #else #define __Pyx_PyMODINIT_FUNC PyMODINIT_FUNC #endif #endif #if PY_MAJOR_VERSION < 3 __Pyx_PyMODINIT_FUNC initkucoin_order_book(void) CYTHON_SMALL_CODE; /*proto*/ __Pyx_PyMODINIT_FUNC initkucoin_order_book(void) #else __Pyx_PyMODINIT_FUNC PyInit_kucoin_order_book(void) CYTHON_SMALL_CODE; /*proto*/ __Pyx_PyMODINIT_FUNC PyInit_kucoin_order_book(void) #if CYTHON_PEP489_MULTI_PHASE_INIT { return PyModuleDef_Init(&__pyx_moduledef); } static CYTHON_SMALL_CODE int __Pyx_check_single_interpreter(void) { #if PY_VERSION_HEX >= 0x030700A1 static PY_INT64_T main_interpreter_id = -1; PY_INT64_T current_id = PyInterpreterState_GetID(PyThreadState_Get()->interp); if (main_interpreter_id == -1) { main_interpreter_id = current_id; return (unlikely(current_id == -1)) ? -1 : 0; } else if (unlikely(main_interpreter_id != current_id)) #else static PyInterpreterState *main_interpreter = NULL; PyInterpreterState *current_interpreter = PyThreadState_Get()->interp; if (!main_interpreter) { main_interpreter = current_interpreter; } else if (unlikely(main_interpreter != current_interpreter)) #endif { PyErr_SetString( PyExc_ImportError, "Interpreter change detected - this module can only be loaded into one interpreter per process."); return -1; } return 0; } static CYTHON_SMALL_CODE int __Pyx_copy_spec_to_module(PyObject *spec, PyObject *moddict, const char* from_name, const char* to_name, int allow_none) { PyObject *value = PyObject_GetAttrString(spec, from_name); int result = 0; if (likely(value)) { if (allow_none || value != Py_None) { result = PyDict_SetItemString(moddict, to_name, value); } Py_DECREF(value); } else if (PyErr_ExceptionMatches(PyExc_AttributeError)) { PyErr_Clear(); } else { result = -1; } return result; } static CYTHON_SMALL_CODE PyObject* __pyx_pymod_create(PyObject *spec, CYTHON_UNUSED PyModuleDef *def) { PyObject *module = NULL, *moddict, *modname; if (__Pyx_check_single_interpreter()) return NULL; if (__pyx_m) return __Pyx_NewRef(__pyx_m); modname = PyObject_GetAttrString(spec, "name"); if (unlikely(!modname)) goto bad; module = PyModule_NewObject(modname); Py_DECREF(modname); if (unlikely(!module)) goto bad; moddict = PyModule_GetDict(module); if (unlikely(!moddict)) goto bad; if (unlikely(__Pyx_copy_spec_to_module(spec, moddict, "loader", "__loader__", 1) < 0)) goto bad; if (unlikely(__Pyx_copy_spec_to_module(spec, moddict, "origin", "__file__", 1) < 0)) goto bad; if (unlikely(__Pyx_copy_spec_to_module(spec, moddict, "parent", "__package__", 1) < 0)) goto bad; if (unlikely(__Pyx_copy_spec_to_module(spec, moddict, "submodule_search_locations", "__path__", 0) < 0)) goto bad; return module; bad: Py_XDECREF(module); return NULL; } static CYTHON_SMALL_CODE int __pyx_pymod_exec_kucoin_order_book(PyObject *__pyx_pyinit_module) #endif #endif { PyObject *__pyx_t_1 = NULL; PyObject *__pyx_t_2 = NULL; __Pyx_RefNannyDeclarations #if CYTHON_PEP489_MULTI_PHASE_INIT if (__pyx_m) { if (__pyx_m == __pyx_pyinit_module) return 0; PyErr_SetString(PyExc_RuntimeError, "Module 'kucoin_order_book' has already been imported. Re-initialisation is not supported."); return -1; } #elif PY_MAJOR_VERSION >= 3 if (__pyx_m) return __Pyx_NewRef(__pyx_m); #endif #if CYTHON_REFNANNY __Pyx_RefNanny = __Pyx_RefNannyImportAPI("refnanny"); if (!__Pyx_RefNanny) { PyErr_Clear(); __Pyx_RefNanny = __Pyx_RefNannyImportAPI("Cython.Runtime.refnanny"); if (!__Pyx_RefNanny) Py_FatalError("failed to import 'refnanny' module"); } #endif __Pyx_RefNannySetupContext("__Pyx_PyMODINIT_FUNC PyInit_kucoin_order_book(void)", 0); if (__Pyx_check_binary_version() < 0) __PYX_ERR(0, 1, __pyx_L1_error) #ifdef __Pxy_PyFrame_Initialize_Offsets __Pxy_PyFrame_Initialize_Offsets(); #endif __pyx_empty_tuple = PyTuple_New(0); if (unlikely(!__pyx_empty_tuple)) __PYX_ERR(0, 1, __pyx_L1_error) __pyx_empty_bytes = PyBytes_FromStringAndSize("", 0); if (unlikely(!__pyx_empty_bytes)) __PYX_ERR(0, 1, __pyx_L1_error) __pyx_empty_unicode = PyUnicode_FromStringAndSize("", 0); if (unlikely(!__pyx_empty_unicode)) __PYX_ERR(0, 1, __pyx_L1_error) #ifdef __Pyx_CyFunction_USED if (__pyx_CyFunction_init() < 0) __PYX_ERR(0, 1, __pyx_L1_error) #endif #ifdef __Pyx_FusedFunction_USED if (__pyx_FusedFunction_init() < 0) __PYX_ERR(0, 1, __pyx_L1_error) #endif #ifdef __Pyx_Coroutine_USED if (__pyx_Coroutine_init() < 0) __PYX_ERR(0, 1, __pyx_L1_error) #endif #ifdef __Pyx_Generator_USED if (__pyx_Generator_init() < 0) __PYX_ERR(0, 1, __pyx_L1_error) #endif #ifdef __Pyx_AsyncGen_USED if (__pyx_AsyncGen_init() < 0) __PYX_ERR(0, 1, __pyx_L1_error) #endif #ifdef __Pyx_StopAsyncIteration_USED if (__pyx_StopAsyncIteration_init() < 0) __PYX_ERR(0, 1, __pyx_L1_error) #endif /*--- Library function declarations ---*/ /*--- Threads initialization code ---*/ #if defined(__PYX_FORCE_INIT_THREADS) && __PYX_FORCE_INIT_THREADS #ifdef WITH_THREAD /* Python build with threading support? */ PyEval_InitThreads(); #endif #endif /*--- Module creation code ---*/ #if CYTHON_PEP489_MULTI_PHASE_INIT __pyx_m = __pyx_pyinit_module; Py_INCREF(__pyx_m); #else #if PY_MAJOR_VERSION < 3 __pyx_m = Py_InitModule4("kucoin_order_book", __pyx_methods, 0, 0, PYTHON_API_VERSION); Py_XINCREF(__pyx_m); #else __pyx_m = PyModule_Create(&__pyx_moduledef); #endif if (unlikely(!__pyx_m)) __PYX_ERR(0, 1, __pyx_L1_error) #endif __pyx_d = PyModule_GetDict(__pyx_m); if (unlikely(!__pyx_d)) __PYX_ERR(0, 1, __pyx_L1_error) Py_INCREF(__pyx_d); __pyx_b = PyImport_AddModule(__Pyx_BUILTIN_MODULE_NAME); if (unlikely(!__pyx_b)) __PYX_ERR(0, 1, __pyx_L1_error) __pyx_cython_runtime = PyImport_AddModule((char *) "cython_runtime"); if (unlikely(!__pyx_cython_runtime)) __PYX_ERR(0, 1, __pyx_L1_error) #if CYTHON_COMPILING_IN_PYPY Py_INCREF(__pyx_b); #endif if (PyObject_SetAttrString(__pyx_m, "__builtins__", __pyx_b) < 0) __PYX_ERR(0, 1, __pyx_L1_error); /*--- Initialize various global constants etc. ---*/ if (__Pyx_InitGlobals() < 0) __PYX_ERR(0, 1, __pyx_L1_error) #if PY_MAJOR_VERSION < 3 && (__PYX_DEFAULT_STRING_ENCODING_IS_ASCII || __PYX_DEFAULT_STRING_ENCODING_IS_DEFAULT) if (__Pyx_init_sys_getdefaultencoding_params() < 0) __PYX_ERR(0, 1, __pyx_L1_error) #endif if (__pyx_module_is_main_hummingbot__market__kucoin__kucoin_order_book) { if (PyObject_SetAttr(__pyx_m, __pyx_n_s_name, __pyx_n_s_main) < 0) __PYX_ERR(0, 1, __pyx_L1_error) } #if PY_MAJOR_VERSION >= 3 { PyObject *modules = PyImport_GetModuleDict(); if (unlikely(!modules)) __PYX_ERR(0, 1, __pyx_L1_error) if (!PyDict_GetItemString(modules, "hummingbot.market.kucoin.kucoin_order_book")) { if (unlikely(PyDict_SetItemString(modules, "hummingbot.market.kucoin.kucoin_order_book", __pyx_m) < 0)) __PYX_ERR(0, 1, __pyx_L1_error) } } #endif /*--- Builtin init code ---*/ if (__Pyx_InitCachedBuiltins() < 0) __PYX_ERR(0, 1, __pyx_L1_error) /*--- Constants init code ---*/ if (__Pyx_InitCachedConstants() < 0) __PYX_ERR(0, 1, __pyx_L1_error) /*--- Global type/function init code ---*/ (void)__Pyx_modinit_global_init_code(); (void)__Pyx_modinit_variable_export_code(); (void)__Pyx_modinit_function_export_code(); if (unlikely(__Pyx_modinit_type_init_code() != 0)) goto __pyx_L1_error; if (unlikely(__Pyx_modinit_type_import_code() != 0)) goto __pyx_L1_error; (void)__Pyx_modinit_variable_import_code(); (void)__Pyx_modinit_function_import_code(); /*--- Execution code ---*/ #if defined(__Pyx_Generator_USED) || defined(__Pyx_Coroutine_USED) if (__Pyx_patch_abc() < 0) __PYX_ERR(0, 1, __pyx_L1_error) #endif /* "hummingbot/market/kucoin/kucoin_order_book.pyx":2 * #!/usr/bin/env python * import logging # <<<<<<<<<<<<<< * from typing import ( * Dict, */ __pyx_t_1 = __Pyx_Import(__pyx_n_s_logging, 0, 0); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 2, __pyx_L1_error) __Pyx_GOTREF(__pyx_t_1); if (PyDict_SetItem(__pyx_d, __pyx_n_s_logging, __pyx_t_1) < 0) __PYX_ERR(0, 2, __pyx_L1_error) __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; /* "hummingbot/market/kucoin/kucoin_order_book.pyx":4 * import logging * from typing import ( * Dict, # <<<<<<<<<<<<<< * Optional * ) */ __pyx_t_1 = PyList_New(2); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 4, __pyx_L1_error) __Pyx_GOTREF(__pyx_t_1); __Pyx_INCREF(__pyx_n_s_Dict); __Pyx_GIVEREF(__pyx_n_s_Dict); PyList_SET_ITEM(__pyx_t_1, 0, __pyx_n_s_Dict); __Pyx_INCREF(__pyx_n_s_Optional); __Pyx_GIVEREF(__pyx_n_s_Optional); PyList_SET_ITEM(__pyx_t_1, 1, __pyx_n_s_Optional); /* "hummingbot/market/kucoin/kucoin_order_book.pyx":3 * #!/usr/bin/env python * import logging * from typing import ( # <<<<<<<<<<<<<< * Dict, * Optional */ __pyx_t_2 = __Pyx_Import(__pyx_n_s_typing, __pyx_t_1, 0); if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 3, __pyx_L1_error) __Pyx_GOTREF(__pyx_t_2); __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; __pyx_t_1 = __Pyx_ImportFrom(__pyx_t_2, __pyx_n_s_Dict); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 3, __pyx_L1_error) __Pyx_GOTREF(__pyx_t_1); if (PyDict_SetItem(__pyx_d, __pyx_n_s_Dict, __pyx_t_1) < 0) __PYX_ERR(0, 4, __pyx_L1_error) __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; __pyx_t_1 = __Pyx_ImportFrom(__pyx_t_2, __pyx_n_s_Optional); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 3, __pyx_L1_error) __Pyx_GOTREF(__pyx_t_1); if (PyDict_SetItem(__pyx_d, __pyx_n_s_Optional, __pyx_t_1) < 0) __PYX_ERR(0, 5, __pyx_L1_error) __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0; /* "hummingbot/market/kucoin/kucoin_order_book.pyx":7 * Optional * ) * import ujson # <<<<<<<<<<<<<< * * from aiokafka import ConsumerRecord */ __pyx_t_2 = __Pyx_Import(__pyx_n_s_ujson, 0, 0); if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 7, __pyx_L1_error) __Pyx_GOTREF(__pyx_t_2); if (PyDict_SetItem(__pyx_d, __pyx_n_s_ujson, __pyx_t_2) < 0) __PYX_ERR(0, 7, __pyx_L1_error) __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0; /* "hummingbot/market/kucoin/kucoin_order_book.pyx":9 * import ujson * * from aiokafka import ConsumerRecord # <<<<<<<<<<<<<< * from sqlalchemy.engine import RowProxy * */ __pyx_t_2 = PyList_New(1); if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 9, __pyx_L1_error) __Pyx_GOTREF(__pyx_t_2); __Pyx_INCREF(__pyx_n_s_ConsumerRecord); __Pyx_GIVEREF(__pyx_n_s_ConsumerRecord); PyList_SET_ITEM(__pyx_t_2, 0, __pyx_n_s_ConsumerRecord); __pyx_t_1 = __Pyx_Import(__pyx_n_s_aiokafka, __pyx_t_2, 0); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 9, __pyx_L1_error) __Pyx_GOTREF(__pyx_t_1); __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0; __pyx_t_2 = __Pyx_ImportFrom(__pyx_t_1, __pyx_n_s_ConsumerRecord); if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 9, __pyx_L1_error) __Pyx_GOTREF(__pyx_t_2); if (PyDict_SetItem(__pyx_d, __pyx_n_s_ConsumerRecord, __pyx_t_2) < 0) __PYX_ERR(0, 9, __pyx_L1_error) __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0; __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; /* "hummingbot/market/kucoin/kucoin_order_book.pyx":10 * * from aiokafka import ConsumerRecord * from sqlalchemy.engine import RowProxy # <<<<<<<<<<<<<< * * from hummingbot.logger import HummingbotLogger */ __pyx_t_1 = PyList_New(1); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 10, __pyx_L1_error) __Pyx_GOTREF(__pyx_t_1); __Pyx_INCREF(__pyx_n_s_RowProxy); __Pyx_GIVEREF(__pyx_n_s_RowProxy); PyList_SET_ITEM(__pyx_t_1, 0, __pyx_n_s_RowProxy); __pyx_t_2 = __Pyx_Import(__pyx_n_s_sqlalchemy_engine, __pyx_t_1, 0); if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 10, __pyx_L1_error) __Pyx_GOTREF(__pyx_t_2); __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; __pyx_t_1 = __Pyx_ImportFrom(__pyx_t_2, __pyx_n_s_RowProxy); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 10, __pyx_L1_error) __Pyx_GOTREF(__pyx_t_1); if (PyDict_SetItem(__pyx_d, __pyx_n_s_RowProxy, __pyx_t_1) < 0) __PYX_ERR(0, 10, __pyx_L1_error) __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0; /* "hummingbot/market/kucoin/kucoin_order_book.pyx":12 * from sqlalchemy.engine import RowProxy * * from hummingbot.logger import HummingbotLogger # <<<<<<<<<<<<<< * from hummingbot.core.event.events import TradeType * from hummingbot.core.data_type.order_book cimport OrderBook */ __pyx_t_2 = PyList_New(1); if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 12, __pyx_L1_error) __Pyx_GOTREF(__pyx_t_2); __Pyx_INCREF(__pyx_n_s_HummingbotLogger); __Pyx_GIVEREF(__pyx_n_s_HummingbotLogger); PyList_SET_ITEM(__pyx_t_2, 0, __pyx_n_s_HummingbotLogger); __pyx_t_1 = __Pyx_Import(__pyx_n_s_hummingbot_logger, __pyx_t_2, 0); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 12, __pyx_L1_error) __Pyx_GOTREF(__pyx_t_1); __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0; __pyx_t_2 = __Pyx_ImportFrom(__pyx_t_1, __pyx_n_s_HummingbotLogger); if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 12, __pyx_L1_error) __Pyx_GOTREF(__pyx_t_2); if (PyDict_SetItem(__pyx_d, __pyx_n_s_HummingbotLogger, __pyx_t_2) < 0) __PYX_ERR(0, 12, __pyx_L1_error) __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0; __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; /* "hummingbot/market/kucoin/kucoin_order_book.pyx":13 * * from hummingbot.logger import HummingbotLogger * from hummingbot.core.event.events import TradeType # <<<<<<<<<<<<<< * from hummingbot.core.data_type.order_book cimport OrderBook * from hummingbot.core.data_type.order_book_message import ( */ __pyx_t_1 = PyList_New(1); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 13, __pyx_L1_error) __Pyx_GOTREF(__pyx_t_1); __Pyx_INCREF(__pyx_n_s_TradeType); __Pyx_GIVEREF(__pyx_n_s_TradeType); PyList_SET_ITEM(__pyx_t_1, 0, __pyx_n_s_TradeType); __pyx_t_2 = __Pyx_Import(__pyx_n_s_hummingbot_core_event_events, __pyx_t_1, 0); if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 13, __pyx_L1_error) __Pyx_GOTREF(__pyx_t_2); __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; __pyx_t_1 = __Pyx_ImportFrom(__pyx_t_2, __pyx_n_s_TradeType); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 13, __pyx_L1_error) __Pyx_GOTREF(__pyx_t_1); if (PyDict_SetItem(__pyx_d, __pyx_n_s_TradeType, __pyx_t_1) < 0) __PYX_ERR(0, 13, __pyx_L1_error) __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0; /* "hummingbot/market/kucoin/kucoin_order_book.pyx":16 * from hummingbot.core.data_type.order_book cimport OrderBook * from hummingbot.core.data_type.order_book_message import ( * OrderBookMessage, # <<<<<<<<<<<<<< * OrderBookMessageType * ) */ __pyx_t_2 = PyList_New(2); if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 16, __pyx_L1_error) __Pyx_GOTREF(__pyx_t_2); __Pyx_INCREF(__pyx_n_s_OrderBookMessage); __Pyx_GIVEREF(__pyx_n_s_OrderBookMessage); PyList_SET_ITEM(__pyx_t_2, 0, __pyx_n_s_OrderBookMessage); __Pyx_INCREF(__pyx_n_s_OrderBookMessageType); __Pyx_GIVEREF(__pyx_n_s_OrderBookMessageType); PyList_SET_ITEM(__pyx_t_2, 1, __pyx_n_s_OrderBookMessageType); /* "hummingbot/market/kucoin/kucoin_order_book.pyx":15 * from hummingbot.core.event.events import TradeType * from hummingbot.core.data_type.order_book cimport OrderBook * from hummingbot.core.data_type.order_book_message import ( # <<<<<<<<<<<<<< * OrderBookMessage, * OrderBookMessageType */ __pyx_t_1 = __Pyx_Import(__pyx_n_s_hummingbot_core_data_type_order, __pyx_t_2, 0); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 15, __pyx_L1_error) __Pyx_GOTREF(__pyx_t_1); __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0; __pyx_t_2 = __Pyx_ImportFrom(__pyx_t_1, __pyx_n_s_OrderBookMessage); if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 15, __pyx_L1_error) __Pyx_GOTREF(__pyx_t_2); if (PyDict_SetItem(__pyx_d, __pyx_n_s_OrderBookMessage, __pyx_t_2) < 0) __PYX_ERR(0, 16, __pyx_L1_error) __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0; __pyx_t_2 = __Pyx_ImportFrom(__pyx_t_1, __pyx_n_s_OrderBookMessageType); if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 15, __pyx_L1_error) __Pyx_GOTREF(__pyx_t_2); if (PyDict_SetItem(__pyx_d, __pyx_n_s_OrderBookMessageType, __pyx_t_2) < 0) __PYX_ERR(0, 17, __pyx_L1_error) __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0; __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; /* "hummingbot/market/kucoin/kucoin_order_book.pyx":19 * OrderBookMessageType * ) * from hummingbot.market.kucoin.kucoin_order_book_message import KucoinOrderBookMessage # <<<<<<<<<<<<<< * * _kob_logger = None */ __pyx_t_1 = PyList_New(1); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 19, __pyx_L1_error) __Pyx_GOTREF(__pyx_t_1); __Pyx_INCREF(__pyx_n_s_KucoinOrderBookMessage); __Pyx_GIVEREF(__pyx_n_s_KucoinOrderBookMessage); PyList_SET_ITEM(__pyx_t_1, 0, __pyx_n_s_KucoinOrderBookMessage); __pyx_t_2 = __Pyx_Import(__pyx_n_s_hummingbot_market_kucoin_kucoin, __pyx_t_1, 0); if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 19, __pyx_L1_error) __Pyx_GOTREF(__pyx_t_2); __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; __pyx_t_1 = __Pyx_ImportFrom(__pyx_t_2, __pyx_n_s_KucoinOrderBookMessage); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 19, __pyx_L1_error) __Pyx_GOTREF(__pyx_t_1); if (PyDict_SetItem(__pyx_d, __pyx_n_s_KucoinOrderBookMessage, __pyx_t_1) < 0) __PYX_ERR(0, 19, __pyx_L1_error) __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0; /* "hummingbot/market/kucoin/kucoin_order_book.pyx":21 * from hummingbot.market.kucoin.kucoin_order_book_message import KucoinOrderBookMessage * * _kob_logger = None # <<<<<<<<<<<<<< * * */ if (PyDict_SetItem(__pyx_d, __pyx_n_s_kob_logger, Py_None) < 0) __PYX_ERR(0, 21, __pyx_L1_error) /* "hummingbot/market/kucoin/kucoin_order_book.pyx":26 * cdef class KucoinOrderBook(OrderBook): * @classmethod * def logger(cls) -> HummingbotLogger: # <<<<<<<<<<<<<< * global _kob_logger * if _kob_logger is None: */ __Pyx_GetNameInClass(__pyx_t_2, (PyObject *)__pyx_ptype_10hummingbot_6market_6kucoin_17kucoin_order_book_KucoinOrderBook, __pyx_n_s_logger); if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 26, __pyx_L1_error) __Pyx_GOTREF(__pyx_t_2); /* "hummingbot/market/kucoin/kucoin_order_book.pyx":25 * * cdef class KucoinOrderBook(OrderBook): * @classmethod # <<<<<<<<<<<<<< * def logger(cls) -> HummingbotLogger: * global _kob_logger */ __pyx_t_1 = __Pyx_Method_ClassMethod(__pyx_t_2); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 25, __pyx_L1_error) __Pyx_GOTREF(__pyx_t_1); __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0; if (PyDict_SetItem((PyObject *)__pyx_ptype_10hummingbot_6market_6kucoin_17kucoin_order_book_KucoinOrderBook->tp_dict, __pyx_n_s_logger, __pyx_t_1) < 0) __PYX_ERR(0, 26, __pyx_L1_error) __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; PyType_Modified(__pyx_ptype_10hummingbot_6market_6kucoin_17kucoin_order_book_KucoinOrderBook); /* "hummingbot/market/kucoin/kucoin_order_book.pyx":33 * * @classmethod * def snapshot_message_from_exchange(cls, # <<<<<<<<<<<<<< * msg: Dict[str, any], * timestamp: float, */ __Pyx_GetNameInClass(__pyx_t_1, (PyObject *)__pyx_ptype_10hummingbot_6market_6kucoin_17kucoin_order_book_KucoinOrderBook, __pyx_n_s_snapshot_message_from_exchange); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 33, __pyx_L1_error) __Pyx_GOTREF(__pyx_t_1); /* "hummingbot/market/kucoin/kucoin_order_book.pyx":32 * return _kob_logger * * @classmethod # <<<<<<<<<<<<<< * def snapshot_message_from_exchange(cls, * msg: Dict[str, any], */ __pyx_t_2 = __Pyx_Method_ClassMethod(__pyx_t_1); if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 32, __pyx_L1_error) __Pyx_GOTREF(__pyx_t_2); __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; if (PyDict_SetItem((PyObject *)__pyx_ptype_10hummingbot_6market_6kucoin_17kucoin_order_book_KucoinOrderBook->tp_dict, __pyx_n_s_snapshot_message_from_exchange, __pyx_t_2) < 0) __PYX_ERR(0, 33, __pyx_L1_error) __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0; PyType_Modified(__pyx_ptype_10hummingbot_6market_6kucoin_17kucoin_order_book_KucoinOrderBook); /* "hummingbot/market/kucoin/kucoin_order_book.pyx":47 * * @classmethod * def diff_message_from_exchange(cls, # <<<<<<<<<<<<<< * msg: Dict[str, any], * timestamp: Optional[float] = None, */ __Pyx_GetNameInClass(__pyx_t_2, (PyObject *)__pyx_ptype_10hummingbot_6market_6kucoin_17kucoin_order_book_KucoinOrderBook, __pyx_n_s_diff_message_from_exchange); if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 47, __pyx_L1_error) __Pyx_GOTREF(__pyx_t_2); /* "hummingbot/market/kucoin/kucoin_order_book.pyx":46 * }, timestamp=timestamp) * * @classmethod # <<<<<<<<<<<<<< * def diff_message_from_exchange(cls, * msg: Dict[str, any], */ __pyx_t_1 = __Pyx_Method_ClassMethod(__pyx_t_2); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 46, __pyx_L1_error) __Pyx_GOTREF(__pyx_t_1); __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0; if (PyDict_SetItem((PyObject *)__pyx_ptype_10hummingbot_6market_6kucoin_17kucoin_order_book_KucoinOrderBook->tp_dict, __pyx_n_s_diff_message_from_exchange, __pyx_t_1) < 0) __PYX_ERR(0, 47, __pyx_L1_error) __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; PyType_Modified(__pyx_ptype_10hummingbot_6market_6kucoin_17kucoin_order_book_KucoinOrderBook); /* "hummingbot/market/kucoin/kucoin_order_book.pyx":61 * * @classmethod * def snapshot_message_from_db(cls, record: RowProxy, metadata: Optional[Dict] = None) -> OrderBookMessage: # <<<<<<<<<<<<<< * ts = record["timestamp"] * msg = record["json"] if type(record["json"]) == dict else ujson.loads(record["json"]) */ __Pyx_GetNameInClass(__pyx_t_1, (PyObject *)__pyx_ptype_10hummingbot_6market_6kucoin_17kucoin_order_book_KucoinOrderBook, __pyx_n_s_snapshot_message_from_db); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 61, __pyx_L1_error) __Pyx_GOTREF(__pyx_t_1); /* "hummingbot/market/kucoin/kucoin_order_book.pyx":60 * }, timestamp=timestamp) * * @classmethod # <<<<<<<<<<<<<< * def snapshot_message_from_db(cls, record: RowProxy, metadata: Optional[Dict] = None) -> OrderBookMessage: * ts = record["timestamp"] */ __pyx_t_2 = __Pyx_Method_ClassMethod(__pyx_t_1); if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 60, __pyx_L1_error) __Pyx_GOTREF(__pyx_t_2); __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; if (PyDict_SetItem((PyObject *)__pyx_ptype_10hummingbot_6market_6kucoin_17kucoin_order_book_KucoinOrderBook->tp_dict, __pyx_n_s_snapshot_message_from_db, __pyx_t_2) < 0) __PYX_ERR(0, 61, __pyx_L1_error) __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0; PyType_Modified(__pyx_ptype_10hummingbot_6market_6kucoin_17kucoin_order_book_KucoinOrderBook); /* "hummingbot/market/kucoin/kucoin_order_book.pyx":74 * * @classmethod * def diff_message_from_db(cls, record: RowProxy, metadata: Optional[Dict] = None) -> OrderBookMessage: # <<<<<<<<<<<<<< * ts = record["timestamp"] * msg = ujson.loads(record["json"]) # Kucoin json in DB is TEXT */ __Pyx_GetNameInClass(__pyx_t_2, (PyObject *)__pyx_ptype_10hummingbot_6market_6kucoin_17kucoin_order_book_KucoinOrderBook, __pyx_n_s_diff_message_from_db); if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 74, __pyx_L1_error) __Pyx_GOTREF(__pyx_t_2); /* "hummingbot/market/kucoin/kucoin_order_book.pyx":73 * }, timestamp=record["timestamp"] * 1e-3) * * @classmethod # <<<<<<<<<<<<<< * def diff_message_from_db(cls, record: RowProxy, metadata: Optional[Dict] = None) -> OrderBookMessage: * ts = record["timestamp"] */ __pyx_t_1 = __Pyx_Method_ClassMethod(__pyx_t_2); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 73, __pyx_L1_error) __Pyx_GOTREF(__pyx_t_1); __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0; if (PyDict_SetItem((PyObject *)__pyx_ptype_10hummingbot_6market_6kucoin_17kucoin_order_book_KucoinOrderBook->tp_dict, __pyx_n_s_diff_message_from_db, __pyx_t_1) < 0) __PYX_ERR(0, 74, __pyx_L1_error) __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; PyType_Modified(__pyx_ptype_10hummingbot_6market_6kucoin_17kucoin_order_book_KucoinOrderBook); /* "hummingbot/market/kucoin/kucoin_order_book.pyx":87 * * @classmethod * def snapshot_message_from_kafka(cls, record: ConsumerRecord, metadata: Optional[Dict] = None) -> OrderBookMessage: # <<<<<<<<<<<<<< * ts = record.timestamp * msg = ujson.loads(record.value.decode("utf-8")) */ __Pyx_GetNameInClass(__pyx_t_1, (PyObject *)__pyx_ptype_10hummingbot_6market_6kucoin_17kucoin_order_book_KucoinOrderBook, __pyx_n_s_snapshot_message_from_kafka); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 87, __pyx_L1_error) __Pyx_GOTREF(__pyx_t_1); /* "hummingbot/market/kucoin/kucoin_order_book.pyx":86 * }, timestamp=record["timestamp"] * 1e-3) * * @classmethod # <<<<<<<<<<<<<< * def snapshot_message_from_kafka(cls, record: ConsumerRecord, metadata: Optional[Dict] = None) -> OrderBookMessage: * ts = record.timestamp */ __pyx_t_2 = __Pyx_Method_ClassMethod(__pyx_t_1); if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 86, __pyx_L1_error) __Pyx_GOTREF(__pyx_t_2); __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; if (PyDict_SetItem((PyObject *)__pyx_ptype_10hummingbot_6market_6kucoin_17kucoin_order_book_KucoinOrderBook->tp_dict, __pyx_n_s_snapshot_message_from_kafka, __pyx_t_2) < 0) __PYX_ERR(0, 87, __pyx_L1_error) __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0; PyType_Modified(__pyx_ptype_10hummingbot_6market_6kucoin_17kucoin_order_book_KucoinOrderBook); /* "hummingbot/market/kucoin/kucoin_order_book.pyx":100 * * @classmethod * def diff_message_from_kafka(cls, record: ConsumerRecord, metadata: Optional[Dict] = None) -> OrderBookMessage: # <<<<<<<<<<<<<< * msg = ujson.loads(record.value.decode("utf-8")) * if metadata: */ __Pyx_GetNameInClass(__pyx_t_2, (PyObject *)__pyx_ptype_10hummingbot_6market_6kucoin_17kucoin_order_book_KucoinOrderBook, __pyx_n_s_diff_message_from_kafka); if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 100, __pyx_L1_error) __Pyx_GOTREF(__pyx_t_2); /* "hummingbot/market/kucoin/kucoin_order_book.pyx":99 * }, timestamp=record.timestamp * 1e-3) * * @classmethod # <<<<<<<<<<<<<< * def diff_message_from_kafka(cls, record: ConsumerRecord, metadata: Optional[Dict] = None) -> OrderBookMessage: * msg = ujson.loads(record.value.decode("utf-8")) */ __pyx_t_1 = __Pyx_Method_ClassMethod(__pyx_t_2); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 99, __pyx_L1_error) __Pyx_GOTREF(__pyx_t_1); __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0; if (PyDict_SetItem((PyObject *)__pyx_ptype_10hummingbot_6market_6kucoin_17kucoin_order_book_KucoinOrderBook->tp_dict, __pyx_n_s_diff_message_from_kafka, __pyx_t_1) < 0) __PYX_ERR(0, 100, __pyx_L1_error) __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; PyType_Modified(__pyx_ptype_10hummingbot_6market_6kucoin_17kucoin_order_book_KucoinOrderBook); /* "hummingbot/market/kucoin/kucoin_order_book.pyx":113 * * @classmethod * def trade_message_from_db(cls, record: RowProxy, metadata: Optional[Dict] = None): # <<<<<<<<<<<<<< * msg = record["json"] * if metadata: */ __Pyx_GetNameInClass(__pyx_t_1, (PyObject *)__pyx_ptype_10hummingbot_6market_6kucoin_17kucoin_order_book_KucoinOrderBook, __pyx_n_s_trade_message_from_db); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 113, __pyx_L1_error) __Pyx_GOTREF(__pyx_t_1); /* "hummingbot/market/kucoin/kucoin_order_book.pyx":112 * }, timestamp=record.timestamp * 1e-3) * * @classmethod # <<<<<<<<<<<<<< * def trade_message_from_db(cls, record: RowProxy, metadata: Optional[Dict] = None): * msg = record["json"] */ __pyx_t_2 = __Pyx_Method_ClassMethod(__pyx_t_1); if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 112, __pyx_L1_error) __Pyx_GOTREF(__pyx_t_2); __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; if (PyDict_SetItem((PyObject *)__pyx_ptype_10hummingbot_6market_6kucoin_17kucoin_order_book_KucoinOrderBook->tp_dict, __pyx_n_s_trade_message_from_db, __pyx_t_2) < 0) __PYX_ERR(0, 113, __pyx_L1_error) __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0; PyType_Modified(__pyx_ptype_10hummingbot_6market_6kucoin_17kucoin_order_book_KucoinOrderBook); /* "hummingbot/market/kucoin/kucoin_order_book.pyx":128 * * @classmethod * def trade_message_from_exchange(cls, msg: Dict[str, any], metadata: Optional[Dict] = None): # <<<<<<<<<<<<<< * if metadata: * msg.update(metadata) */ __Pyx_GetNameInClass(__pyx_t_2, (PyObject *)__pyx_ptype_10hummingbot_6market_6kucoin_17kucoin_order_book_KucoinOrderBook, __pyx_n_s_trade_message_from_exchange); if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 128, __pyx_L1_error) __Pyx_GOTREF(__pyx_t_2); /* "hummingbot/market/kucoin/kucoin_order_book.pyx":127 * }, timestamp=record.timestamp * 1e-9) * * @classmethod # <<<<<<<<<<<<<< * def trade_message_from_exchange(cls, msg: Dict[str, any], metadata: Optional[Dict] = None): * if metadata: */ __pyx_t_1 = __Pyx_Method_ClassMethod(__pyx_t_2); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 127, __pyx_L1_error) __Pyx_GOTREF(__pyx_t_1); __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0; if (PyDict_SetItem((PyObject *)__pyx_ptype_10hummingbot_6market_6kucoin_17kucoin_order_book_KucoinOrderBook->tp_dict, __pyx_n_s_trade_message_from_exchange, __pyx_t_1) < 0) __PYX_ERR(0, 128, __pyx_L1_error) __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; PyType_Modified(__pyx_ptype_10hummingbot_6market_6kucoin_17kucoin_order_book_KucoinOrderBook); /* "hummingbot/market/kucoin/kucoin_order_book.pyx":142 * * @classmethod * def from_snapshot(cls, msg: OrderBookMessage) -> "OrderBook": # <<<<<<<<<<<<<< * retval = KucoinOrderBook() * retval.apply_snapshot(msg.bids, msg.asks, msg.update_id) */ __Pyx_GetNameInClass(__pyx_t_1, (PyObject *)__pyx_ptype_10hummingbot_6market_6kucoin_17kucoin_order_book_KucoinOrderBook, __pyx_n_s_from_snapshot); if (unlikely(!__pyx_t_1)) __PYX_ERR(0, 142, __pyx_L1_error) __Pyx_GOTREF(__pyx_t_1); /* "hummingbot/market/kucoin/kucoin_order_book.pyx":141 * }, timestamp=(int(msg["time"]) * 1e-9)) * * @classmethod # <<<<<<<<<<<<<< * def from_snapshot(cls, msg: OrderBookMessage) -> "OrderBook": * retval = KucoinOrderBook() */ __pyx_t_2 = __Pyx_Method_ClassMethod(__pyx_t_1); if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 141, __pyx_L1_error) __Pyx_GOTREF(__pyx_t_2); __Pyx_DECREF(__pyx_t_1); __pyx_t_1 = 0; if (PyDict_SetItem((PyObject *)__pyx_ptype_10hummingbot_6market_6kucoin_17kucoin_order_book_KucoinOrderBook->tp_dict, __pyx_n_s_from_snapshot, __pyx_t_2) < 0) __PYX_ERR(0, 142, __pyx_L1_error) __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0; PyType_Modified(__pyx_ptype_10hummingbot_6market_6kucoin_17kucoin_order_book_KucoinOrderBook); /* "hummingbot/market/kucoin/kucoin_order_book.pyx":1 * #!/usr/bin/env python # <<<<<<<<<<<<<< * import logging * from typing import ( */ __pyx_t_2 = __Pyx_PyDict_NewPresized(0); if (unlikely(!__pyx_t_2)) __PYX_ERR(0, 1, __pyx_L1_error) __Pyx_GOTREF(__pyx_t_2); if (PyDict_SetItem(__pyx_d, __pyx_n_s_test, __pyx_t_2) < 0) __PYX_ERR(0, 1, __pyx_L1_error) __Pyx_DECREF(__pyx_t_2); __pyx_t_2 = 0; /* "../../miniconda3/envs/hummingbot/lib/python3.6/site-packages/Cython/Includes/numpy/__init__.pxd":1046 * raise ImportError("numpy.core.umath failed to import") * * cdef inline int import_ufunc() except -1: # <<<<<<<<<<<<<< * try: * _import_umath() */ /*--- Wrapped vars code ---*/ goto __pyx_L0; __pyx_L1_error:; __Pyx_XDECREF(__pyx_t_1); __Pyx_XDECREF(__pyx_t_2); if (__pyx_m) { if (__pyx_d) { __Pyx_AddTraceback("init hummingbot.market.kucoin.kucoin_order_book", __pyx_clineno, __pyx_lineno, __pyx_filename); } Py_CLEAR(__pyx_m); } else if (!PyErr_Occurred()) { PyErr_SetString(PyExc_ImportError, "init hummingbot.market.kucoin.kucoin_order_book"); } __pyx_L0:; __Pyx_RefNannyFinishContext(); #if CYTHON_PEP489_MULTI_PHASE_INIT return (__pyx_m != NULL) ? 0 : -1; #elif PY_MAJOR_VERSION >= 3 return __pyx_m; #else return; #endif } /* --- Runtime support code --- */ /* Refnanny */ #if CYTHON_REFNANNY static __Pyx_RefNannyAPIStruct *__Pyx_RefNannyImportAPI(const char *modname) { PyObject *m = NULL, *p = NULL; void *r = NULL; m = PyImport_ImportModule(modname); if (!m) goto end; p = PyObject_GetAttrString(m, "RefNannyAPI"); if (!p) goto end; r = PyLong_AsVoidPtr(p); end: Py_XDECREF(p); Py_XDECREF(m); return (__Pyx_RefNannyAPIStruct *)r; } #endif /* PyObjectGetAttrStr */ #if CYTHON_USE_TYPE_SLOTS static CYTHON_INLINE PyObject* __Pyx_PyObject_GetAttrStr(PyObject* obj, PyObject* attr_name) { PyTypeObject* tp = Py_TYPE(obj); if (likely(tp->tp_getattro)) return tp->tp_getattro(obj, attr_name); #if PY_MAJOR_VERSION < 3 if (likely(tp->tp_getattr)) return tp->tp_getattr(obj, PyString_AS_STRING(attr_name)); #endif return PyObject_GetAttr(obj, attr_name); } #endif /* GetBuiltinName */ static PyObject *__Pyx_GetBuiltinName(PyObject *name) { PyObject* result = __Pyx_PyObject_GetAttrStr(__pyx_b, name); if (unlikely(!result)) { PyErr_Format(PyExc_NameError, #if PY_MAJOR_VERSION >= 3 "name '%U' is not defined", name); #else "name '%.200s' is not defined", PyString_AS_STRING(name)); #endif } return result; } /* PyDictVersioning */ #if CYTHON_USE_DICT_VERSIONS static CYTHON_INLINE PY_UINT64_T __Pyx_get_tp_dict_version(PyObject *obj) { PyObject *dict = Py_TYPE(obj)->tp_dict; return dict ? __PYX_GET_DICT_VERSION(dict) : 0; } static CYTHON_INLINE PY_UINT64_T __Pyx_get_object_dict_version(PyObject *obj) { PyObject **dictptr = NULL; Py_ssize_t offset = Py_TYPE(obj)->tp_dictoffset; if (offset) { dictptr = (offset > 0) ? (PyObject **) ((char *)obj + offset) : _PyObject_GetDictPtr(obj); } return (dictptr && *dictptr) ? __PYX_GET_DICT_VERSION(*dictptr) : 0; } static CYTHON_INLINE int __Pyx_object_dict_version_matches(PyObject* obj, PY_UINT64_T tp_dict_version, PY_UINT64_T obj_dict_version) { PyObject *dict = Py_TYPE(obj)->tp_dict; if (!dict || tp_dict_version != __PYX_GET_DICT_VERSION(dict)) return 0; return obj_dict_version == __Pyx_get_object_dict_version(obj); } #endif /* GetModuleGlobalName */ #if CYTHON_USE_DICT_VERSIONS static PyObject *__Pyx__GetModuleGlobalName(PyObject *name, PY_UINT64_T *dict_version, PyObject **dict_cached_value) #else static CYTHON_INLINE PyObject *__Pyx__GetModuleGlobalName(PyObject *name) #endif { PyObject *result; #if !CYTHON_AVOID_BORROWED_REFS #if CYTHON_COMPILING_IN_CPYTHON && PY_VERSION_HEX >= 0x030500A1 result = _PyDict_GetItem_KnownHash(__pyx_d, name, ((PyASCIIObject *) name)->hash); __PYX_UPDATE_DICT_CACHE(__pyx_d, result, *dict_cached_value, *dict_version) if (likely(result)) { return __Pyx_NewRef(result); } else if (unlikely(PyErr_Occurred())) { return NULL; } #else result = PyDict_GetItem(__pyx_d, name); __PYX_UPDATE_DICT_CACHE(__pyx_d, result, *dict_cached_value, *dict_version) if (likely(result)) { return __Pyx_NewRef(result); } #endif #else result = PyObject_GetItem(__pyx_d, name); __PYX_UPDATE_DICT_CACHE(__pyx_d, result, *dict_cached_value, *dict_version) if (likely(result)) { return __Pyx_NewRef(result); } PyErr_Clear(); #endif return __Pyx_GetBuiltinName(name); } /* PyCFunctionFastCall */ #if CYTHON_FAST_PYCCALL static CYTHON_INLINE PyObject * __Pyx_PyCFunction_FastCall(PyObject *func_obj, PyObject **args, Py_ssize_t nargs) { PyCFunctionObject *func = (PyCFunctionObject*)func_obj; PyCFunction meth = PyCFunction_GET_FUNCTION(func); PyObject *self = PyCFunction_GET_SELF(func); int flags = PyCFunction_GET_FLAGS(func); assert(PyCFunction_Check(func)); assert(METH_FASTCALL == (flags & ~(METH_CLASS | METH_STATIC | METH_COEXIST | METH_KEYWORDS | METH_STACKLESS))); assert(nargs >= 0); assert(nargs == 0 || args != NULL); /* _PyCFunction_FastCallDict() must not be called with an exception set, because it may clear it (directly or indirectly) and so the caller loses its exception */ assert(!PyErr_Occurred()); if ((PY_VERSION_HEX < 0x030700A0) || unlikely(flags & METH_KEYWORDS)) { return (*((__Pyx_PyCFunctionFastWithKeywords)(void*)meth)) (self, args, nargs, NULL); } else { return (*((__Pyx_PyCFunctionFast)(void*)meth)) (self, args, nargs); } } #endif /* PyFunctionFastCall */ #if CYTHON_FAST_PYCALL static PyObject* __Pyx_PyFunction_FastCallNoKw(PyCodeObject *co, PyObject **args, Py_ssize_t na, PyObject *globals) { PyFrameObject *f; PyThreadState *tstate = __Pyx_PyThreadState_Current; PyObject **fastlocals; Py_ssize_t i; PyObject *result; assert(globals != NULL); /* XXX Perhaps we should create a specialized PyFrame_New() that doesn't take locals, but does take builtins without sanity checking them. */ assert(tstate != NULL); f = PyFrame_New(tstate, co, globals, NULL); if (f == NULL) { return NULL; } fastlocals = __Pyx_PyFrame_GetLocalsplus(f); for (i = 0; i < na; i++) { Py_INCREF(*args); fastlocals[i] = *args++; } result = PyEval_EvalFrameEx(f,0); ++tstate->recursion_depth; Py_DECREF(f); --tstate->recursion_depth; return result; } #if 1 || PY_VERSION_HEX < 0x030600B1 static PyObject *__Pyx_PyFunction_FastCallDict(PyObject *func, PyObject **args, int nargs, PyObject *kwargs) { PyCodeObject *co = (PyCodeObject *)PyFunction_GET_CODE(func); PyObject *globals = PyFunction_GET_GLOBALS(func); PyObject *argdefs = PyFunction_GET_DEFAULTS(func); PyObject *closure; #if PY_MAJOR_VERSION >= 3 PyObject *kwdefs; #endif PyObject *kwtuple, **k; PyObject **d; Py_ssize_t nd; Py_ssize_t nk; PyObject *result; assert(kwargs == NULL || PyDict_Check(kwargs)); nk = kwargs ? PyDict_Size(kwargs) : 0; if (Py_EnterRecursiveCall((char*)" while calling a Python object")) { return NULL; } if ( #if PY_MAJOR_VERSION >= 3 co->co_kwonlyargcount == 0 && #endif likely(kwargs == NULL || nk == 0) && co->co_flags == (CO_OPTIMIZED | CO_NEWLOCALS | CO_NOFREE)) { if (argdefs == NULL && co->co_argcount == nargs) { result = __Pyx_PyFunction_FastCallNoKw(co, args, nargs, globals); goto done; } else if (nargs == 0 && argdefs != NULL && co->co_argcount == Py_SIZE(argdefs)) { /* function called with no arguments, but all parameters have a default value: use default values as arguments .*/ args = &PyTuple_GET_ITEM(argdefs, 0); result =__Pyx_PyFunction_FastCallNoKw(co, args, Py_SIZE(argdefs), globals); goto done; } } if (kwargs != NULL) { Py_ssize_t pos, i; kwtuple = PyTuple_New(2 * nk); if (kwtuple == NULL) { result = NULL; goto done; } k = &PyTuple_GET_ITEM(kwtuple, 0); pos = i = 0; while (PyDict_Next(kwargs, &pos, &k[i], &k[i+1])) { Py_INCREF(k[i]); Py_INCREF(k[i+1]); i += 2; } nk = i / 2; } else { kwtuple = NULL; k = NULL; } closure = PyFunction_GET_CLOSURE(func); #if PY_MAJOR_VERSION >= 3 kwdefs = PyFunction_GET_KW_DEFAULTS(func); #endif if (argdefs != NULL) { d = &PyTuple_GET_ITEM(argdefs, 0); nd = Py_SIZE(argdefs); } else { d = NULL; nd = 0; } #if PY_MAJOR_VERSION >= 3 result = PyEval_EvalCodeEx((PyObject*)co, globals, (PyObject *)NULL, args, nargs, k, (int)nk, d, (int)nd, kwdefs, closure); #else result = PyEval_EvalCodeEx(co, globals, (PyObject *)NULL, args, nargs, k, (int)nk, d, (int)nd, closure); #endif Py_XDECREF(kwtuple); done: Py_LeaveRecursiveCall(); return result; } #endif #endif /* PyObjectCall */ #if CYTHON_COMPILING_IN_CPYTHON static CYTHON_INLINE PyObject* __Pyx_PyObject_Call(PyObject *func, PyObject *arg, PyObject *kw) { PyObject *result; ternaryfunc call = func->ob_type->tp_call; if (unlikely(!call)) return PyObject_Call(func, arg, kw); if (unlikely(Py_EnterRecursiveCall((char*)" while calling a Python object"))) return NULL; result = (*call)(func, arg, kw); Py_LeaveRecursiveCall(); if (unlikely(!result) && unlikely(!PyErr_Occurred())) { PyErr_SetString( PyExc_SystemError, "NULL result without error in PyObject_Call"); } return result; } #endif /* PyObjectCall2Args */ static CYTHON_UNUSED PyObject* __Pyx_PyObject_Call2Args(PyObject* function, PyObject* arg1, PyObject* arg2) { PyObject *args, *result = NULL; #if CYTHON_FAST_PYCALL if (PyFunction_Check(function)) { PyObject *args[2] = {arg1, arg2}; return __Pyx_PyFunction_FastCall(function, args, 2); } #endif #if CYTHON_FAST_PYCCALL if (__Pyx_PyFastCFunction_Check(function)) { PyObject *args[2] = {arg1, arg2}; return __Pyx_PyCFunction_FastCall(function, args, 2); } #endif args = PyTuple_New(2); if (unlikely(!args)) goto done; Py_INCREF(arg1); PyTuple_SET_ITEM(args, 0, arg1); Py_INCREF(arg2); PyTuple_SET_ITEM(args, 1, arg2); Py_INCREF(function); result = __Pyx_PyObject_Call(function, args, NULL); Py_DECREF(args); Py_DECREF(function); done: return result; } /* PyObjectCallMethO */ #if CYTHON_COMPILING_IN_CPYTHON static CYTHON_INLINE PyObject* __Pyx_PyObject_CallMethO(PyObject *func, PyObject *arg) { PyObject *self, *result; PyCFunction cfunc; cfunc = PyCFunction_GET_FUNCTION(func); self = PyCFunction_GET_SELF(func); if (unlikely(Py_EnterRecursiveCall((char*)" while calling a Python object"))) return NULL; result = cfunc(self, arg); Py_LeaveRecursiveCall(); if (unlikely(!result) && unlikely(!PyErr_Occurred())) { PyErr_SetString( PyExc_SystemError, "NULL result without error in PyObject_Call"); } return result; } #endif /* PyObjectCallOneArg */ #if CYTHON_COMPILING_IN_CPYTHON static PyObject* __Pyx__PyObject_CallOneArg(PyObject *func, PyObject *arg) { PyObject *result; PyObject *args = PyTuple_New(1); if (unlikely(!args)) return NULL; Py_INCREF(arg); PyTuple_SET_ITEM(args, 0, arg); result = __Pyx_PyObject_Call(func, args, NULL); Py_DECREF(args); return result; } static CYTHON_INLINE PyObject* __Pyx_PyObject_CallOneArg(PyObject *func, PyObject *arg) { #if CYTHON_FAST_PYCALL if (PyFunction_Check(func)) { return __Pyx_PyFunction_FastCall(func, &arg, 1); } #endif if (likely(PyCFunction_Check(func))) { if (likely(PyCFunction_GET_FLAGS(func) & METH_O)) { return __Pyx_PyObject_CallMethO(func, arg); #if CYTHON_FAST_PYCCALL } else if (PyCFunction_GET_FLAGS(func) & METH_FASTCALL) { return __Pyx_PyCFunction_FastCall(func, &arg, 1); #endif } } return __Pyx__PyObject_CallOneArg(func, arg); } #else static CYTHON_INLINE PyObject* __Pyx_PyObject_CallOneArg(PyObject *func, PyObject *arg) { PyObject *result; PyObject *args = PyTuple_Pack(1, arg); if (unlikely(!args)) return NULL; result = __Pyx_PyObject_Call(func, args, NULL); Py_DECREF(args); return result; } #endif /* RaiseArgTupleInvalid */ static void __Pyx_RaiseArgtupleInvalid( const char* func_name, int exact, Py_ssize_t num_min, Py_ssize_t num_max, Py_ssize_t num_found) { Py_ssize_t num_expected; const char *more_or_less; if (num_found < num_min) { num_expected = num_min; more_or_less = "at least"; } else { num_expected = num_max; more_or_less = "at most"; } if (exact) { more_or_less = "exactly"; } PyErr_Format(PyExc_TypeError, "%.200s() takes %.8s %" CYTHON_FORMAT_SSIZE_T "d positional argument%.1s (%" CYTHON_FORMAT_SSIZE_T "d given)", func_name, more_or_less, num_expected, (num_expected == 1) ? "" : "s", num_found); } /* RaiseDoubleKeywords */ static void __Pyx_RaiseDoubleKeywordsError( const char* func_name, PyObject* kw_name) { PyErr_Format(PyExc_TypeError, #if PY_MAJOR_VERSION >= 3 "%s() got multiple values for keyword argument '%U'", func_name, kw_name); #else "%s() got multiple values for keyword argument '%s'", func_name, PyString_AsString(kw_name)); #endif } /* ParseKeywords */ static int __Pyx_ParseOptionalKeywords( PyObject *kwds, PyObject **argnames[], PyObject *kwds2, PyObject *values[], Py_ssize_t num_pos_args, const char* function_name) { PyObject *key = 0, *value = 0; Py_ssize_t pos = 0; PyObject*** name; PyObject*** first_kw_arg = argnames + num_pos_args; while (PyDict_Next(kwds, &pos, &key, &value)) { name = first_kw_arg; while (*name && (**name != key)) name++; if (*name) { values[name-argnames] = value; continue; } name = first_kw_arg; #if PY_MAJOR_VERSION < 3 if (likely(PyString_CheckExact(key)) || likely(PyString_Check(key))) { while (*name) { if ((CYTHON_COMPILING_IN_PYPY || PyString_GET_SIZE(**name) == PyString_GET_SIZE(key)) && _PyString_Eq(**name, key)) { values[name-argnames] = value; break; } name++; } if (*name) continue; else { PyObject*** argname = argnames; while (argname != first_kw_arg) { if ((**argname == key) || ( (CYTHON_COMPILING_IN_PYPY || PyString_GET_SIZE(**argname) == PyString_GET_SIZE(key)) && _PyString_Eq(**argname, key))) { goto arg_passed_twice; } argname++; } } } else #endif if (likely(PyUnicode_Check(key))) { while (*name) { int cmp = (**name == key) ? 0 : #if !CYTHON_COMPILING_IN_PYPY && PY_MAJOR_VERSION >= 3 (PyUnicode_GET_SIZE(**name) != PyUnicode_GET_SIZE(key)) ? 1 : #endif PyUnicode_Compare(**name, key); if (cmp < 0 && unlikely(PyErr_Occurred())) goto bad; if (cmp == 0) { values[name-argnames] = value; break; } name++; } if (*name) continue; else { PyObject*** argname = argnames; while (argname != first_kw_arg) { int cmp = (**argname == key) ? 0 : #if !CYTHON_COMPILING_IN_PYPY && PY_MAJOR_VERSION >= 3 (PyUnicode_GET_SIZE(**argname) != PyUnicode_GET_SIZE(key)) ? 1 : #endif PyUnicode_Compare(**argname, key); if (cmp < 0 && unlikely(PyErr_Occurred())) goto bad; if (cmp == 0) goto arg_passed_twice; argname++; } } } else goto invalid_keyword_type; if (kwds2) { if (unlikely(PyDict_SetItem(kwds2, key, value))) goto bad; } else { goto invalid_keyword; } } return 0; arg_passed_twice: __Pyx_RaiseDoubleKeywordsError(function_name, key); goto bad; invalid_keyword_type: PyErr_Format(PyExc_TypeError, "%.200s() keywords must be strings", function_name); goto bad; invalid_keyword: PyErr_Format(PyExc_TypeError, #if PY_MAJOR_VERSION < 3 "%.200s() got an unexpected keyword argument '%.200s'", function_name, PyString_AsString(key)); #else "%s() got an unexpected keyword argument '%U'", function_name, key); #endif bad: return -1; } /* DictGetItem */ #if PY_MAJOR_VERSION >= 3 && !CYTHON_COMPILING_IN_PYPY static PyObject *__Pyx_PyDict_GetItem(PyObject *d, PyObject* key) { PyObject *value; value = PyDict_GetItemWithError(d, key); if (unlikely(!value)) { if (!PyErr_Occurred()) { if (unlikely(PyTuple_Check(key))) { PyObject* args = PyTuple_Pack(1, key); if (likely(args)) { PyErr_SetObject(PyExc_KeyError, args); Py_DECREF(args); } } else { PyErr_SetObject(PyExc_KeyError, key); } } return NULL; } Py_INCREF(value); return value; } #endif /* BytesEquals */ static CYTHON_INLINE int __Pyx_PyBytes_Equals(PyObject* s1, PyObject* s2, int equals) { #if CYTHON_COMPILING_IN_PYPY return PyObject_RichCompareBool(s1, s2, equals); #else if (s1 == s2) { return (equals == Py_EQ); } else if (PyBytes_CheckExact(s1) & PyBytes_CheckExact(s2)) { const char *ps1, *ps2; Py_ssize_t length = PyBytes_GET_SIZE(s1); if (length != PyBytes_GET_SIZE(s2)) return (equals == Py_NE); ps1 = PyBytes_AS_STRING(s1); ps2 = PyBytes_AS_STRING(s2); if (ps1[0] != ps2[0]) { return (equals == Py_NE); } else if (length == 1) { return (equals == Py_EQ); } else { int result; #if CYTHON_USE_UNICODE_INTERNALS Py_hash_t hash1, hash2; hash1 = ((PyBytesObject*)s1)->ob_shash; hash2 = ((PyBytesObject*)s2)->ob_shash; if (hash1 != hash2 && hash1 != -1 && hash2 != -1) { return (equals == Py_NE); } #endif result = memcmp(ps1, ps2, (size_t)length); return (equals == Py_EQ) ? (result == 0) : (result != 0); } } else if ((s1 == Py_None) & PyBytes_CheckExact(s2)) { return (equals == Py_NE); } else if ((s2 == Py_None) & PyBytes_CheckExact(s1)) { return (equals == Py_NE); } else { int result; PyObject* py_result = PyObject_RichCompare(s1, s2, equals); if (!py_result) return -1; result = __Pyx_PyObject_IsTrue(py_result); Py_DECREF(py_result); return result; } #endif } /* UnicodeEquals */ static CYTHON_INLINE int __Pyx_PyUnicode_Equals(PyObject* s1, PyObject* s2, int equals) { #if CYTHON_COMPILING_IN_PYPY return PyObject_RichCompareBool(s1, s2, equals); #else #if PY_MAJOR_VERSION < 3 PyObject* owned_ref = NULL; #endif int s1_is_unicode, s2_is_unicode; if (s1 == s2) { goto return_eq; } s1_is_unicode = PyUnicode_CheckExact(s1); s2_is_unicode = PyUnicode_CheckExact(s2); #if PY_MAJOR_VERSION < 3 if ((s1_is_unicode & (!s2_is_unicode)) && PyString_CheckExact(s2)) { owned_ref = PyUnicode_FromObject(s2); if (unlikely(!owned_ref)) return -1; s2 = owned_ref; s2_is_unicode = 1; } else if ((s2_is_unicode & (!s1_is_unicode)) && PyString_CheckExact(s1)) { owned_ref = PyUnicode_FromObject(s1); if (unlikely(!owned_ref)) return -1; s1 = owned_ref; s1_is_unicode = 1; } else if (((!s2_is_unicode) & (!s1_is_unicode))) { return __Pyx_PyBytes_Equals(s1, s2, equals); } #endif if (s1_is_unicode & s2_is_unicode) { Py_ssize_t length; int kind; void *data1, *data2; if (unlikely(__Pyx_PyUnicode_READY(s1) < 0) || unlikely(__Pyx_PyUnicode_READY(s2) < 0)) return -1; length = __Pyx_PyUnicode_GET_LENGTH(s1); if (length != __Pyx_PyUnicode_GET_LENGTH(s2)) { goto return_ne; } #if CYTHON_USE_UNICODE_INTERNALS { Py_hash_t hash1, hash2; #if CYTHON_PEP393_ENABLED hash1 = ((PyASCIIObject*)s1)->hash; hash2 = ((PyASCIIObject*)s2)->hash; #else hash1 = ((PyUnicodeObject*)s1)->hash; hash2 = ((PyUnicodeObject*)s2)->hash; #endif if (hash1 != hash2 && hash1 != -1 && hash2 != -1) { goto return_ne; } } #endif kind = __Pyx_PyUnicode_KIND(s1); if (kind != __Pyx_PyUnicode_KIND(s2)) { goto return_ne; } data1 = __Pyx_PyUnicode_DATA(s1); data2 = __Pyx_PyUnicode_DATA(s2); if (__Pyx_PyUnicode_READ(kind, data1, 0) != __Pyx_PyUnicode_READ(kind, data2, 0)) { goto return_ne; } else if (length == 1) { goto return_eq; } else { int result = memcmp(data1, data2, (size_t)(length * kind)); #if PY_MAJOR_VERSION < 3 Py_XDECREF(owned_ref); #endif return (equals == Py_EQ) ? (result == 0) : (result != 0); } } else if ((s1 == Py_None) & s2_is_unicode) { goto return_ne; } else if ((s2 == Py_None) & s1_is_unicode) { goto return_ne; } else { int result; PyObject* py_result = PyObject_RichCompare(s1, s2, equals); #if PY_MAJOR_VERSION < 3 Py_XDECREF(owned_ref); #endif if (!py_result) return -1; result = __Pyx_PyObject_IsTrue(py_result); Py_DECREF(py_result); return result; } return_eq: #if PY_MAJOR_VERSION < 3 Py_XDECREF(owned_ref); #endif return (equals == Py_EQ); return_ne: #if PY_MAJOR_VERSION < 3 Py_XDECREF(owned_ref); #endif return (equals == Py_NE); #endif } /* PyObjectCallNoArg */ #if CYTHON_COMPILING_IN_CPYTHON static CYTHON_INLINE PyObject* __Pyx_PyObject_CallNoArg(PyObject *func) { #if CYTHON_FAST_PYCALL if (PyFunction_Check(func)) { return __Pyx_PyFunction_FastCall(func, NULL, 0); } #endif #ifdef __Pyx_CyFunction_USED if (likely(PyCFunction_Check(func) || __Pyx_CyFunction_Check(func))) #else if (likely(PyCFunction_Check(func))) #endif { if (likely(PyCFunction_GET_FLAGS(func) & METH_NOARGS)) { return __Pyx_PyObject_CallMethO(func, NULL); } } return __Pyx_PyObject_Call(func, __pyx_empty_tuple, NULL); } #endif /* PyErrFetchRestore */ #if CYTHON_FAST_THREAD_STATE static CYTHON_INLINE void __Pyx_ErrRestoreInState(PyThreadState *tstate, PyObject *type, PyObject *value, PyObject *tb) { PyObject *tmp_type, *tmp_value, *tmp_tb; tmp_type = tstate->curexc_type; tmp_value = tstate->curexc_value; tmp_tb = tstate->curexc_traceback; tstate->curexc_type = type; tstate->curexc_value = value; tstate->curexc_traceback = tb; Py_XDECREF(tmp_type); Py_XDECREF(tmp_value); Py_XDECREF(tmp_tb); } static CYTHON_INLINE void __Pyx_ErrFetchInState(PyThreadState *tstate, PyObject **type, PyObject **value, PyObject **tb) { *type = tstate->curexc_type; *value = tstate->curexc_value; *tb = tstate->curexc_traceback; tstate->curexc_type = 0; tstate->curexc_value = 0; tstate->curexc_traceback = 0; } #endif /* RaiseException */ #if PY_MAJOR_VERSION < 3 static void __Pyx_Raise(PyObject *type, PyObject *value, PyObject *tb, CYTHON_UNUSED PyObject *cause) { __Pyx_PyThreadState_declare Py_XINCREF(type); if (!value || value == Py_None) value = NULL; else Py_INCREF(value); if (!tb || tb == Py_None) tb = NULL; else { Py_INCREF(tb); if (!PyTraceBack_Check(tb)) { PyErr_SetString(PyExc_TypeError, "raise: arg 3 must be a traceback or None"); goto raise_error; } } if (PyType_Check(type)) { #if CYTHON_COMPILING_IN_PYPY if (!value) { Py_INCREF(Py_None); value = Py_None; } #endif PyErr_NormalizeException(&type, &value, &tb); } else { if (value) { PyErr_SetString(PyExc_TypeError, "instance exception may not have a separate value"); goto raise_error; } value = type; type = (PyObject*) Py_TYPE(type); Py_INCREF(type); if (!PyType_IsSubtype((PyTypeObject *)type, (PyTypeObject *)PyExc_BaseException)) { PyErr_SetString(PyExc_TypeError, "raise: exception class must be a subclass of BaseException"); goto raise_error; } } __Pyx_PyThreadState_assign __Pyx_ErrRestore(type, value, tb); return; raise_error: Py_XDECREF(value); Py_XDECREF(type); Py_XDECREF(tb); return; } #else static void __Pyx_Raise(PyObject *type, PyObject *value, PyObject *tb, PyObject *cause) { PyObject* owned_instance = NULL; if (tb == Py_None) { tb = 0; } else if (tb && !PyTraceBack_Check(tb)) { PyErr_SetString(PyExc_TypeError, "raise: arg 3 must be a traceback or None"); goto bad; } if (value == Py_None) value = 0; if (PyExceptionInstance_Check(type)) { if (value) { PyErr_SetString(PyExc_TypeError, "instance exception may not have a separate value"); goto bad; } value = type; type = (PyObject*) Py_TYPE(value); } else if (PyExceptionClass_Check(type)) { PyObject *instance_class = NULL; if (value && PyExceptionInstance_Check(value)) { instance_class = (PyObject*) Py_TYPE(value); if (instance_class != type) { int is_subclass = PyObject_IsSubclass(instance_class, type); if (!is_subclass) { instance_class = NULL; } else if (unlikely(is_subclass == -1)) { goto bad; } else { type = instance_class; } } } if (!instance_class) { PyObject *args; if (!value) args = PyTuple_New(0); else if (PyTuple_Check(value)) { Py_INCREF(value); args = value; } else args = PyTuple_Pack(1, value); if (!args) goto bad; owned_instance = PyObject_Call(type, args, NULL); Py_DECREF(args); if (!owned_instance) goto bad; value = owned_instance; if (!PyExceptionInstance_Check(value)) { PyErr_Format(PyExc_TypeError, "calling %R should have returned an instance of " "BaseException, not %R", type, Py_TYPE(value)); goto bad; } } } else { PyErr_SetString(PyExc_TypeError, "raise: exception class must be a subclass of BaseException"); goto bad; } if (cause) { PyObject *fixed_cause; if (cause == Py_None) { fixed_cause = NULL; } else if (PyExceptionClass_Check(cause)) { fixed_cause = PyObject_CallObject(cause, NULL); if (fixed_cause == NULL) goto bad; } else if (PyExceptionInstance_Check(cause)) { fixed_cause = cause; Py_INCREF(fixed_cause); } else { PyErr_SetString(PyExc_TypeError, "exception causes must derive from " "BaseException"); goto bad; } PyException_SetCause(value, fixed_cause); } PyErr_SetObject(type, value); if (tb) { #if CYTHON_COMPILING_IN_PYPY PyObject *tmp_type, *tmp_value, *tmp_tb; PyErr_Fetch(&tmp_type, &tmp_value, &tmp_tb); Py_INCREF(tb); PyErr_Restore(tmp_type, tmp_value, tb); Py_XDECREF(tmp_tb); #else PyThreadState *tstate = __Pyx_PyThreadState_Current; PyObject* tmp_tb = tstate->curexc_traceback; if (tb != tmp_tb) { Py_INCREF(tb); tstate->curexc_traceback = tb; Py_XDECREF(tmp_tb); } #endif } bad: Py_XDECREF(owned_instance); return; } #endif /* RaiseTooManyValuesToUnpack */ static CYTHON_INLINE void __Pyx_RaiseTooManyValuesError(Py_ssize_t expected) { PyErr_Format(PyExc_ValueError, "too many values to unpack (expected %" CYTHON_FORMAT_SSIZE_T "d)", expected); } /* RaiseNeedMoreValuesToUnpack */ static CYTHON_INLINE void __Pyx_RaiseNeedMoreValuesError(Py_ssize_t index) { PyErr_Format(PyExc_ValueError, "need more than %" CYTHON_FORMAT_SSIZE_T "d value%.1s to unpack", index, (index == 1) ? "" : "s"); } /* RaiseNoneIterError */ static CYTHON_INLINE void __Pyx_RaiseNoneNotIterableError(void) { PyErr_SetString(PyExc_TypeError, "'NoneType' object is not iterable"); } /* ExtTypeTest */ static CYTHON_INLINE int __Pyx_TypeTest(PyObject *obj, PyTypeObject *type) { if (unlikely(!type)) { PyErr_SetString(PyExc_SystemError, "Missing type object"); return 0; } if (likely(__Pyx_TypeCheck(obj, type))) return 1; PyErr_Format(PyExc_TypeError, "Cannot convert %.200s to %.200s", Py_TYPE(obj)->tp_name, type->tp_name); return 0; } /* GetTopmostException */ #if CYTHON_USE_EXC_INFO_STACK static _PyErr_StackItem * __Pyx_PyErr_GetTopmostException(PyThreadState *tstate) { _PyErr_StackItem *exc_info = tstate->exc_info; while ((exc_info->exc_type == NULL || exc_info->exc_type == Py_None) && exc_info->previous_item != NULL) { exc_info = exc_info->previous_item; } return exc_info; } #endif /* SaveResetException */ #if CYTHON_FAST_THREAD_STATE static CYTHON_INLINE void __Pyx__ExceptionSave(PyThreadState *tstate, PyObject **type, PyObject **value, PyObject **tb) { #if CYTHON_USE_EXC_INFO_STACK _PyErr_StackItem *exc_info = __Pyx_PyErr_GetTopmostException(tstate); *type = exc_info->exc_type; *value = exc_info->exc_value; *tb = exc_info->exc_traceback; #else *type = tstate->exc_type; *value = tstate->exc_value; *tb = tstate->exc_traceback; #endif Py_XINCREF(*type); Py_XINCREF(*value); Py_XINCREF(*tb); } static CYTHON_INLINE void __Pyx__ExceptionReset(PyThreadState *tstate, PyObject *type, PyObject *value, PyObject *tb) { PyObject *tmp_type, *tmp_value, *tmp_tb; #if CYTHON_USE_EXC_INFO_STACK _PyErr_StackItem *exc_info = tstate->exc_info; tmp_type = exc_info->exc_type; tmp_value = exc_info->exc_value; tmp_tb = exc_info->exc_traceback; exc_info->exc_type = type; exc_info->exc_value = value; exc_info->exc_traceback = tb; #else tmp_type = tstate->exc_type; tmp_value = tstate->exc_value; tmp_tb = tstate->exc_traceback; tstate->exc_type = type; tstate->exc_value = value; tstate->exc_traceback = tb; #endif Py_XDECREF(tmp_type); Py_XDECREF(tmp_value); Py_XDECREF(tmp_tb); } #endif /* PyErrExceptionMatches */ #if CYTHON_FAST_THREAD_STATE static int __Pyx_PyErr_ExceptionMatchesTuple(PyObject *exc_type, PyObject *tuple) { Py_ssize_t i, n; n = PyTuple_GET_SIZE(tuple); #if PY_MAJOR_VERSION >= 3 for (i=0; i<n; i++) { if (exc_type == PyTuple_GET_ITEM(tuple, i)) return 1; } #endif for (i=0; i<n; i++) { if (__Pyx_PyErr_GivenExceptionMatches(exc_type, PyTuple_GET_ITEM(tuple, i))) return 1; } return 0; } static CYTHON_INLINE int __Pyx_PyErr_ExceptionMatchesInState(PyThreadState* tstate, PyObject* err) { PyObject *exc_type = tstate->curexc_type; if (exc_type == err) return 1; if (unlikely(!exc_type)) return 0; if (unlikely(PyTuple_Check(err))) return __Pyx_PyErr_ExceptionMatchesTuple(exc_type, err); return __Pyx_PyErr_GivenExceptionMatches(exc_type, err); } #endif /* GetException */ #if CYTHON_FAST_THREAD_STATE static int __Pyx__GetException(PyThreadState *tstate, PyObject **type, PyObject **value, PyObject **tb) #else static int __Pyx_GetException(PyObject **type, PyObject **value, PyObject **tb) #endif { PyObject *local_type, *local_value, *local_tb; #if CYTHON_FAST_THREAD_STATE PyObject *tmp_type, *tmp_value, *tmp_tb; local_type = tstate->curexc_type; local_value = tstate->curexc_value; local_tb = tstate->curexc_traceback; tstate->curexc_type = 0; tstate->curexc_value = 0; tstate->curexc_traceback = 0; #else PyErr_Fetch(&local_type, &local_value, &local_tb); #endif PyErr_NormalizeException(&local_type, &local_value, &local_tb); #if CYTHON_FAST_THREAD_STATE if (unlikely(tstate->curexc_type)) #else if (unlikely(PyErr_Occurred())) #endif goto bad; #if PY_MAJOR_VERSION >= 3 if (local_tb) { if (unlikely(PyException_SetTraceback(local_value, local_tb) < 0)) goto bad; } #endif Py_XINCREF(local_tb); Py_XINCREF(local_type); Py_XINCREF(local_value); *type = local_type; *value = local_value; *tb = local_tb; #if CYTHON_FAST_THREAD_STATE #if CYTHON_USE_EXC_INFO_STACK { _PyErr_StackItem *exc_info = tstate->exc_info; tmp_type = exc_info->exc_type; tmp_value = exc_info->exc_value; tmp_tb = exc_info->exc_traceback; exc_info->exc_type = local_type; exc_info->exc_value = local_value; exc_info->exc_traceback = local_tb; } #else tmp_type = tstate->exc_type; tmp_value = tstate->exc_value; tmp_tb = tstate->exc_traceback; tstate->exc_type = local_type; tstate->exc_value = local_value; tstate->exc_traceback = local_tb; #endif Py_XDECREF(tmp_type); Py_XDECREF(tmp_value); Py_XDECREF(tmp_tb); #else PyErr_SetExcInfo(local_type, local_value, local_tb); #endif return 0; bad: *type = 0; *value = 0; *tb = 0; Py_XDECREF(local_type); Py_XDECREF(local_value); Py_XDECREF(local_tb); return -1; } /* CallNextTpDealloc */ static void __Pyx_call_next_tp_dealloc(PyObject* obj, destructor current_tp_dealloc) { PyTypeObject* type = Py_TYPE(obj); while (type && type->tp_dealloc != current_tp_dealloc) type = type->tp_base; while (type && type->tp_dealloc == current_tp_dealloc) type = type->tp_base; if (type) type->tp_dealloc(obj); } /* TypeImport */ #ifndef __PYX_HAVE_RT_ImportType #define __PYX_HAVE_RT_ImportType static PyTypeObject *__Pyx_ImportType(PyObject *module, const char *module_name, const char *class_name, size_t size, enum __Pyx_ImportType_CheckSize check_size) { PyObject *result = 0; char warning[200]; Py_ssize_t basicsize; #ifdef Py_LIMITED_API PyObject *py_basicsize; #endif result = PyObject_GetAttrString(module, class_name); if (!result) goto bad; if (!PyType_Check(result)) { PyErr_Format(PyExc_TypeError, "%.200s.%.200s is not a type object", module_name, class_name); goto bad; } #ifndef Py_LIMITED_API basicsize = ((PyTypeObject *)result)->tp_basicsize; #else py_basicsize = PyObject_GetAttrString(result, "__basicsize__"); if (!py_basicsize) goto bad; basicsize = PyLong_AsSsize_t(py_basicsize); Py_DECREF(py_basicsize); py_basicsize = 0; if (basicsize == (Py_ssize_t)-1 && PyErr_Occurred()) goto bad; #endif if ((size_t)basicsize < size) { PyErr_Format(PyExc_ValueError, "%.200s.%.200s size changed, may indicate binary incompatibility. " "Expected %zd from C header, got %zd from PyObject", module_name, class_name, size, basicsize); goto bad; } if (check_size == __Pyx_ImportType_CheckSize_Error && (size_t)basicsize != size) { PyErr_Format(PyExc_ValueError, "%.200s.%.200s size changed, may indicate binary incompatibility. " "Expected %zd from C header, got %zd from PyObject", module_name, class_name, size, basicsize); goto bad; } else if (check_size == __Pyx_ImportType_CheckSize_Warn && (size_t)basicsize > size) { PyOS_snprintf(warning, sizeof(warning), "%s.%s size changed, may indicate binary incompatibility. " "Expected %zd from C header, got %zd from PyObject", module_name, class_name, size, basicsize); if (PyErr_WarnEx(NULL, warning, 0) < 0) goto bad; } return (PyTypeObject *)result; bad: Py_XDECREF(result); return NULL; } #endif /* GetVTable */ static void* __Pyx_GetVtable(PyObject *dict) { void* ptr; PyObject *ob = PyObject_GetItem(dict, __pyx_n_s_pyx_vtable); if (!ob) goto bad; #if PY_VERSION_HEX >= 0x02070000 ptr = PyCapsule_GetPointer(ob, 0); #else ptr = PyCObject_AsVoidPtr(ob); #endif if (!ptr && !PyErr_Occurred()) PyErr_SetString(PyExc_RuntimeError, "invalid vtable found for imported type"); Py_DECREF(ob); return ptr; bad: Py_XDECREF(ob); return NULL; } /* PyObject_GenericGetAttrNoDict */ #if CYTHON_USE_TYPE_SLOTS && CYTHON_USE_PYTYPE_LOOKUP && PY_VERSION_HEX < 0x03070000 static PyObject *__Pyx_RaiseGenericGetAttributeError(PyTypeObject *tp, PyObject *attr_name) { PyErr_Format(PyExc_AttributeError, #if PY_MAJOR_VERSION >= 3 "'%.50s' object has no attribute '%U'", tp->tp_name, attr_name); #else "'%.50s' object has no attribute '%.400s'", tp->tp_name, PyString_AS_STRING(attr_name)); #endif return NULL; } static CYTHON_INLINE PyObject* __Pyx_PyObject_GenericGetAttrNoDict(PyObject* obj, PyObject* attr_name) { PyObject *descr; PyTypeObject *tp = Py_TYPE(obj); if (unlikely(!PyString_Check(attr_name))) { return PyObject_GenericGetAttr(obj, attr_name); } assert(!tp->tp_dictoffset); descr = _PyType_Lookup(tp, attr_name); if (unlikely(!descr)) { return __Pyx_RaiseGenericGetAttributeError(tp, attr_name); } Py_INCREF(descr); #if PY_MAJOR_VERSION < 3 if (likely(PyType_HasFeature(Py_TYPE(descr), Py_TPFLAGS_HAVE_CLASS))) #endif { descrgetfunc f = Py_TYPE(descr)->tp_descr_get; if (unlikely(f)) { PyObject *res = f(descr, obj, (PyObject *)tp); Py_DECREF(descr); return res; } } return descr; } #endif /* PyObject_GenericGetAttr */ #if CYTHON_USE_TYPE_SLOTS && CYTHON_USE_PYTYPE_LOOKUP && PY_VERSION_HEX < 0x03070000 static PyObject* __Pyx_PyObject_GenericGetAttr(PyObject* obj, PyObject* attr_name) { if (unlikely(Py_TYPE(obj)->tp_dictoffset)) { return PyObject_GenericGetAttr(obj, attr_name); } return __Pyx_PyObject_GenericGetAttrNoDict(obj, attr_name); } #endif /* SetVTable */ static int __Pyx_SetVtable(PyObject *dict, void *vtable) { #if PY_VERSION_HEX >= 0x02070000 PyObject *ob = PyCapsule_New(vtable, 0, 0); #else PyObject *ob = PyCObject_FromVoidPtr(vtable, 0); #endif if (!ob) goto bad; if (PyDict_SetItem(dict, __pyx_n_s_pyx_vtable, ob) < 0) goto bad; Py_DECREF(ob); return 0; bad: Py_XDECREF(ob); return -1; } /* SetupReduce */ static int __Pyx_setup_reduce_is_named(PyObject* meth, PyObject* name) { int ret; PyObject *name_attr; name_attr = __Pyx_PyObject_GetAttrStr(meth, __pyx_n_s_name); if (likely(name_attr)) { ret = PyObject_RichCompareBool(name_attr, name, Py_EQ); } else { ret = -1; } if (unlikely(ret < 0)) { PyErr_Clear(); ret = 0; } Py_XDECREF(name_attr); return ret; } static int __Pyx_setup_reduce(PyObject* type_obj) { int ret = 0; PyObject *object_reduce = NULL; PyObject *object_reduce_ex = NULL; PyObject *reduce = NULL; PyObject *reduce_ex = NULL; PyObject *reduce_cython = NULL; PyObject *setstate = NULL; PyObject *setstate_cython = NULL; #if CYTHON_USE_PYTYPE_LOOKUP if (_PyType_Lookup((PyTypeObject*)type_obj, __pyx_n_s_getstate)) goto GOOD; #else if (PyObject_HasAttr(type_obj, __pyx_n_s_getstate)) goto GOOD; #endif #if CYTHON_USE_PYTYPE_LOOKUP object_reduce_ex = _PyType_Lookup(&PyBaseObject_Type, __pyx_n_s_reduce_ex); if (!object_reduce_ex) goto BAD; #else object_reduce_ex = __Pyx_PyObject_GetAttrStr((PyObject*)&PyBaseObject_Type, __pyx_n_s_reduce_ex); if (!object_reduce_ex) goto BAD; #endif reduce_ex = __Pyx_PyObject_GetAttrStr(type_obj, __pyx_n_s_reduce_ex); if (unlikely(!reduce_ex)) goto BAD; if (reduce_ex == object_reduce_ex) { #if CYTHON_USE_PYTYPE_LOOKUP object_reduce = _PyType_Lookup(&PyBaseObject_Type, __pyx_n_s_reduce); if (!object_reduce) goto BAD; #else object_reduce = __Pyx_PyObject_GetAttrStr((PyObject*)&PyBaseObject_Type, __pyx_n_s_reduce); if (!object_reduce) goto BAD; #endif reduce = __Pyx_PyObject_GetAttrStr(type_obj, __pyx_n_s_reduce); if (unlikely(!reduce)) goto BAD; if (reduce == object_reduce || __Pyx_setup_reduce_is_named(reduce, __pyx_n_s_reduce_cython)) { reduce_cython = __Pyx_PyObject_GetAttrStr(type_obj, __pyx_n_s_reduce_cython); if (unlikely(!reduce_cython)) goto BAD; ret = PyDict_SetItem(((PyTypeObject*)type_obj)->tp_dict, __pyx_n_s_reduce, reduce_cython); if (unlikely(ret < 0)) goto BAD; ret = PyDict_DelItem(((PyTypeObject*)type_obj)->tp_dict, __pyx_n_s_reduce_cython); if (unlikely(ret < 0)) goto BAD; setstate = __Pyx_PyObject_GetAttrStr(type_obj, __pyx_n_s_setstate); if (!setstate) PyErr_Clear(); if (!setstate || __Pyx_setup_reduce_is_named(setstate, __pyx_n_s_setstate_cython)) { setstate_cython = __Pyx_PyObject_GetAttrStr(type_obj, __pyx_n_s_setstate_cython); if (unlikely(!setstate_cython)) goto BAD; ret = PyDict_SetItem(((PyTypeObject*)type_obj)->tp_dict, __pyx_n_s_setstate, setstate_cython); if (unlikely(ret < 0)) goto BAD; ret = PyDict_DelItem(((PyTypeObject*)type_obj)->tp_dict, __pyx_n_s_setstate_cython); if (unlikely(ret < 0)) goto BAD; } PyType_Modified((PyTypeObject*)type_obj); } } goto GOOD; BAD: if (!PyErr_Occurred()) PyErr_Format(PyExc_RuntimeError, "Unable to initialize pickling for %s", ((PyTypeObject*)type_obj)->tp_name); ret = -1; GOOD: #if !CYTHON_USE_PYTYPE_LOOKUP Py_XDECREF(object_reduce); Py_XDECREF(object_reduce_ex); #endif Py_XDECREF(reduce); Py_XDECREF(reduce_ex); Py_XDECREF(reduce_cython); Py_XDECREF(setstate); Py_XDECREF(setstate_cython); return ret; } /* Import */ static PyObject *__Pyx_Import(PyObject *name, PyObject *from_list, int level) { PyObject *empty_list = 0; PyObject *module = 0; PyObject *global_dict = 0; PyObject *empty_dict = 0; PyObject *list; #if PY_MAJOR_VERSION < 3 PyObject *py_import; py_import = __Pyx_PyObject_GetAttrStr(__pyx_b, __pyx_n_s_import); if (!py_import) goto bad; #endif if (from_list) list = from_list; else { empty_list = PyList_New(0); if (!empty_list) goto bad; list = empty_list; } global_dict = PyModule_GetDict(__pyx_m); if (!global_dict) goto bad; empty_dict = PyDict_New(); if (!empty_dict) goto bad; { #if PY_MAJOR_VERSION >= 3 if (level == -1) { if (strchr(__Pyx_MODULE_NAME, '.')) { module = PyImport_ImportModuleLevelObject( name, global_dict, empty_dict, list, 1); if (!module) { if (!PyErr_ExceptionMatches(PyExc_ImportError)) goto bad; PyErr_Clear(); } } level = 0; } #endif if (!module) { #if PY_MAJOR_VERSION < 3 PyObject *py_level = PyInt_FromLong(level); if (!py_level) goto bad; module = PyObject_CallFunctionObjArgs(py_import, name, global_dict, empty_dict, list, py_level, (PyObject *)NULL); Py_DECREF(py_level); #else module = PyImport_ImportModuleLevelObject( name, global_dict, empty_dict, list, level); #endif } } bad: #if PY_MAJOR_VERSION < 3 Py_XDECREF(py_import); #endif Py_XDECREF(empty_list); Py_XDECREF(empty_dict); return module; } /* ImportFrom */ static PyObject* __Pyx_ImportFrom(PyObject* module, PyObject* name) { PyObject* value = __Pyx_PyObject_GetAttrStr(module, name); if (unlikely(!value) && PyErr_ExceptionMatches(PyExc_AttributeError)) { PyErr_Format(PyExc_ImportError, #if PY_MAJOR_VERSION < 3 "cannot import name %.230s", PyString_AS_STRING(name)); #else "cannot import name %S", name); #endif } return value; } /* ClassMethod */ static PyObject* __Pyx_Method_ClassMethod(PyObject *method) { #if CYTHON_COMPILING_IN_PYPY && PYPY_VERSION_NUM <= 0x05080000 if (PyObject_TypeCheck(method, &PyWrapperDescr_Type)) { return PyClassMethod_New(method); } #else #if CYTHON_COMPILING_IN_PYSTON || CYTHON_COMPILING_IN_PYPY if (PyMethodDescr_Check(method)) #else static PyTypeObject *methoddescr_type = NULL; if (methoddescr_type == NULL) { PyObject *meth = PyObject_GetAttrString((PyObject*)&PyList_Type, "append"); if (!meth) return NULL; methoddescr_type = Py_TYPE(meth); Py_DECREF(meth); } if (__Pyx_TypeCheck(method, methoddescr_type)) #endif { PyMethodDescrObject *descr = (PyMethodDescrObject *)method; #if PY_VERSION_HEX < 0x03020000 PyTypeObject *d_type = descr->d_type; #else PyTypeObject *d_type = descr->d_common.d_type; #endif return PyDescr_NewClassMethod(d_type, descr->d_method); } #endif else if (PyMethod_Check(method)) { return PyClassMethod_New(PyMethod_GET_FUNCTION(method)); } else if (PyCFunction_Check(method)) { return PyClassMethod_New(method); } #ifdef __Pyx_CyFunction_USED else if (__Pyx_CyFunction_Check(method)) { return PyClassMethod_New(method); } #endif PyErr_SetString(PyExc_TypeError, "Class-level classmethod() can only be called on " "a method_descriptor or instance method."); return NULL; } /* GetNameInClass */ static PyObject *__Pyx_GetGlobalNameAfterAttributeLookup(PyObject *name) { PyObject *result; __Pyx_PyThreadState_declare __Pyx_PyThreadState_assign if (unlikely(!__Pyx_PyErr_ExceptionMatches(PyExc_AttributeError))) return NULL; __Pyx_PyErr_Clear(); __Pyx_GetModuleGlobalNameUncached(result, name); return result; } static PyObject *__Pyx__GetNameInClass(PyObject *nmspace, PyObject *name) { PyObject *result; result = __Pyx_PyObject_GetAttrStr(nmspace, name); if (!result) { result = __Pyx_GetGlobalNameAfterAttributeLookup(name); } return result; } /* CLineInTraceback */ #ifndef CYTHON_CLINE_IN_TRACEBACK static int __Pyx_CLineForTraceback(PyThreadState *tstate, int c_line) { PyObject *use_cline; PyObject *ptype, *pvalue, *ptraceback; #if CYTHON_COMPILING_IN_CPYTHON PyObject **cython_runtime_dict; #endif if (unlikely(!__pyx_cython_runtime)) { return c_line; } __Pyx_ErrFetchInState(tstate, &ptype, &pvalue, &ptraceback); #if CYTHON_COMPILING_IN_CPYTHON cython_runtime_dict = _PyObject_GetDictPtr(__pyx_cython_runtime); if (likely(cython_runtime_dict)) { __PYX_PY_DICT_LOOKUP_IF_MODIFIED( use_cline, *cython_runtime_dict, __Pyx_PyDict_GetItemStr(*cython_runtime_dict, __pyx_n_s_cline_in_traceback)) } else #endif { PyObject *use_cline_obj = __Pyx_PyObject_GetAttrStr(__pyx_cython_runtime, __pyx_n_s_cline_in_traceback); if (use_cline_obj) { use_cline = PyObject_Not(use_cline_obj) ? Py_False : Py_True; Py_DECREF(use_cline_obj); } else { PyErr_Clear(); use_cline = NULL; } } if (!use_cline) { c_line = 0; PyObject_SetAttr(__pyx_cython_runtime, __pyx_n_s_cline_in_traceback, Py_False); } else if (use_cline == Py_False || (use_cline != Py_True && PyObject_Not(use_cline) != 0)) { c_line = 0; } __Pyx_ErrRestoreInState(tstate, ptype, pvalue, ptraceback); return c_line; } #endif /* CodeObjectCache */ static int __pyx_bisect_code_objects(__Pyx_CodeObjectCacheEntry* entries, int count, int code_line) { int start = 0, mid = 0, end = count - 1; if (end >= 0 && code_line > entries[end].code_line) { return count; } while (start < end) { mid = start + (end - start) / 2; if (code_line < entries[mid].code_line) { end = mid; } else if (code_line > entries[mid].code_line) { start = mid + 1; } else { return mid; } } if (code_line <= entries[mid].code_line) { return mid; } else { return mid + 1; } } static PyCodeObject *__pyx_find_code_object(int code_line) { PyCodeObject* code_object; int pos; if (unlikely(!code_line) || unlikely(!__pyx_code_cache.entries)) { return NULL; } pos = __pyx_bisect_code_objects(__pyx_code_cache.entries, __pyx_code_cache.count, code_line); if (unlikely(pos >= __pyx_code_cache.count) || unlikely(__pyx_code_cache.entries[pos].code_line != code_line)) { return NULL; } code_object = __pyx_code_cache.entries[pos].code_object; Py_INCREF(code_object); return code_object; } static void __pyx_insert_code_object(int code_line, PyCodeObject* code_object) { int pos, i; __Pyx_CodeObjectCacheEntry* entries = __pyx_code_cache.entries; if (unlikely(!code_line)) { return; } if (unlikely(!entries)) { entries = (__Pyx_CodeObjectCacheEntry*)PyMem_Malloc(64*sizeof(__Pyx_CodeObjectCacheEntry)); if (likely(entries)) { __pyx_code_cache.entries = entries; __pyx_code_cache.max_count = 64; __pyx_code_cache.count = 1; entries[0].code_line = code_line; entries[0].code_object = code_object; Py_INCREF(code_object); } return; } pos = __pyx_bisect_code_objects(__pyx_code_cache.entries, __pyx_code_cache.count, code_line); if ((pos < __pyx_code_cache.count) && unlikely(__pyx_code_cache.entries[pos].code_line == code_line)) { PyCodeObject* tmp = entries[pos].code_object; entries[pos].code_object = code_object; Py_DECREF(tmp); return; } if (__pyx_code_cache.count == __pyx_code_cache.max_count) { int new_max = __pyx_code_cache.max_count + 64; entries = (__Pyx_CodeObjectCacheEntry*)PyMem_Realloc( __pyx_code_cache.entries, (size_t)new_max*sizeof(__Pyx_CodeObjectCacheEntry)); if (unlikely(!entries)) { return; } __pyx_code_cache.entries = entries; __pyx_code_cache.max_count = new_max; } for (i=__pyx_code_cache.count; i>pos; i--) { entries[i] = entries[i-1]; } entries[pos].code_line = code_line; entries[pos].code_object = code_object; __pyx_code_cache.count++; Py_INCREF(code_object); } /* AddTraceback */ #include "compile.h" #include "frameobject.h" #include "traceback.h" static PyCodeObject* __Pyx_CreateCodeObjectForTraceback( const char *funcname, int c_line, int py_line, const char *filename) { PyCodeObject *py_code = 0; PyObject *py_srcfile = 0; PyObject *py_funcname = 0; #if PY_MAJOR_VERSION < 3 py_srcfile = PyString_FromString(filename); #else py_srcfile = PyUnicode_FromString(filename); #endif if (!py_srcfile) goto bad; if (c_line) { #if PY_MAJOR_VERSION < 3 py_funcname = PyString_FromFormat( "%s (%s:%d)", funcname, __pyx_cfilenm, c_line); #else py_funcname = PyUnicode_FromFormat( "%s (%s:%d)", funcname, __pyx_cfilenm, c_line); #endif } else { #if PY_MAJOR_VERSION < 3 py_funcname = PyString_FromString(funcname); #else py_funcname = PyUnicode_FromString(funcname); #endif } if (!py_funcname) goto bad; py_code = __Pyx_PyCode_New( 0, 0, 0, 0, 0, __pyx_empty_bytes, /*PyObject *code,*/ __pyx_empty_tuple, /*PyObject *consts,*/ __pyx_empty_tuple, /*PyObject *names,*/ __pyx_empty_tuple, /*PyObject *varnames,*/ __pyx_empty_tuple, /*PyObject *freevars,*/ __pyx_empty_tuple, /*PyObject *cellvars,*/ py_srcfile, /*PyObject *filename,*/ py_funcname, /*PyObject *name,*/ py_line, __pyx_empty_bytes /*PyObject *lnotab*/ ); Py_DECREF(py_srcfile); Py_DECREF(py_funcname); return py_code; bad: Py_XDECREF(py_srcfile); Py_XDECREF(py_funcname); return NULL; } static void __Pyx_AddTraceback(const char *funcname, int c_line, int py_line, const char *filename) { PyCodeObject *py_code = 0; PyFrameObject *py_frame = 0; PyThreadState *tstate = __Pyx_PyThreadState_Current; if (c_line) { c_line = __Pyx_CLineForTraceback(tstate, c_line); } py_code = __pyx_find_code_object(c_line ? -c_line : py_line); if (!py_code) { py_code = __Pyx_CreateCodeObjectForTraceback( funcname, c_line, py_line, filename); if (!py_code) goto bad; __pyx_insert_code_object(c_line ? -c_line : py_line, py_code); } py_frame = PyFrame_New( tstate, /*PyThreadState *tstate,*/ py_code, /*PyCodeObject *code,*/ __pyx_d, /*PyObject *globals,*/ 0 /*PyObject *locals*/ ); if (!py_frame) goto bad; __Pyx_PyFrame_SetLineNumber(py_frame, py_line); PyTraceBack_Here(py_frame); bad: Py_XDECREF(py_code); Py_XDECREF(py_frame); } /* Declarations */ #if CYTHON_CCOMPLEX #ifdef __cplusplus static CYTHON_INLINE __pyx_t_float_complex __pyx_t_float_complex_from_parts(float x, float y) { return ::std::complex< float >(x, y); } #else static CYTHON_INLINE __pyx_t_float_complex __pyx_t_float_complex_from_parts(float x, float y) { return x + y*(__pyx_t_float_complex)_Complex_I; } #endif #else static CYTHON_INLINE __pyx_t_float_complex __pyx_t_float_complex_from_parts(float x, float y) { __pyx_t_float_complex z; z.real = x; z.imag = y; return z; } #endif /* Arithmetic */ #if CYTHON_CCOMPLEX #else static CYTHON_INLINE int __Pyx_c_eq_float(__pyx_t_float_complex a, __pyx_t_float_complex b) { return (a.real == b.real) && (a.imag == b.imag); } static CYTHON_INLINE __pyx_t_float_complex __Pyx_c_sum_float(__pyx_t_float_complex a, __pyx_t_float_complex b) { __pyx_t_float_complex z; z.real = a.real + b.real; z.imag = a.imag + b.imag; return z; } static CYTHON_INLINE __pyx_t_float_complex __Pyx_c_diff_float(__pyx_t_float_complex a, __pyx_t_float_complex b) { __pyx_t_float_complex z; z.real = a.real - b.real; z.imag = a.imag - b.imag; return z; } static CYTHON_INLINE __pyx_t_float_complex __Pyx_c_prod_float(__pyx_t_float_complex a, __pyx_t_float_complex b) { __pyx_t_float_complex z; z.real = a.real * b.real - a.imag * b.imag; z.imag = a.real * b.imag + a.imag * b.real; return z; } #if 1 static CYTHON_INLINE __pyx_t_float_complex __Pyx_c_quot_float(__pyx_t_float_complex a, __pyx_t_float_complex b) { if (b.imag == 0) { return __pyx_t_float_complex_from_parts(a.real / b.real, a.imag / b.real); } else if (fabsf(b.real) >= fabsf(b.imag)) { if (b.real == 0 && b.imag == 0) { return __pyx_t_float_complex_from_parts(a.real / b.real, a.imag / b.imag); } else { float r = b.imag / b.real; float s = (float)(1.0) / (b.real + b.imag * r); return __pyx_t_float_complex_from_parts( (a.real + a.imag * r) * s, (a.imag - a.real * r) * s); } } else { float r = b.real / b.imag; float s = (float)(1.0) / (b.imag + b.real * r); return __pyx_t_float_complex_from_parts( (a.real * r + a.imag) * s, (a.imag * r - a.real) * s); } } #else static CYTHON_INLINE __pyx_t_float_complex __Pyx_c_quot_float(__pyx_t_float_complex a, __pyx_t_float_complex b) { if (b.imag == 0) { return __pyx_t_float_complex_from_parts(a.real / b.real, a.imag / b.real); } else { float denom = b.real * b.real + b.imag * b.imag; return __pyx_t_float_complex_from_parts( (a.real * b.real + a.imag * b.imag) / denom, (a.imag * b.real - a.real * b.imag) / denom); } } #endif static CYTHON_INLINE __pyx_t_float_complex __Pyx_c_neg_float(__pyx_t_float_complex a) { __pyx_t_float_complex z; z.real = -a.real; z.imag = -a.imag; return z; } static CYTHON_INLINE int __Pyx_c_is_zero_float(__pyx_t_float_complex a) { return (a.real == 0) && (a.imag == 0); } static CYTHON_INLINE __pyx_t_float_complex __Pyx_c_conj_float(__pyx_t_float_complex a) { __pyx_t_float_complex z; z.real = a.real; z.imag = -a.imag; return z; } #if 1 static CYTHON_INLINE float __Pyx_c_abs_float(__pyx_t_float_complex z) { #if !defined(HAVE_HYPOT) || defined(_MSC_VER) return sqrtf(z.real*z.real + z.imag*z.imag); #else return hypotf(z.real, z.imag); #endif } static CYTHON_INLINE __pyx_t_float_complex __Pyx_c_pow_float(__pyx_t_float_complex a, __pyx_t_float_complex b) { __pyx_t_float_complex z; float r, lnr, theta, z_r, z_theta; if (b.imag == 0 && b.real == (int)b.real) { if (b.real < 0) { float denom = a.real * a.real + a.imag * a.imag; a.real = a.real / denom; a.imag = -a.imag / denom; b.real = -b.real; } switch ((int)b.real) { case 0: z.real = 1; z.imag = 0; return z; case 1: return a; case 2: z = __Pyx_c_prod_float(a, a); return __Pyx_c_prod_float(a, a); case 3: z = __Pyx_c_prod_float(a, a); return __Pyx_c_prod_float(z, a); case 4: z = __Pyx_c_prod_float(a, a); return __Pyx_c_prod_float(z, z); } } if (a.imag == 0) { if (a.real == 0) { return a; } else if (b.imag == 0) { z.real = powf(a.real, b.real); z.imag = 0; return z; } else if (a.real > 0) { r = a.real; theta = 0; } else { r = -a.real; theta = atan2f(0.0, -1.0); } } else { r = __Pyx_c_abs_float(a); theta = atan2f(a.imag, a.real); } lnr = logf(r); z_r = expf(lnr * b.real - theta * b.imag); z_theta = theta * b.real + lnr * b.imag; z.real = z_r * cosf(z_theta); z.imag = z_r * sinf(z_theta); return z; } #endif #endif /* Declarations */ #if CYTHON_CCOMPLEX #ifdef __cplusplus static CYTHON_INLINE __pyx_t_double_complex __pyx_t_double_complex_from_parts(double x, double y) { return ::std::complex< double >(x, y); } #else static CYTHON_INLINE __pyx_t_double_complex __pyx_t_double_complex_from_parts(double x, double y) { return x + y*(__pyx_t_double_complex)_Complex_I; } #endif #else static CYTHON_INLINE __pyx_t_double_complex __pyx_t_double_complex_from_parts(double x, double y) { __pyx_t_double_complex z; z.real = x; z.imag = y; return z; } #endif /* Arithmetic */ #if CYTHON_CCOMPLEX #else static CYTHON_INLINE int __Pyx_c_eq_double(__pyx_t_double_complex a, __pyx_t_double_complex b) { return (a.real == b.real) && (a.imag == b.imag); } static CYTHON_INLINE __pyx_t_double_complex __Pyx_c_sum_double(__pyx_t_double_complex a, __pyx_t_double_complex b) { __pyx_t_double_complex z; z.real = a.real + b.real; z.imag = a.imag + b.imag; return z; } static CYTHON_INLINE __pyx_t_double_complex __Pyx_c_diff_double(__pyx_t_double_complex a, __pyx_t_double_complex b) { __pyx_t_double_complex z; z.real = a.real - b.real; z.imag = a.imag - b.imag; return z; } static CYTHON_INLINE __pyx_t_double_complex __Pyx_c_prod_double(__pyx_t_double_complex a, __pyx_t_double_complex b) { __pyx_t_double_complex z; z.real = a.real * b.real - a.imag * b.imag; z.imag = a.real * b.imag + a.imag * b.real; return z; } #if 1 static CYTHON_INLINE __pyx_t_double_complex __Pyx_c_quot_double(__pyx_t_double_complex a, __pyx_t_double_complex b) { if (b.imag == 0) { return __pyx_t_double_complex_from_parts(a.real / b.real, a.imag / b.real); } else if (fabs(b.real) >= fabs(b.imag)) { if (b.real == 0 && b.imag == 0) { return __pyx_t_double_complex_from_parts(a.real / b.real, a.imag / b.imag); } else { double r = b.imag / b.real; double s = (double)(1.0) / (b.real + b.imag * r); return __pyx_t_double_complex_from_parts( (a.real + a.imag * r) * s, (a.imag - a.real * r) * s); } } else { double r = b.real / b.imag; double s = (double)(1.0) / (b.imag + b.real * r); return __pyx_t_double_complex_from_parts( (a.real * r + a.imag) * s, (a.imag * r - a.real) * s); } } #else static CYTHON_INLINE __pyx_t_double_complex __Pyx_c_quot_double(__pyx_t_double_complex a, __pyx_t_double_complex b) { if (b.imag == 0) { return __pyx_t_double_complex_from_parts(a.real / b.real, a.imag / b.real); } else { double denom = b.real * b.real + b.imag * b.imag; return __pyx_t_double_complex_from_parts( (a.real * b.real + a.imag * b.imag) / denom, (a.imag * b.real - a.real * b.imag) / denom); } } #endif static CYTHON_INLINE __pyx_t_double_complex __Pyx_c_neg_double(__pyx_t_double_complex a) { __pyx_t_double_complex z; z.real = -a.real; z.imag = -a.imag; return z; } static CYTHON_INLINE int __Pyx_c_is_zero_double(__pyx_t_double_complex a) { return (a.real == 0) && (a.imag == 0); } static CYTHON_INLINE __pyx_t_double_complex __Pyx_c_conj_double(__pyx_t_double_complex a) { __pyx_t_double_complex z; z.real = a.real; z.imag = -a.imag; return z; } #if 1 static CYTHON_INLINE double __Pyx_c_abs_double(__pyx_t_double_complex z) { #if !defined(HAVE_HYPOT) || defined(_MSC_VER) return sqrt(z.real*z.real + z.imag*z.imag); #else return hypot(z.real, z.imag); #endif } static CYTHON_INLINE __pyx_t_double_complex __Pyx_c_pow_double(__pyx_t_double_complex a, __pyx_t_double_complex b) { __pyx_t_double_complex z; double r, lnr, theta, z_r, z_theta; if (b.imag == 0 && b.real == (int)b.real) { if (b.real < 0) { double denom = a.real * a.real + a.imag * a.imag; a.real = a.real / denom; a.imag = -a.imag / denom; b.real = -b.real; } switch ((int)b.real) { case 0: z.real = 1; z.imag = 0; return z; case 1: return a; case 2: z = __Pyx_c_prod_double(a, a); return __Pyx_c_prod_double(a, a); case 3: z = __Pyx_c_prod_double(a, a); return __Pyx_c_prod_double(z, a); case 4: z = __Pyx_c_prod_double(a, a); return __Pyx_c_prod_double(z, z); } } if (a.imag == 0) { if (a.real == 0) { return a; } else if (b.imag == 0) { z.real = pow(a.real, b.real); z.imag = 0; return z; } else if (a.real > 0) { r = a.real; theta = 0; } else { r = -a.real; theta = atan2(0.0, -1.0); } } else { r = __Pyx_c_abs_double(a); theta = atan2(a.imag, a.real); } lnr = log(r); z_r = exp(lnr * b.real - theta * b.imag); z_theta = theta * b.real + lnr * b.imag; z.real = z_r * cos(z_theta); z.imag = z_r * sin(z_theta); return z; } #endif #endif /* CIntToPy */ static CYTHON_INLINE PyObject* __Pyx_PyInt_From_int(int value) { const int neg_one = (int) ((int) 0 - (int) 1), const_zero = (int) 0; const int is_unsigned = neg_one > const_zero; if (is_unsigned) { if (sizeof(int) < sizeof(long)) { return PyInt_FromLong((long) value); } else if (sizeof(int) <= sizeof(unsigned long)) { return PyLong_FromUnsignedLong((unsigned long) value); #ifdef HAVE_LONG_LONG } else if (sizeof(int) <= sizeof(unsigned PY_LONG_LONG)) { return PyLong_FromUnsignedLongLong((unsigned PY_LONG_LONG) value); #endif } } else { if (sizeof(int) <= sizeof(long)) { return PyInt_FromLong((long) value); #ifdef HAVE_LONG_LONG } else if (sizeof(int) <= sizeof(PY_LONG_LONG)) { return PyLong_FromLongLong((PY_LONG_LONG) value); #endif } } { int one = 1; int little = (int)*(unsigned char *)&one; unsigned char *bytes = (unsigned char *)&value; return _PyLong_FromByteArray(bytes, sizeof(int), little, !is_unsigned); } } /* CIntFromPyVerify */ #define __PYX_VERIFY_RETURN_INT(target_type, func_type, func_value)\ __PYX__VERIFY_RETURN_INT(target_type, func_type, func_value, 0) #define __PYX_VERIFY_RETURN_INT_EXC(target_type, func_type, func_value)\ __PYX__VERIFY_RETURN_INT(target_type, func_type, func_value, 1) #define __PYX__VERIFY_RETURN_INT(target_type, func_type, func_value, exc)\ {\ func_type value = func_value;\ if (sizeof(target_type) < sizeof(func_type)) {\ if (unlikely(value != (func_type) (target_type) value)) {\ func_type zero = 0;\ if (exc && unlikely(value == (func_type)-1 && PyErr_Occurred()))\ return (target_type) -1;\ if (is_unsigned && unlikely(value < zero))\ goto raise_neg_overflow;\ else\ goto raise_overflow;\ }\ }\ return (target_type) value;\ } /* CIntToPy */ static CYTHON_INLINE PyObject* __Pyx_PyInt_From_enum__NPY_TYPES(enum NPY_TYPES value) { const enum NPY_TYPES neg_one = (enum NPY_TYPES) ((enum NPY_TYPES) 0 - (enum NPY_TYPES) 1), const_zero = (enum NPY_TYPES) 0; const int is_unsigned = neg_one > const_zero; if (is_unsigned) { if (sizeof(enum NPY_TYPES) < sizeof(long)) { return PyInt_FromLong((long) value); } else if (sizeof(enum NPY_TYPES) <= sizeof(unsigned long)) { return PyLong_FromUnsignedLong((unsigned long) value); #ifdef HAVE_LONG_LONG } else if (sizeof(enum NPY_TYPES) <= sizeof(unsigned PY_LONG_LONG)) { return PyLong_FromUnsignedLongLong((unsigned PY_LONG_LONG) value); #endif } } else { if (sizeof(enum NPY_TYPES) <= sizeof(long)) { return PyInt_FromLong((long) value); #ifdef HAVE_LONG_LONG } else if (sizeof(enum NPY_TYPES) <= sizeof(PY_LONG_LONG)) { return PyLong_FromLongLong((PY_LONG_LONG) value); #endif } } { int one = 1; int little = (int)*(unsigned char *)&one; unsigned char *bytes = (unsigned char *)&value; return _PyLong_FromByteArray(bytes, sizeof(enum NPY_TYPES), little, !is_unsigned); } } /* CIntFromPy */ static CYTHON_INLINE int __Pyx_PyInt_As_int(PyObject *x) { const int neg_one = (int) ((int) 0 - (int) 1), const_zero = (int) 0; const int is_unsigned = neg_one > const_zero; #if PY_MAJOR_VERSION < 3 if (likely(PyInt_Check(x))) { if (sizeof(int) < sizeof(long)) { __PYX_VERIFY_RETURN_INT(int, long, PyInt_AS_LONG(x)) } else { long val = PyInt_AS_LONG(x); if (is_unsigned && unlikely(val < 0)) { goto raise_neg_overflow; } return (int) val; } } else #endif if (likely(PyLong_Check(x))) { if (is_unsigned) { #if CYTHON_USE_PYLONG_INTERNALS const digit* digits = ((PyLongObject*)x)->ob_digit; switch (Py_SIZE(x)) { case 0: return (int) 0; case 1: __PYX_VERIFY_RETURN_INT(int, digit, digits[0]) case 2: if (8 * sizeof(int) > 1 * PyLong_SHIFT) { if (8 * sizeof(unsigned long) > 2 * PyLong_SHIFT) { __PYX_VERIFY_RETURN_INT(int, unsigned long, (((((unsigned long)digits[1]) << PyLong_SHIFT) | (unsigned long)digits[0]))) } else if (8 * sizeof(int) >= 2 * PyLong_SHIFT) { return (int) (((((int)digits[1]) << PyLong_SHIFT) | (int)digits[0])); } } break; case 3: if (8 * sizeof(int) > 2 * PyLong_SHIFT) { if (8 * sizeof(unsigned long) > 3 * PyLong_SHIFT) { __PYX_VERIFY_RETURN_INT(int, unsigned long, (((((((unsigned long)digits[2]) << PyLong_SHIFT) | (unsigned long)digits[1]) << PyLong_SHIFT) | (unsigned long)digits[0]))) } else if (8 * sizeof(int) >= 3 * PyLong_SHIFT) { return (int) (((((((int)digits[2]) << PyLong_SHIFT) | (int)digits[1]) << PyLong_SHIFT) | (int)digits[0])); } } break; case 4: if (8 * sizeof(int) > 3 * PyLong_SHIFT) { if (8 * sizeof(unsigned long) > 4 * PyLong_SHIFT) { __PYX_VERIFY_RETURN_INT(int, unsigned long, (((((((((unsigned long)digits[3]) << PyLong_SHIFT) | (unsigned long)digits[2]) << PyLong_SHIFT) | (unsigned long)digits[1]) << PyLong_SHIFT) | (unsigned long)digits[0]))) } else if (8 * sizeof(int) >= 4 * PyLong_SHIFT) { return (int) (((((((((int)digits[3]) << PyLong_SHIFT) | (int)digits[2]) << PyLong_SHIFT) | (int)digits[1]) << PyLong_SHIFT) | (int)digits[0])); } } break; } #endif #if CYTHON_COMPILING_IN_CPYTHON if (unlikely(Py_SIZE(x) < 0)) { goto raise_neg_overflow; } #else { int result = PyObject_RichCompareBool(x, Py_False, Py_LT); if (unlikely(result < 0)) return (int) -1; if (unlikely(result == 1)) goto raise_neg_overflow; } #endif if (sizeof(int) <= sizeof(unsigned long)) { __PYX_VERIFY_RETURN_INT_EXC(int, unsigned long, PyLong_AsUnsignedLong(x)) #ifdef HAVE_LONG_LONG } else if (sizeof(int) <= sizeof(unsigned PY_LONG_LONG)) { __PYX_VERIFY_RETURN_INT_EXC(int, unsigned PY_LONG_LONG, PyLong_AsUnsignedLongLong(x)) #endif } } else { #if CYTHON_USE_PYLONG_INTERNALS const digit* digits = ((PyLongObject*)x)->ob_digit; switch (Py_SIZE(x)) { case 0: return (int) 0; case -1: __PYX_VERIFY_RETURN_INT(int, sdigit, (sdigit) (-(sdigit)digits[0])) case 1: __PYX_VERIFY_RETURN_INT(int, digit, +digits[0]) case -2: if (8 * sizeof(int) - 1 > 1 * PyLong_SHIFT) { if (8 * sizeof(unsigned long) > 2 * PyLong_SHIFT) { __PYX_VERIFY_RETURN_INT(int, long, -(long) (((((unsigned long)digits[1]) << PyLong_SHIFT) | (unsigned long)digits[0]))) } else if (8 * sizeof(int) - 1 > 2 * PyLong_SHIFT) { return (int) (((int)-1)*(((((int)digits[1]) << PyLong_SHIFT) | (int)digits[0]))); } } break; case 2: if (8 * sizeof(int) > 1 * PyLong_SHIFT) { if (8 * sizeof(unsigned long) > 2 * PyLong_SHIFT) { __PYX_VERIFY_RETURN_INT(int, unsigned long, (((((unsigned long)digits[1]) << PyLong_SHIFT) | (unsigned long)digits[0]))) } else if (8 * sizeof(int) - 1 > 2 * PyLong_SHIFT) { return (int) ((((((int)digits[1]) << PyLong_SHIFT) | (int)digits[0]))); } } break; case -3: if (8 * sizeof(int) - 1 > 2 * PyLong_SHIFT) { if (8 * sizeof(unsigned long) > 3 * PyLong_SHIFT) { __PYX_VERIFY_RETURN_INT(int, long, -(long) (((((((unsigned long)digits[2]) << PyLong_SHIFT) | (unsigned long)digits[1]) << PyLong_SHIFT) | (unsigned long)digits[0]))) } else if (8 * sizeof(int) - 1 > 3 * PyLong_SHIFT) { return (int) (((int)-1)*(((((((int)digits[2]) << PyLong_SHIFT) | (int)digits[1]) << PyLong_SHIFT) | (int)digits[0]))); } } break; case 3: if (8 * sizeof(int) > 2 * PyLong_SHIFT) { if (8 * sizeof(unsigned long) > 3 * PyLong_SHIFT) { __PYX_VERIFY_RETURN_INT(int, unsigned long, (((((((unsigned long)digits[2]) << PyLong_SHIFT) | (unsigned long)digits[1]) << PyLong_SHIFT) | (unsigned long)digits[0]))) } else if (8 * sizeof(int) - 1 > 3 * PyLong_SHIFT) { return (int) ((((((((int)digits[2]) << PyLong_SHIFT) | (int)digits[1]) << PyLong_SHIFT) | (int)digits[0]))); } } break; case -4: if (8 * sizeof(int) - 1 > 3 * PyLong_SHIFT) { if (8 * sizeof(unsigned long) > 4 * PyLong_SHIFT) { __PYX_VERIFY_RETURN_INT(int, long, -(long) (((((((((unsigned long)digits[3]) << PyLong_SHIFT) | (unsigned long)digits[2]) << PyLong_SHIFT) | (unsigned long)digits[1]) << PyLong_SHIFT) | (unsigned long)digits[0]))) } else if (8 * sizeof(int) - 1 > 4 * PyLong_SHIFT) { return (int) (((int)-1)*(((((((((int)digits[3]) << PyLong_SHIFT) | (int)digits[2]) << PyLong_SHIFT) | (int)digits[1]) << PyLong_SHIFT) | (int)digits[0]))); } } break; case 4: if (8 * sizeof(int) > 3 * PyLong_SHIFT) { if (8 * sizeof(unsigned long) > 4 * PyLong_SHIFT) { __PYX_VERIFY_RETURN_INT(int, unsigned long, (((((((((unsigned long)digits[3]) << PyLong_SHIFT) | (unsigned long)digits[2]) << PyLong_SHIFT) | (unsigned long)digits[1]) << PyLong_SHIFT) | (unsigned long)digits[0]))) } else if (8 * sizeof(int) - 1 > 4 * PyLong_SHIFT) { return (int) ((((((((((int)digits[3]) << PyLong_SHIFT) | (int)digits[2]) << PyLong_SHIFT) | (int)digits[1]) << PyLong_SHIFT) | (int)digits[0]))); } } break; } #endif if (sizeof(int) <= sizeof(long)) { __PYX_VERIFY_RETURN_INT_EXC(int, long, PyLong_AsLong(x)) #ifdef HAVE_LONG_LONG } else if (sizeof(int) <= sizeof(PY_LONG_LONG)) { __PYX_VERIFY_RETURN_INT_EXC(int, PY_LONG_LONG, PyLong_AsLongLong(x)) #endif } } { #if CYTHON_COMPILING_IN_PYPY && !defined(_PyLong_AsByteArray) PyErr_SetString(PyExc_RuntimeError, "_PyLong_AsByteArray() not available in PyPy, cannot convert large numbers"); #else int val; PyObject *v = __Pyx_PyNumber_IntOrLong(x); #if PY_MAJOR_VERSION < 3 if (likely(v) && !PyLong_Check(v)) { PyObject *tmp = v; v = PyNumber_Long(tmp); Py_DECREF(tmp); } #endif if (likely(v)) { int one = 1; int is_little = (int)*(unsigned char *)&one; unsigned char *bytes = (unsigned char *)&val; int ret = _PyLong_AsByteArray((PyLongObject *)v, bytes, sizeof(val), is_little, !is_unsigned); Py_DECREF(v); if (likely(!ret)) return val; } #endif return (int) -1; } } else { int val; PyObject *tmp = __Pyx_PyNumber_IntOrLong(x); if (!tmp) return (int) -1; val = __Pyx_PyInt_As_int(tmp); Py_DECREF(tmp); return val; } raise_overflow: PyErr_SetString(PyExc_OverflowError, "value too large to convert to int"); return (int) -1; raise_neg_overflow: PyErr_SetString(PyExc_OverflowError, "can't convert negative value to int"); return (int) -1; } /* CIntToPy */ static CYTHON_INLINE PyObject* __Pyx_PyInt_From_long(long value) { const long neg_one = (long) ((long) 0 - (long) 1), const_zero = (long) 0; const int is_unsigned = neg_one > const_zero; if (is_unsigned) { if (sizeof(long) < sizeof(long)) { return PyInt_FromLong((long) value); } else if (sizeof(long) <= sizeof(unsigned long)) { return PyLong_FromUnsignedLong((unsigned long) value); #ifdef HAVE_LONG_LONG } else if (sizeof(long) <= sizeof(unsigned PY_LONG_LONG)) { return PyLong_FromUnsignedLongLong((unsigned PY_LONG_LONG) value); #endif } } else { if (sizeof(long) <= sizeof(long)) { return PyInt_FromLong((long) value); #ifdef HAVE_LONG_LONG } else if (sizeof(long) <= sizeof(PY_LONG_LONG)) { return PyLong_FromLongLong((PY_LONG_LONG) value); #endif } } { int one = 1; int little = (int)*(unsigned char *)&one; unsigned char *bytes = (unsigned char *)&value; return _PyLong_FromByteArray(bytes, sizeof(long), little, !is_unsigned); } } /* CIntFromPy */ static CYTHON_INLINE long __Pyx_PyInt_As_long(PyObject *x) { const long neg_one = (long) ((long) 0 - (long) 1), const_zero = (long) 0; const int is_unsigned = neg_one > const_zero; #if PY_MAJOR_VERSION < 3 if (likely(PyInt_Check(x))) { if (sizeof(long) < sizeof(long)) { __PYX_VERIFY_RETURN_INT(long, long, PyInt_AS_LONG(x)) } else { long val = PyInt_AS_LONG(x); if (is_unsigned && unlikely(val < 0)) { goto raise_neg_overflow; } return (long) val; } } else #endif if (likely(PyLong_Check(x))) { if (is_unsigned) { #if CYTHON_USE_PYLONG_INTERNALS const digit* digits = ((PyLongObject*)x)->ob_digit; switch (Py_SIZE(x)) { case 0: return (long) 0; case 1: __PYX_VERIFY_RETURN_INT(long, digit, digits[0]) case 2: if (8 * sizeof(long) > 1 * PyLong_SHIFT) { if (8 * sizeof(unsigned long) > 2 * PyLong_SHIFT) { __PYX_VERIFY_RETURN_INT(long, unsigned long, (((((unsigned long)digits[1]) << PyLong_SHIFT) | (unsigned long)digits[0]))) } else if (8 * sizeof(long) >= 2 * PyLong_SHIFT) { return (long) (((((long)digits[1]) << PyLong_SHIFT) | (long)digits[0])); } } break; case 3: if (8 * sizeof(long) > 2 * PyLong_SHIFT) { if (8 * sizeof(unsigned long) > 3 * PyLong_SHIFT) { __PYX_VERIFY_RETURN_INT(long, unsigned long, (((((((unsigned long)digits[2]) << PyLong_SHIFT) | (unsigned long)digits[1]) << PyLong_SHIFT) | (unsigned long)digits[0]))) } else if (8 * sizeof(long) >= 3 * PyLong_SHIFT) { return (long) (((((((long)digits[2]) << PyLong_SHIFT) | (long)digits[1]) << PyLong_SHIFT) | (long)digits[0])); } } break; case 4: if (8 * sizeof(long) > 3 * PyLong_SHIFT) { if (8 * sizeof(unsigned long) > 4 * PyLong_SHIFT) { __PYX_VERIFY_RETURN_INT(long, unsigned long, (((((((((unsigned long)digits[3]) << PyLong_SHIFT) | (unsigned long)digits[2]) << PyLong_SHIFT) | (unsigned long)digits[1]) << PyLong_SHIFT) | (unsigned long)digits[0]))) } else if (8 * sizeof(long) >= 4 * PyLong_SHIFT) { return (long) (((((((((long)digits[3]) << PyLong_SHIFT) | (long)digits[2]) << PyLong_SHIFT) | (long)digits[1]) << PyLong_SHIFT) | (long)digits[0])); } } break; } #endif #if CYTHON_COMPILING_IN_CPYTHON if (unlikely(Py_SIZE(x) < 0)) { goto raise_neg_overflow; } #else { int result = PyObject_RichCompareBool(x, Py_False, Py_LT); if (unlikely(result < 0)) return (long) -1; if (unlikely(result == 1)) goto raise_neg_overflow; } #endif if (sizeof(long) <= sizeof(unsigned long)) { __PYX_VERIFY_RETURN_INT_EXC(long, unsigned long, PyLong_AsUnsignedLong(x)) #ifdef HAVE_LONG_LONG } else if (sizeof(long) <= sizeof(unsigned PY_LONG_LONG)) { __PYX_VERIFY_RETURN_INT_EXC(long, unsigned PY_LONG_LONG, PyLong_AsUnsignedLongLong(x)) #endif } } else { #if CYTHON_USE_PYLONG_INTERNALS const digit* digits = ((PyLongObject*)x)->ob_digit; switch (Py_SIZE(x)) { case 0: return (long) 0; case -1: __PYX_VERIFY_RETURN_INT(long, sdigit, (sdigit) (-(sdigit)digits[0])) case 1: __PYX_VERIFY_RETURN_INT(long, digit, +digits[0]) case -2: if (8 * sizeof(long) - 1 > 1 * PyLong_SHIFT) { if (8 * sizeof(unsigned long) > 2 * PyLong_SHIFT) { __PYX_VERIFY_RETURN_INT(long, long, -(long) (((((unsigned long)digits[1]) << PyLong_SHIFT) | (unsigned long)digits[0]))) } else if (8 * sizeof(long) - 1 > 2 * PyLong_SHIFT) { return (long) (((long)-1)*(((((long)digits[1]) << PyLong_SHIFT) | (long)digits[0]))); } } break; case 2: if (8 * sizeof(long) > 1 * PyLong_SHIFT) { if (8 * sizeof(unsigned long) > 2 * PyLong_SHIFT) { __PYX_VERIFY_RETURN_INT(long, unsigned long, (((((unsigned long)digits[1]) << PyLong_SHIFT) | (unsigned long)digits[0]))) } else if (8 * sizeof(long) - 1 > 2 * PyLong_SHIFT) { return (long) ((((((long)digits[1]) << PyLong_SHIFT) | (long)digits[0]))); } } break; case -3: if (8 * sizeof(long) - 1 > 2 * PyLong_SHIFT) { if (8 * sizeof(unsigned long) > 3 * PyLong_SHIFT) { __PYX_VERIFY_RETURN_INT(long, long, -(long) (((((((unsigned long)digits[2]) << PyLong_SHIFT) | (unsigned long)digits[1]) << PyLong_SHIFT) | (unsigned long)digits[0]))) } else if (8 * sizeof(long) - 1 > 3 * PyLong_SHIFT) { return (long) (((long)-1)*(((((((long)digits[2]) << PyLong_SHIFT) | (long)digits[1]) << PyLong_SHIFT) | (long)digits[0]))); } } break; case 3: if (8 * sizeof(long) > 2 * PyLong_SHIFT) { if (8 * sizeof(unsigned long) > 3 * PyLong_SHIFT) { __PYX_VERIFY_RETURN_INT(long, unsigned long, (((((((unsigned long)digits[2]) << PyLong_SHIFT) | (unsigned long)digits[1]) << PyLong_SHIFT) | (unsigned long)digits[0]))) } else if (8 * sizeof(long) - 1 > 3 * PyLong_SHIFT) { return (long) ((((((((long)digits[2]) << PyLong_SHIFT) | (long)digits[1]) << PyLong_SHIFT) | (long)digits[0]))); } } break; case -4: if (8 * sizeof(long) - 1 > 3 * PyLong_SHIFT) { if (8 * sizeof(unsigned long) > 4 * PyLong_SHIFT) { __PYX_VERIFY_RETURN_INT(long, long, -(long) (((((((((unsigned long)digits[3]) << PyLong_SHIFT) | (unsigned long)digits[2]) << PyLong_SHIFT) | (unsigned long)digits[1]) << PyLong_SHIFT) | (unsigned long)digits[0]))) } else if (8 * sizeof(long) - 1 > 4 * PyLong_SHIFT) { return (long) (((long)-1)*(((((((((long)digits[3]) << PyLong_SHIFT) | (long)digits[2]) << PyLong_SHIFT) | (long)digits[1]) << PyLong_SHIFT) | (long)digits[0]))); } } break; case 4: if (8 * sizeof(long) > 3 * PyLong_SHIFT) { if (8 * sizeof(unsigned long) > 4 * PyLong_SHIFT) { __PYX_VERIFY_RETURN_INT(long, unsigned long, (((((((((unsigned long)digits[3]) << PyLong_SHIFT) | (unsigned long)digits[2]) << PyLong_SHIFT) | (unsigned long)digits[1]) << PyLong_SHIFT) | (unsigned long)digits[0]))) } else if (8 * sizeof(long) - 1 > 4 * PyLong_SHIFT) { return (long) ((((((((((long)digits[3]) << PyLong_SHIFT) | (long)digits[2]) << PyLong_SHIFT) | (long)digits[1]) << PyLong_SHIFT) | (long)digits[0]))); } } break; } #endif if (sizeof(long) <= sizeof(long)) { __PYX_VERIFY_RETURN_INT_EXC(long, long, PyLong_AsLong(x)) #ifdef HAVE_LONG_LONG } else if (sizeof(long) <= sizeof(PY_LONG_LONG)) { __PYX_VERIFY_RETURN_INT_EXC(long, PY_LONG_LONG, PyLong_AsLongLong(x)) #endif } } { #if CYTHON_COMPILING_IN_PYPY && !defined(_PyLong_AsByteArray) PyErr_SetString(PyExc_RuntimeError, "_PyLong_AsByteArray() not available in PyPy, cannot convert large numbers"); #else long val; PyObject *v = __Pyx_PyNumber_IntOrLong(x); #if PY_MAJOR_VERSION < 3 if (likely(v) && !PyLong_Check(v)) { PyObject *tmp = v; v = PyNumber_Long(tmp); Py_DECREF(tmp); } #endif if (likely(v)) { int one = 1; int is_little = (int)*(unsigned char *)&one; unsigned char *bytes = (unsigned char *)&val; int ret = _PyLong_AsByteArray((PyLongObject *)v, bytes, sizeof(val), is_little, !is_unsigned); Py_DECREF(v); if (likely(!ret)) return val; } #endif return (long) -1; } } else { long val; PyObject *tmp = __Pyx_PyNumber_IntOrLong(x); if (!tmp) return (long) -1; val = __Pyx_PyInt_As_long(tmp); Py_DECREF(tmp); return val; } raise_overflow: PyErr_SetString(PyExc_OverflowError, "value too large to convert to long"); return (long) -1; raise_neg_overflow: PyErr_SetString(PyExc_OverflowError, "can't convert negative value to long"); return (long) -1; } /* FastTypeChecks */ #if CYTHON_COMPILING_IN_CPYTHON static int __Pyx_InBases(PyTypeObject *a, PyTypeObject *b) { while (a) { a = a->tp_base; if (a == b) return 1; } return b == &PyBaseObject_Type; } static CYTHON_INLINE int __Pyx_IsSubtype(PyTypeObject *a, PyTypeObject *b) { PyObject *mro; if (a == b) return 1; mro = a->tp_mro; if (likely(mro)) { Py_ssize_t i, n; n = PyTuple_GET_SIZE(mro); for (i = 0; i < n; i++) { if (PyTuple_GET_ITEM(mro, i) == (PyObject *)b) return 1; } return 0; } return __Pyx_InBases(a, b); } #if PY_MAJOR_VERSION == 2 static int __Pyx_inner_PyErr_GivenExceptionMatches2(PyObject *err, PyObject* exc_type1, PyObject* exc_type2) { PyObject *exception, *value, *tb; int res; __Pyx_PyThreadState_declare __Pyx_PyThreadState_assign __Pyx_ErrFetch(&exception, &value, &tb); res = exc_type1 ? PyObject_IsSubclass(err, exc_type1) : 0; if (unlikely(res == -1)) { PyErr_WriteUnraisable(err); res = 0; } if (!res) { res = PyObject_IsSubclass(err, exc_type2); if (unlikely(res == -1)) { PyErr_WriteUnraisable(err); res = 0; } } __Pyx_ErrRestore(exception, value, tb); return res; } #else static CYTHON_INLINE int __Pyx_inner_PyErr_GivenExceptionMatches2(PyObject *err, PyObject* exc_type1, PyObject *exc_type2) { int res = exc_type1 ? __Pyx_IsSubtype((PyTypeObject*)err, (PyTypeObject*)exc_type1) : 0; if (!res) { res = __Pyx_IsSubtype((PyTypeObject*)err, (PyTypeObject*)exc_type2); } return res; } #endif static int __Pyx_PyErr_GivenExceptionMatchesTuple(PyObject *exc_type, PyObject *tuple) { Py_ssize_t i, n; assert(PyExceptionClass_Check(exc_type)); n = PyTuple_GET_SIZE(tuple); #if PY_MAJOR_VERSION >= 3 for (i=0; i<n; i++) { if (exc_type == PyTuple_GET_ITEM(tuple, i)) return 1; } #endif for (i=0; i<n; i++) { PyObject *t = PyTuple_GET_ITEM(tuple, i); #if PY_MAJOR_VERSION < 3 if (likely(exc_type == t)) return 1; #endif if (likely(PyExceptionClass_Check(t))) { if (__Pyx_inner_PyErr_GivenExceptionMatches2(exc_type, NULL, t)) return 1; } else { } } return 0; } static CYTHON_INLINE int __Pyx_PyErr_GivenExceptionMatches(PyObject *err, PyObject* exc_type) { if (likely(err == exc_type)) return 1; if (likely(PyExceptionClass_Check(err))) { if (likely(PyExceptionClass_Check(exc_type))) { return __Pyx_inner_PyErr_GivenExceptionMatches2(err, NULL, exc_type); } else if (likely(PyTuple_Check(exc_type))) { return __Pyx_PyErr_GivenExceptionMatchesTuple(err, exc_type); } else { } } return PyErr_GivenExceptionMatches(err, exc_type); } static CYTHON_INLINE int __Pyx_PyErr_GivenExceptionMatches2(PyObject *err, PyObject *exc_type1, PyObject *exc_type2) { assert(PyExceptionClass_Check(exc_type1)); assert(PyExceptionClass_Check(exc_type2)); if (likely(err == exc_type1 || err == exc_type2)) return 1; if (likely(PyExceptionClass_Check(err))) { return __Pyx_inner_PyErr_GivenExceptionMatches2(err, exc_type1, exc_type2); } return (PyErr_GivenExceptionMatches(err, exc_type1) || PyErr_GivenExceptionMatches(err, exc_type2)); } #endif /* CheckBinaryVersion */ static int __Pyx_check_binary_version(void) { char ctversion[4], rtversion[4]; PyOS_snprintf(ctversion, 4, "%d.%d", PY_MAJOR_VERSION, PY_MINOR_VERSION); PyOS_snprintf(rtversion, 4, "%s", Py_GetVersion()); if (ctversion[0] != rtversion[0] || ctversion[2] != rtversion[2]) { char message[200]; PyOS_snprintf(message, sizeof(message), "compiletime version %s of module '%.100s' " "does not match runtime version %s", ctversion, __Pyx_MODULE_NAME, rtversion); return PyErr_WarnEx(NULL, message, 1); } return 0; } /* InitStrings */ static int __Pyx_InitStrings(__Pyx_StringTabEntry *t) { while (t->p) { #if PY_MAJOR_VERSION < 3 if (t->is_unicode) { *t->p = PyUnicode_DecodeUTF8(t->s, t->n - 1, NULL); } else if (t->intern) { *t->p = PyString_InternFromString(t->s); } else { *t->p = PyString_FromStringAndSize(t->s, t->n - 1); } #else if (t->is_unicode | t->is_str) { if (t->intern) { *t->p = PyUnicode_InternFromString(t->s); } else if (t->encoding) { *t->p = PyUnicode_Decode(t->s, t->n - 1, t->encoding, NULL); } else { *t->p = PyUnicode_FromStringAndSize(t->s, t->n - 1); } } else { *t->p = PyBytes_FromStringAndSize(t->s, t->n - 1); } #endif if (!*t->p) return -1; if (PyObject_Hash(*t->p) == -1) return -1; ++t; } return 0; } static CYTHON_INLINE PyObject* __Pyx_PyUnicode_FromString(const char* c_str) { return __Pyx_PyUnicode_FromStringAndSize(c_str, (Py_ssize_t)strlen(c_str)); } static CYTHON_INLINE const char* __Pyx_PyObject_AsString(PyObject* o) { Py_ssize_t ignore; return __Pyx_PyObject_AsStringAndSize(o, &ignore); } #if __PYX_DEFAULT_STRING_ENCODING_IS_ASCII || __PYX_DEFAULT_STRING_ENCODING_IS_DEFAULT #if !CYTHON_PEP393_ENABLED static const char* __Pyx_PyUnicode_AsStringAndSize(PyObject* o, Py_ssize_t *length) { char* defenc_c; PyObject* defenc = _PyUnicode_AsDefaultEncodedString(o, NULL); if (!defenc) return NULL; defenc_c = PyBytes_AS_STRING(defenc); #if __PYX_DEFAULT_STRING_ENCODING_IS_ASCII { char* end = defenc_c + PyBytes_GET_SIZE(defenc); char* c; for (c = defenc_c; c < end; c++) { if ((unsigned char) (*c) >= 128) { PyUnicode_AsASCIIString(o); return NULL; } } } #endif *length = PyBytes_GET_SIZE(defenc); return defenc_c; } #else static CYTHON_INLINE const char* __Pyx_PyUnicode_AsStringAndSize(PyObject* o, Py_ssize_t *length) { if (unlikely(__Pyx_PyUnicode_READY(o) == -1)) return NULL; #if __PYX_DEFAULT_STRING_ENCODING_IS_ASCII if (likely(PyUnicode_IS_ASCII(o))) { *length = PyUnicode_GET_LENGTH(o); return PyUnicode_AsUTF8(o); } else { PyUnicode_AsASCIIString(o); return NULL; } #else return PyUnicode_AsUTF8AndSize(o, length); #endif } #endif #endif static CYTHON_INLINE const char* __Pyx_PyObject_AsStringAndSize(PyObject* o, Py_ssize_t *length) { #if __PYX_DEFAULT_STRING_ENCODING_IS_ASCII || __PYX_DEFAULT_STRING_ENCODING_IS_DEFAULT if ( #if PY_MAJOR_VERSION < 3 && __PYX_DEFAULT_STRING_ENCODING_IS_ASCII __Pyx_sys_getdefaultencoding_not_ascii && #endif PyUnicode_Check(o)) { return __Pyx_PyUnicode_AsStringAndSize(o, length); } else #endif #if (!CYTHON_COMPILING_IN_PYPY) || (defined(PyByteArray_AS_STRING) && defined(PyByteArray_GET_SIZE)) if (PyByteArray_Check(o)) { *length = PyByteArray_GET_SIZE(o); return PyByteArray_AS_STRING(o); } else #endif { char* result; int r = PyBytes_AsStringAndSize(o, &result, length); if (unlikely(r < 0)) { return NULL; } else { return result; } } } static CYTHON_INLINE int __Pyx_PyObject_IsTrue(PyObject* x) { int is_true = x == Py_True; if (is_true | (x == Py_False) | (x == Py_None)) return is_true; else return PyObject_IsTrue(x); } static CYTHON_INLINE int __Pyx_PyObject_IsTrueAndDecref(PyObject* x) { int retval; if (unlikely(!x)) return -1; retval = __Pyx_PyObject_IsTrue(x); Py_DECREF(x); return retval; } static PyObject* __Pyx_PyNumber_IntOrLongWrongResultType(PyObject* result, const char* type_name) { #if PY_MAJOR_VERSION >= 3 if (PyLong_Check(result)) { if (PyErr_WarnFormat(PyExc_DeprecationWarning, 1, "__int__ returned non-int (type %.200s). " "The ability to return an instance of a strict subclass of int " "is deprecated, and may be removed in a future version of Python.", Py_TYPE(result)->tp_name)) { Py_DECREF(result); return NULL; } return result; } #endif PyErr_Format(PyExc_TypeError, "__%.4s__ returned non-%.4s (type %.200s)", type_name, type_name, Py_TYPE(result)->tp_name); Py_DECREF(result); return NULL; } static CYTHON_INLINE PyObject* __Pyx_PyNumber_IntOrLong(PyObject* x) { #if CYTHON_USE_TYPE_SLOTS PyNumberMethods *m; #endif const char *name = NULL; PyObject *res = NULL; #if PY_MAJOR_VERSION < 3 if (likely(PyInt_Check(x) || PyLong_Check(x))) #else if (likely(PyLong_Check(x))) #endif return __Pyx_NewRef(x); #if CYTHON_USE_TYPE_SLOTS m = Py_TYPE(x)->tp_as_number; #if PY_MAJOR_VERSION < 3 if (m && m->nb_int) { name = "int"; res = m->nb_int(x); } else if (m && m->nb_long) { name = "long"; res = m->nb_long(x); } #else if (likely(m && m->nb_int)) { name = "int"; res = m->nb_int(x); } #endif #else if (!PyBytes_CheckExact(x) && !PyUnicode_CheckExact(x)) { res = PyNumber_Int(x); } #endif if (likely(res)) { #if PY_MAJOR_VERSION < 3 if (unlikely(!PyInt_Check(res) && !PyLong_Check(res))) { #else if (unlikely(!PyLong_CheckExact(res))) { #endif return __Pyx_PyNumber_IntOrLongWrongResultType(res, name); } } else if (!PyErr_Occurred()) { PyErr_SetString(PyExc_TypeError, "an integer is required"); } return res; } static CYTHON_INLINE Py_ssize_t __Pyx_PyIndex_AsSsize_t(PyObject* b) { Py_ssize_t ival; PyObject *x; #if PY_MAJOR_VERSION < 3 if (likely(PyInt_CheckExact(b))) { if (sizeof(Py_ssize_t) >= sizeof(long)) return PyInt_AS_LONG(b); else return PyInt_AsSsize_t(b); } #endif if (likely(PyLong_CheckExact(b))) { #if CYTHON_USE_PYLONG_INTERNALS const digit* digits = ((PyLongObject*)b)->ob_digit; const Py_ssize_t size = Py_SIZE(b); if (likely(__Pyx_sst_abs(size) <= 1)) { ival = likely(size) ? digits[0] : 0; if (size == -1) ival = -ival; return ival; } else { switch (size) { case 2: if (8 * sizeof(Py_ssize_t) > 2 * PyLong_SHIFT) { return (Py_ssize_t) (((((size_t)digits[1]) << PyLong_SHIFT) | (size_t)digits[0])); } break; case -2: if (8 * sizeof(Py_ssize_t) > 2 * PyLong_SHIFT) { return -(Py_ssize_t) (((((size_t)digits[1]) << PyLong_SHIFT) | (size_t)digits[0])); } break; case 3: if (8 * sizeof(Py_ssize_t) > 3 * PyLong_SHIFT) { return (Py_ssize_t) (((((((size_t)digits[2]) << PyLong_SHIFT) | (size_t)digits[1]) << PyLong_SHIFT) | (size_t)digits[0])); } break; case -3: if (8 * sizeof(Py_ssize_t) > 3 * PyLong_SHIFT) { return -(Py_ssize_t) (((((((size_t)digits[2]) << PyLong_SHIFT) | (size_t)digits[1]) << PyLong_SHIFT) | (size_t)digits[0])); } break; case 4: if (8 * sizeof(Py_ssize_t) > 4 * PyLong_SHIFT) { return (Py_ssize_t) (((((((((size_t)digits[3]) << PyLong_SHIFT) | (size_t)digits[2]) << PyLong_SHIFT) | (size_t)digits[1]) << PyLong_SHIFT) | (size_t)digits[0])); } break; case -4: if (8 * sizeof(Py_ssize_t) > 4 * PyLong_SHIFT) { return -(Py_ssize_t) (((((((((size_t)digits[3]) << PyLong_SHIFT) | (size_t)digits[2]) << PyLong_SHIFT) | (size_t)digits[1]) << PyLong_SHIFT) | (size_t)digits[0])); } break; } } #endif return PyLong_AsSsize_t(b); } x = PyNumber_Index(b); if (!x) return -1; ival = PyInt_AsSsize_t(x); Py_DECREF(x); return ival; } static CYTHON_INLINE PyObject * __Pyx_PyBool_FromLong(long b) { return b ? __Pyx_NewRef(Py_True) : __Pyx_NewRef(Py_False); } static CYTHON_INLINE PyObject * __Pyx_PyInt_FromSize_t(size_t ival) { return PyInt_FromSize_t(ival); } #endif /* Py_PYTHON_H */
818c69c3c0fb030c8feca6cb41020668ce9fc950
4fdbe89e0b5b52dd0a07c05946886dde91ad1c44
/Yellow/final/database.cpp
30011ba3341b7161f83bb92976a71ea5f028ad5d
[]
no_license
ITgenerat0r/coursera
780a73994dd7450bba46bcd0a9306ea16066dc6d
e0c4d8d21303229899ddbc15f1551d5c3e1a954f
refs/heads/main
2023-07-12T20:40:12.503033
2021-08-08T17:14:17
2021-08-08T17:14:17
367,031,946
0
0
null
null
null
null
UTF-8
C++
false
false
3,262
cpp
#include "database.h" #include <iostream> using namespace std; template <typename First, typename Second> ostream& operator << (ostream& out, const pair<First, Second>& p) { return out << '(' << p.first << ',' << p.second << ')'; } void Database::Add(const Date& date, const string& event){ if(base[date].count(event)){ base_vector[date].push_back(event); base[date].insert(event); } }; bool Database::DeleteEvent(const Date& date, const string& event){ if(base.count(date) > 0){ if(base[date].count(event)){ base[date].erase(event); auto it = find(begin(base_vector[date]), end(base_vector[date]), event); base_vector[date].erase(it); return true; } } return false; }; int Database::DeleteDate(const Date& date){ if(base.count(date) > 0){ int r = base[date].size(); base.erase(date); base_vector.erase(date); return r; } return 0; }; void Database::Find(const Date& date) const { if (base_vector.count(date)){ for (const string& ev : base_vector.at(date)){ cout << ev << endl; } } }; void Database::Print(std::ostream& out) const { for(const auto& [date, events] : base_vector){ for (const string& event : events){ out << date << " " << event << endl; } } }; int Database::RemoveIf(function<bool(const Date& date, const string& event)> predicate) { auto count = 0; for (auto storageIt = base_vector.begin(); storageIt != base_vector.end();) { auto d = (*storageIt).first; auto beforeSize = (*storageIt).second.size(); auto newEnd = stable_partition((*storageIt).second.begin(), (*storageIt).second.end(), [predicate, d](string s) { return !predicate(d, s); }); (*storageIt).second.erase(newEnd, (*storageIt).second.end()); auto afterSize = (*storageIt).second.size(); count += (beforeSize - afterSize); for (auto setStorageIt = base.begin(); setStorageIt != base.end();) { for (auto it = (*setStorageIt).second.begin(); it != (*setStorageIt).second.end();) { if (predicate((*setStorageIt).first, *it)) { (*setStorageIt).second.erase(it++); } else { ++it; } } if ((*setStorageIt).second.empty()) { setStorageIt = base.erase(setStorageIt); } else { ++setStorageIt; } } if ((*storageIt).second.empty()) { storageIt = base_vector.erase(storageIt); } else { ++storageIt; } } return count; }; vector<pair<Date, string>> Database::FindIf(function<bool(const Date& date, const string& event)> predicate) const { vector<pair<Date, string>> found; for (const auto& pair : base_vector) { auto d = pair.first; vector<string> tmp; copy_if(pair.second.begin(), pair.second.end(), back_inserter(tmp), [predicate, d](string s) { return predicate(d, s); }); for (const auto& ev : tmp) { found.push_back({d, ev}); } } return found; } pair<Date, string> Database::Last(const Date date){ if (base_vector.empty() || date < base_vector.begin()->first) { throw invalid_argument("Database is empty or date is too old"); } else { auto it = prev(base_vector.upper_bound(date)); return {(*it).first, (*it).second.back()}; } }
4b6476ce7a07d37bfbdc674c0cde23bdef4ae7bb
f05fb433924b6ad56d71258d25101280c52ee205
/Src/lunaui/cards/emulation/virtual-corenavi/VirtualCoreNavi.h
a176eab73780a2851774154306664d528890bece
[ "LicenseRef-scancode-warranty-disclaimer", "Apache-2.0" ]
permissive
webOS-ports/LunaCE
e0612d328ce29b413f0e2815788ee53d1a6995a0
f69124d4b57f77bae0d492f1669a907e9c6dad75
refs/heads/master
2021-01-16T00:17:04.402518
2018-05-11T08:20:44
2018-05-11T08:20:44
4,824,892
0
1
null
2013-12-12T19:00:21
2012-06-28T19:54:59
C++
UTF-8
C++
false
false
1,834
h
/* @@@LICENSE * * Copyright (c) 2010-2012 Hewlett-Packard Development Company, L.P. * * 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. * * LICENSE@@@ */ #ifndef VIRTUALCORENAVI_H #define VIRTUALCORENAVI_H #include <QGraphicsObject> #include <QMouseEvent> #include <QTimer> #include "VirtualGestureStrip.h" #include "GestureFeedbackItem.h" class VirtualCoreNavi : public VirtualGestureStrip { Q_OBJECT Q_PROPERTY(qreal lightBarBrightness READ lightBarBrightness WRITE setLightBarBrightness) public: VirtualCoreNavi(int width, int height); virtual ~VirtualCoreNavi(); qreal lightBarBrightness() const { return m_lightBarBrightness; } void setLightBarBrightness(const qreal brightness); virtual void paint(QPainter* painter, const QStyleOptionGraphicsItem* option, QWidget* widget); protected: virtual void fingerDown(int xPos); virtual void fingerMove(int xPos); virtual void fingerDrag(int xStart, int xEnd); virtual void fingerUp(int xPos); virtual void gesturePerformed(Qt::Key key, QPoint startPos, QPoint velocity); private: GestureFeedbackItem m_feedbackItem; qreal m_lightBarBrightness; QPropertyAnimation m_barGlowAnimation; QPixmap m_pixBarDarkLeft, m_pixBarDarkCenter, m_pixBarDarkRight; QPixmap m_pixBarBrightLeft, m_pixBarBrightCenter, m_pixBarBrightRight; }; #endif /* VIRTUALCORENAVI_H */
ad66ab1bdde70e2ed6ef2756e4bc5cff0444dd93
7a01bc08abbc4080a6099028d6b7425554ac19e2
/main.cpp
aa2f70ad3dbb463e9c6c7329f9d635905dada854
[]
no_license
llewelld/MATTS
b1c41718192adbd44eeae5d9dc42c04a2d5790cb
bab63710bd31479fddafb19956a36d8d212b18e9
refs/heads/master
2021-01-20T07:03:25.222297
2018-07-27T13:57:09
2018-07-27T13:57:09
14,070,435
0
0
null
null
null
null
UTF-8
C++
false
false
950
cpp
/*$T MATTS/main.cpp GC 1.140 07/01/09 21:12:10 */ /* * ; * Name: main.cpp ; * Last Modified: 10/11/04 ; * ; * Purpose: Winmain file (starting point for App) ; */ #include "cWindow.h" /* ======================================================================================================================= * int mainWindow, subWindow1,subWindow2,subWindow3; ======================================================================================================================= */ int WINAPI WinMain (HINSTANCE hinstance, HINSTANCE hprevinst, LPSTR lpcmdline, int nCmdShow) { cWindow* pWin; pWin = new cWindow; pWin->create (hinstance, "Mobile Agent Topology Test System", 1024, 768, WS_OVERLAPPEDWINDOW); pWin->ShowMainWindow (nCmdShow); pWin->run (); /* * mainWindow = glutCreateWindow("SnowMen from 3D-Tech"); * subWindow1 = glutCreateSubWindow(mainWindow, 10,10,100,100); */ return 0; }
8d3218f15df12f3df5f9562526465da89eac9638
c287f063100e0ddb29bcf27e9f901b914cca0f2e
/thirdparty/qt53/include/QtCore/5.3.0/QtCore/private/qjiscodec_p.h
ff9aef27311f7be39a6a9982097852b8f85fe77a
[ "MIT" ]
permissive
imzcy/JavaScriptExecutable
803c55db0adce8b32fcbe0db81531d248a9420d0
723a13f433aafad84faa609f62955ce826063c66
refs/heads/master
2022-11-05T01:37:49.036607
2016-10-26T17:13:10
2016-10-26T17:13:10
20,448,619
3
1
MIT
2022-10-24T23:26:37
2014-06-03T15:37:09
C++
UTF-8
C++
false
false
4,551
h
/**************************************************************************** ** ** Copyright (C) 2013 Digia Plc and/or its subsidiary(-ies). ** Contact: http://www.qt-project.org/legal ** ** This file is part of the QtCore module of the Qt Toolkit. ** ** $QT_BEGIN_LICENSE:LGPL$ ** Commercial License Usage ** Licensees holding valid commercial Qt licenses may use this file in ** accordance with the commercial license agreement provided with the ** Software or, alternatively, in accordance with the terms contained in ** a written agreement between you and Digia. For licensing terms and ** conditions see http://qt.digia.com/licensing. For further information ** use the contact form at http://qt.digia.com/contact-us. ** ** GNU Lesser General Public License Usage ** Alternatively, this file may be used under the terms of the GNU Lesser ** General Public License version 2.1 as published by the Free Software ** Foundation and appearing in the file LICENSE.LGPL included in the ** packaging of this file. Please review the following information to ** ensure the GNU Lesser General Public License version 2.1 requirements ** will be met: http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. ** ** In addition, as a special exception, Digia gives you certain additional ** rights. These rights are described in the Digia Qt LGPL Exception ** version 1.1, included in the file LGPL_EXCEPTION.txt in this package. ** ** GNU General Public License Usage ** Alternatively, this file may be used under the terms of the GNU ** General Public License version 3.0 as published by the Free Software ** Foundation and appearing in the file LICENSE.GPL included in the ** packaging of this file. Please review the following information to ** ensure the GNU General Public License version 3.0 requirements will be ** met: http://www.gnu.org/copyleft/gpl.html. ** ** ** $QT_END_LICENSE$ ** ****************************************************************************/ // Most of the code here was originally written by Serika Kurusugawa // a.k.a. Junji Takagi, and is included in Qt with the author's permission, // and the grateful thanks of the Qt team. /* * Copyright (C) 1999 Serika Kurusugawa, All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: * 1. Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * 2. Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the distribution. * * THIS SOFTWARE IS PROVIDED BY THE AUTHOR 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 REGENTS 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. */ #ifndef QJISCODEC_P_H #define QJISCODEC_P_H // // W A R N I N G // ------------- // // This file is not part of the Qt API. It exists for the convenience // of other Qt classes. This header file may change from version to // version without notice, or even be removed. // // We mean it. // #include "qjpunicode_p.h" #include <QtCore/qtextcodec.h> #include <QtCore/qlist.h> QT_BEGIN_NAMESPACE #ifndef QT_NO_BIG_CODECS class QJisCodec : public QTextCodec { public: static QByteArray _name(); static QList<QByteArray> _aliases(); static int _mibEnum(); QByteArray name() const { return _name(); } QList<QByteArray> aliases() const { return _aliases(); } int mibEnum() const { return _mibEnum(); } QString convertToUnicode(const char *, int, ConverterState *) const; QByteArray convertFromUnicode(const QChar *, int, ConverterState *) const; QJisCodec(); ~QJisCodec(); protected: const QJpUnicodeConv *conv; }; #endif // QT_NO_BIG_CODECS QT_END_NAMESPACE #endif // QJISCODEC_P_H
a33140a933e416e173dc448f83d58242fc3411ba
906d6b14666b4b8399c219b955a334d0ee5de723
/tooling/wasm-utils/Buffer.cpp
7c6cb1a842e49eeac9264fe3348d390915aa16a0
[]
no_license
ahaoboy/emception
fad008074c7f96076ff5ab8dc9bd01a4eaeb8465
857499742262b79424b669e4a3b42c166295ea07
refs/heads/master
2023-09-03T06:58:06.242878
2021-11-08T06:58:21
2021-11-08T06:58:21
null
0
0
null
null
null
null
UTF-8
C++
false
false
2,348
cpp
#include "Buffer.hpp" #include <stdexcept> #include <type_traits> namespace wasm_transform { Buffer::Buffer(std::string buffer) : m_data(std::move(buffer)) {} Buffer::Buffer(std::string_view view) : m_data(std::move(view)) {} Buffer::Buffer(Buffer const &) = default; Buffer::Buffer(Buffer &&) = default; Buffer::Buffer() : Buffer(std::string("")) {} Buffer & Buffer::operator=(std::string buffer) { m_data = std::move(buffer); return *this; } Buffer & Buffer::operator=(std::string_view view) { m_data = std::move(view); return *this; } Buffer & Buffer::operator=(Buffer const &) = default; Buffer & Buffer::operator=(Buffer &&) = default; std::string_view Buffer::view() const { return std::visit([](auto&& arg) { using T = std::decay_t<decltype(arg)>; if constexpr (std::is_same_v<T, std::string_view>) { return arg; } else if constexpr (std::is_same_v<T, std::string>) { return std::string_view{&arg[0], arg.size()}; } else { static_assert(always_false_v<T>, "non-exhaustive visitor!"); } }, m_data); } std::string * Buffer::buffer() { return std::visit([](auto&& arg) { using T = std::decay_t<decltype(arg)>; if constexpr (std::is_same_v<T, std::string_view>) { return (std::string *)nullptr; } else if constexpr (std::is_same_v<T, std::string>) { return &arg; } else { static_assert(always_false_v<T>, "non-exhaustive visitor!"); } }, m_data); } bool Buffer::owned() const { return std::visit([this](auto&& arg) { using T = std::decay_t<decltype(arg)>; if constexpr (std::is_same_v<T, std::string_view>) { return false; } else if constexpr (std::is_same_v<T, std::string>) { return true; } else { static_assert(always_false_v<T>, "non-exhaustive visitor!"); } }, m_data); } Buffer & Buffer::own() { if (!owned()) { auto v = view(); m_data = std::string(v.begin(), v.end()); } return *this; } size_t Buffer::size() const { return view().size(); } char const & Buffer::operator[](size_t i) const { return view()[i]; } Buffer Buffer::slice(size_t start, size_t length) const { return Buffer(view().substr(start, length)); } }
8ca5ac590ebec38de0a7f2c9abd31fe032207734
315fa38d06179510714be57d97c0263e8dfaaee9
/Source.cpp
71f20d11fd7746ae4d05a08d0bf9ad4b68da2248
[]
no_license
KonechyJ/DnDApp
ca2fc27a83ccc961d411d8d91130abf45b048e08
81c67183291bc6a3db6ee44527f368c2fc39fd82
refs/heads/master
2022-11-05T10:49:39.787557
2020-06-28T23:22:41
2020-06-28T23:22:41
266,166,173
0
0
null
null
null
null
UTF-8
C++
false
false
15,228
cpp
using namespace std; #include <iostream> #include <string> #include <cmath> // for pow and sqrt functions #include <cstdlib> // for rand function #include <ctime> // for time function #include <iomanip> #include <vector> #include <cstdio> class player { private: //basic info string playerName; string playerRace; int playerHealth; int playerArmorScore; int playerSpeed; //player abilites int playerStrength; int playerDexerity; int playerConstitution; int playerIntelligence; int playerWisdom; int playerCharisma; //// add class info public: void setName(string name) { playerName = name; } string getName() { return playerName; } void setHealth(int health) { playerHealth = health; } int getHealth() { return playerHealth; } void setRace(string race) { playerRace = race; } string getRace() { return playerRace; } void setArmorScore(int armorScore) { playerArmorScore = armorScore; } int getArmorScore() { return playerArmorScore; } void setSpeed(int speed) { playerSpeed = speed; } int getSpeed() { return playerSpeed; } void setStrength(int strength) { playerStrength = strength; } int getStrength() { return playerStrength; } void setDexerity(int dex) { playerDexerity = dex; } int getDexerity() { return playerDexerity; } void setConstitution(int constituion) { playerConstitution = constituion; } int getConstitution() { return playerConstitution; } void setIntelligence(int intelligence) { playerIntelligence = intelligence; } int getIntelligence() { return playerIntelligence; } void setWisdom(int wisdom) { playerWisdom = wisdom; } int getWisdom() { return playerWisdom; } void setCharisma(int charisma) { playerCharisma = charisma; } int getCharisma() { return playerCharisma; } /* union MyUnion { int t; char a; string tt; }; */ }; class enemy { //basic info string enemyName; string enemyRace; int enemyHealth; int enemyArmorScore; int enemySpeed; //enemy abilites int enemyCharisma; int enemyWisdom; int enemyIntelligence; int enemyDexerity; int enemyStrength; int enemyConstitution; }; void fourSidedDie(int min, int max, int diceRoll, int timesRolled); void sixSidedDie(int min, int max, int diceRoll, int timesRolled); void eightSidedDie(int min, int max, int diceRoll, int timesRolled); void tenSidedDie(int min, int max, int diceRoll, int timesRolled); void twelveSidedDie(int min, int max, int diceRoll, int timesRolled); void twentySidedDie(int min, int max, int diceRoll, int timesRolled); void rollDice(int min, int max, int diceRoll, int timesRolled); void displayMenu(); void displayMainMenu(); void rollDice(); int main() { system("color 0A"); int menuChoice; char yourAnswer; int numPlayers; //string tempPlayerName; int playerToChange; int min; int max; cout << "How many players are playing?" << endl; cin >> numPlayers; vector<player>currentPlayers = vector<player>(numPlayers); // this didnt work on my laptop //vector<player>currentPlayers; system("CLS"); do { cout << "Hello and Welcome to Maddys DND Program." << endl << endl; displayMainMenu(); cin >> menuChoice; while (menuChoice < 1 || menuChoice > 6) { cout << "Not a Valid Number, Please choose again" << endl; cin >> menuChoice; } system("CLS"); switch (menuChoice) { case 1: cout << "Okay, type in their stats." << endl; for (auto &x : currentPlayers) { string strInput; int intInput; int count = 1; cout << "What is player " << count<< "'s name?" << endl; cin.ignore(); getline(cin, strInput); x.setName(strInput); cout << "What is their Race?" << endl; getline(cin, strInput); x.setRace(strInput); cout << "Enter Players Health: " << endl; cin >> intInput; x.setHealth(intInput); cout << "Enter Players Armor Score: " << endl; cin >> intInput; x.setArmorScore(intInput); cout << "Enter Players Speed: " << endl; cin >> intInput; x.setSpeed(intInput); cout << "Enter Players Strength: " << endl; cin >> intInput; x.setStrength(intInput); cout << "Enter Players Dexerity: " << endl; cin >> intInput; x.setDexerity(intInput); cout << "Enter Players Constituion: " << endl; cin >> intInput; x.setConstitution(intInput); cout << "Enter Players Intelligence: " << endl; cin >> intInput; x.setIntelligence(intInput); cout << "Enter Players Wisdom: " << endl; cin >> intInput; x.setWisdom(intInput); cout << "Enter Players Charisma: " << endl; cin >> intInput; x.setCharisma(intInput); count++; } break; case 2: // This doesnt work char playerChangeAnswer; for (int i = 0; i < currentPlayers.size(); i++) { cout << "Player " << setw(10) << right << currentPlayers.size() << endl; cout << "Name: " << setw(10) << right << currentPlayers[i].getName() << endl; cout << "Race: " << setw(10) << right << currentPlayers[i].getRace() << endl; cout << "Health: " << setw(10) << right << currentPlayers[i].getHealth() << endl; cout << "Armor Score: " << setw(10) << right << currentPlayers[i].getArmorScore() << endl; cout << "Speed: " << setw(10) << currentPlayers[i].getSpeed() << endl; cout << "Strength: " << setw(10) << right << currentPlayers[i].getStrength() << endl; cout << "Dexerity: " << setw(10) << right << currentPlayers[i].getDexerity() << endl; cout << "Constitution: " << setw(10) << right << currentPlayers[i].getConstitution() << endl; cout << "Intelligence: " << setw(10) << right << currentPlayers[i].getIntelligence() << endl; cout << "Wisdom: " << setw(10) << right << currentPlayers[i].getWisdom() << endl; cout << "Charisma: " << setw(10) << right << currentPlayers[i].getCharisma() << endl; cout << endl; } // compare the names and pull up the stats of the player and run a for loop to reassign the stats wanted. //vector<player>::iterator itPlayer; //itPlayer = find(currentPlayers.begin(), currentPlayers.end(), ("TEST")); /* cout the vector of names, ask the user which name they want to change, set their answer to the equal to the size of current players and then iterate through their stats to change whatever needed */ do{ cout << "Now, which player would you like to change?" << endl; cin >> playerToChange; cout << "which Stat would like to change? Enter the Number." << endl; for (int i = 0; i < currentPlayers[playerToChange]; i++) { cout << "Player " << setw(10) << right << currentPlayers.size() << endl; cout << "Name: " << setw(10) << right << currentPlayers[i].getName() << endl; cout << "Race: " << setw(10) << right << currentPlayers[i].getRace() << endl; cout << "Health: " << setw(10) << right << currentPlayers[i].getHealth() << endl; cout << "Armor Score: " << setw(10) << right << currentPlayers[i].getArmorScore() << endl; cout << "Speed: " << setw(10) << currentPlayers[i].getSpeed() << endl; cout << "Strength: " << setw(10) << right << currentPlayers[i].getStrength() << endl; cout << "Dexerity: " << setw(10) << right << currentPlayers[i].getDexerity() << endl; cout << "Constitution: " << setw(10) << right << currentPlayers[i].getConstitution() << endl; cout << "Intelligence: " << setw(10) << right << currentPlayers[i].getIntelligence() << endl; cout << "Wisdom: " << setw(10) << right << currentPlayers[i].getWisdom() << endl; cout << "Charisma: " << setw(10) << right << currentPlayers[i].getCharisma() << endl; cout << endl; } // get the players stats based on there numbered order, maybe have the number entered set to players.size and list only there stats // then, have then pick the stat again and use the number from there answer to use in a switch statement. // assign only the number given /* string strInput; int intInput; cout << "What is their name?" << endl; cin.ignore(); getline(cin, strInput); currentPlayers[playerToChange - 1].setName(strInput); cout << "What is their Race?" << endl; cin.ignore(); getline(cin, strInput); currentPlayers[playerToChange - 1].setRace(strInput); cout << "Enter Players Health: " << endl; cin >> intInput; currentPlayers[playerToChange - 1].setHealth(intInput); cout << "Enter Players Armor Score: " << endl; cin >> intInput; currentPlayers[playerToChange - 1].setArmorScore(intInput); cout << "Enter Players Speed: " << endl; cin >> intInput; currentPlayers[playerToChange - 1].setSpeed(intInput); cout << "Enter Players Strength: " << endl; cin >> intInput; currentPlayers[playerToChange - 1].setStrength(intInput); cout << "Enter Players Dexerity: " << endl; cin >> intInput; currentPlayers[playerToChange - 1].setDexerity(intInput); cout << "Enter Players Constituion: " << endl; cin >> intInput; currentPlayers[playerToChange - 1].setConstitution(intInput); cout << "Enter Players Intelligence: " << endl; cin >> intInput; currentPlayers[playerToChange - 1].setIntelligence(intInput); cout << "Enter Players Wisdom: " << endl; cin >> intInput; currentPlayers[playerToChange - 1].setWisdom(intInput); cout << "Enter Players Charisma: " << endl; cin >> intInput; currentPlayers[playerToChange - 1].setCharisma(intInput); */ cout << "Would you like to change another?" << endl; cin >> playerChangeAnswer; system("CLS"); } while (toupper(yourAnswer == 'y')); break; case 3: // take the players stats and the enenmy stats and roll a dice to see which person is favor in the interaction // roll a d20 // list of stats numbered // pick a stat to compare to enenmy // add your roll plus your stat and compare to enemy stat and roll break; case 4: rollDice(); break; case 5: // just create a function to display all the different player stats and current enemny stats for (int i = 0; i < currentPlayers.size(); i++) { cout << "Player " << setw(10) << right << currentPlayers.size() << endl; cout << "Name: " << setw(10) << right << currentPlayers[i].getName() << endl; cout << "Race: " << setw(10) << right << currentPlayers[i].getRace() << endl; cout << "Health: " << setw(10) << right << currentPlayers[i].getHealth() << endl; cout << "Armor Score: " << setw(10) << right << currentPlayers[i].getArmorScore() << endl; cout << "Speed: " << setw(10) << currentPlayers[i].getSpeed() << endl; cout << "Strength: " << setw(10) << right << currentPlayers[i].getStrength() << endl; cout << "Dexerity: " << setw(10) << right << currentPlayers[i].getDexerity() << endl; cout << "Constitution: " << setw(10) << right << currentPlayers[i].getConstitution() << endl; cout << "Intelligence: " << setw(10) << right << currentPlayers[i].getIntelligence() << endl; cout << "Wisdom: " << setw(10) << right << currentPlayers[i].getWisdom() << endl; cout << "Charisma: " << setw(10) << right << currentPlayers[i].getCharisma() << endl; cout << endl; } break; case 6: cout << endl << "Exiting Program"; exit(0); break; default: cout << "That is not a valid answer Kinder, Try again." << endl; } cout << "Do you want to return to menu? Y or N?" << endl; cin >> yourAnswer; system("CLS"); } while (toupper(yourAnswer == 'y')); cout << endl << "Exiting Program"; return 0; system("pause"); } void displayMenu() { cout << endl; cout << "Please enter the number sided die you need." << endl; cout << " 1) 4 sided die" << endl; cout << " 2) 6 sided die" << endl; cout << " 3) 8 sided die" << endl; cout << " 4) 10 sided die" << endl; cout << " 5) 12 sided die" << endl; cout << " 6) 20 sided die" << endl; cout << " 7) Exit" << endl; cout << "Please choose a number" << endl; return; } void displayMainMenu() { cout << endl; cout << "Please enter the action you need help with." << endl; cout << " 1) Assign Players." << endl; cout << " 2) Change Players current stats." << endl; cout << " 3) Calculate interatction" << endl; cout << " 4) Roll dice" << endl; cout << " 5) Display All Stats" << endl; cout << " 6) Exit" << endl; cout << "Please choose a number" << endl; return; } void rollDice(int min, int max, int diceRoll, int timesRolled) { for (int i = 1; i <= timesRolled; i++) { diceRoll = (rand() % (max - min + 1)) + min; cout << endl; cout << "Roll Number " << i << " is..." << diceRoll << endl; } cout << endl << endl; return; } void rollDice() { int min = 1; int max = 500; int timesRolled = 1; int diceRoll = 0; int yourChoice; char answerRepeat = 'y'; unsigned seed = time(0); srand(seed); do { displayMenu(); cin >> yourChoice; while (yourChoice < 1 || yourChoice >7) { cout << "Not a Valid Number, Please choose again" << endl; cin >> yourChoice; } switch (yourChoice) { case 1: cout << "How many times would you like to roll?" << endl; cin >> timesRolled; min = 1; max = 4; system("cls"); rollDice(min, max, diceRoll, timesRolled); break; case 2: cout << "How many times would you like to roll?" << endl; cin >> timesRolled; min = 1; max = 6; system("cls"); rollDice(min, max, diceRoll, timesRolled); break; case 3: cout << "How many times would you like to roll?" << endl; cin >> timesRolled; min = 1; max = 8; system("cls"); rollDice(min, max, diceRoll, timesRolled); break; case 4: cout << "How many times would you like to roll?" << endl; cin >> timesRolled; min = 1; max = 10; system("cls"); rollDice(min, max, diceRoll, timesRolled); break; case 5: cout << "How many times would you like to roll?" << endl; cin >> timesRolled; min = 1; max = 12; system("cls"); rollDice(min, max, diceRoll, timesRolled); break; case 6: cout << "How many times would you like to roll?" << endl; cin >> timesRolled; min = 1; max = 20; system("cls"); rollDice(min, max, diceRoll, timesRolled); break; case 7: cout << "Auf Wiedersehen Kinder!" << endl; system("pause"); exit(1); break; default: cout << "That is not a valid answer Kinder, Try again." << endl; } cout << "Do you want to roll again kinder? Y or N?" << endl; cin >> answerRepeat; } while (answerRepeat == 'y' || answerRepeat == 'Y'); }
c0cd12b34496fa7eed42fe09b913a060265d9350
c00900b6f59afca4bb154d69f3d6969ddc372c42
/practice/and-product.cpp
c15e4be7026864957b7988015e7b11000c66b934
[]
no_license
ash7594/codechefNew
af9139053f757f7ef69adaa0dba75d80576246a8
0e62c90958f0c3c02942a7a1f63a7992ac7c7a82
refs/heads/master
2021-01-17T08:38:55.110796
2016-07-06T21:46:51
2016-07-06T21:46:51
40,933,866
0
0
null
null
null
null
UTF-8
C++
false
false
1,303
cpp
#include<bits/stdc++.h> #include<ext/rope> #define gc getchar_unlocked #define pc putchar_unlocked #define REP(a,b,c) for(int a=b;a<c;a++) #define maxf(a,b) ((a>b)?a:b) #define minf(a,b) ((a<b)?a:b) #define minf3(a,b,c) ((minf(a,b)<c)?minf(a,b):c) #define maxf3(a,b,c) ((maxf(a,b)>c)?maxf(a,b):c) #define nl cout<<endl using namespace std; using namespace __gnu_cxx; long long read() { char c = gc(); while(c<'0' || c>'9') c = gc(); long long ret = 0; while(c>='0' && c<='9') { ret = 10 * ret + c - 48; c = gc(); } return ret; } vector<long long> precom(35,0); void init() { precom[0] = 1; for (int i=1;i<precom.size();i++) { precom[i] = 2*precom[i-1]; } } long long getPreVal(long long A) { int i=0; while (precom[i] <= A) { i++; } return precom[i-1]; } int main() { init(); long long ans; long long A,B,t; t = read(); while (t--) { ans = 0; A = read(); B = read(); do { if (A == 0) { printf("%lld\n",ans); goto end; } long long preval = getPreVal(A); long long preval2 = getPreVal(B); if (preval != preval2) { printf("%lld\n",ans); goto end; } ans += preval; A = A - preval; B = B - preval2; } while (1); end:; } return 0; }
fa9907d9467cd5a7a6c7398b12d59fa4dd6bf1b7
148ade98188b369e2b3d266cfa7722ab3c482b8d
/worm.hpp
9fc50601f2b634605d8721843c3b3f5d1d9104e4
[]
no_license
bward033/worm
e5af7bd5a07f3b836f3afab20c307b75496ade0e
0d603d96679f355c7e75bcf95e8a4b691df90502
refs/heads/master
2020-05-09T15:32:39.219797
2019-04-13T23:03:03
2019-04-13T23:03:03
181,236,646
0
0
null
null
null
null
UTF-8
C++
false
false
482
hpp
// Bryan Ward // lab 4-5 // worm.hpp // december 7, 2015 // #ifndef WORM_HPP #define WORM_HPP #include "spots.hpp" #include <iostream> class worm { public: worm(int index); int getHead(); int getTail(); void addToWorm(spots spot); void removeFromWorm(); int getWormSize(); spots getWormHeadSpot(); spots getWormTailSpot(); void createWorm(spots spot); void print(); private: int headOfWorm , tailOfWorm , wormSize, maxSize; spots* wormQ; }; #endif
b7b721f30ae18d24bab191810afea22c3c425b58
5e8d200078e64b97e3bbd1e61f83cb5bae99ab6e
/main/source/src/protocols/membrane_benchmark/PeptideOrientationMover.hh
3afc278f237f42a1f60c767ad894941127275d68
[]
no_license
MedicaicloudLink/Rosetta
3ee2d79d48b31bd8ca898036ad32fe910c9a7a28
01affdf77abb773ed375b83cdbbf58439edd8719
refs/heads/master
2020-12-07T17:52:01.350906
2020-01-10T08:24:09
2020-01-10T08:24:09
232,757,729
2
6
null
null
null
null
UTF-8
C++
false
false
3,944
hh
// -*- mode:c++;tab-width:2;indent-tabs-mode:t;show-trailing-whitespace:t;rm-trailing-spaces:t -*- // vi: set ts=2 noet: // // (c) Copyright Rosetta Commons Member Institutions. // (c) This file is part of the Rosetta software suite and is made available under license. // (c) The Rosetta software is developed by the contributing members of the Rosetta Commons. // (c) For more information, see http://www.rosettacommons.org. Questions about this can be // (c) addressed to University of Washington CoMotion, email: [email protected]. /// @file protocols/membrane_benchmark/PeptideOrientationMover.hh /// @brief Orient a peptide to a specific orientation relative to the membrane /// @author Rebecca Alford ([email protected]) #ifndef INCLUDED_protocols_membrane_benchmark_PeptideOrientationMover_HH #define INCLUDED_protocols_membrane_benchmark_PeptideOrientationMover_HH // Unit headers #include <protocols/membrane_benchmark/PeptideOrientationMover.fwd.hh> #include <protocols/moves/Mover.hh> // Protocol headers #include <protocols/membrane/TranslationRotationMover.hh> #include <protocols/membrane/util.hh> #include <protocols/filters/Filter.fwd.hh> // Core headers #include <core/pose/Pose.fwd.hh> #include <core/scoring/ScoreFunction.fwd.hh> // Basic/Utility headers #include <basic/datacache/DataMap.fwd.hh> //#include <utility/tag/XMLSchemaGeneration.fwd.hh> //transcluded from Mover namespace protocols { namespace membrane_benchmark { ///@brief Sample all points on a 2D membrane energy landscape given implicit model and protein dimensions class PeptideOrientationMover : public protocols::moves::Mover { public: ///////////////////// /// Constructors /// ///////////////////// /// @brief Default constructor PeptideOrientationMover(); /// @brief Non-defualt cnstructor for landscape sampling PeptideOrientationMover( std::string sfxn_weights, std::string rotation_type, core::Real zcoord, core::Real angle, bool interface = false ); /// @brief Copy constructor (not needed unless you need deep copies) PeptideOrientationMover( PeptideOrientationMover const & src ); /// @brief Destructor (important for properly forward-declaring smart-pointer members) ~PeptideOrientationMover() override; ///////////////////// /// Mover Methods /// ///////////////////// public: /// @brief Apply the mover void apply( core::pose::Pose & pose ) override; void show( std::ostream & output = std::cout ) const override; /////////////////////////////// /// Rosetta Scripts Support /// /////////////////////////////// /// @brief parse XML tag (to use this Mover in Rosetta Scripts) void parse_my_tag( utility::tag::TagCOP tag, basic::datacache::DataMap & data, protocols::filters::Filters_map const & filters, protocols::moves::Movers_map const & movers, core::pose::Pose const & pose ) override; //PeptideOrientationMover & operator=( PeptideOrientationMover const & src ); /// @brief required in the context of the parser/scripting scheme protocols::moves::MoverOP fresh_instance() const override; /// @brief required in the context of the parser/scripting scheme protocols::moves::MoverOP clone() const override; std::string get_name() const override; static std::string mover_name(); static void provide_xml_schema( utility::tag::XMLSchemaDefinition & xsd ); private: // methods protocols::membrane::RotationMoverOP get_rotation( core::Real const normal_angle, core::Vector const axis, core::Vector const rot_center, core::Size membrane_jump, std::string rotation_type ); private: // data core::scoring::ScoreFunctionOP sfxn_; std::string sfxn_weights_; std::string rotation_type_; core::Real zcoord_; core::Real angle_; bool interface_; }; std::ostream & operator<<( std::ostream & os, PeptideOrientationMover const & mover ); } //protocols } //membrane_benchmark #endif //protocols_membrane_benchmark_PeptideOrientationMover_HH
1cb886662cf6aaa419f628f3ba9541aae02304cc
16b715a942a05cc950327e4e464c76b1f9df20fb
/ふるい/CanNode_rev1.1/user/user_app/inc/motor.h
a1f8ebf1c5f54686ec294b176666ae704abbc57f
[]
no_license
KANAIHIROYUKI/STM32
88cbefd0dcfd208b2dd7c8f291f9f53f2a54077d
bd758d6740e235682445f512a312af022b20cc9e
refs/heads/master
2020-12-02T02:12:39.571320
2018-10-24T08:14:24
2018-10-24T08:14:24
60,416,906
0
0
null
null
null
null
UTF-8
C++
false
false
555
h
#ifndef MOTOR_H_ #define MOTOR_H_ #include "math.h" #include "base.h" #include "system.h" #define MOTOR_ASSIGNE_NONE 0 #define MOTOR_ASSIGNE_PWM 1 #define MOTOR_ASSIGNE_GPIO 2 class Motor : public DutyOut{ public: void setup(TIM &pwm1,TIM &pwm2); void enPwmAssigne(TIM &pwmEN); void enPinAssigne(GPIO &gpioEn); virtual void duty(float motorDuty); void brake(float motorBrake); void lock(); void free(); virtual void reset(); int32_t outDuty; uint16_t assigneStat; TIM *pwm1; TIM *pwm2; TIM *pwmEn; GPIO *gpioEn; private: }; #endif
6500593ce1006f61ae77897027676ebde4bfda25
96eaebd467794284f338a56b123bdfa5b98dd4d1
/core/test/lib/boost/boost/hana/eval.hpp
dff9634758d9c39d5d35c9974df257bb822d865d
[ "MIT" ]
permissive
KhalilBellakrid/lib-ledger-core
d80dc1fe0c4e3843eabe373f53df210307895364
639f89a64958ee642a2fdb0baf22d2f9da091cc3
refs/heads/develop
2021-05-14T07:19:17.424487
2019-05-20T20:33:05
2019-05-20T20:33:05
116,260,592
0
3
MIT
2019-06-26T08:07:16
2018-01-04T13:01:57
C++
UTF-8
C++
false
false
1,855
hpp
/*! @file Defines `boost::hana::eval`. @copyright Louis Dionne 2013-2017 Distributed under the Boost Software License, Version 1.0. (See accompanying file LICENSE.md or copy at http://boost.org/LICENSE_1_0.txt) */ #ifndef BOOST_HANA_EVAL_HPP #define BOOST_HANA_EVAL_HPP #include <boost/hana/fwd/eval.hpp> #include <boost/hana/config.hpp> #include <boost/hana/core/dispatch.hpp> #include <boost/hana/detail/wrong.hpp> #include <boost/hana/functional/id.hpp> BOOST_HANA_NAMESPACE_BEGIN //! @cond template <typename Expr> constexpr decltype(auto) eval_t::operator()(Expr&& expr) const { return eval_impl<typename hana::tag_of<Expr>::type>::apply( static_cast<Expr&&>(expr) ); } //! @endcond template <typename T, bool condition> struct eval_impl<T, when<condition>> : default_ { template <typename Expr> static constexpr auto eval_helper(Expr&& expr, int) -> decltype(static_cast<Expr&&>(expr)()) { return static_cast<Expr&&>(expr)(); } template <typename Expr> static constexpr auto eval_helper(Expr&& expr, long) -> decltype(static_cast<Expr&&>(expr)(hana::id)) { return static_cast<Expr&&>(expr)(hana::id); } template <typename Expr> static constexpr auto eval_helper(Expr&&, ...) { static_assert(detail::wrong<Expr>{}, "hana::eval(expr) requires the expression to be a hana::lazy, " "a nullary Callable or a unary Callable that may be " "called with hana::id"); } template <typename Expr> static constexpr decltype(auto) apply(Expr&& expr) { return eval_helper(static_cast<Expr&&>(expr), int{}); } }; BOOST_HANA_NAMESPACE_END #endif // !BOOST_HANA_EVAL_HPP
833ab60a9d784e0cc554fce9a96c8d201088e8d3
c5d2cbbfd90f5f9090a453452c1bf8a3679bae04
/cpps/demo1/BinarySearch/BinarySearch.h
b42f8eb70b503bce0aefa060831526d8c3a4f05c
[]
no_license
LXMAJS/Play-with-Algorithms
115b87924ce53af46c83a9859587ba1cb79675dc
e7bbc690a423107a22b7cff3625675de0ae08c48
refs/heads/master
2020-03-25T20:14:40.028766
2019-03-09T06:16:54
2019-03-09T06:16:54
144,122,440
0
0
null
null
null
null
UTF-8
C++
false
false
1,583
h
// // Created by 黎进 on 2018/8/16. // #ifndef DEMO1_BINARYSEARCH_H #define DEMO1_BINARYSEARCH_H #include <iostream> using namespace std; namespace BinarySearch{ /// find a target using binary search alogrithm /// \tparam T /// \param arr /// \param n /// \param target /// \return index of target in arr, otherwise -1 template <typename T> int binarySearch(T arr[], int n, T target){ // arr[l...r] is ordered; int l = 0, r = n-1; while(l >= r){ //int mid = (l + r)/2; int mid = l + (r - l)/2; if(arr[mid] == target) return mid; if(arr[min] < target){ // arr[l...mid - 1] r = mid - 1; } else{ // arr[mid + 1...l] l = mid + 1; } } // can not find target, return -1; return -1; } template <typename T> int __binarySearch(T arr[], int n, int l, int r, T target){ assert(l >= 0 && r <= n-1 && l > r ); int mid = l + (r-l)/2; if(arr[mid] == target) return mid; else if(arr[mid] < target){ return __binarySearch(arr, n, l, mid - 1); // arr[l...mid - 1] } else { return __binarySearch(arr, n, mid + 1, r); // arr[mid + 1, r] } } template <typename T> int binarySearch2(T arr[], int n, T target){ int res = __binarySearch(arr, n, 0, n-1, target); return res; } } #endif //DEMO1_BINARYSEARCH_H
37c929c4427c507b99c3b697e78e230ada116a8c
6b8832ff91cd27a9d74662b2ccfbb0f182280992
/Recursive Binary Search/main.cpp
987d8047f23d8b368d3d53b17e850593041e9f71
[]
no_license
KentoNishi/Algorithms-and-Data-Structures
0862f7477eb376796814a43b8cf2b3561d56fbef
4f928102972f90b8591098a3d9f321135ecd8c94
refs/heads/master
2020-04-20T04:05:33.225610
2019-04-15T03:06:28
2019-04-15T03:06:28
168,617,203
3
0
null
null
null
null
UTF-8
C++
false
false
899
cpp
#include <array> #include <iostream> #include <cmath> #include <vector> #include <algorithm> using namespace std; //Time complex: O(log(N)); int binarySearch(vector<int> arr,int query,int low, int high){ if(low>high){ return -1; }else{ int mid=(low+high)/2; if(arr[mid]==query){ return mid; }else if(arr[mid]>query){ return binarySearch(arr,query,low,mid-1); }else{ return binarySearch(arr,query,mid+1,high); } } } int main(){ vector<int> param; for(int i=0;i<1000;i++){ param.push_back(rand()%1000); } sort(param.begin(),param.end()); for(int i=0;i<param.size();i++){ cout << param[i] << endl; } int query; cout << "Int to search: "; cin >> query; cout << "Fount at index " << binarySearch(param,query,0,param.size()-1) << endl; return 0; }
0b667c58b1ac5e8682acdd27c3f68dcae32b1b16
d74d41934367c6a3538921caa4af55c766ba42dd
/2年チーム製作/Team3DActionGame/Team3DActionGame/dust_particle.cpp
d1882ac79a271d6b6f2539bc5d8208e8ffed78ef
[]
no_license
Yutasugitatu/yoshida_sugitatsu
69a33036c704a1d67b5f3a055113ca2ab24a9eff
a4d18f7b84138ec9fb8c28ea08f27e753d4a6745
refs/heads/master
2023-04-11T05:33:46.385101
2021-04-19T02:01:01
2021-04-19T02:01:01
358,175,655
0
0
null
null
null
null
SHIFT_JIS
C++
false
false
4,740
cpp
//****************************************************************************** // 円形のパーティクル [circle_particle.cpp] // Author : 管原 司 //****************************************************************************** //****************************************************************************** // インクルードファイル //****************************************************************************** #include "main.h" #include "manager.h" #include "renderer.h" #include "dust_particle.h" //****************************************************************************** // マクロ定義 //****************************************************************************** #define SUB_COLOR_VALUE (0.02f) // 色減算値 #define ADD_SCALE_VALUE (0.4f) // 拡大率加算 #define MIN_COLOR_VALUE (0.0f) // 色の最小値 #define RANDOM_ANGLE (180) // 角度ランダム #define RANDOM_POS (200) // 位置ランダム #define MUT_2 (2) // 2倍 #define DEVEIDE (2) // 割る2 #define MAX_PARTICLE (10) // パーティクルの最大数 #define POS (D3DXVECTOR3(pos.x,pos.y,pos.z)) // 位置 #define SIZE (D3DXVECTOR3(30.0f,30.0f,0.0f)) // サイズ #define ROT (D3DXVECTOR3(0.0f,0.0f,0.0f)) // 向き #define COLOR (D3DXCOLOR(1.0f,0.8f,0.5f,1.0f)) // 色 // 移動 #define MOVE (D3DXVECTOR3(cosf(D3DXToRadian(fAngle))*2.0f, sinf(D3DXToRadian(fAngle))*3.0f,0.0f)) //****************************************************************************** // コンストラクタ //****************************************************************************** CDust_Particle::CDust_Particle(int nPrirority) { m_move = INIT_D3DXVECTOR3; m_fAddScale = INIT_FLOAT; m_fMinColor = INIT_FLOAT; } //****************************************************************************** // デストラクタ //****************************************************************************** CDust_Particle::~CDust_Particle() { } //****************************************************************************** // 生成関数 //****************************************************************************** CDust_Particle * CDust_Particle::Create(D3DXVECTOR3 pos, D3DXVECTOR3 size, D3DXCOLOR col, D3DXVECTOR3 move) { // CParticle_Fireクラスのポインタ CDust_Particle *pDust_Particlee; // メモリ確保 pDust_Particlee = new CDust_Particle; // 情報設定 pDust_Particlee->SetParticle(pos, size, ROT, col, CParticle::TEX_TYPE_2); // 移動量代入 pDust_Particlee->m_move = move; // 初期化 pDust_Particlee->Init(); // ポインタを返す return pDust_Particlee; } //****************************************************************************** // 初期化 //****************************************************************************** HRESULT CDust_Particle::Init(void) { // 初期化 CParticle::Init(); // 拡大率加算 m_fAddScale = ADD_SCALE_VALUE; // カラー減算値 m_fMinColor = SUB_COLOR_VALUE; return S_OK; } //****************************************************************************** // 終了関数 //****************************************************************************** void CDust_Particle::Uninit(void) { // 終了 CParticle::Uninit(); } //****************************************************************************** // 更新関数 //****************************************************************************** void CDust_Particle::Update(void) { // 更新 CParticle::Update(); // 位置座標取得 D3DXVECTOR3 pos = GetPosition(); // 色取得 D3DXCOLOR col = GetColor(); // 拡大率 float fScale = GetScale(); // 拡大率加算 fScale += m_fAddScale; // 色設定 SetScale(fScale); // カラー減算 col.a -= m_fMinColor; // 色設定 SetColor(col); // 位置更新 pos += m_move; // 位置座標設定 SetPosition(pos); // αが0.0f以下の場合 if (col.a <= MIN_COLOR_VALUE) { // 終了 Uninit(); return; } } //****************************************************************************** // 描画関数 //****************************************************************************** void CDust_Particle::Draw(void) { // 描画 CParticle::Draw(); } //****************************************************************************** // エフェクト生成 //****************************************************************************** void CDust_Particle::SandDust_Create(D3DXVECTOR3 pos) { for (int nCnt = INIT_INT; nCnt < MAX_PARTICLE; nCnt++) { // 角度を360ランダム float fAngle = float(rand() % RANDOM_ANGLE); // 生成 Create(POS, SIZE, COLOR, MOVE); } }
869ecfb496fee0e4d1a7e99e7eda42bdf674a050
0a8adce6608ad78a472bd9eb778f23d957589a62
/src/light_source.cpp
f9fa3377c97af4ffae7cc51a8ef312be17c311f4
[]
no_license
FL-LE/imagerie_numerique
39e85f8df607c374371b54cd2314bb446a306dd8
c557ea62119dfb5bc21e613b25f86b7509df8704
refs/heads/main
2023-02-21T19:37:07.461084
2021-01-28T15:25:31
2021-01-28T15:25:31
334,134,189
0
0
null
2021-01-29T12:09:42
2021-01-29T12:09:42
null
UTF-8
C++
false
false
305
cpp
#include "light_source.h" /** * * @file light_source.cpp * @brief Ce fichier contient toutes les fonctions déclarées dans le fichier 'camera.h'. * */ /************************************************ * Fonctions ************************************************/ void temp3(){ return; }
788140d47f406765f20b28af8cda4df42c8cb468
e1a4acf1d41b152a0f811e82c27ad261315399cc
/algorithms/kernel/neural_networks/layers/softmax_layer/forward/softmax_layer_forward_dense_default_batch_fpt_dispatcher.cpp
4baa161130b073c71d15883999fca8a7852a1e82
[ "Apache-2.0", "Intel" ]
permissive
ValeryiE/daal
e7572f16e692785db1e17bed23b6ab709db4e705
d326bdc5291612bc9e090d95da65aa579588b81e
refs/heads/master
2020-08-29T11:37:16.157315
2019-10-25T13:11:01
2019-10-25T13:11:01
218,020,419
0
0
Apache-2.0
2019-10-28T10:22:19
2019-10-28T10:22:19
null
UTF-8
C++
false
false
1,278
cpp
/* file: softmax_layer_forward_dense_default_batch_fpt_dispatcher.cpp */ /******************************************************************************* * Copyright 2014-2019 Intel Corporation * * 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. *******************************************************************************/ //++ // Implementation of softmax layer container. //-- #include "softmax_layer_forward_batch_container.h" namespace daal { namespace algorithms { namespace neural_networks { namespace layers { namespace forward { __DAAL_INSTANTIATE_DISPATCH_LAYER_CONTAINER_FORWARD(neural_networks::layers::softmax::forward::interface1::BatchContainer, DAAL_FPTYPE, neural_networks::layers::softmax::defaultDense) } } } } }
73d096347eb103e91dc8fbdb5ecd8bb23db2b4ca
1b523bf1b3bfd9782227ca394ac20143baf4974c
/official/chapter05/phoneme/phoneme_feature-mr3-rel-src-b01-17_jul_2008/cldc/src/vm/share/runtime/CallInfo.hpp
6ae3160b823a124090eb3ba619d91fdb141986b8
[]
no_license
Joyounger/armlinuxbook
66c80192a2d4ea068bba2e21c92067705da08949
b7fea1d8c235cbd1f4551b5495bbacc777d91916
refs/heads/master
2021-05-06T10:17:58.433025
2018-03-31T09:14:02
2018-03-31T09:14:02
114,165,147
1
1
null
null
null
null
UTF-8
C++
false
false
5,001
hpp
/* * * * Copyright 1990-2008 Sun Microsystems, Inc. All Rights Reserved. * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License version * 2 only, as published by the Free Software Foundation. * * This program is distributed in the hope that it will be useful, but * WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * General Public License version 2 for more details (a copy is * included at /legal/license.txt). * * You should have received a copy of the GNU General Public License * version 2 along with this work; if not, write to the Free Software * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA * 02110-1301 USA * * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa * Clara, CA 95054 or visit www.sun.com if you need additional * information or have any questions. */ /** \class CallInfo Describes the word associated with each call in both the interpreter and the compiler generated code. A CallInfo contains information about where the call is located: in_compiled_code in_interpreter If the call is in compiled code we also store bci and offset to the start of the compiled method. \verbatim On x86: call foo test eax, {DWORD} On ARM: call foo {DWORD} "return +4 is used to return past CallInfo The CallInfo as two formats: format1: 0-12, tag information for 13 locations 13-20, byte code index for call 21-30, offset to start of compiled method 31, = 1 (location must be in compiled code) format2: 0-15, bci for call 16-30, offset to start of compiled method 31, = 0 The value 0 is reserved for interpreted code. \endverbatim */ #if ENABLE_EMBEDDED_CALLINFO class CallInfo { public: enum { compact_start = 31, format1_tag_width = 13, format1_bci_width = 8, format1_start_offset_width = 10, format1_tag_start = 0, format1_bci_start = format1_tag_start + format1_tag_width, format1_start_offset_start = format1_bci_start + format1_bci_width, format2_bci_width = 16, format2_start_offset_width = 15, format2_bci_start = 0, format2_start_offset_start = format2_bci_start + format2_bci_width }; private: intptr_t _value; CallInfo(int value) { _value = value; } static int stored_start_offset(int start_offset); int restored_start_offset(int stored_start_offset); public: // Construction of CallInfo // Tells whether the information qualifies for the compact format // Remember an additional requirement is that // the tags must represent either oop or int like static bool fits_compiled_compact_format(int bci, int offset_to_start, int number_of_tags); // Create format1 for compiled code static CallInfo compiled(int bci, int offset_to_start JVM_TRAPS); // Create format2 for compiled code static CallInfo compiled_compact(int bci, int offset_to_start); // Create format2 for interpreter static CallInfo interpreter() { return CallInfo(0); } // Access to CallInfo // Set the index to have an oop, only works with compact information void set_oop_tag_at(int index); // Tells where the CallInfo is located bool in_interpreter() { return _value == 0; } bool in_compiled_code() { return _value != 0; } // Tells whether the information is stored in format1 bool is_compact_format() { return is_set_nth_bit(_value, compact_start); } // Accessors for CallInfo in compiled code int bci(); int start_offset(); Tag compact_tag_at(int index); Tag extended_tag_at(int index); // Return the raw data int raw() { return _value; } #if USE_COMPILER_STRUCTURES CompiledMethodDesc* compiled_method(); #endif #if ENABLE_COMPILER static ReturnOop new_tag_array(int size JVM_TRAPS); #endif static void set_tag(TypeArray*, int index, BasicType type); private: enum { tag_array_overhead = 4 }; static Tag nybble_to_stack_tag(int nybble) { if (nybble == 0) { return uninitialized_tag; } else { return (Tag)(1 << (nybble - 1)); } } static int stack_tag_to_nybble(Tag stack_tag) { if (stack_tag == uninitialized_tag) { return 0; } else { return exact_log2(stack_tag) + 1; } } static void index_to_offsets(int index, int& word_offset, int& bit_offset) { // 8 nybbles per word, each nybble is 4 bits. word_offset = ((unsigned) (index + tag_array_overhead)) >> 3; bit_offset = ((index + tag_array_overhead) & 7) << 2; } public: #ifndef PRODUCT void print(Stream* st = tty); #else void print(Stream*) {} #endif }; #endif // ENABLE_EMBEDDED_CALLINFO
9cac0e81a50178aa81852895753b105d713cc136
c049528f984f99ae783bcef9d26e57f63c337d77
/Agents/Adapter - fanuc iSeries - LAN/Logger.h
27d91a027c48ce58572019a3f8981360e5e74240
[]
no_license
Maroooney/MTConnectToolbox
9537f109ab265b2d690d56c4d8e833ee4c2edba7
15d9f830b14d7521277431dcd1c08b8af44a3c07
refs/heads/master
2020-03-30T10:47:54.670294
2018-06-07T16:30:06
2018-06-07T16:30:06
null
0
0
null
null
null
null
UTF-8
C++
false
false
6,805
h
// ************************************************************************** // Logger.h // // Description: // // DISCLAIMER: // This software was developed by U.S. Government employees as part of // their official duties and is not subject to copyright. No warranty implied // or intended. // ************************************************************************** #pragma once #include "atlstr.h" #include <fstream> #include <iostream> #include <atlcomtime.h> #include "NIST/StdStringFcn.h" //#define LOGLISTENERS #ifdef LOGLISTENERS // This is for notifying listeners to logged messages - mnany to many relationship #include <boost/function.hpp> #include <boost/function_equal.hpp> typedef boost::function<void (const TCHAR * msg)> FcnLognotify; #include <vector> #endif // This is useful for preventing endless repeated error messages #define LOGONCE static long nLog##__LINE__=0; if( 0 == nLog##__LINE__++) //#define LOGONCE /** Allow redirected of std::cout to vc console output std::cout.rdbuf(&Logger); std::cout << "Hello World\n"; std::cout.flush(); */ class basic_debugbuf : public std::streambuf { public: std::vector<FcnLognotify> listeners; basic_debugbuf(int bufferSize=1000) { if (bufferSize) { char *ptr = new char[bufferSize]; setp(ptr, ptr + bufferSize); } else setp(0, 0); } virtual ~basic_debugbuf() { sync(); delete[] pbase(); } virtual void writeString(const std::string &str) { for(int i=0; i< listeners.size(); i++) listeners[i](str.c_str()); OutputDebugString(str.c_str()); } private: int overflow(int c) { sync(); if (c != EOF) { if (pbase() == epptr()) { std::string temp; temp += char(c); writeString(temp); } else sputc(c); } return 0; } int sync() { if (pbase() != pptr()) { int len = int(pptr() - pbase()); std::string temp(pbase(), len); writeString(temp); setp(pbase(), epptr()); } return 0; } }; struct CDebugLevel { CDebugLevel(int n, char * name) : _debug(n), _name(name) {} int operator ()() { return _debug; } operator int () { return _debug; } operator std::string () { return _name; } int _debug; std::string _name; }; __declspec(selectany) CDebugLevel ENTRY (0, "ENTRY"); __declspec(selectany) CDebugLevel FATAL (0, "FATAL"); __declspec(selectany) CDebugLevel LOWERROR (1, "ERROR"); __declspec(selectany) CDebugLevel WARNING (2, "WARN "); __declspec(selectany) CDebugLevel INFO (3, "INFO "); __declspec(selectany) CDebugLevel DBUG (4, "DEBUG"); __declspec(selectany) CDebugLevel DETAILED (5, "DETAIL "); __declspec(selectany) CDebugLevel HEAVYDEBUG (5, "HDEBUG "); /** Sample use: CLogger logger; logger.DebugString()=true; logger << FATAL << "Fatal Message1\n"; logger << FATAL << "Fatal Message2\n"; logger.DebugString()=false; logger.Open(::ExeDirectory() + "debug.txt"); logger << FATAL << "Fatal Message\n"; logger << DETAILED << "DETAILED Message\n"; logger << INFO << "INFO Message\n"; logger().close(); */ class CLogger : public basic_debugbuf { struct nullstream: std::fstream { nullstream(): std::ios(0), std::fstream((_Filet *) NULL) {} }; public: CLogger() { DebugLevel()=7; filename=::ExeDirectory() + "debug.txt"; //std::cout.rdbuf(&_outputdebugstream); //std::cerr.rdbuf(&_outputdebugstream); OutputConsole()=false; Timestamping()=false; DebugString()=false; _nCounter=1; } ~CLogger() { if(DebugFile.is_open()) DebugFile.close(); } int & DebugLevel() { return _debuglevel; } bool & Timestamping() { return bTimestamp; } bool & DebugString() { return bDebugString; } bool & OutputConsole() { return bOutputConsole; } std::ofstream & operator()(void) { return this->DebugFile; } void Open(std::string filename, int bAppend=false) { this->filename=filename; Open(bAppend); } void Open(int bAppend=0) { int opMode = std::fstream::out; if(bAppend) opMode |= std::fstream::app; DebugFile.open(filename.c_str(), opMode, OF_SHARE_DENY_NONE); } std::ostream &operator<<( CDebugLevel level) { std::fstream tmp; if( DebugLevel() < (int) level) return this->devnull; if(DebugString()) { return PrintTimestamp(std::cout,level ); } //return PrintTimestamp(std::ostream(static_cast<std::streambuf*>( &_outputdebugstream)) ,level); #if ( _MSC_VER >= 1600) // 2010 return PrintTimestamp(std::ostream(static_cast<std::streambuf*>( &_outputdebugstream)) ,level); #else return PrintTimestamp(this->DebugFile,level); #endif } std::ostream & PrintTimestamp(std::ostream & s, CDebugLevel level) { if(Timestamping()) { s << Timestamp() << ": "; s << (std::string) level << " [" << (int ) _nCounter++ << "] "; } return s; } int LogMessage(std::string msg, int level=-1) { if( DebugLevel() < level) return level; if(OutputConsole()) OutputDebugString(msg.c_str()); if(!DebugFile.is_open()) return level; if(Timestamping()) DebugFile << Timestamp(); DebugFile << msg; // LOGLISTENERS is for notifying windows or other listeners #ifdef LOGLISTENERS for(int i=0; i< listeners.size(); i++) listeners[i](msg.c_str()); #endif DebugFile.flush(); return level; } int Fatal(std::string msg){ return LogMessage(msg,FATAL); } int Error(std::string msg){ return LogMessage(msg,LOWERROR); } int Warning(std::string msg){return LogMessage(msg,WARNING); } int Info(std::string msg){ return LogMessage(msg,INFO); } int Status(std::string msg){return LogMessage(msg,FATAL); } ///////////////////////////////////////////////////////////////////////////// //2012-12-22T03:06:56.0984Z static std::string Timestamp() { SYSTEMTIME st; GetSystemTime(&st); return StrFormat("%4d-%02d-%02dT%02d:%02d:%02d.%04dZ", st.wYear, st.wMonth, st.wDay, st.wHour, st.wMinute, st.wSecond, st.wMilliseconds); //return (LPCSTR) COleDateTime::GetCurrentTime().Format(); } public: basic_debugbuf _outputdebugstream; std::ofstream DebugFile; protected: int _debuglevel; bool bTimestamp; bool bDebugString; bool bOutputConsole; int nDebugReset; std::string filename; nullstream devnull; int _nCounter; #ifdef LOGLISTENERS /** void CMainFrame::MutexStep(std::string s) { OutputDebugString(s.c_str()); } ... m_view.AddListener("Step", boost::bind(&CMainFrame::MutexStep, this,_1)) */ public: void AddListener(FcnLognotify notify) { _outputdebugstream.listeners.push_back(notify); } #endif }; __declspec(selectany) CLogger GLogger;
599aa0e2c703e8c3bd2e24c953d23e54fa50bacb
9600ed748c8abff4a2c875d24c25b2782bbdc571
/坦克大战c++版本 除了A星和音效 可以重开游戏/坦克大战c++版本/CTankTool.h
f1904a380a3f696c17f70e049e0e143c6ba2cfa1
[]
no_license
Skjz/15P
6ff7efde56b3c947515aac2606764d947d5d8fe5
62d359611e0fe51a4cbeda33a384dbb8b9b07b18
refs/heads/master
2023-07-15T06:42:37.824622
2021-08-05T01:59:40
2021-08-05T01:59:40
373,373,131
0
0
null
null
null
null
GB18030
C++
false
false
1,890
h
#pragma once #include"CMap.h" #include"CBullet.h" #include<vector> using std::vector; //#include<windows.h> //地图1 #define PATH_MAP1 "..\\Debug\\1.map" //地图2 D #define PATH_MAP2 "..\\Debug\\2.map" //地图3 D #define PATH_MAP3 "..\\Debug\\3.map" //地图4 D #define PATH_MAP4 "..\\Debug\\4.map" //地图5 D #define PATH_MAP5 "..\\Debug\\5.map" //保存冒险模式 #define PATH_SAVE_ADV "..\\Debug\\Adv.sav" //保存编辑模式 #define PATH_SAVE_CUS "..\\Debug\\Cus.sav" //坦克大战工具类,以LEVEL来作为索引使用 class CTankTool { public: //坦克相关 //初始化静态成员 static unsigned short Tank_Move_Speed[4]; //坦克移动速度数组 static unsigned short Tank_Rocil[4]; //坦克后坐力数组,影响坦克射击的间隔时间 static COLOR Tank_Color[4]; //坦克外观的数组,不同等级的坦克有不同的外观 static COLOR Tank_In_Grass; //坦克在草里的颜色 static COLOR Bullet_In_Grass; //子弹在草里的颜色 static COLOR Bullet_In_River; //敌方坦克的数量 static unsigned short Robo_Tank_Count; //敌方坦克的数量 static unsigned short Robo_Tank_Max_Count; //敌方坦克同时在场最大数量 static DIR m_Robo_Move_Oper_Arr[4]; //地图数组 static const char* Game_Stage[5]; //子弹相关 static unsigned short Bullet_Move_Speed[4]; //子弹的移动速度数组,不同等级的子弹有不同的移动速度 static COLOR Bullet_Color[4]; //子弹的外观数组,不同等级的子弹有不同外观 ////子弹数组 //static vector<CBullet> objBullet; ////坦克数组 //static vector<CTank> objRobo; };
0204dce218b209e83b88ad7df86d54782fe9797e
1c9d2c8488dd76250e39e6875429edbbf24de784
/groups/bsl/bsl+stdhdrs/csignal.SUNWCCh
952b40643575d0892cd334dc0a29739279bed61d
[ "Apache-2.0" ]
permissive
villevoutilainen/bde
9cc68889c1fac9beca068c9ca732c36fd81b33e9
b0f71ac6e3187ce752d2e8906c4562e3ec48b398
refs/heads/master
2020-05-15T03:43:36.725050
2019-10-03T12:28:54
2019-10-03T12:28:54
182,071,409
1
1
Apache-2.0
2019-10-03T12:28:55
2019-04-18T10:59:27
C++
UTF-8
C++
false
false
2,360
sunwcch
// csignal -*-C++-*- #ifndef INCLUDED_NATIVE_CSIGNAL #define INCLUDED_NATIVE_CSIGNAL #ifndef INCLUDED_BSLS_IDENT #include <bsls_ident.h> #endif BSLS_IDENT("$Id: $") //@PURPOSE: Provide functionality of the corresponding C++ Standard header. // //@SEE_ALSO: package bsl+stdhdrs // //@DESCRIPTION: Provide functionality of the corresponding C++ standard // header. This file includes the compiler provided native standard header. // In addition, in 'bde-stl' mode (used by Bloomberg managed code, see // 'bsl+stdhdrs.txt' for more information) include the corresponding header in // 'bsl+bslhdrs' as well as 'bsl_stdhdrs_prologue.h' and // 'bsl_stdhdrs_epilogue.h'. This includes the respective 'bsl' types and // places them in the 'std' namespace. #ifndef BSL_OVERRIDES_STD # ifndef INCLUDED_BSL_STDHDRS_INCPATHS # include <bsl_stdhdrs_incpaths.h> # endif # include BSL_NATIVE_CPP_C_HEADER(csignal) #else // defined(BSL_OVERRIDES_STD) # ifndef BSL_STDHDRS_PROLOGUE_IN_EFFECT # include <bsl_stdhdrs_prologue.h> # endif # ifndef BSL_STDHDRS_RUN_EPILOGUE # define BSL_STDHDRS_RUN_EPILOGUE # define BSL_STDHDRS_EPILOGUE_RUN_BY_csignal # endif # ifndef INCLUDED_BSL_STDHDRS_INCPATHS # include <bsl_stdhdrs_incpaths.h> # endif # include BSL_NATIVE_CPP_C_HEADER(csignal) # include <bsl_csignal.h> # ifdef BSL_STDHDRS_EPILOGUE_RUN_BY_csignal # undef BSL_STDHDRS_EPILOGUE_RUN_BY_csignal # include <bsl_stdhdrs_epilogue.h> # endif #endif // BSL_OVERRIDES_STD #endif // INCLUDED_NATIVE_CSIGNAL // ---------------------------------------------------------------------------- // Copyright 2013 Bloomberg Finance L.P. // // 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. // ----------------------------- END-OF-FILE ----------------------------------
5059e4a6631305ef53df579d496e67ecb00e4f7e
dfc207807d16db7d93076802fff211fcff844706
/ChatRoomClient/GeneratedFiles/ui_mainwindow.h
02a256efdc88ec4bfd09a934a33f71696183c8d0
[]
no_license
roberchenc/Qt-practices
f4c314d5f974fb019f1f3e2e6ae49b24345c2c36
818ea47eb18c3999bf63525958247754231735db
refs/heads/master
2022-11-22T11:39:17.613149
2020-07-24T03:26:28
2020-07-24T03:26:28
87,614,134
0
0
null
null
null
null
UTF-8
C++
false
false
6,597
h
/******************************************************************************** ** Form generated from reading UI file 'mainwindow.ui' ** ** Created by: Qt User Interface Compiler version 5.8.0 ** ** WARNING! All changes made in this file will be lost when recompiling UI file! ********************************************************************************/ #ifndef UI_MAINWINDOW_H #define UI_MAINWINDOW_H #include <QtCore/QVariant> #include <QtWidgets/QAction> #include <QtWidgets/QApplication> #include <QtWidgets/QButtonGroup> #include <QtWidgets/QHeaderView> #include <QtWidgets/QLabel> #include <QtWidgets/QLineEdit> #include <QtWidgets/QListView> #include <QtWidgets/QMainWindow> #include <QtWidgets/QMenuBar> #include <QtWidgets/QPushButton> #include <QtWidgets/QStatusBar> #include <QtWidgets/QTextBrowser> #include <QtWidgets/QToolBar> #include <QtWidgets/QWidget> QT_BEGIN_NAMESPACE class Ui_MainWindow { public: QWidget *centralWidget; QPushButton *btn_login; QPushButton *btn_logout; QLabel *label_name; QLabel *label_psw; QLineEdit *le_name; QLineEdit *le_psw; QLabel *label_message; QLineEdit *le_message; QPushButton *btn_pushMessage; QLabel *label_online; QTextBrowser *tb_publicMessage; QListView *listv_onlineUser; QPushButton *btn_updateOnlineUser; QLabel *label_headImage; QMenuBar *menuBar; QToolBar *mainToolBar; QStatusBar *statusBar; void setupUi(QMainWindow *MainWindow) { if (MainWindow->objectName().isEmpty()) MainWindow->setObjectName(QStringLiteral("MainWindow")); MainWindow->resize(1016, 642); centralWidget = new QWidget(MainWindow); centralWidget->setObjectName(QStringLiteral("centralWidget")); btn_login = new QPushButton(centralWidget); btn_login->setObjectName(QStringLiteral("btn_login")); btn_login->setGeometry(QRect(610, 30, 81, 31)); btn_logout = new QPushButton(centralWidget); btn_logout->setObjectName(QStringLiteral("btn_logout")); btn_logout->setGeometry(QRect(610, 100, 81, 31)); label_name = new QLabel(centralWidget); label_name->setObjectName(QStringLiteral("label_name")); label_name->setGeometry(QRect(330, 30, 54, 20)); label_psw = new QLabel(centralWidget); label_psw->setObjectName(QStringLiteral("label_psw")); label_psw->setGeometry(QRect(330, 110, 54, 12)); le_name = new QLineEdit(centralWidget); le_name->setObjectName(QStringLiteral("le_name")); le_name->setGeometry(QRect(380, 30, 191, 20)); le_psw = new QLineEdit(centralWidget); le_psw->setObjectName(QStringLiteral("le_psw")); le_psw->setGeometry(QRect(380, 110, 191, 20)); le_psw->setEchoMode(QLineEdit::Password); label_message = new QLabel(centralWidget); label_message->setObjectName(QStringLiteral("label_message")); label_message->setGeometry(QRect(50, 170, 91, 16)); le_message = new QLineEdit(centralWidget); le_message->setObjectName(QStringLiteral("le_message")); le_message->setGeometry(QRect(50, 530, 421, 31)); btn_pushMessage = new QPushButton(centralWidget); btn_pushMessage->setObjectName(QStringLiteral("btn_pushMessage")); btn_pushMessage->setGeometry(QRect(500, 520, 111, 41)); label_online = new QLabel(centralWidget); label_online->setObjectName(QStringLiteral("label_online")); label_online->setGeometry(QRect(750, 20, 54, 12)); tb_publicMessage = new QTextBrowser(centralWidget); tb_publicMessage->setObjectName(QStringLiteral("tb_publicMessage")); tb_publicMessage->setGeometry(QRect(50, 200, 551, 301)); listv_onlineUser = new QListView(centralWidget); listv_onlineUser->setObjectName(QStringLiteral("listv_onlineUser")); listv_onlineUser->setGeometry(QRect(740, 50, 256, 511)); btn_updateOnlineUser = new QPushButton(centralWidget); btn_updateOnlineUser->setObjectName(QStringLiteral("btn_updateOnlineUser")); btn_updateOnlineUser->setGeometry(QRect(910, 10, 61, 31)); label_headImage = new QLabel(centralWidget); label_headImage->setObjectName(QStringLiteral("label_headImage")); label_headImage->setGeometry(QRect(90, 20, 141, 131)); label_headImage->setMouseTracking(true); label_headImage->setAutoFillBackground(false); label_headImage->setScaledContents(true); MainWindow->setCentralWidget(centralWidget); menuBar = new QMenuBar(MainWindow); menuBar->setObjectName(QStringLiteral("menuBar")); menuBar->setGeometry(QRect(0, 0, 1016, 23)); MainWindow->setMenuBar(menuBar); mainToolBar = new QToolBar(MainWindow); mainToolBar->setObjectName(QStringLiteral("mainToolBar")); MainWindow->addToolBar(Qt::TopToolBarArea, mainToolBar); statusBar = new QStatusBar(MainWindow); statusBar->setObjectName(QStringLiteral("statusBar")); MainWindow->setStatusBar(statusBar); retranslateUi(MainWindow); QMetaObject::connectSlotsByName(MainWindow); } // setupUi void retranslateUi(QMainWindow *MainWindow) { MainWindow->setWindowTitle(QApplication::translate("MainWindow", "ChatRoom", Q_NULLPTR)); btn_login->setText(QApplication::translate("MainWindow", "\347\231\273\345\275\225", Q_NULLPTR)); btn_logout->setText(QApplication::translate("MainWindow", "\347\231\273\345\207\272", Q_NULLPTR)); label_name->setText(QApplication::translate("MainWindow", "\347\224\250\346\210\267\345\220\215", Q_NULLPTR)); label_psw->setText(QApplication::translate("MainWindow", "\345\257\206\347\240\201", Q_NULLPTR)); label_message->setText(QApplication::translate("MainWindow", "\350\201\212\345\244\251\345\256\244\346\266\210\346\201\257\345\216\206\345\217\262", Q_NULLPTR)); btn_pushMessage->setText(QApplication::translate("MainWindow", "\345\217\221\351\200\201\346\266\210\346\201\257", Q_NULLPTR)); label_online->setText(QApplication::translate("MainWindow", "\345\234\250\347\272\277\345\210\227\350\241\250", Q_NULLPTR)); btn_updateOnlineUser->setText(QApplication::translate("MainWindow", "Update", Q_NULLPTR)); label_headImage->setText(QApplication::translate("MainWindow", "\345\244\264\345\203\217", Q_NULLPTR)); } // retranslateUi }; namespace Ui { class MainWindow: public Ui_MainWindow {}; } // namespace Ui QT_END_NAMESPACE #endif // UI_MAINWINDOW_H
288ddf22a9ffdac7201dccaaaf2fb6d00dea9bc9
a4dfb028d9e126b4a2d93d5bff7d62f5a1e8566a
/RDR2Extension/MenuItemBase.cpp
5b4dbfadadb631bb03b63c79732789078b65f044
[ "MIT" ]
permissive
ALEHACKsp/RDR2Extension
1c0dd752d8c87944f2104aaa1e42f822914c6e11
ff786053eb1189b603e6e0d1929f3220d1d45b1d
refs/heads/master
2022-12-09T21:05:37.720570
2020-09-10T08:26:38
2020-09-10T08:26:38
null
0
0
null
null
null
null
UTF-8
C++
false
false
5,624
cpp
#include "MenuItemBase.h" #include "keyboard.h" /// <summary> /// BASE CLASS /// </summary> void MenuItemBase::OnSelect() { if (IsKeyJustUp(VK_RETURN)) Execute(); } /// <summary> /// MENU ITEM DEFAULT /// </summary> void MenuItem::OnRender() { // Left text UI::SET_TEXT_SCALE(textScaleX, textScaleY); UI::SET_TEXT_COLOR_RGBA(GetTextColor().rgba[0], GetTextColor().rgba[1], GetTextColor().rgba[2], GetTextColor().rgba[3]); UI::SET_TEXT_CENTRE(0); UI::SET_TEXT_DROPSHADOW(0, 0, 0, 0, 0); UI::DRAW_TEXT(GAMEPLAY::CREATE_STRING(10, const_cast<char*>("LITERAL_STRING"), const_cast<char*>(GetCaption().c_str())), startScreenX + position.x, startScreenY + position.y); } void MenuItemSwitchOnOff::OnRender() { // Left text UI::SET_TEXT_SCALE(textScaleX, textScaleY); UI::SET_TEXT_COLOR_RGBA(GetTextColor().rgba[0], GetTextColor().rgba[1], GetTextColor().rgba[2], GetTextColor().rgba[3]); UI::SET_TEXT_CENTRE(0); UI::SET_TEXT_DROPSHADOW(0, 0, 0, 0, 0); UI::DRAW_TEXT(GAMEPLAY::CREATE_STRING(10, const_cast<char*>("LITERAL_STRING"), const_cast<char*>(GetCaption().c_str())), startScreenX + position.x, startScreenY + position.y); // Right text UI::SET_TEXT_SCALE(textScaleX, textScaleY); UI::SET_TEXT_COLOR_RGBA(switchColor.rgba[0], switchColor.rgba[1], switchColor.rgba[2], switchColor.rgba[3]); UI::SET_TEXT_CENTRE(0); UI::SET_TEXT_DROPSHADOW(0, 0, 0, 0, 0); UI::DRAW_TEXT(GAMEPLAY::CREATE_STRING(10, const_cast<char*>("LITERAL_STRING"), const_cast<char*>(GetSwitchState() ? "ON" : "OFF")), startScreenX + 0.1f, startScreenY + position.y); } void MenuItemSwitchOnOff::OnFrame() { if (IsKeyJustUp(VK_RIGHT)) m_Switch = !m_Switch; if (IsKeyJustUp(VK_LEFT)) m_Switch = !m_Switch; } /// <summary> /// DATA SWITCH /// </summary> void MenuItemSwitch::OnRender() { // Left text UI::SET_TEXT_SCALE(textScaleX, textScaleY); UI::SET_TEXT_COLOR_RGBA(GetTextColor().rgba[0], GetTextColor().rgba[1], GetTextColor().rgba[2], GetTextColor().rgba[3]); UI::SET_TEXT_CENTRE(0); UI::SET_TEXT_DROPSHADOW(0, 0, 0, 0, 0); UI::DRAW_TEXT(GAMEPLAY::CREATE_STRING(10, const_cast<char*>("LITERAL_STRING"), const_cast<char*>(GetCaption().c_str())), startScreenX + position.x, startScreenY + position.y); // Right text UI::SET_TEXT_SCALE(textScaleX, textScaleY); UI::SET_TEXT_COLOR_RGBA(switchColor.rgba[0], switchColor.rgba[1], switchColor.rgba[2], switchColor.rgba[3]); UI::SET_TEXT_CENTRE(0); UI::SET_TEXT_DROPSHADOW(0, 0, 0, 0, 0); UI::DRAW_TEXT(GAMEPLAY::CREATE_STRING(10, const_cast<char*>("LITERAL_STRING"), const_cast<char*>(keys[currentDataIndex].c_str())), startScreenX + 0.1f, startScreenY + position.y); } void MenuItemSwitch::OnFrame() { if (IsKeyJustUp(VK_RIGHT)) { if (currentDataIndex == (keys.size() - 1)) { currentDataIndex = 0; return; } currentDataIndex++; } if (IsKeyJustUp(VK_LEFT)) { if (currentDataIndex == 0) { currentDataIndex = (keys.size() - 1); return; } currentDataIndex--; } } /// <summary> /// MENU SWITCH FLOAT TYPE /// </summary> void MenuItemSwitchFloat::OnRender() { // Left text UI::SET_TEXT_SCALE(textScaleX, textScaleY); UI::SET_TEXT_COLOR_RGBA(GetTextColor().rgba[0], GetTextColor().rgba[1], GetTextColor().rgba[2], GetTextColor().rgba[3]); UI::SET_TEXT_CENTRE(NULL); UI::SET_TEXT_DROPSHADOW(NULL, NULL, NULL, NULL, NULL); UI::DRAW_TEXT(GAMEPLAY::CREATE_STRING(10, const_cast<char*>("LITERAL_STRING"), const_cast<char*>(GetCaption().c_str())), startScreenX + position.x, startScreenY + position.y); // Right text UI::SET_TEXT_SCALE(textScaleX, textScaleY); UI::SET_TEXT_COLOR_RGBA(switchColor.rgba[0], switchColor.rgba[1], switchColor.rgba[2], switchColor.rgba[3]); UI::SET_TEXT_CENTRE(NULL); UI::SET_TEXT_DROPSHADOW(NULL, NULL, NULL, NULL, NULL); char buffer[bufferSize] = {}; sprintf_s(buffer, GetFormat().c_str(), value); UI::DRAW_TEXT(GAMEPLAY::CREATE_STRING(10, const_cast<char*>("LITERAL_STRING"), const_cast<char*>(buffer)), (startScreenX + leftStepOffset) + position.x, startScreenY + position.y); } void MenuItemSwitchFloat::OnFrame() { if (IsKeyJustUp(VK_RIGHT)) { if (value >= maxValue) { value = minValue; return; } value += maxStep; } if (IsKeyJustUp(VK_LEFT)) { if (value <= minValue) { value = maxValue; return; } value -= maxStep; } } /// <summary> /// MENU SWITCH FLOAT TYPE /// </summary> void MenuItemSwitchInt::OnRender() { // Left text UI::SET_TEXT_SCALE(textScaleX, textScaleY); UI::SET_TEXT_COLOR_RGBA(GetTextColor().rgba[0], GetTextColor().rgba[1], GetTextColor().rgba[2], GetTextColor().rgba[3]); UI::SET_TEXT_CENTRE(NULL); UI::SET_TEXT_DROPSHADOW(NULL, NULL, NULL, NULL, NULL); UI::DRAW_TEXT(GAMEPLAY::CREATE_STRING(10, const_cast<char*>("LITERAL_STRING"), const_cast<char*>(GetCaption().c_str())), startScreenX + position.x, startScreenY + position.y); // Right text UI::SET_TEXT_SCALE(textScaleX, textScaleY); UI::SET_TEXT_COLOR_RGBA(switchColor.rgba[0], switchColor.rgba[1], switchColor.rgba[2], switchColor.rgba[3]); UI::SET_TEXT_CENTRE(NULL); UI::SET_TEXT_DROPSHADOW(NULL, NULL, NULL, NULL, NULL); char buffer[bufferSizeInt] = {}; sprintf_s(buffer, GetFormat().c_str(), value); UI::DRAW_TEXT(GAMEPLAY::CREATE_STRING(10, const_cast<char*>("LITERAL_STRING"), const_cast<char*>(buffer)), (startScreenX + leftStepOffset) + position.x, startScreenY + position.y); } void MenuItemSwitchInt::OnFrame() { if (IsKeyJustUp(VK_RIGHT)) { if (value == maxValue) { value = minValue; return; } value += maxStepInt; } if (IsKeyJustUp(VK_LEFT)) { if (value == minValue) { value = maxValue; return; } value -= maxStepInt; } }
b06d1acc8fe4a51e991929cdc1d681aa270d89b4
cb1c581ea4c1ab744448946e2b3cc5bf083f5788
/AckTimeOutMessage_m.cc
8f1b9fed9fec18c3d5fb17a16a3bf0051dee974b
[]
no_license
wassimissawi/drone-veins
3629cf394ceca4f8361e774a06acf880a79e136b
e920d0d8a74b7f1d96ac0b79fc9cc60ca8a87495
refs/heads/main
2023-07-14T22:23:02.563005
2021-08-17T13:14:06
2021-08-17T13:14:06
397,262,858
1
0
null
null
null
null
UTF-8
C++
false
false
15,189
cc
// // Generated file, do not edit! Created by nedtool 5.4 from veins/modules/messages/AckTimeOutMessage.msg. // // Disable warnings about unused variables, empty switch stmts, etc: #ifdef _MSC_VER # pragma warning(disable:4101) # pragma warning(disable:4065) #endif #if defined(__clang__) # pragma clang diagnostic ignored "-Wshadow" # pragma clang diagnostic ignored "-Wconversion" # pragma clang diagnostic ignored "-Wunused-parameter" # pragma clang diagnostic ignored "-Wc++98-compat" # pragma clang diagnostic ignored "-Wunreachable-code-break" # pragma clang diagnostic ignored "-Wold-style-cast" #elif defined(__GNUC__) # pragma GCC diagnostic ignored "-Wshadow" # pragma GCC diagnostic ignored "-Wconversion" # pragma GCC diagnostic ignored "-Wunused-parameter" # pragma GCC diagnostic ignored "-Wold-style-cast" # pragma GCC diagnostic ignored "-Wsuggest-attribute=noreturn" # pragma GCC diagnostic ignored "-Wfloat-conversion" #endif #include <iostream> #include <sstream> #include "AckTimeOutMessage_m.h" namespace omnetpp { // Template pack/unpack rules. They are declared *after* a1l type-specific pack functions for multiple reasons. // They are in the omnetpp namespace, to allow them to be found by argument-dependent lookup via the cCommBuffer argument // Packing/unpacking an std::vector template<typename T, typename A> void doParsimPacking(omnetpp::cCommBuffer *buffer, const std::vector<T,A>& v) { int n = v.size(); doParsimPacking(buffer, n); for (int i = 0; i < n; i++) doParsimPacking(buffer, v[i]); } template<typename T, typename A> void doParsimUnpacking(omnetpp::cCommBuffer *buffer, std::vector<T,A>& v) { int n; doParsimUnpacking(buffer, n); v.resize(n); for (int i = 0; i < n; i++) doParsimUnpacking(buffer, v[i]); } // Packing/unpacking an std::list template<typename T, typename A> void doParsimPacking(omnetpp::cCommBuffer *buffer, const std::list<T,A>& l) { doParsimPacking(buffer, (int)l.size()); for (typename std::list<T,A>::const_iterator it = l.begin(); it != l.end(); ++it) doParsimPacking(buffer, (T&)*it); } template<typename T, typename A> void doParsimUnpacking(omnetpp::cCommBuffer *buffer, std::list<T,A>& l) { int n; doParsimUnpacking(buffer, n); for (int i=0; i<n; i++) { l.push_back(T()); doParsimUnpacking(buffer, l.back()); } } // Packing/unpacking an std::set template<typename T, typename Tr, typename A> void doParsimPacking(omnetpp::cCommBuffer *buffer, const std::set<T,Tr,A>& s) { doParsimPacking(buffer, (int)s.size()); for (typename std::set<T,Tr,A>::const_iterator it = s.begin(); it != s.end(); ++it) doParsimPacking(buffer, *it); } template<typename T, typename Tr, typename A> void doParsimUnpacking(omnetpp::cCommBuffer *buffer, std::set<T,Tr,A>& s) { int n; doParsimUnpacking(buffer, n); for (int i=0; i<n; i++) { T x; doParsimUnpacking(buffer, x); s.insert(x); } } // Packing/unpacking an std::map template<typename K, typename V, typename Tr, typename A> void doParsimPacking(omnetpp::cCommBuffer *buffer, const std::map<K,V,Tr,A>& m) { doParsimPacking(buffer, (int)m.size()); for (typename std::map<K,V,Tr,A>::const_iterator it = m.begin(); it != m.end(); ++it) { doParsimPacking(buffer, it->first); doParsimPacking(buffer, it->second); } } template<typename K, typename V, typename Tr, typename A> void doParsimUnpacking(omnetpp::cCommBuffer *buffer, std::map<K,V,Tr,A>& m) { int n; doParsimUnpacking(buffer, n); for (int i=0; i<n; i++) { K k; V v; doParsimUnpacking(buffer, k); doParsimUnpacking(buffer, v); m[k] = v; } } // Default pack/unpack function for arrays template<typename T> void doParsimArrayPacking(omnetpp::cCommBuffer *b, const T *t, int n) { for (int i = 0; i < n; i++) doParsimPacking(b, t[i]); } template<typename T> void doParsimArrayUnpacking(omnetpp::cCommBuffer *b, T *t, int n) { for (int i = 0; i < n; i++) doParsimUnpacking(b, t[i]); } // Default rule to prevent compiler from choosing base class' doParsimPacking() function template<typename T> void doParsimPacking(omnetpp::cCommBuffer *, const T& t) { throw omnetpp::cRuntimeError("Parsim error: No doParsimPacking() function for type %s", omnetpp::opp_typename(typeid(t))); } template<typename T> void doParsimUnpacking(omnetpp::cCommBuffer *, T& t) { throw omnetpp::cRuntimeError("Parsim error: No doParsimUnpacking() function for type %s", omnetpp::opp_typename(typeid(t))); } } // namespace omnetpp namespace Veins { // forward template<typename T, typename A> std::ostream& operator<<(std::ostream& out, const std::vector<T,A>& vec); // Template rule which fires if a struct or class doesn't have operator<< template<typename T> inline std::ostream& operator<<(std::ostream& out,const T&) {return out;} // operator<< for std::vector<T> template<typename T, typename A> inline std::ostream& operator<<(std::ostream& out, const std::vector<T,A>& vec) { out.put('{'); for(typename std::vector<T,A>::const_iterator it = vec.begin(); it != vec.end(); ++it) { if (it != vec.begin()) { out.put(','); out.put(' '); } out << *it; } out.put('}'); char buf[32]; sprintf(buf, " (size=%u)", (unsigned int)vec.size()); out.write(buf, strlen(buf)); return out; } Register_Class(AckTimeOutMessage) AckTimeOutMessage::AckTimeOutMessage(const char *name, short kind) : ::omnetpp::cMessage(name,kind) { this->wsmId = -1; this->ac = -1; } AckTimeOutMessage::AckTimeOutMessage(const AckTimeOutMessage& other) : ::omnetpp::cMessage(other) { copy(other); } AckTimeOutMessage::~AckTimeOutMessage() { } AckTimeOutMessage& AckTimeOutMessage::operator=(const AckTimeOutMessage& other) { if (this==&other) return *this; ::omnetpp::cMessage::operator=(other); copy(other); return *this; } void AckTimeOutMessage::copy(const AckTimeOutMessage& other) { this->wsmId = other.wsmId; this->ac = other.ac; } void AckTimeOutMessage::parsimPack(omnetpp::cCommBuffer *b) const { ::omnetpp::cMessage::parsimPack(b); doParsimPacking(b,this->wsmId); doParsimPacking(b,this->ac); } void AckTimeOutMessage::parsimUnpack(omnetpp::cCommBuffer *b) { ::omnetpp::cMessage::parsimUnpack(b); doParsimUnpacking(b,this->wsmId); doParsimUnpacking(b,this->ac); } unsigned long AckTimeOutMessage::getWsmId() const { return this->wsmId; } void AckTimeOutMessage::setWsmId(unsigned long wsmId) { this->wsmId = wsmId; } int AckTimeOutMessage::getAc() const { return this->ac; } void AckTimeOutMessage::setAc(int ac) { this->ac = ac; } class AckTimeOutMessageDescriptor : public omnetpp::cClassDescriptor { private: mutable const char **propertynames; public: AckTimeOutMessageDescriptor(); virtual ~AckTimeOutMessageDescriptor(); virtual bool doesSupport(omnetpp::cObject *obj) const override; virtual const char **getPropertyNames() const override; virtual const char *getProperty(const char *propertyname) const override; virtual int getFieldCount() const override; virtual const char *getFieldName(int field) const override; virtual int findField(const char *fieldName) const override; virtual unsigned int getFieldTypeFlags(int field) const override; virtual const char *getFieldTypeString(int field) const override; virtual const char **getFieldPropertyNames(int field) const override; virtual const char *getFieldProperty(int field, const char *propertyname) const override; virtual int getFieldArraySize(void *object, int field) const override; virtual const char *getFieldDynamicTypeString(void *object, int field, int i) const override; virtual std::string getFieldValueAsString(void *object, int field, int i) const override; virtual bool setFieldValueAsString(void *object, int field, int i, const char *value) const override; virtual const char *getFieldStructName(int field) const override; virtual void *getFieldStructValuePointer(void *object, int field, int i) const override; }; Register_ClassDescriptor(AckTimeOutMessageDescriptor) AckTimeOutMessageDescriptor::AckTimeOutMessageDescriptor() : omnetpp::cClassDescriptor("Veins::AckTimeOutMessage", "omnetpp::cMessage") { propertynames = nullptr; } AckTimeOutMessageDescriptor::~AckTimeOutMessageDescriptor() { delete[] propertynames; } bool AckTimeOutMessageDescriptor::doesSupport(omnetpp::cObject *obj) const { return dynamic_cast<AckTimeOutMessage *>(obj)!=nullptr; } const char **AckTimeOutMessageDescriptor::getPropertyNames() const { if (!propertynames) { static const char *names[] = { nullptr }; omnetpp::cClassDescriptor *basedesc = getBaseClassDescriptor(); const char **basenames = basedesc ? basedesc->getPropertyNames() : nullptr; propertynames = mergeLists(basenames, names); } return propertynames; } const char *AckTimeOutMessageDescriptor::getProperty(const char *propertyname) const { omnetpp::cClassDescriptor *basedesc = getBaseClassDescriptor(); return basedesc ? basedesc->getProperty(propertyname) : nullptr; } int AckTimeOutMessageDescriptor::getFieldCount() const { omnetpp::cClassDescriptor *basedesc = getBaseClassDescriptor(); return basedesc ? 2+basedesc->getFieldCount() : 2; } unsigned int AckTimeOutMessageDescriptor::getFieldTypeFlags(int field) const { omnetpp::cClassDescriptor *basedesc = getBaseClassDescriptor(); if (basedesc) { if (field < basedesc->getFieldCount()) return basedesc->getFieldTypeFlags(field); field -= basedesc->getFieldCount(); } static unsigned int fieldTypeFlags[] = { FD_ISEDITABLE, FD_ISEDITABLE, }; return (field>=0 && field<2) ? fieldTypeFlags[field] : 0; } const char *AckTimeOutMessageDescriptor::getFieldName(int field) const { omnetpp::cClassDescriptor *basedesc = getBaseClassDescriptor(); if (basedesc) { if (field < basedesc->getFieldCount()) return basedesc->getFieldName(field); field -= basedesc->getFieldCount(); } static const char *fieldNames[] = { "wsmId", "ac", }; return (field>=0 && field<2) ? fieldNames[field] : nullptr; } int AckTimeOutMessageDescriptor::findField(const char *fieldName) const { omnetpp::cClassDescriptor *basedesc = getBaseClassDescriptor(); int base = basedesc ? basedesc->getFieldCount() : 0; if (fieldName[0]=='w' && strcmp(fieldName, "wsmId")==0) return base+0; if (fieldName[0]=='a' && strcmp(fieldName, "ac")==0) return base+1; return basedesc ? basedesc->findField(fieldName) : -1; } const char *AckTimeOutMessageDescriptor::getFieldTypeString(int field) const { omnetpp::cClassDescriptor *basedesc = getBaseClassDescriptor(); if (basedesc) { if (field < basedesc->getFieldCount()) return basedesc->getFieldTypeString(field); field -= basedesc->getFieldCount(); } static const char *fieldTypeStrings[] = { "unsigned long", "int", }; return (field>=0 && field<2) ? fieldTypeStrings[field] : nullptr; } const char **AckTimeOutMessageDescriptor::getFieldPropertyNames(int field) const { omnetpp::cClassDescriptor *basedesc = getBaseClassDescriptor(); if (basedesc) { if (field < basedesc->getFieldCount()) return basedesc->getFieldPropertyNames(field); field -= basedesc->getFieldCount(); } switch (field) { default: return nullptr; } } const char *AckTimeOutMessageDescriptor::getFieldProperty(int field, const char *propertyname) const { omnetpp::cClassDescriptor *basedesc = getBaseClassDescriptor(); if (basedesc) { if (field < basedesc->getFieldCount()) return basedesc->getFieldProperty(field, propertyname); field -= basedesc->getFieldCount(); } switch (field) { default: return nullptr; } } int AckTimeOutMessageDescriptor::getFieldArraySize(void *object, int field) const { omnetpp::cClassDescriptor *basedesc = getBaseClassDescriptor(); if (basedesc) { if (field < basedesc->getFieldCount()) return basedesc->getFieldArraySize(object, field); field -= basedesc->getFieldCount(); } AckTimeOutMessage *pp = (AckTimeOutMessage *)object; (void)pp; switch (field) { default: return 0; } } const char *AckTimeOutMessageDescriptor::getFieldDynamicTypeString(void *object, int field, int i) const { omnetpp::cClassDescriptor *basedesc = getBaseClassDescriptor(); if (basedesc) { if (field < basedesc->getFieldCount()) return basedesc->getFieldDynamicTypeString(object,field,i); field -= basedesc->getFieldCount(); } AckTimeOutMessage *pp = (AckTimeOutMessage *)object; (void)pp; switch (field) { default: return nullptr; } } std::string AckTimeOutMessageDescriptor::getFieldValueAsString(void *object, int field, int i) const { omnetpp::cClassDescriptor *basedesc = getBaseClassDescriptor(); if (basedesc) { if (field < basedesc->getFieldCount()) return basedesc->getFieldValueAsString(object,field,i); field -= basedesc->getFieldCount(); } AckTimeOutMessage *pp = (AckTimeOutMessage *)object; (void)pp; switch (field) { case 0: return ulong2string(pp->getWsmId()); case 1: return long2string(pp->getAc()); default: return ""; } } bool AckTimeOutMessageDescriptor::setFieldValueAsString(void *object, int field, int i, const char *value) const { omnetpp::cClassDescriptor *basedesc = getBaseClassDescriptor(); if (basedesc) { if (field < basedesc->getFieldCount()) return basedesc->setFieldValueAsString(object,field,i,value); field -= basedesc->getFieldCount(); } AckTimeOutMessage *pp = (AckTimeOutMessage *)object; (void)pp; switch (field) { case 0: pp->setWsmId(string2ulong(value)); return true; case 1: pp->setAc(string2long(value)); return true; default: return false; } } const char *AckTimeOutMessageDescriptor::getFieldStructName(int field) const { omnetpp::cClassDescriptor *basedesc = getBaseClassDescriptor(); if (basedesc) { if (field < basedesc->getFieldCount()) return basedesc->getFieldStructName(field); field -= basedesc->getFieldCount(); } switch (field) { default: return nullptr; }; } void *AckTimeOutMessageDescriptor::getFieldStructValuePointer(void *object, int field, int i) const { omnetpp::cClassDescriptor *basedesc = getBaseClassDescriptor(); if (basedesc) { if (field < basedesc->getFieldCount()) return basedesc->getFieldStructValuePointer(object, field, i); field -= basedesc->getFieldCount(); } AckTimeOutMessage *pp = (AckTimeOutMessage *)object; (void)pp; switch (field) { default: return nullptr; } } } // namespace Veins
b8355fcf5426836f3a425fe822f1f11217cdda64
bc2d5cb5d7294e8c8191b730e27d0660f3b13efe
/WiggleStar.h
5c83abbb2a8813a6bccc2777af6ea6af95d075d3
[]
no_license
UNHRobotics/wiggleStarTutorial
95c85d6aea2f17fa085e959e642c7c8518f81b38
4da1b336e4a36665d5e3633c8c990723b1562c5c
refs/heads/master
2021-01-24T06:37:28.829960
2015-01-28T02:58:16
2015-01-28T02:58:16
null
0
0
null
null
null
null
UTF-8
C++
false
false
636
h
#ifndef OMPL_CONTROL_PLANNERS_WIGGLESTAR_WIGGLESTAR_ #define OMPL_CONTROL_PLANNERS_WIGGLESTAR_WIGGLESTAR_ #include "ompl/control/planners/PlannerIncludes.h" namespace ompl { namespace control { class WiggleStar : public base::Planner { public: // just using the parent constructor WiggleStar( const base::SpaceInformationPtr &si ) : base::Planner( si, "WiggleStar" ) {}; // Pretty much the only function we have to implement virtual base::PlannerStatus solve( const base::PlannerTerminationCondition &ptc ); }; } } #endif
9cb715e11012d4e5a267ff75bc448d4fd0a1e7a6
7db45c07515791f0e7a0631d1d57df8bb8281707
/i4/memory/array.hh
ce499a67b89033d380a8269ba0ae2e20b5ee3214
[]
no_license
TheStormkeeper/golgotha
ec53befc4c793f3a0d293febff222dfccefcc68f
b61bf92ec6af3c4df8b399bce35c829b8e027a95
refs/heads/master
2021-01-12T15:26:18.713429
2015-11-06T18:00:53
2015-11-06T18:00:53
null
0
0
null
null
null
null
UTF-8
C++
false
false
4,594
hh
/********************************************************************** <BR> This file is part of Crack dot Com's free source code release of Golgotha. <a href="http://www.crack.com/golgotha_release"> <BR> for information about compiling & licensing issues visit this URL</a> <PRE> If that doesn't help, contact Jonathan Clark at [email protected] (Subject should have "GOLG" in it) ***********************************************************************/ #ifndef I4_ARRAY_HH #define I4_ARRAY_HH // this template class manages an array of object // it automaically expands when add() is called and not enough elements are // available. It also has an array reference operator allowing for transparent // range checking. #include "error/error.hh" #include "memory/malloc.hh" #include "search.hh" #include <stdlib.h> template <class T> class i4_array { protected: T *entry; int used,entries,grow; public: int size() const { return used; } int max_size() const { return entries; } T& operator[](int i) const { I4_ASSERT(i>=0 && i<used, "i4_array::bad array reference"); return entry[i]; } T& operator()(int i) const { I4_ASSERT(i>=0 && i<used, "i4_array::bad array reference"); return entry[i]; } void resize(int _entries, int _grow = -1) { if (_grow>=0) grow = _grow; entries = _entries; T* new_entry = (T*)i4_realloc(entry, sizeof(T)*entries, "grow array"); I4_ASSERT(new_entry, "i4_array::out of memory"); entry = new_entry; } i4_array(int entries, int grow = 0) : entries(entries), grow(grow), entry(0), used(0) { if (entries>0) { entry = (T*)i4_malloc(sizeof(T)*entries,"grow array"); I4_ASSERT(entry, "i4_array::can't allocate entries"); } else entry = 0; } void uninit() // frees memory (use clear just to reset) { if (entry) i4_free(entry); entry=0; used=0; entries=0; } ~i4_array() { uninit(); } void grow_bigger() { if (grow) { entries += grow; T* new_entry = (T*)i4_realloc(entry, sizeof(T)*entries, "grow array"); I4_ASSERT(new_entry, "i4_array::out of memory"); entry = new_entry; } else I4_ASSERT(0, "i4_array::out of entries"); } T *add_at(int ref) { if (used==entries) grow_bigger(); for (int i=used; i>ref; i--) entry[i] = entry[i-1]; used++; return entry+ref; } T *add() { if (used==entries) grow_bigger(); T *ret=entry+used; used++; return ret; } T* add_many(int num) { while (used+num>entries) grow_bigger(); T *ret=entry+used; used+=num; return ret; } int add_at(T item, int ref) { T *q=add_at(ref); *q=item; return ref; } int add(T item) { T *q=add(); *q=item; return used-1; } int add_array(const i4_array& tab,int ref = -1) { if (ref<0) ref += used+1; I4_ASSERT(ref>=0 && ref<=used,"i4_array::bad item referenced"); if (used+tab.size() >= entries) { if (grow) { if (used+tab.size() >= entries+grow) entries = used+tab.size(); else entries += grow; T* new_entry = (T*)realloc(entry, sizeof(T)*entries); I4_ASSERT(new_entry, "i4_array::out of memory"); entry = new_entry; } else I4_ASSERT(0, "i4_array::out of entries"); } int i; for (i=used-1; i>ref; i--) entry[i+tab.size()] = entry[i]; for (i=0; i<tab.size(); i++) entry[ref+i] = tab.entry[i]; used+=tab.size(); return ref; } void remove(int ref) { I4_ASSERT(ref>=0 && ref<used, "i4_array::bad item deletion"); used--; for (int i=ref; i<used; i++) entry[i] = entry[i+1]; } void clear() { used = 0; } void sort(int (*compar)(const T *, const T *)) { typedef int (*compare_type)(const void *x, const void *y); qsort(entry, used, sizeof(T), (compare_type)compar); } int binary_search(const T *find, int (*compar)(const T* a, const T* b)) { if (size()==0) return -1; w32 res; if (i4_base_bsearch(find, res, entry, sizeof(T), (w32)size(), (i4_bsearch_compare_function_type)compar)) return res; else return -1; } }; #endif
46979625da272bc542568dbd7f033933dd9ed9df
d5e0522513ab6d8adcd25df2b8712fe2da0f6f33
/Exercices/Chapter 4/SimpleFunctionCall/SimpleFunctionCall.ino
8a643535602eeefe9bf3425424f8b1038404f6e3
[]
no_license
HiImYann/Arduino-TM
0298f82eb2b48771b707a8f35b0276d9cdffd05e
a54230c8257958e223402a99ccb29f379405248b
refs/heads/master
2022-12-09T22:20:40.973055
2020-09-06T18:50:29
2020-09-06T18:50:29
272,804,592
0
0
null
null
null
null
UTF-8
C++
false
false
249
ino
void setup() { Serial.begin(9600); Serial.println("Your mom gay"); delay(1000); noU(); delay(1000); Serial.println(":("); } void loop() { // put your main code here, to run repeatedly: } void noU() { Serial.println("no u"); }
2c4cde55077c27f336ea8f03c742752c055217f0
efa7feea268853dd2c80961f5153ad3bcf6325e6
/adapter/stack_with_list/stack.cpp
67abea89ab3b8f91e1959375122b04c6d274e16f
[]
no_license
karennik98/design_patterns
4c4dd058b79b894981e7680b7bc999b8296bc2d5
7fbb136a3752e28ca722815878d94986e7b3b1ad
refs/heads/master
2020-09-01T02:59:11.455674
2019-11-03T20:40:48
2019-11-03T20:40:48
218,864,064
0
0
null
null
null
null
UTF-8
C++
false
false
370
cpp
#include "stack.h" int Stack::top() { return m_list.front(); } void Stack::push(int val) { m_list.push_front(val); } int Stack::pop() { int el = m_list.front(); m_list.pop_front(); return el; } bool Stack::empty() { return m_list.empty(); } void Stack::clear() { m_list.clear(); } size_t Stack::size() { return m_list.size(); }
ed3aa27d2627607b51691f4745b1a4857bc4f570
d9827544674aa247059275d837937003c1d8535a
/model/BotCheckResponse.cpp
5729f0643bb7bc5a99f59f9e2b00356be1702fb5
[ "Apache-2.0" ]
permissive
Cloudmersive/Cloudmersive.APIClient.CPP.Validate
8b657be8f81f242010e37b24da303a5c5a67318f
fef8188b91223a2b28697a7b295254ceaa1f800b
refs/heads/master
2023-06-08T22:19:49.437496
2023-06-03T22:41:39
2023-06-03T22:41:39
231,828,255
1
0
null
null
null
null
UTF-8
C++
false
false
2,723
cpp
/** * validateapi * The validation APIs help you validate data. Check if an E-mail address is real. Check if a domain is real. Check up on an IP address, and even where it is located. All this and much more is available in the validation API. * * OpenAPI spec version: v1 * * * NOTE: This class is auto generated by the swagger code generator 2.4.11. * https://github.com/swagger-api/swagger-codegen.git * Do not edit the class manually. */ #include "BotCheckResponse.h" namespace io { namespace swagger { namespace client { namespace model { BotCheckResponse::BotCheckResponse() { m_IsBot = false; m_IsBotIsSet = false; } BotCheckResponse::~BotCheckResponse() { } void BotCheckResponse::validate() { // TODO: implement validation } web::json::value BotCheckResponse::toJson() const { web::json::value val = web::json::value::object(); if(m_IsBotIsSet) { val[utility::conversions::to_string_t("IsBot")] = ModelBase::toJson(m_IsBot); } return val; } void BotCheckResponse::fromJson(web::json::value& val) { if(val.has_field(utility::conversions::to_string_t("IsBot"))) { web::json::value& fieldValue = val[utility::conversions::to_string_t("IsBot")]; if(!fieldValue.is_null()) { setIsBot(ModelBase::boolFromJson(fieldValue)); } } } void BotCheckResponse::toMultipart(std::shared_ptr<MultipartFormData> multipart, const utility::string_t& prefix) const { utility::string_t namePrefix = prefix; if(namePrefix.size() > 0 && namePrefix.substr(namePrefix.size() - 1) != utility::conversions::to_string_t(".")) { namePrefix += utility::conversions::to_string_t("."); } if(m_IsBotIsSet) { multipart->add(ModelBase::toHttpContent(namePrefix + utility::conversions::to_string_t("IsBot"), m_IsBot)); } } void BotCheckResponse::fromMultiPart(std::shared_ptr<MultipartFormData> multipart, const utility::string_t& prefix) { utility::string_t namePrefix = prefix; if(namePrefix.size() > 0 && namePrefix.substr(namePrefix.size() - 1) != utility::conversions::to_string_t(".")) { namePrefix += utility::conversions::to_string_t("."); } if(multipart->hasContent(utility::conversions::to_string_t("IsBot"))) { setIsBot(ModelBase::boolFromHttpContent(multipart->getContent(utility::conversions::to_string_t("IsBot")))); } } bool BotCheckResponse::isIsBot() const { return m_IsBot; } void BotCheckResponse::setIsBot(bool value) { m_IsBot = value; m_IsBotIsSet = true; } bool BotCheckResponse::isBotIsSet() const { return m_IsBotIsSet; } void BotCheckResponse::unsetIsBot() { m_IsBotIsSet = false; } } } } }
d4219578c9496ceb4432d58a87ddffafa653a94f
c8093085b2ac8f9320dbc86f073a18664a610bdf
/sketchbooks/Tests/test1_micro/test1_micro.ino
caa1d261b5551a3baf98323bbd672622f1afd578
[]
no_license
Daedalus-TUM/PP_mwmbt
8bbbb2a25e250c83499ae2b1b115bb63b102ed57
9b7a6684d00f01d8b9b324c559d010ddebdda27b
refs/heads/master
2020-06-04T05:53:04.018955
2014-07-14T19:08:36
2014-07-14T19:08:36
null
0
0
null
null
null
null
UTF-8
C++
false
false
13,008
ino
// I2C device class (I2Cdev) demonstration Arduino sketch for MPU9150 // 1/4/2013 original by Jeff Rowberg <[email protected]> at https://github.com/jrowberg/i2cdevlib // modified by Aaron Weiss <[email protected]> // // Changelog: // 2011-10-07 - initial release // 2013-1-4 - added raw magnetometer output /* ============================================ I2Cdev device library code is placed under the MIT license Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. =============================================== */ // Arduino Wire library is required if I2Cdev I2CDEV_ARDUINO_WIRE implementation // is used in I2Cdev.h #include "Wire.h" // I2Cdev and MPU6050 must be installed as libraries, or else the .cpp/.h files // for both classes must be in the include path of your project #include "I2Cdev.h" #include "MPU6050.h" // class default I2C address is 0x68 // specific I2C addresses may be passed as a parameter here // AD0 low = 0x68 (default for InvenSense evaluation board) // AD0 high = 0x69 MPU6050 accelgyro(0x69); int16_t ax, ay, az; int16_t gx, gy, gz; int16_t mx, my, mz; #define LED_PIN 13 bool blinkState = false; //Base station v0.9.1 20130704 1300*************************************************** #define VERSION "v0.9" #define DEVICEID 0 #define VERSIONMAJOR 0 #define VERSIONMINOR 9 #include <SPI.h> #include <Mirf.h> #include <nRF24L01.h>0 #include <MirfHardwareSpiDriver.h> // NRF24 settings #define RFADDR "alex1" #define RFBASE "alex0" #define RFCHANNEL 3 //constants const byte MYID = DEVICEID; const byte Version[2] = {VERSIONMAJOR,VERSIONMINOR}; const byte MAXSTATIONS = 15; // Global Variables int PID = 5; class Packet { //byte time; unsigned long time; byte sent; byte data[12]; public: Packet (byte dest, byte type, byte *payload) { sent = 0; //time = millis() % 128; time = millis(); data[0] = dest; data[1] = MYID; data[2] = type; data[3] = (byte)((PID & 0xFF00) >> 8); data[4] = (byte)(PID & 0x00FF); PID++; for (int i = 0; i<7;i++){ data[i+5] = payload[i]; } } ~Packet () { } byte send (void){ if(millis() - time < data[2]) { if (millis()-time >= sent*5){ data[11] = sent; Mirf.setTADDR((byte *)RFBASE); Mirf.send(data); sent++; } if(data[2] == 192) return 1; return 0; } else { return 1; } } unsigned int getPID() { return (unsigned int)((unsigned int)data[3]<< 8 + (unsigned int)data[4]); } }; Packet *Packages[5]; byte busy=0; int devicePid [MAXSTATIONS][5] = {{0}}; int deviceLastPid [MAXSTATIONS] = {0}; void sendPackages(void) { if ((busy&1)) { if (Packages[0]->send()) { busy &= 0b11111110; delete Packages[0]; } } else if ((busy&2)) { if (Packages[1]->send()) { busy &= 0b11111101; delete Packages[1]; } } else if ((busy&4)) { if (Packages[2]->send()) { busy &= 0b11111011; delete Packages[2]; } } else if ((busy&8)) { if (Packages[3]->send()) { busy &= 0b11110111; delete Packages[3]; } } else if ((busy&16)) { if (Packages[4]->send()) { busy &= 0b11101111; delete Packages[4]; } } } boolean newPacket (byte dest, byte type, byte *payload) { if (busy<31){ if (!(busy&1)) { Packages[0] = new Packet (dest, type,payload); busy |= 1; } else if (!(busy&2)) { Packages[1] = new Packet (dest, type,payload); busy |= 2; } else if (!(busy&4)) { Packages[2] = new Packet (dest, type,payload); busy |= 4; } else if (!(busy&8)) { Packages[3] = new Packet (dest, type,payload); busy |= 8; } else if (!(busy&16)) { Packages[4] = new Packet (dest, type,payload); busy |= 16; } return true; } else return false; } void deletePID (int pid) { Serial.println(busy); if ((busy&1)) { if (Packages[0]->getPID() == pid) { busy &= 0b11111110; delete Packages[0]; } } else if ((busy&2)) { if (Packages[1]->getPID() == pid) { busy &= 0b11111101; delete Packages[1]; } } else if ((busy&4)) { if (Packages[2]->getPID() == pid) { busy &= 0b11111011; delete Packages[2]; } } else if ((busy&8)) { if (Packages[3]->getPID() == pid) { busy &= 0b11110111; delete Packages[3]; } } else if ((busy&16)) { if (Packages[4]->getPID() == pid) { busy &= 0b11101111; delete Packages[4]; } } Serial.println(busy); } byte parseMsg() { byte data[12]; Mirf.getData(data); unsigned int pid; pid = ((((unsigned int)data[3])<< 8) + (unsigned int)data[4]); byte from = data[1]; if(data[0] == MYID ) { if (isNewPid(from,pid)) { switch(data[2]) { case 192: //ACK unsigned int ackpid; ackpid = ((unsigned int)data[5]<< 8 + (unsigned int)data[6]); deletePID(ackpid); Serial.print("t"); break; case 193: {//REG byte pid[2]; pid[0] = data[3]; pid[1] = data[4]; byte from = data[1]; newPacket(from, (byte)192, pid); } break; case 64: {//deltat unsigned long deltat; deltat = (unsigned long)data[8]; deltat += (unsigned long)data[7]<<8; deltat += (unsigned long)data[6]<<16; deltat += (unsigned long)data[5]<<24; byte from = data[1]; sync(from,data[9]); Serial.print("t"); if(from<10) Serial.print('0'); Serial.print(from); if(deltat<10) Serial.print('0'); if(deltat<100) Serial.print('0'); if(deltat<1000) Serial.print('0'); if(deltat<10000) Serial.print('0'); if(deltat<100000) Serial.print('0'); if(deltat<1000000) Serial.print('0'); if(deltat<10000000) Serial.print('0'); if(deltat<100000000) Serial.print('0'); if(deltat<1000000000) Serial.print('0'); Serial.print(deltat); Serial.print("\n"); byte pid[2]; pid[0] = data[3]; pid[1] = data[4]; newPacket(from, (byte)192, pid); } break; case 101: { int16_t x= (data[5]<<8) + data[6]; int16_t y= (data[7]<<8) + data[8]; int16_t z= (data[9]<<8) + data[10]; Serial.print("aX: ");Serial.print(x); Serial.print("aY: ");Serial.print(y); Serial.print("aZ: ");Serial.print(z); } break; case 102: { int16_t x= (data[5]<<8) + data[6]; int16_t y= (data[7]<<8) + data[8]; int16_t z= (data[9]<<8) + data[10]; Serial.print("gX: ");Serial.print(x); Serial.print("gY: ");Serial.print(y); Serial.print("gZ: ");Serial.print(z); } break; case 103: { int16_t x= (data[5]<<8) + data[6]; int16_t y= (data[7]<<8) + data[8]; int16_t z= (data[9]<<8) + data[10]; Serial.print("mX: ");Serial.print(x); Serial.print("mY: ");Serial.print(y); Serial.print("mZ: ");Serial.print(z); } break; default: return 0; //kenne Datentyp nicht } } else {// Paket wurde bereits empfangen, wird nicht verarbeitet sondern nur bestätigt byte pid[2]; pid[0] = data[3]; pid[1] = data[4]; newPacket(from, (byte)192, pid); } } else { return 0; //Nachricht nicht für mich } return 1; } // Prüft ob PID neu oder bereits empfangen wurde. // Rückgabewert 0, falls bereits empfangen // 1, falls neue PID byte isNewPid(byte from, unsigned int pid) { unsigned int minpid = 65535; byte minpidi =0; for(byte i = 0 ; i<5 ; i++) { if(devicePid[from][i] == pid) { return 0; //PID bereits empfangen } if(devicePid[from][i] < minpid) { minpid = devicePid[from][i]; minpidi = i; } } if (minpid < pid) { devicePid[from][minpidi] = pid; deviceLastPid[from] = pid; return 1; } else if (pid <15) { for(byte i = 0 ; i<5 ; i++) { if(devicePid[from][i] > 15) { devicePid[from][i] = 0; minpidi = i; } } devicePid[from][minpidi] = pid; deviceLastPid[from] = pid; return 1; } else if (deviceLastPid[from] < minpid && deviceLastPid[from] != pid){ devicePid[from][minpidi] = pid; deviceLastPid[from] = pid; return 1; } deviceLastPid[from] = pid; return 2; } byte devicesync[MAXSTATIONS] = {0}; // sync void sync(byte from, byte syn) { if (devicesync[from]) { Serial.println("sync"); for (int i=0;i<MAXSTATIONS;i++) { devicesync[i] = 0; } } devicesync[from] = 1; } //************************************************************************** void setup() { // join I2C bus (I2Cdev library doesn't do this automatically) Wire.begin(); // initialize serial communication // (38400 chosen because it works as well at 8MHz as it does at 16MHz, but // it's really up to you depending on your project) Serial.begin(38400); delay(10000); // initialize device Serial.println("Initializing I2C devices..."); accelgyro.initialize(); // verify connection Serial.println("Testing device connections..."); Serial.println(accelgyro.testConnection() ? "MPU6050 connection successful" : "MPU6050 connection failed"); // configure Arduino LED for pinMode(LED_PIN, OUTPUT); // senden******************** Serial.begin(115200); Serial.print("IPS "); Serial.println(VERSION); //init NRF24 Mirf.spi = &MirfHardwareSpi; Mirf.cePin = 9; Mirf.csnPin = 10; Mirf.init(); Mirf.setRADDR((byte *)RFADDR); Mirf.payload = 12; Mirf.channel = RFCHANNEL; Mirf.config(); //PID = readPID(); //newPacket((byte)1, (byte)193, Version); } void loop() { // read raw accel/gyro measurements from device accelgyro.getMotion9(&ax, &ay, &az, &gx, &gy, &gz, &mx, &my, &mz); // these methods (and a few others) are also available //accelgyro.getAcceleration(&ax, &ay, &az); //accelgyro.getRotation(&gx, &gy, &gz); // display tab-separated accel/gyro x/y/z values Serial.print("a/g/m:\t"); Serial.print(ax); Serial.print("\t"); Serial.print(ay); Serial.print("\t"); Serial.print(az); Serial.print("\t"); Serial.print(gx); Serial.print("\t"); Serial.print(gy); Serial.print("\t"); Serial.print(gz); Serial.print("\t"); Serial.print(mx); Serial.print("\t"); Serial.print(my); Serial.print("\t"); Serial.println(mz); // This example code is in the public domain. // <http://www.zambetti.com> // blink LED to indicate activity blinkState = !blinkState; digitalWrite(LED_PIN, blinkState); //senden*************************** byte a[6], g[6], m[6]; a[0]= (ax & 0xFF00) >> 8;a[1]= (ax & 0x00FF); a[2]= (ay & 0xFF00) >> 8;a[3]= (ay & 0x00FF); a[4]= (az & 0xFF00) >> 8;a[5]= (az & 0x00FF); g[0]= (gx & 0xFF00) >> 8;g[1]= (gx & 0x00FF); g[2]= (gy & 0xFF00) >> 8;g[3]= (gy & 0x00FF); g[4]= (gz & 0xFF00) >> 8;g[5]= (gz & 0x00FF); m[0]= (mx & 0xFF00) >> 8;m[1]= (mx & 0x00FF); m[2]= (my & 0xFF00) >> 8;m[3]= (my & 0x00FF); m[4]= (mz & 0xFF00) >> 8;m[5]= (mz & 0x00FF); sendPackages(); if (newPacket (55, 101, a) ) { Serial.println("a1"); } else { Serial.println("a0"); } sendPackages(); if (newPacket (55, 102, g)) Serial.println("g1"); sendPackages(); if (newPacket (55, 103, m)) Serial.println("m1"); sendPackages(); while(Mirf.isSending()) {Serial.println("s");}; if(Mirf.dataReady()){ parseMsg(); } }
0663bff8d3eed9ff35fe2d2d24ee1bfed015b918
d537cd2fa2e5f77a645f881e01108ea1c9d89e19
/AirTurretButton.cpp
39897749cd604a11531aba2ddf088f67cf03cdf5
[]
no_license
MarcBerneman/Tower-Defense
10b73a93d22464ee451e97264933078e97f2bdd1
a8725117a533ecf6ea3c9496e1c4c73323120707
refs/heads/master
2020-03-17T23:41:17.121568
2018-06-01T01:19:58
2018-06-01T01:19:58
134,055,606
0
0
null
null
null
null
UTF-8
C++
false
false
770
cpp
#include "Game.h" #include "AirTurret.h" #include "AirTurretButton.h" #include "AirTurretConstants.h" extern Game * game; AirTurretButton::AirTurretButton(QGraphicsItem *parent) : TowerButton(button_image,button_position,turret_image,parent) { setBuild_cost(cost); QString cost_str; cost_str.setNum(cost); QString txt("Air Turret\nCost: " + cost_str); QGraphicsSimpleTextItem * textbox = new QGraphicsSimpleTextItem(this); textbox->setText(txt); textbox->setFont(QFont("Calibri",14,QFont::Bold)); textbox->moveBy(0,15); } void AirTurretButton::build_tower(QPointF pos) { game->towers.append(new AirTurret(pos)); //add to the total list of towers } int AirTurretButton::getOctagonScaleFactor() { return octagon_scale_factor; }
6dd6a1821d9752fcbdd364b8d6b2916b7572bceb
ac31737938328370057bf2b1a424b49abd1b7aa4
/code/HashTable_linear/hash.hpp
d8d70f60ecb1ef0f2ec624fd388d4b2d681c85f1
[]
no_license
omarchaarawi/Data_Structures_Final_Project
4fc79b5d54f9a092b1b5d8a519eadad249fc34e9
090d3e01fb4d9e4d341990881b6281ad893b904f
refs/heads/master
2022-11-06T13:01:17.996401
2020-06-24T19:50:15
2020-06-24T19:50:15
274,754,163
0
0
null
null
null
null
UTF-8
C++
false
false
695
hpp
#ifndef HASH_HPP #define HASH_HPP #include <string> using namespace std; struct node { int key; struct node* next; }; class HashTable { int tableSize; // No. of buckets (linked lists) // Pointer to an array containing buckets node* *table; int numOfcollision = 0; // node* createNode(int key, node* next); public: HashTable(int bsize); // Constructor ~HashTable(); // Destructor // inserts a key into hash table bool insert(int key); // hash function to map values to key unsigned int hashFunction(int key); void printTable(); int getNumOfCollision(); void resetCollision(); node* searchItem(int key); }; #endif
205036d4e7b5709eb1a712b426ac2eadaacc52ed
85b9ce4fb88972d9b86dce594ae4fb3acfcd0a4b
/build/Android/Preview/Global Pot/app/src/main/include/Fuse.KeyboardBootstrapper.h
11d4c4c8b2bdec740e78a3b4a18234da449d3a79
[]
no_license
bgirr/Global-Pot_App
16431a99e26f1c60dc16223fb388d9fd525cb5fa
c96c5a8fb95acde66fc286bcd9a5cdf160ba8b1b
refs/heads/master
2021-01-09T06:29:18.255583
2017-02-21T23:27:47
2017-02-21T23:27:47
80,985,681
0
0
null
2017-02-21T23:27:48
2017-02-05T10:29:14
C++
UTF-8
C++
false
false
1,385
h
// This file was generated based on C:\Users\EliteBook-User\AppData\Local\Fusetools\Packages\FuseCore\0.44.1\$.uno. // WARNING: Changes might be lost if you edit this file directly. #pragma once #include <Uno.Object.h> namespace g{namespace Fuse{struct KeyboardBootstrapper;}} namespace g{namespace Uno{namespace Platform{struct KeyEventArgs;}}} namespace g{namespace Uno{namespace Platform{struct TextInputEventArgs;}}} namespace g{ namespace Fuse{ // internal sealed class KeyboardBootstrapper :3354 // { uType* KeyboardBootstrapper_typeof(); void KeyboardBootstrapper__ctor__fn(KeyboardBootstrapper* __this); void KeyboardBootstrapper__New1_fn(KeyboardBootstrapper** __retval); void KeyboardBootstrapper__OnKeyPressed_fn(uObject* sender, ::g::Uno::Platform::KeyEventArgs* args); void KeyboardBootstrapper__OnKeyReleased_fn(uObject* sender, ::g::Uno::Platform::KeyEventArgs* args); void KeyboardBootstrapper__OnTextInput_fn(uObject* sender, ::g::Uno::Platform::TextInputEventArgs* args); struct KeyboardBootstrapper : uObject { void ctor_(); static KeyboardBootstrapper* New1(); static void OnKeyPressed(uObject* sender, ::g::Uno::Platform::KeyEventArgs* args); static void OnKeyReleased(uObject* sender, ::g::Uno::Platform::KeyEventArgs* args); static void OnTextInput(uObject* sender, ::g::Uno::Platform::TextInputEventArgs* args); }; // } }} // ::g::Fuse
bf7059c11c17172fbc563afebcd0f556d760714c
187f6bb6b568e8bb42bafab8f81133d4ad5f383b
/Siv3D/src/Siv3D/Script/Bind/ScriptLanguageCode.cpp
c25e77fe4b1a794ae3ca57d2f55439477c3ae3c3
[ "MIT" ]
permissive
Reputeless/OpenSiv3D
f2938ea8f5c8de2e6e3b200046943f3e5398a2a1
7d02aa0f4824d1ecbd50ea1c00737cc932332b0a
refs/heads/main
2023-07-29T06:57:44.541422
2023-07-13T03:41:37
2023-07-13T03:41:37
306,929,779
0
0
MIT
2021-09-02T10:37:00
2020-10-24T16:55:13
C++
UTF-8
C++
false
false
2,533
cpp
//----------------------------------------------- // // This file is part of the Siv3D Engine. // // Copyright (c) 2008-2023 Ryo Suzuki // Copyright (c) 2016-2023 OpenSiv3D Project // // Licensed under the MIT License. // //----------------------------------------------- # include <Siv3D/Script.hpp> # include <Siv3D/LanguageCode.hpp> namespace s3d { using namespace AngelScript; void RegisterLanguageCode(asIScriptEngine* engine) { [[maybe_unused]] int32 r = 0; constexpr char TypeName[] = "LanguageCode"; { r = engine->RegisterEnumValue(TypeName, "ArabicSA", static_cast<int32>(LanguageCode::ArabicSA)); assert(r >= 0); r = engine->RegisterEnumValue(TypeName, "ChineseCN", static_cast<int32>(LanguageCode::ChineseCN)); assert(r >= 0); r = engine->RegisterEnumValue(TypeName, "ChineseHK", static_cast<int32>(LanguageCode::ChineseHK)); assert(r >= 0); r = engine->RegisterEnumValue(TypeName, "ChineseTW", static_cast<int32>(LanguageCode::ChineseTW)); assert(r >= 0); r = engine->RegisterEnumValue(TypeName, "EnglishAU", static_cast<int32>(LanguageCode::EnglishAU)); assert(r >= 0); r = engine->RegisterEnumValue(TypeName, "EnglishGB", static_cast<int32>(LanguageCode::EnglishGB)); assert(r >= 0); r = engine->RegisterEnumValue(TypeName, "EnglishUS", static_cast<int32>(LanguageCode::EnglishUS)); assert(r >= 0); r = engine->RegisterEnumValue(TypeName, "FrenchFR", static_cast<int32>(LanguageCode::FrenchFR)); assert(r >= 0); r = engine->RegisterEnumValue(TypeName, "GermanDE", static_cast<int32>(LanguageCode::GermanDE)); assert(r >= 0); r = engine->RegisterEnumValue(TypeName, "HindiIN", static_cast<int32>(LanguageCode::HindiIN)); assert(r >= 0); r = engine->RegisterEnumValue(TypeName, "ItalianIT", static_cast<int32>(LanguageCode::ItalianIT)); assert(r >= 0); r = engine->RegisterEnumValue(TypeName, "Japanese", static_cast<int32>(LanguageCode::Japanese)); assert(r >= 0); r = engine->RegisterEnumValue(TypeName, "Korean", static_cast<int32>(LanguageCode::Korean)); assert(r >= 0); r = engine->RegisterEnumValue(TypeName, "PortugueseBR", static_cast<int32>(LanguageCode::PortugueseBR)); assert(r >= 0); r = engine->RegisterEnumValue(TypeName, "RussianRU", static_cast<int32>(LanguageCode::RussianRU)); assert(r >= 0); r = engine->RegisterEnumValue(TypeName, "SpanishES", static_cast<int32>(LanguageCode::SpanishES)); assert(r >= 0); r = engine->RegisterEnumValue(TypeName, "Unspecified", static_cast<int32>(LanguageCode::Unspecified)); assert(r >= 0); } } }
9aac40b0ff422efe42f23ba0f6360b37ba4860fb
888e45317f5a48aebeaf2f48634df2ba8702772d
/src/library/enable.cc
70b70179932ca0d9ddd8864dd633ed61a5fbd23b
[ "BSD-2-Clause" ]
permissive
gzorin/RSXGL
96d1d620038d589bbb00c2e20d4c53623be4c7e3
90ddda51fb1730e35fd86a998cee1b3de734e239
refs/heads/master
2021-06-04T10:12:42.897305
2019-10-30T11:46:16
2019-10-30T11:46:16
2,420,969
44
16
NOASSERTION
2019-10-30T11:46:18
2011-09-20T07:35:55
C
UTF-8
C++
false
false
3,532
cc
// RSXGL - Graphics library for the PS3 GPU. // // Copyright (c) 2011 Alexander Betts ([email protected]) // // enable.c - glEnable and glDisable functions. #include <GL3/gl3.h> #include "rsxgl_context.h" #include "gl_constants.h" #include "error.h" #if defined(GLAPI) #undef GLAPI #endif #define GLAPI extern "C" GLAPI void APIENTRY glEnable (GLenum cap) { struct rsxgl_context_t * ctx = current_ctx(); switch(cap) { case GL_SCISSOR_TEST: ctx -> state.enable.scissor = 1; ctx -> state.invalid.parts.scissor = 1; break; case GL_DEPTH_TEST: ctx -> state.enable.depth_test = 1; ctx -> state.invalid.parts.depth = 1; break; case GL_BLEND: ctx -> state.enable.blend = 1; ctx -> state.invalid.parts.blend = 1; break; case GL_CULL_FACE: ctx -> state.polygon.cullEnable = 1; ctx -> state.invalid.parts.polygon_cull = 1; break; case GL_STENCIL_TEST: ctx -> state.stencil.face[0].enable = 1; ctx -> state.stencil.face[1].enable = 1; ctx -> state.invalid.parts.stencil = 1; break; case GL_PRIMITIVE_RESTART: ctx -> state.enable.primitive_restart = 1; ctx -> state.invalid.parts.primitive_restart = 1; break; case GL_VERTEX_PROGRAM_POINT_SIZE: ctx -> state.enable.pointSize = 1; break; case GL_RASTERIZER_DISCARD: ctx -> state.enable.rasterizer_discard = 1; break; default: RSXGL_ERROR_(GL_INVALID_ENUM); }; RSXGL_NOERROR_(); } GLAPI void APIENTRY glDisable (GLenum cap) { struct rsxgl_context_t * ctx = current_ctx(); switch(cap) { case GL_SCISSOR_TEST: ctx -> state.enable.scissor = 0; ctx -> state.invalid.parts.scissor = 1; break; case GL_DEPTH_TEST: ctx -> state.enable.depth_test = 0; ctx -> state.invalid.parts.depth = 1; break; case GL_BLEND: ctx -> state.enable.blend = 0; ctx -> state.invalid.parts.blend = 1; break; case GL_CULL_FACE: ctx -> state.polygon.cullEnable = 0; ctx -> state.invalid.parts.polygon_cull = 1; break; case GL_STENCIL_TEST: ctx -> state.stencil.face[0].enable = 0; ctx -> state.stencil.face[1].enable = 0; ctx -> state.invalid.parts.stencil = 1; break; case GL_PRIMITIVE_RESTART: ctx -> state.enable.primitive_restart = 0; ctx -> state.invalid.parts.primitive_restart = 1; break; case GL_VERTEX_PROGRAM_POINT_SIZE: ctx -> state.enable.pointSize = 0; break; case GL_RASTERIZER_DISCARD: ctx -> state.enable.rasterizer_discard = 0; break; default: RSXGL_ERROR_(GL_INVALID_ENUM); }; RSXGL_NOERROR_(); } GLAPI GLboolean APIENTRY glIsEnabled (GLenum cap) { struct rsxgl_context_t * ctx = current_ctx(); switch(cap) { case GL_SCISSOR_TEST: RSXGL_NOERROR(ctx -> state.enable.scissor); break; case GL_DEPTH_TEST: RSXGL_NOERROR(ctx -> state.enable.depth_test); break; case GL_BLEND: RSXGL_NOERROR(ctx -> state.enable.blend); break; case GL_CULL_FACE: RSXGL_NOERROR(ctx -> state.polygon.cullEnable); break; case GL_STENCIL_TEST: RSXGL_NOERROR(ctx -> state.stencil.face[0].enable && ctx -> state.stencil.face[1].enable); break; case GL_PRIMITIVE_RESTART: RSXGL_NOERROR(ctx -> state.enable.primitive_restart); break; case GL_VERTEX_PROGRAM_POINT_SIZE: RSXGL_NOERROR(ctx -> state.enable.pointSize); break; case GL_RASTERIZER_DISCARD: RSXGL_NOERROR(ctx -> state.enable.rasterizer_discard); break; default: RSXGL_ERROR(GL_INVALID_ENUM,GL_FALSE); }; RSXGL_NOERROR(GL_FALSE); }
fee856a55934479f29cdb9a84c041816c9dafeb3
73f7543221a27bf0b701d6a726b952827357ea60
/system/ThreadQueue.h
762610d473d512cdf2fba91b2544e4b64db38810
[]
no_license
SamDivine/accirr
524f3698ebe140308630c2e64c121b138dcf8010
36603f4c9efca68192d5c31e4c94102e29ad233a
refs/heads/master
2020-06-04T03:27:37.646492
2015-03-03T05:25:31
2015-03-03T05:25:31
26,048,461
0
1
null
null
null
null
UTF-8
C++
false
false
3,306
h
#ifndef _THREAD_QUEUE_H #define _THREAD_QUEUE_H #include "common.h" #include "Worker.h" #include <limits> class ThreadQueue { private: Worker *head; Worker *tail; uint64_t len; public: ThreadQueue() : head (NULL) , tail (NULL) , len(0) {} void enqueue(Worker *t); Worker *dequeue(); Worker *dequeueLazy(); Worker *front() const; void prefetch() const; uint64_t length() const { return len; } bool empty() { return (head==NULL); } }; template< typename T > T _max(const T& a, const T& b) { return (a > b) ? a : b; } template< typename T > T _min(const T& a, const T& b) { return (a < b) ? a : b; } class PrefetchingThreadQueue { private: ThreadQueue *queues; uint64_t eq_index; uint64_t dq_index; uint64_t num_queues; uint64_t len; void check_invariants() { uint64_t max = std::numeric_limits<uint64_t>::min(); uint64_t min = std::numeric_limits<uint64_t>::max(); uint64_t sum = 0; for (uint64_t i = 0; i < num_queues; i++) { max = _max<uint64_t>(max, queues[i].length()); min = _min<uint64_t>(min, queues[i].length()); sum += queues[i].length(); } if (static_cast<int64_t>(max)-static_cast<int64_t>(min)<0) { exit(-1); } if (max-min>1) { std::cerr << "min = " << min << " max = " << max << std::endl; exit(-1); } if (sum!=len) { exit(-1); } } public: PrefetchingThreadQueue() : queues(NULL) , eq_index(0) , dq_index(0) , num_queues(0) , len(0) {} void init(uint64_t prefetchDistance) { #ifdef USING_MALLOC queues= (ThreadQueue*)malloc(sizeof(ThreadQueue)*prefetchDistance*2); #else queues = new ThreadQueue[prefetchDistance*2]; #endif num_queues = prefetchDistance*2; } uint64_t length() const { return len; } void enqueue(Worker *t) { queues[eq_index].enqueue(t); eq_index = ((eq_index+1)==num_queues) ? 0 : eq_index+1; len++; } Worker *dequeue() { Worker *result = queues[dq_index].dequeueLazy(); if (result) { uint64_t t = dq_index; dq_index = ((dq_index+1)==num_queues) ? 0 : dq_index+1; len--; #ifdef WORKER_PREFETCH __builtin_prefetch(result->next, 1, WORKER_PREFETCH_LOCALITY); #endif result->next = NULL; #ifdef STACK_PREFETCH uint64_t tstack = (t+(num_queues/2))%num_queues; Worker *tstack_worker = queues[tstack].front(); if (tstack_worker) { __builtin_prefetch(tstack_worker->stack, 1, STACK_PREFETCH_LOCALITY); //__builtin_prefetch(((char*)(tstack_worker->stack))+64, 1, STACK_PREFETCH_LOCALITY); //__builtin_prefetch(((char*)(tstack_worker->stack))+128, 1, STACK_PREFETCH_LOCALITY); } #endif return result; } else { return NULL; } } }; inline Worker *ThreadQueue::dequeue() { Worker *result = head; if (result != NULL) { head = result->next; result->next = NULL; len--; } else { tail = NULL; } return NULL; } inline Worker *ThreadQueue::dequeueLazy() { Worker *result = head; if (result != NULL) { head = result->next; len--; } else { tail = NULL; } return result; } inline void ThreadQueue::enqueue(Worker *t) { if (head == NULL) { head = t; } else { tail->next = t; } tail = t; t->next = NULL; len++; } inline Worker *ThreadQueue::front() const { return head; } #endif //_THREAD_QUEUE_H
70799c18ad050397985996f3c9fe3c974a9c048e
a15950e54e6775e6f7f7004bb90a5585405eade7
/chromeos/dbus/fake_auth_policy_client_unittest.cc
a3132ffa2ecee2382bdd699af0b3d6fe76f0d91b
[ "BSD-3-Clause" ]
permissive
whycoding126/chromium
19f6b44d0ec3e4f1b5ef61cc083cae587de3df73
9191e417b00328d59a7060fa6bbef061a3fe4ce4
refs/heads/master
2023-02-26T22:57:28.582142
2018-04-09T11:12:57
2018-04-09T11:12:57
128,760,157
1
0
null
2018-04-09T11:17:03
2018-04-09T11:17:03
null
UTF-8
C++
false
false
13,869
cc
// Copyright 2017 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #include "chromeos/dbus/fake_auth_policy_client.h" #include "base/bind.h" #include "base/message_loop/message_loop.h" #include "base/run_loop.h" #include "chromeos/dbus/dbus_thread_manager.h" #include "chromeos/dbus/fake_cryptohome_client.h" #include "chromeos/dbus/fake_session_manager_client.h" #include "chromeos/login/auth/authpolicy_login_helper.h" #include "components/signin/core/account_id/account_id.h" #include "testing/gtest/include/gtest/gtest.h" namespace em = enterprise_management; namespace chromeos { namespace { constexpr char kCorrectMachineName[] = "machine_name"; constexpr char kCorrectUserName[] = "[email protected]"; constexpr char kCorrectUserDomain[] = "domain.com"; constexpr char kAccountId[] = "user-account-id"; constexpr char kMachineDomain[] = "machine.domain"; } // namespace class FakeAuthPolicyClientTest : public ::testing::Test { public: FakeAuthPolicyClientTest() = default; protected: FakeAuthPolicyClient* authpolicy_client() { return auth_policy_client_ptr_; } FakeSessionManagerClient* session_manager_client() { return session_manager_client_ptr_; } void SetUp() override { ::testing::Test::SetUp(); auto session_manager_client = std::make_unique<FakeSessionManagerClient>(); session_manager_client_ptr_ = session_manager_client.get(); DBusThreadManager::GetSetterForTesting()->SetSessionManagerClient( std::move(session_manager_client)); DBusThreadManager::GetSetterForTesting()->SetCryptohomeClient( std::make_unique<FakeCryptohomeClient>()); auto auth_policy_client = std::make_unique<FakeAuthPolicyClient>(); auth_policy_client_ptr_ = auth_policy_client.get(); DBusThreadManager::GetSetterForTesting()->SetAuthPolicyClient( std::move(auth_policy_client)); authpolicy_client()->DisableOperationDelayForTesting(); } void JoinAdDomain(const std::string& machine_name, const std::string& username, AuthPolicyClient::JoinCallback callback) { authpolicy::JoinDomainRequest request; request.set_machine_name(machine_name); request.set_user_principal_name(username); authpolicy_client()->JoinAdDomain(request, /* password_fd */ -1, std::move(callback)); } void JoinAdDomainWithMachineDomain(const std::string& machine_name, const std::string& machine_domain, const std::string& username, AuthPolicyClient::JoinCallback callback) { authpolicy::JoinDomainRequest request; request.set_machine_name(machine_name); request.set_user_principal_name(username); request.set_machine_domain(machine_domain); authpolicy_client()->JoinAdDomain(request, /* password_fd */ -1, std::move(callback)); } void AuthenticateUser(const std::string& username, const std::string& account_id, AuthPolicyClient::AuthCallback callback) { authpolicy::AuthenticateUserRequest request; request.set_user_principal_name(username); request.set_account_id(account_id); authpolicy_client()->AuthenticateUser(request, /* password_fd */ -1, std::move(callback)); } void LockDeviceActiveDirectory() { EXPECT_TRUE(AuthPolicyLoginHelper::LockDeviceActiveDirectoryForTesting( std::string())); } private: FakeAuthPolicyClient* auth_policy_client_ptr_; // not owned. FakeSessionManagerClient* session_manager_client_ptr_; // not owned. base::MessageLoop loop_; DISALLOW_COPY_AND_ASSIGN(FakeAuthPolicyClientTest); }; // Tests parsing machine name. TEST_F(FakeAuthPolicyClientTest, JoinAdDomain_ParseMachineName) { authpolicy_client()->set_started(true); JoinAdDomain("correct_length1", kCorrectUserName, base::BindOnce( [](authpolicy::ErrorType error, const std::string& domain) { EXPECT_EQ(authpolicy::ERROR_NONE, error); EXPECT_EQ(kCorrectUserDomain, domain); })); JoinAdDomain("", kCorrectUserName, base::BindOnce( [](authpolicy::ErrorType error, const std::string& domain) { EXPECT_EQ(authpolicy::ERROR_INVALID_MACHINE_NAME, error); EXPECT_TRUE(domain.empty()); })); JoinAdDomain("too_long_machine_name", kCorrectUserName, base::BindOnce( [](authpolicy::ErrorType error, const std::string& domain) { EXPECT_EQ(authpolicy::ERROR_MACHINE_NAME_TOO_LONG, error); EXPECT_TRUE(domain.empty()); })); JoinAdDomain("invalid:name", kCorrectUserName, base::BindOnce( [](authpolicy::ErrorType error, const std::string& domain) { EXPECT_EQ(authpolicy::ERROR_INVALID_MACHINE_NAME, error); EXPECT_TRUE(domain.empty()); })); base::RunLoop loop; JoinAdDomain(">nvalidname", kCorrectUserName, base::BindOnce( [](base::OnceClosure closure, authpolicy::ErrorType error, const std::string& domain) { EXPECT_EQ(authpolicy::ERROR_INVALID_MACHINE_NAME, error); EXPECT_TRUE(domain.empty()); std::move(closure).Run(); }, loop.QuitClosure())); loop.Run(); } // Tests join to a different machine domain. TEST_F(FakeAuthPolicyClientTest, JoinAdDomain_MachineDomain) { authpolicy_client()->set_started(true); JoinAdDomainWithMachineDomain(kCorrectMachineName, kMachineDomain, kCorrectUserName, base::BindOnce([](authpolicy::ErrorType error, const std::string& domain) { EXPECT_EQ(authpolicy::ERROR_NONE, error); EXPECT_EQ(kMachineDomain, domain); })); base::RunLoop loop; JoinAdDomainWithMachineDomain( kCorrectMachineName, "", kCorrectUserName, base::BindOnce( [](base::OnceClosure closure, authpolicy::ErrorType error, const std::string& domain) { EXPECT_EQ(authpolicy::ERROR_NONE, error); EXPECT_EQ(kCorrectUserDomain, domain); std::move(closure).Run(); }, loop.QuitClosure())); loop.Run(); } // Tests parsing user name. TEST_F(FakeAuthPolicyClientTest, JoinAdDomain_ParseUPN) { authpolicy_client()->set_started(true); JoinAdDomain(kCorrectMachineName, kCorrectUserName, base::BindOnce( [](authpolicy::ErrorType error, const std::string& domain) { EXPECT_EQ(authpolicy::ERROR_NONE, error); EXPECT_EQ(kCorrectUserDomain, domain); })); JoinAdDomain(kCorrectMachineName, "user", base::BindOnce( [](authpolicy::ErrorType error, const std::string& domain) { EXPECT_EQ(authpolicy::ERROR_PARSE_UPN_FAILED, error); EXPECT_TRUE(domain.empty()); })); JoinAdDomain(kCorrectMachineName, "", base::BindOnce( [](authpolicy::ErrorType error, const std::string& domain) { EXPECT_EQ(authpolicy::ERROR_PARSE_UPN_FAILED, error); EXPECT_TRUE(domain.empty()); })); JoinAdDomain(kCorrectMachineName, "user@", base::BindOnce( [](authpolicy::ErrorType error, const std::string& domain) { EXPECT_EQ(authpolicy::ERROR_PARSE_UPN_FAILED, error); EXPECT_TRUE(domain.empty()); })); JoinAdDomain(kCorrectMachineName, "@realm", base::BindOnce( [](authpolicy::ErrorType error, const std::string& domain) { EXPECT_EQ(authpolicy::ERROR_PARSE_UPN_FAILED, error); EXPECT_TRUE(domain.empty()); })); base::RunLoop loop; JoinAdDomain(kCorrectMachineName, "user@realm@com", base::BindOnce( [](base::OnceClosure closure, authpolicy::ErrorType error, const std::string& domain) { EXPECT_EQ(authpolicy::ERROR_PARSE_UPN_FAILED, error); EXPECT_TRUE(domain.empty()); std::move(closure).Run(); }, loop.QuitClosure())); loop.Run(); } // Tests that fake server does not support legacy encryption types. TEST_F(FakeAuthPolicyClientTest, JoinAdDomain_NotSupportedEncType) { authpolicy_client()->set_started(true); base::RunLoop loop; authpolicy::JoinDomainRequest request; request.set_machine_name(kCorrectMachineName); request.set_user_principal_name(kCorrectUserName); request.set_kerberos_encryption_types( authpolicy::KerberosEncryptionTypes::ENC_TYPES_LEGACY); authpolicy_client()->JoinAdDomain( request, /* password_fd */ -1, base::BindOnce( [](base::OnceClosure closure, authpolicy::ErrorType error, const std::string& domain) { EXPECT_EQ(authpolicy::ERROR_KDC_DOES_NOT_SUPPORT_ENCRYPTION_TYPE, error); EXPECT_TRUE(domain.empty()); std::move(closure).Run(); }, loop.QuitClosure())); loop.Run(); } // Test AuthenticateUser. TEST_F(FakeAuthPolicyClientTest, AuthenticateUser_ByAccountId) { authpolicy_client()->set_started(true); LockDeviceActiveDirectory(); // Check that account_id do not change. AuthenticateUser( kCorrectUserName, kAccountId, base::BindOnce( [](authpolicy::ErrorType error, const authpolicy::ActiveDirectoryAccountInfo& account_info) { EXPECT_EQ(authpolicy::ERROR_NONE, error); EXPECT_EQ(kAccountId, account_info.account_id()); })); } // Tests calls to not started authpolicyd fails. TEST_F(FakeAuthPolicyClientTest, NotStartedAuthPolicyService) { JoinAdDomain(kCorrectMachineName, kCorrectUserName, base::BindOnce( [](authpolicy::ErrorType error, const std::string& domain) { EXPECT_EQ(authpolicy::ERROR_DBUS_FAILURE, error); EXPECT_TRUE(domain.empty()); })); LockDeviceActiveDirectory(); AuthenticateUser( kCorrectUserName, std::string() /* account_id */, base::BindOnce([](authpolicy::ErrorType error, const authpolicy::ActiveDirectoryAccountInfo&) { EXPECT_EQ(authpolicy::ERROR_DBUS_FAILURE, error); })); authpolicy_client()->RefreshDevicePolicy( base::BindOnce([](authpolicy::ErrorType error) { EXPECT_EQ(authpolicy::ERROR_DBUS_FAILURE, error); })); base::RunLoop loop; authpolicy_client()->RefreshUserPolicy( AccountId::FromUserEmail(kCorrectUserName), base::BindOnce( [](base::OnceClosure closure, authpolicy::ErrorType error) { EXPECT_EQ(authpolicy::ERROR_DBUS_FAILURE, error); std::move(closure).Run(); }, loop.QuitClosure())); loop.Run(); } // Tests RefreshDevicePolicy. On a not locked device it should cache policy. On // a locked device it should send policy to session_manager. TEST_F(FakeAuthPolicyClientTest, NotLockedDeviceCachesPolicy) { authpolicy_client()->set_started(true); authpolicy_client()->RefreshDevicePolicy( base::BindOnce([](authpolicy::ErrorType error) { EXPECT_EQ(authpolicy::ERROR_DEVICE_POLICY_CACHED_BUT_NOT_SENT, error); })); LockDeviceActiveDirectory(); base::RunLoop loop; authpolicy_client()->RefreshDevicePolicy(base::BindOnce( [](base::OnceClosure closure, authpolicy::ErrorType error) { EXPECT_EQ(authpolicy::ERROR_NONE, error); std::move(closure).Run(); }, loop.QuitClosure())); loop.Run(); } // Tests that RefreshDevicePolicy stores device policy in the session manager. TEST_F(FakeAuthPolicyClientTest, RefreshDevicePolicyStoresPolicy) { authpolicy_client()->set_started(true); LockDeviceActiveDirectory(); { // Call RefreshDevicePolicy. base::RunLoop loop; em::ChromeDeviceSettingsProto policy; policy.mutable_allow_new_users()->set_allow_new_users(true); authpolicy_client()->set_device_policy(policy); authpolicy_client()->RefreshDevicePolicy(base::BindOnce( [](base::OnceClosure closure, authpolicy::ErrorType error) { EXPECT_EQ(authpolicy::ERROR_NONE, error); std::move(closure).Run(); }, loop.QuitClosure())); loop.Run(); } { // Retrieve device policy from the session manager. std::string response_blob; EXPECT_EQ( SessionManagerClient::RetrievePolicyResponseType::SUCCESS, session_manager_client()->BlockingRetrieveDevicePolicy(&response_blob)); em::PolicyFetchResponse response; EXPECT_TRUE(response.ParseFromString(response_blob)); EXPECT_TRUE(response.has_policy_data()); em::PolicyData policy_data; EXPECT_TRUE(policy_data.ParseFromString(response.policy_data())); em::ChromeDeviceSettingsProto policy; EXPECT_TRUE(policy.ParseFromString(policy_data.policy_value())); EXPECT_TRUE(policy.has_allow_new_users()); EXPECT_TRUE(policy.allow_new_users().allow_new_users()); } } } // namespace chromeos
fcbc77f573b7d0c55da5492b116cf672c625deb9
51cc2aa23688d2d6df1511d316e312eacc5b1192
/SDK/RC_HandCrawlingNotify_parameters.hpp
0ed9516f0d87c93f80682dba458248dccb35fc32
[]
no_license
hinnie123/RogueCompany_SDK
eb5e17a03f733efdad99c64357d22b715b7c9879
b6382f4b38626ff5c2929067f8ee2664c4bf92c4
refs/heads/master
2023-07-09T16:35:49.736981
2021-08-15T12:04:10
2021-08-15T12:04:10
250,232,865
4
3
null
null
null
null
UTF-8
C++
false
false
1,372
hpp
#pragma once // RogueCompany (Dumped by Hinnie) SDK #ifdef _MSC_VER #pragma pack(push, 0x8) #endif #include "../SDK.hpp" namespace SDK { //--------------------------------------------------------------------------- //Parameters //--------------------------------------------------------------------------- // Function HandCrawlingNotify.HandCrawlingNotify_C.Received_Notify struct UHandCrawlingNotify_C_Received_Notify_Params { class USkeletalMeshComponent** MeshComp; // (BlueprintVisible, BlueprintReadOnly, Parm, ZeroConstructor, InstancedReference, IsPlainOldData) class UAnimSequenceBase** Animation; // (BlueprintVisible, BlueprintReadOnly, Parm, ZeroConstructor, IsPlainOldData) bool ReturnValue; // (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData) }; // Function HandCrawlingNotify.HandCrawlingNotify_C.GetNotifyName struct UHandCrawlingNotify_C_GetNotifyName_Params { struct FString ReturnValue; // (Parm, OutParm, ZeroConstructor, ReturnParm) }; } #ifdef _MSC_VER #pragma pack(pop) #endif
a43c490ecb7181d68d5e61c42644ee8238a97463
522c568e8920d76a94198599614e9315f575ce23
/Temp/Controller/WRQuestDirectionController.h
4d269ca59894e3f226257f9dd5d96304de76e448
[]
no_license
kyukyu86/Demo
2ba6fe1f2264f9d4820437736c9870a5c59960cb
d2bb86e623ec5f621e860aa5defe335ee672ca53
refs/heads/master
2023-01-07T11:46:08.313633
2020-11-06T08:59:06
2020-11-06T08:59:06
269,510,905
0
0
null
null
null
null
UHC
C++
false
false
2,123
h
// Copyright 2019-2024 WemadeXR Inc. All rights reserved. #pragma once #include "Define/WRTypeDefine.h" #include "Enum/EWRUIEnum.h" #include "Network/Share/Define/Define_BluePrint.h" struct FWRQuestDirectionData { enum EWRQuestDirectionType { None, Dialogue, QuestBoard }; FWRQuestDirectionData() {} FWRQuestDirectionData(const EWRQuestDirectionType IN InQuestDirectionType, const bool IN bInWaitDirectionToFinish) : Type(InQuestDirectionType), bWaitDirectionToFinish(bInWaitDirectionToFinish) {} EWRQuestDirectionType Type; bool bWaitDirectionToFinish; // 해당 연출이 완료되길 기다려야 하는가? }; struct FWRDialogueDirectionData : public FWRQuestDirectionData { FWRDialogueDirectionData() {} FWRDialogueDirectionData(const FWRQuestDirectionData::EWRQuestDirectionType IN InQuestDirectionType, const EWRDialogueType IN InDialogueType, const WRTableID IN InDialogueTID) : FWRQuestDirectionData(InQuestDirectionType, true), DialogueType(InDialogueType), DialogueTID(InDialogueTID) {} EWRDialogueType DialogueType; WRTableID DialogueTID; }; class WRQuestDirectionController { public: WRQuestDirectionController(); ~WRQuestDirectionController(); public: void OnShutdown(); void OnLoadLevelStart(); void OnLoadLevelProcessEnded(); public: void AddQuestDirectionData(const FWRQuestDirectionData& IN InQuestDirectionData); void AddQuestDirectionData(const FWRDialogueDirectionData& IN InDialogueDirectionData); void OnQuestDirectionFinished(const FWRQuestDirectionData::EWRQuestDirectionType IN InQuestDirectionType); void ProgressQuestDirection(const FWRQuestDirectionData* IN InQuestDirectionData); private: void Clear(); bool ProgressDialogueDirection(const FWRQuestDirectionData* IN InQuestDirectionData); // 다이얼로그 연출 bool ProgressQuestBoardDirection(const FWRQuestDirectionData* IN InQuestDirectionData); // 퀘스트 보드 연출 void DequeueQuestDirectionData(); private: TQueue<FWRQuestDirectionData*> QuestDirectionDataQueue; FWRQuestDirectionData::EWRQuestDirectionType WaitQuestDirectionType = FWRQuestDirectionData::EWRQuestDirectionType::None; };
9aeba189903937e3f18e4430cebcdd38692393f5
0eff74b05b60098333ad66cf801bdd93becc9ea4
/second/download/curl/gumtree/curl_patch_hunk_928.cpp
6d71566e4da6ba2ad47163dff72133f0d3df5ba8
[]
no_license
niuxu18/logTracker-old
97543445ea7e414ed40bdc681239365d33418975
f2b060f13a0295387fe02187543db124916eb446
refs/heads/master
2021-09-13T21:39:37.686481
2017-12-11T03:36:34
2017-12-11T03:36:34
null
0
0
null
null
null
null
UTF-8
C++
false
false
253
cpp
{ if((*store == HTTPREQ_UNSPEC) || (*store == req)) { *store = req; return 0; } - warnf(config, "You can only select one HTTP request!\n"); + + warnf(config->global, "You can only select one HTTP request!\n"); + return 1; }
80847d713e7a07b6334ec0431b1cd9c25733da1b
d535109f8406a7c4cf8238bd03f1c584ad6464aa
/aliyun-api-ess/2014-08-28/src/ali_ess_describe_scaling_instances.cc
5164c2f68783ef4b176fb4d56ac6c5b588e25d54
[ "Apache-2.0" ]
permissive
bailehang/aliyun
3cf08cb371e55fbff59fc3908e5c47c27b861af1
ca80fb97ce2b4d10bfb5fd8252c730a995354646
refs/heads/master
2020-05-23T11:17:00.183793
2015-11-16T01:41:03
2015-11-16T01:41:03
null
0
0
null
null
null
null
UTF-8
C++
false
false
7,504
cc
#include <stdio.h> #include "ali_api_core.h" #include "ali_string_utils.h" #include "ali_ess.h" #include "json/value.h" #include "json/reader.h" using namespace aliyun; namespace { void Json2Type(const Json::Value& value, std::string* item); void Json2Type(const Json::Value& value, EssDescribeScalingInstancesScalingInstanceType* item); void Json2Type(const Json::Value& value, EssDescribeScalingInstancesResponseType* item); template<typename T> class Json2Array { public: Json2Array(const Json::Value& value, std::vector<T>* vec) { if(!value.isArray()) { return; } for(int i = 0; i < value.size(); i++) { T val; Json2Type(value[i], &val); vec->push_back(val); } } }; void Json2Type(const Json::Value& value, std::string* item) { *item = value.asString(); } void Json2Type(const Json::Value& value, EssDescribeScalingInstancesScalingInstanceType* item) { if(value.isMember("InstanceId")) { item->instance_id = value["InstanceId"].asString(); } if(value.isMember("ScalingConfigurationId")) { item->scaling_configuration_id = value["ScalingConfigurationId"].asString(); } if(value.isMember("ScalingGroupId")) { item->scaling_group_id = value["ScalingGroupId"].asString(); } if(value.isMember("HealthStatus")) { item->health_status = value["HealthStatus"].asString(); } if(value.isMember("LifecycleState")) { item->lifecycle_state = value["LifecycleState"].asString(); } if(value.isMember("CreationTime")) { item->creation_time = value["CreationTime"].asString(); } if(value.isMember("CreationType")) { item->creation_type = value["CreationType"].asString(); } } void Json2Type(const Json::Value& value, EssDescribeScalingInstancesResponseType* item) { if(value.isMember("TotalCount")) { item->total_count = value["TotalCount"].asInt(); } if(value.isMember("PageNumber")) { item->page_number = value["PageNumber"].asInt(); } if(value.isMember("PageSize")) { item->page_size = value["PageSize"].asInt(); } if(value.isMember("ScalingInstances") && value["ScalingInstances"].isMember("ScalingInstance")) { Json2Array<EssDescribeScalingInstancesScalingInstanceType>(value["ScalingInstances"]["ScalingInstance"], &item->scaling_instances); } } } int Ess::DescribeScalingInstances(const EssDescribeScalingInstancesRequestType& req, EssDescribeScalingInstancesResponseType* response, EssErrorInfo* error_info) { std::string str_response; int status_code; int ret = 0; bool parse_success = false; std::string secheme = this->use_tls_ ? "https" : "http"; AliRpcRequest* req_rpc = new AliRpcRequest(version_, appid_, secret_, secheme + "://" + host_); Json::Value val; Json::Reader reader; req_rpc->AddRequestQuery("Action","DescribeScalingInstances"); if(!req.owner_id.empty()) { req_rpc->AddRequestQuery("OwnerId", req.owner_id); } if(!req.resource_owner_account.empty()) { req_rpc->AddRequestQuery("ResourceOwnerAccount", req.resource_owner_account); } if(!req.resource_owner_id.empty()) { req_rpc->AddRequestQuery("ResourceOwnerId", req.resource_owner_id); } if(!req.scaling_group_id.empty()) { req_rpc->AddRequestQuery("ScalingGroupId", req.scaling_group_id); } if(!req.scaling_configuration_id.empty()) { req_rpc->AddRequestQuery("ScalingConfigurationId", req.scaling_configuration_id); } if(!req.health_status.empty()) { req_rpc->AddRequestQuery("HealthStatus", req.health_status); } if(!req.lifecycle_state.empty()) { req_rpc->AddRequestQuery("LifecycleState", req.lifecycle_state); } if(!req.creation_type.empty()) { req_rpc->AddRequestQuery("CreationType", req.creation_type); } if(!req.page_number.empty()) { req_rpc->AddRequestQuery("PageNumber", req.page_number); } if(!req.page_size.empty()) { req_rpc->AddRequestQuery("PageSize", req.page_size); } if(!req.instance_id1.empty()) { req_rpc->AddRequestQuery("InstanceId.1", req.instance_id1); } if(!req.instance_id2.empty()) { req_rpc->AddRequestQuery("InstanceId.2", req.instance_id2); } if(!req.instance_id3.empty()) { req_rpc->AddRequestQuery("InstanceId.3", req.instance_id3); } if(!req.instance_id4.empty()) { req_rpc->AddRequestQuery("InstanceId.4", req.instance_id4); } if(!req.instance_id5.empty()) { req_rpc->AddRequestQuery("InstanceId.5", req.instance_id5); } if(!req.instance_id6.empty()) { req_rpc->AddRequestQuery("InstanceId.6", req.instance_id6); } if(!req.instance_id7.empty()) { req_rpc->AddRequestQuery("InstanceId.7", req.instance_id7); } if(!req.instance_id8.empty()) { req_rpc->AddRequestQuery("InstanceId.8", req.instance_id8); } if(!req.instance_id9.empty()) { req_rpc->AddRequestQuery("InstanceId.9", req.instance_id9); } if(!req.instance_id10.empty()) { req_rpc->AddRequestQuery("InstanceId.10", req.instance_id10); } if(!req.instance_id11.empty()) { req_rpc->AddRequestQuery("InstanceId.11", req.instance_id11); } if(!req.instance_id12.empty()) { req_rpc->AddRequestQuery("InstanceId.12", req.instance_id12); } if(!req.instance_id13.empty()) { req_rpc->AddRequestQuery("InstanceId.13", req.instance_id13); } if(!req.instance_id14.empty()) { req_rpc->AddRequestQuery("InstanceId.14", req.instance_id14); } if(!req.instance_id15.empty()) { req_rpc->AddRequestQuery("InstanceId.15", req.instance_id15); } if(!req.instance_id16.empty()) { req_rpc->AddRequestQuery("InstanceId.16", req.instance_id16); } if(!req.instance_id17.empty()) { req_rpc->AddRequestQuery("InstanceId.17", req.instance_id17); } if(!req.instance_id18.empty()) { req_rpc->AddRequestQuery("InstanceId.18", req.instance_id18); } if(!req.instance_id19.empty()) { req_rpc->AddRequestQuery("InstanceId.19", req.instance_id19); } if(!req.instance_id20.empty()) { req_rpc->AddRequestQuery("InstanceId.20", req.instance_id20); } if(!req.owner_account.empty()) { req_rpc->AddRequestQuery("OwnerAccount", req.owner_account); } if(!this->region_id_.empty()) { req_rpc->AddRequestQuery("RegionId", this->region_id_); } if(req_rpc->CommitRequest() != 0) { if(error_info) { error_info->code = "connect to host failed"; } ret = -1; goto out; } status_code = req_rpc->WaitResponseHeaderComplete(); req_rpc->ReadResponseBody(str_response); if(status_code > 0 && !str_response.empty()){ parse_success = reader.parse(str_response, val); } if(!parse_success) { if(error_info) { error_info->code = "parse response failed"; } ret = -1; goto out; } if(status_code!= 200 && error_info && parse_success) { error_info->request_id = val.isMember("RequestId") ? val["RequestId"].asString(): ""; error_info->code = val.isMember("Code") ? val["Code"].asString(): ""; error_info->host_id = val.isMember("HostId") ? val["HostId"].asString(): ""; error_info->message = val.isMember("Message") ? val["Message"].asString(): ""; } if(status_code== 200 && response) { Json2Type(val, response); } ret = status_code; out: delete req_rpc; return ret; }
bb51c6b281aa197e4d8c186972227754d4d18f22
f000ffc4a89aa14b08ff56762345832931e66d71
/src/plugins/core/manhattanstyle.cpp
850be7291f7f0990685d7d893d792b93f6ddb001
[]
no_license
bilibiliblingbling/JLW-VV-MediaStudio
1cb63d7816ba764cc6f6ce12f1883b219b9e6583
05314d56c91aa3c8b1853cb14e00d4846dcc1b69
refs/heads/master
2021-07-20T12:42:03.765631
2017-10-10T18:36:34
2017-10-10T18:36:34
106,336,587
1
0
null
null
null
null
UTF-8
C++
false
false
43,036
cpp
/**************************************************************************** ** ** Copyright (C) 2015 The Qt Company Ltd. ** Contact: http://www.qt.io/licensing ** ** This file is part of Qt Creator. ** ** Commercial License Usage ** Licensees holding valid commercial Qt licenses may use this file in ** accordance with the commercial license agreement provided with the ** Software or, alternatively, in accordance with the terms contained in ** a written agreement between you and The Qt Company. For licensing terms and ** conditions see http://www.qt.io/terms-conditions. For further information ** use the contact form at http://www.qt.io/contact-us. ** ** GNU Lesser General Public License Usage ** Alternatively, this file may be used under the terms of the GNU Lesser ** General Public License version 2.1 or version 3 as published by the Free ** Software Foundation and appearing in the file LICENSE.LGPLv21 and ** LICENSE.LGPLv3 included in the packaging of this file. Please review the ** following information to ensure the GNU Lesser General Public License ** requirements will be met: https://www.gnu.org/licenses/lgpl.html and ** http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. ** ** In addition, as a special exception, The Qt Company gives you certain additional ** rights. These rights are described in The Qt Company LGPL Exception ** version 1.1, included in the file LGPL_EXCEPTION.txt in this package. ** ****************************************************************************/ #include <QApplication> #include <QComboBox> #include <QDockWidget> #include <QLabel> #include <QLineEdit> #include <QMenuBar> #include <QPainter> #include <QPixmap> #include <QStatusBar> #include <QStyleFactory> #include <QStyleOption> #include <QToolBar> #include <QToolButton> #include <core/constants.h> #include <utils/fancymainwindow.h> #include <utils/hostosinfo.h> #include <utils/stylehelper.h> #include <utils/theme/theme.h> #include "manhattanstyle.h" #include "styleanimator.h" namespace Core { using namespace Utils; // We define a currently unused state for indicating animations const QStyle::State State_Animating = QStyle::State(0x00000040); // Because designer needs to disable this for widget previews // we have a custom property that is inherited bool styleEnabled(const QWidget *widget) { const QWidget *p = widget; while (p) { if (p->property("_q_custom_style_disabled").toBool()) return false; p = p->parentWidget(); } return true; } // Consider making this a QStyle state bool panelWidget(const QWidget *widget) { if (!widget) return false; // Do not style dialogs or explicitly ignored widgets if ((widget->window()->windowFlags() & Qt::WindowType_Mask) == Qt::Dialog) return false; if (qobject_cast<const FancyMainWindow *>(widget)) return true; if (qobject_cast<const QTabBar *>(widget)) return styleEnabled(widget); const QWidget *p = widget; while (p) { if (qobject_cast<const QToolBar *>(p) || qobject_cast<const QStatusBar *>(p) || qobject_cast<const QMenuBar *>(p) || p->property("panelwidget").toBool()) return styleEnabled(widget); p = p->parentWidget(); } return false; } // Consider making this a QStyle state bool lightColored(const QWidget *widget) { if (!widget) return false; // Don't style dialogs or explicitly ignored widgets if ((widget->window()->windowFlags() & Qt::WindowType_Mask) == Qt::Dialog) return false; const QWidget *p = widget; while (p) { if (p->property("lightColored").toBool()) return true; p = p->parentWidget(); } return false; } class ManhattanStylePrivate { public: explicit ManhattanStylePrivate(); void init(); public: const QImage lineeditImage; const QImage lineeditImage_disabled; const QPixmap extButtonPixmap; const QPixmap closeButtonPixmap; StyleAnimator animator; }; ManhattanStylePrivate::ManhattanStylePrivate() : lineeditImage(StyleHelper::dpiSpecificImageFile(QStringLiteral(":/core/images/inputfield.png"))), lineeditImage_disabled(StyleHelper::dpiSpecificImageFile(QStringLiteral(":/core/images/inputfield_disabled.png"))), extButtonPixmap(QLatin1String(":/core/images/extension.png")), closeButtonPixmap(QLatin1String(Core::Constants::ICON_CLOSE_BUTTON)) { } ManhattanStyle::ManhattanStyle(const QString &baseStyleName) : QProxyStyle(QStyleFactory::create(baseStyleName)), d(new ManhattanStylePrivate()) { } ManhattanStyle::~ManhattanStyle() { delete d; d = 0; } QPixmap ManhattanStyle::generatedIconPixmap(QIcon::Mode iconMode, const QPixmap &pixmap, const QStyleOption *opt) const { return QProxyStyle::generatedIconPixmap(iconMode, pixmap, opt); } QSize ManhattanStyle::sizeFromContents(ContentsType type, const QStyleOption *option, const QSize &size, const QWidget *widget) const { QSize newSize = QProxyStyle::sizeFromContents(type, option, size, widget); if (type == CT_Splitter && widget && widget->property("minisplitter").toBool()) return QSize(1, 1); else if (type == CT_ComboBox && panelWidget(widget)) newSize += QSize(14, 0); return newSize; } QRect ManhattanStyle::subElementRect(SubElement element, const QStyleOption *option, const QWidget *widget) const { return QProxyStyle::subElementRect(element, option, widget); } QRect ManhattanStyle::subControlRect(ComplexControl control, const QStyleOptionComplex *option, SubControl subControl, const QWidget *widget) const { return QProxyStyle::subControlRect(control, option, subControl, widget); } QStyle::SubControl ManhattanStyle::hitTestComplexControl(ComplexControl control, const QStyleOptionComplex *option, const QPoint &pos, const QWidget *widget) const { return QProxyStyle::hitTestComplexControl(control, option, pos, widget); } int ManhattanStyle::pixelMetric(PixelMetric metric, const QStyleOption *option, const QWidget *widget) const { int retval = 0; retval = QProxyStyle::pixelMetric(metric, option, widget); switch (metric) { case PM_SplitterWidth: if (widget && widget->property("minisplitter").toBool()) retval = 1; break; case PM_ToolBarIconSize: if (panelWidget(widget)) retval = 16; break; case PM_DockWidgetHandleExtent: case PM_DockWidgetSeparatorExtent: return 1; case PM_MenuPanelWidth: case PM_MenuBarHMargin: case PM_MenuBarVMargin: case PM_ToolBarFrameWidth: if (panelWidget(widget)) retval = 1; break; case PM_ButtonShiftVertical: case PM_ButtonShiftHorizontal: case PM_MenuBarPanelWidth: case PM_ToolBarItemMargin: case PM_ToolBarItemSpacing: if (panelWidget(widget)) retval = 0; break; case PM_DefaultFrameWidth: if (qobject_cast<const QLineEdit*>(widget) && panelWidget(widget)) return 1; break; default: break; } return retval; } QPalette ManhattanStyle::standardPalette() const { return QProxyStyle::standardPalette(); } void ManhattanStyle::polish(QApplication *app) { return QProxyStyle::polish(app); } void ManhattanStyle::unpolish(QApplication *app) { return QProxyStyle::unpolish(app); } QPalette panelPalette(const QPalette &oldPalette, bool lightColored = false) { QColor color = mediastudioTheme()->color(lightColored ? Theme::PanelTextColorDark : Theme::PanelTextColorLight); QPalette pal = oldPalette; pal.setBrush(QPalette::All, QPalette::WindowText, color); pal.setBrush(QPalette::All, QPalette::ButtonText, color); pal.setBrush(QPalette::All, QPalette::Foreground, color); color.setAlpha(100); pal.setBrush(QPalette::Disabled, QPalette::WindowText, color); pal.setBrush(QPalette::Disabled, QPalette::ButtonText, color); pal.setBrush(QPalette::Disabled, QPalette::Foreground, color); return pal; } void ManhattanStyle::polish(QWidget *widget) { QProxyStyle::polish(widget); // OxygenStyle forces a rounded widget mask on toolbars and dock widgets if (baseStyle()->inherits("OxygenStyle") || baseStyle()->inherits("Oxygen::Style")) { if (qobject_cast<QToolBar*>(widget) || qobject_cast<QDockWidget*>(widget)) { widget->removeEventFilter(baseStyle()); widget->setContentsMargins(0, 0, 0, 0); } } if (panelWidget(widget)) { // Oxygen and possibly other styles override this if (qobject_cast<QDockWidget*>(widget)) widget->setContentsMargins(0, 0, 0, 0); widget->setAttribute(Qt::WA_LayoutUsesWidgetRect, true); if (qobject_cast<QToolButton*>(widget)) { widget->setAttribute(Qt::WA_Hover); widget->setMaximumHeight(StyleHelper::navigationWidgetHeight() - 2); } else if (qobject_cast<QLineEdit*>(widget)) { widget->setAttribute(Qt::WA_Hover); widget->setMaximumHeight(StyleHelper::navigationWidgetHeight() - 2); } else if (qobject_cast<QLabel*>(widget)) { widget->setPalette(panelPalette(widget->palette(), lightColored(widget))); } else if (widget->property("panelwidget_singlerow").toBool()) { widget->setFixedHeight(StyleHelper::navigationWidgetHeight()); } else if (qobject_cast<QStatusBar*>(widget)) { widget->setFixedHeight(StyleHelper::navigationWidgetHeight() + 2); } else if (qobject_cast<QComboBox*>(widget)) { widget->setMaximumHeight(StyleHelper::navigationWidgetHeight() - 2); widget->setAttribute(Qt::WA_Hover); } } } void ManhattanStyle::unpolish(QWidget *widget) { QProxyStyle::unpolish(widget); if (panelWidget(widget)) { widget->setAttribute(Qt::WA_LayoutUsesWidgetRect, false); if (qobject_cast<QTabBar*>(widget)) widget->setAttribute(Qt::WA_Hover, false); else if (qobject_cast<QToolBar*>(widget)) widget->setAttribute(Qt::WA_Hover, false); else if (qobject_cast<QComboBox*>(widget)) widget->setAttribute(Qt::WA_Hover, false); } } void ManhattanStyle::polish(QPalette &pal) { QProxyStyle::polish(pal); } QIcon ManhattanStyle::standardIconImplementation(StandardPixmap standardIcon, const QStyleOption *option, const QWidget *widget) const { QIcon icon; switch (standardIcon) { case QStyle::SP_TitleBarCloseButton: case QStyle::SP_ToolBarHorizontalExtensionButton: return QIcon(standardPixmap(standardIcon, option, widget)); default: icon = baseStyle()->standardIcon(standardIcon, option, widget); } return icon; } QPixmap ManhattanStyle::standardPixmap(StandardPixmap standardPixmap, const QStyleOption *opt, const QWidget *widget) const { if (widget && !panelWidget(widget)) return QProxyStyle::standardPixmap(standardPixmap, opt, widget); QPixmap pixmap; switch (standardPixmap) { case QStyle::SP_ToolBarHorizontalExtensionButton: pixmap = d->extButtonPixmap; break; case QStyle::SP_TitleBarCloseButton: pixmap = d->closeButtonPixmap; break; default: pixmap = QProxyStyle::standardPixmap(standardPixmap, opt, widget); break; } return pixmap; } int ManhattanStyle::styleHint(StyleHint hint, const QStyleOption *option, const QWidget *widget, QStyleHintReturn *returnData) const { int ret = QProxyStyle::styleHint(hint, option, widget, returnData); switch (hint) { // Make project explorer alternate rows all the way case QStyle::SH_ItemView_PaintAlternatingRowColorsForEmptyArea: if (widget && widget->property("AlternateEmpty").toBool()) ret = true; break; case QStyle::SH_EtchDisabledText: if (panelWidget(widget) || qobject_cast<const QMenu *> (widget) ) ret = false; break; case QStyle::SH_ItemView_ArrowKeysNavigateIntoChildren: ret = true; break; case QStyle::SH_ItemView_ActivateItemOnSingleClick: // default depends on the style if (widget) { QVariant activationMode = widget->property("ActivationMode"); if (activationMode.isValid()) ret = activationMode.toBool(); } default: break; } return ret; } void ManhattanStyle::drawPrimitive(PrimitiveElement element, const QStyleOption *option, QPainter *painter, const QWidget *widget) const { if (!panelWidget(widget)) return QProxyStyle::drawPrimitive(element, option, painter, widget); bool animating = (option->state & State_Animating); int state = option->state; QRect rect = option->rect; QRect oldRect; QRect newRect; if (widget && (element == PE_PanelButtonTool) && !animating) { QWidget *w = const_cast<QWidget *> (widget); int oldState = w->property("_q_stylestate").toInt(); oldRect = w->property("_q_stylerect").toRect(); newRect = w->rect(); w->setProperty("_q_stylestate", (int)option->state); w->setProperty("_q_stylerect", w->rect()); // Determine the animated transition bool doTransition = ((state & State_On) != (oldState & State_On) || (state & State_MouseOver) != (oldState & State_MouseOver)); if (oldRect != newRect) { doTransition = false; d->animator.stopAnimation(widget); } if (doTransition) { QImage startImage(option->rect.size(), QImage::Format_ARGB32_Premultiplied); QImage endImage(option->rect.size(), QImage::Format_ARGB32_Premultiplied); Animation *anim = d->animator.widgetAnimation(widget); QStyleOption opt = *option; opt.state = (QStyle::State)oldState; opt.state |= State_Animating; startImage.fill(0); Transition *t = new Transition; t->setWidget(w); QPainter startPainter(&startImage); if (!anim) { drawPrimitive(element, &opt, &startPainter, widget); } else { anim->paint(&startPainter, &opt); d->animator.stopAnimation(widget); } QStyleOption endOpt = *option; endOpt.state |= State_Animating; t->setStartImage(startImage); d->animator.startAnimation(t); endImage.fill(0); QPainter endPainter(&endImage); drawPrimitive(element, &endOpt, &endPainter, widget); t->setEndImage(endImage); if (oldState & State_MouseOver) t->setDuration(150); else t->setDuration(75); t->setStartTime(QTime::currentTime()); } } switch (element) { case PE_IndicatorDockWidgetResizeHandle: painter->fillRect(option->rect, mediastudioTheme()->color(Theme::DockWidgetResizeHandleColor)); break; case PE_FrameDockWidget: QCommonStyle::drawPrimitive(element, option, painter, widget); break; case PE_PanelLineEdit: { painter->save(); // Fill the line edit background QRect filledRect = option->rect.adjusted(1, 1, -1, -1); painter->setBrushOrigin(filledRect.topLeft()); painter->fillRect(filledRect, option->palette.base()); if (option->state & State_Enabled) StyleHelper::drawCornerImage(d->lineeditImage, painter, option->rect, 5, 5, 5, 5); else StyleHelper::drawCornerImage(d->lineeditImage_disabled, painter, option->rect, 5, 5, 5, 5); if (option->state & State_HasFocus || option->state & State_MouseOver) { QColor hover = StyleHelper::baseColor(); if (state & State_HasFocus) hover.setAlpha(100); else hover.setAlpha(50); painter->setPen(QPen(hover, 1)); painter->drawRect(QRectF(option->rect).adjusted(1.5, 1.5, -1.5, -1.5)); } painter->restore(); } break; case PE_FrameStatusBarItem: break; case PE_PanelButtonTool: { Animation *anim = d->animator.widgetAnimation(widget); if (!animating && anim) { anim->paint(painter, option); } else { bool pressed = option->state & State_Sunken || option->state & State_On; QColor shadow(0, 0, 0, 30); painter->setPen(shadow); if (pressed) { QColor shade(0, 0, 0, 40); painter->fillRect(rect, shade); painter->drawLine(rect.topLeft() + QPoint(1, 0), rect.topRight() - QPoint(1, 0)); painter->drawLine(rect.topLeft(), rect.bottomLeft()); painter->drawLine(rect.topRight(), rect.bottomRight()); // painter->drawLine(rect.bottomLeft() + QPoint(1, 0), rect.bottomRight() - QPoint(1, 0)); QColor highlight(255, 255, 255, 30); painter->setPen(highlight); } else if (option->state & State_Enabled && option->state & State_MouseOver) { painter->fillRect(rect, mediastudioTheme()->color(Theme::PanelButtonToolBackgroundColorHover)); } else if (widget && widget->property("highlightWidget").toBool()) { QColor shade(0, 0, 0, 128); painter->fillRect(rect, shade); } if (option->state & State_HasFocus && (option->state & State_KeyboardFocusChange)) { QColor highlight = option->palette.highlight().color(); highlight.setAlphaF(0.4); painter->setPen(QPen(highlight.lighter(), 1)); highlight.setAlphaF(0.3); painter->setBrush(highlight); painter->setRenderHint(QPainter::Antialiasing); const QRectF rect = option->rect; painter->drawRoundedRect(rect.adjusted(2.5, 2.5, -2.5, -2.5), 2, 2); } } } break; case PE_PanelStatusBar: { if (mediastudioTheme()->widgetStyle() == Theme::StyleDefault) { painter->save(); QLinearGradient grad = StyleHelper::statusBarGradient(rect); painter->fillRect(rect, grad); painter->setPen(QColor(255, 255, 255, 60)); painter->drawLine(rect.topLeft() + QPoint(0,1), rect.topRight()+ QPoint(0,1)); painter->setPen(StyleHelper::borderColor().darker(110)); //TODO: make themable painter->drawLine(rect.topLeft(), rect.topRight()); painter->restore(); } else { painter->fillRect(rect, mediastudioTheme()->color(Theme::PanelStatusBarBackgroundColor)); } } break; case PE_IndicatorToolBarSeparator: { QColor separatorColor = StyleHelper::borderColor(); separatorColor.setAlpha(100); painter->setPen(separatorColor); const int margin = 6; if (option->state & State_Horizontal) { const int offset = rect.width()/2; painter->drawLine(rect.bottomLeft().x() + offset, rect.bottomLeft().y() - margin, rect.topLeft().x() + offset, rect.topLeft().y() + margin); } else { //Draw vertical separator const int offset = rect.height()/2; painter->setPen(QPen(option->palette.background().color().darker(110))); painter->drawLine(rect.topLeft().x() + margin , rect.topLeft().y() + offset, rect.topRight().x() - margin, rect.topRight().y() + offset); } } break; case PE_IndicatorToolBarHandle: { bool horizontal = option->state & State_Horizontal; painter->save(); QPainterPath path; int x = option->rect.x() + (horizontal ? 2 : 6); int y = option->rect.y() + (horizontal ? 6 : 2); static const int RectHeight = 2; if (horizontal) { while (y < option->rect.height() - RectHeight - 6) { path.moveTo(x, y); path.addRect(x, y, RectHeight, RectHeight); y += 6; } } else { while (x < option->rect.width() - RectHeight - 6) { path.moveTo(x, y); path.addRect(x, y, RectHeight, RectHeight); x += 6; } } painter->setPen(Qt::NoPen); QColor dark = StyleHelper::borderColor(); dark.setAlphaF(0.4); QColor light = StyleHelper::baseColor(); light.setAlphaF(0.4); painter->fillPath(path, light); painter->save(); painter->translate(1, 1); painter->fillPath(path, dark); painter->restore(); painter->translate(3, 3); painter->fillPath(path, light); painter->translate(1, 1); painter->fillPath(path, dark); painter->restore(); } break; case PE_IndicatorArrowUp: case PE_IndicatorArrowDown: case PE_IndicatorArrowRight: case PE_IndicatorArrowLeft: { StyleHelper::drawArrow(element, painter, option); } break; default: QProxyStyle::drawPrimitive(element, option, painter, widget); break; } } void ManhattanStyle::drawControl(ControlElement element, const QStyleOption *option, QPainter *painter, const QWidget *widget) const { if (!panelWidget(widget) && !qobject_cast<const QMenu *>(widget)) return QProxyStyle::drawControl(element, option, painter, widget); switch (element) { case CE_Splitter: if (mediastudioTheme()->widgetStyle() == Theme::StyleFlat) painter->fillRect(option->rect, mediastudioTheme()->color(Theme::SplitterColor)); else painter->fillRect(option->rect, StyleHelper::borderColor()); break; case CE_TabBarTabShape: // Most styles draw a single dark outline. This looks rather ugly when combined with our // single pixel dark separator so we adjust the first tab to compensate for this if (const QStyleOptionTabV3 *tab = qstyleoption_cast<const QStyleOptionTabV3 *>(option)) { QStyleOptionTabV3 adjustedTab = *tab; if (tab->cornerWidgets == QStyleOptionTab::NoCornerWidgets && ( tab->position == QStyleOptionTab::Beginning || tab->position == QStyleOptionTab::OnlyOneTab)) { if (option->direction == Qt::LeftToRight) adjustedTab.rect = adjustedTab.rect.adjusted(-1, 0, 0, 0); else adjustedTab.rect = adjustedTab.rect.adjusted(0, 0, 1 ,0); } QProxyStyle::drawControl(element, &adjustedTab, painter, widget); return; } break; case CE_MenuItem: painter->save(); if (const QStyleOptionMenuItem *mbi = qstyleoption_cast<const QStyleOptionMenuItem *>(option)) { const bool enabled = mbi->state & State_Enabled; QStyleOptionMenuItem item = *mbi; item.rect = mbi->rect; const QColor color = mediastudioTheme()->color(enabled ? Theme::MenuItemTextColorNormal : Theme::MenuItemTextColorDisabled); if (color.isValid()) { QPalette pal = mbi->palette; pal.setBrush(QPalette::Text, color); item.palette = pal; } QProxyStyle::drawControl(element, &item, painter, widget); } painter->restore(); break; case CE_MenuBarItem: painter->save(); if (const QStyleOptionMenuItem *mbi = qstyleoption_cast<const QStyleOptionMenuItem *>(option)) { QColor highlightOutline = StyleHelper::borderColor().lighter(120); const bool act = mbi->state & (State_Sunken | State_Selected); const bool dis = !(mbi->state & State_Enabled); if (mediastudioTheme()->widgetStyle() == Theme::StyleFlat) painter->fillRect(option->rect, mediastudioTheme()->color(Theme::MenuBarItemBackgroundColor)); else StyleHelper::menuGradient(painter, option->rect, option->rect); QStyleOptionMenuItem item = *mbi; item.rect = mbi->rect; QPalette pal = mbi->palette; pal.setBrush(QPalette::ButtonText, dis ? mediastudioTheme()->color(Theme::MenuBarItemTextColorDisabled) : mediastudioTheme()->color(Theme::MenuBarItemTextColorNormal)); item.palette = pal; QCommonStyle::drawControl(element, &item, painter, widget); if (act) { // Fill| QColor baseColor = StyleHelper::baseColor(); QLinearGradient grad(option->rect.topLeft(), option->rect.bottomLeft()); grad.setColorAt(0, baseColor.lighter(120)); grad.setColorAt(1, baseColor.lighter(130)); painter->fillRect(option->rect.adjusted(1, 1, -1, 0), grad); // Outline painter->setPen(QPen(highlightOutline, 0)); const QRect r = option->rect; painter->drawLine(QPoint(r.left(), r.top() + 1), QPoint(r.left(), r.bottom())); painter->drawLine(QPoint(r.right(), r.top() + 1), QPoint(r.right(), r.bottom())); painter->drawLine(QPoint(r.left() + 1, r.top()), QPoint(r.right() - 1, r.top())); highlightOutline.setAlpha(60); painter->setPen(QPen(highlightOutline, 0)); painter->drawPoint(r.topLeft()); painter->drawPoint(r.topRight()); QPalette pal = mbi->palette; uint alignment = Qt::AlignCenter | Qt::TextShowMnemonic | Qt::TextDontClip | Qt::TextSingleLine; if (!styleHint(SH_UnderlineShortcut, mbi, widget)) alignment |= Qt::TextHideMnemonic; pal.setBrush(QPalette::Text, dis ? Qt::gray : QColor(0, 0, 0, 60)); drawItemText(painter, item.rect.translated(0, 1), alignment, pal, mbi->state & State_Enabled, mbi->text, QPalette::Text); pal.setBrush(QPalette::Text, dis ? Qt::gray : Qt::white); drawItemText(painter, item.rect, alignment, pal, mbi->state & State_Enabled, mbi->text, QPalette::Text); } } painter->restore(); break; case CE_ComboBoxLabel: if (const QStyleOptionComboBox *cb = qstyleoption_cast<const QStyleOptionComboBox *>(option)) { if (panelWidget(widget)) { painter->save(); QRect editRect = subControlRect(CC_ComboBox, cb, SC_ComboBoxEditField, widget); QPalette customPal = cb->palette; bool drawIcon = !(widget && widget->property("hideicon").toBool()); if (!cb->currentIcon.isNull() && drawIcon) { QIcon::Mode mode = cb->state & State_Enabled ? QIcon::Normal : QIcon::Disabled; QPixmap pixmap = cb->currentIcon.pixmap(cb->iconSize, mode); QRect iconRect(editRect); iconRect.setWidth(cb->iconSize.width() + 4); iconRect = alignedRect(cb->direction, Qt::AlignLeft | Qt::AlignVCenter, iconRect.size(), editRect); if (cb->editable) painter->fillRect(iconRect, customPal.brush(QPalette::Base)); drawItemPixmap(painter, iconRect, Qt::AlignCenter, pixmap); if (cb->direction == Qt::RightToLeft) editRect.translate(-4 - cb->iconSize.width(), 0); else editRect.translate(cb->iconSize.width() + 4, 0); // Reserve some space for the down-arrow editRect.adjust(0, 0, -13, 0); } QLatin1Char asterisk('*'); int elideWidth = editRect.width(); bool notElideAsterisk = widget && widget->property("notelideasterisk").toBool() && cb->currentText.endsWith(asterisk) && option->fontMetrics.width(cb->currentText) > elideWidth; QString text; if (notElideAsterisk) { elideWidth -= option->fontMetrics.width(asterisk); text = asterisk; } text.prepend(option->fontMetrics.elidedText(cb->currentText, Qt::ElideRight, elideWidth)); if (mediastudioTheme()->flag(Theme::ComboBoxDrawTextShadow) && (option->state & State_Enabled)) { painter->setPen(QColor(0, 0, 0, 70)); painter->drawText(editRect.adjusted(1, 0, -1, 0), Qt::AlignLeft | Qt::AlignVCenter, text); } if (!(option->state & State_Enabled)) painter->setOpacity(0.8); painter->setPen(mediastudioTheme()->color(Theme::ComboBoxTextColor)); painter->drawText(editRect.adjusted(1, 0, -1, 0), Qt::AlignLeft | Qt::AlignVCenter, text); painter->restore(); } else { QProxyStyle::drawControl(element, option, painter, widget); } } break; case CE_SizeGrip: { painter->save(); QColor dark = Qt::white; dark.setAlphaF(0.1); int x, y, w, h; option->rect.getRect(&x, &y, &w, &h); int sw = qMin(h, w); if (h > w) painter->translate(0, h - w); else painter->translate(w - h, 0); int sx = x; int sy = y; int s = 4; painter->setPen(dark); if (option->direction == Qt::RightToLeft) { sx = x + sw; for (int i = 0; i < 4; ++i) { painter->drawLine(x, sy, sx, sw); sx -= s; sy += s; } } else { for (int i = 0; i < 4; ++i) { painter->drawLine(sx, sw, sw, sy); sx += s; sy += s; } } painter->restore(); } break; case CE_MenuBarEmptyArea: { if (mediastudioTheme()->widgetStyle() == Theme::StyleDefault) { StyleHelper::menuGradient(painter, option->rect, option->rect); painter->save(); painter->setPen(StyleHelper::borderColor()); painter->drawLine(option->rect.bottomLeft() + QPointF(0.5, 0.5), option->rect.bottomRight() + QPointF(0.5, 0.5)); painter->restore(); } else { painter->fillRect(option->rect, mediastudioTheme()->color(Theme::MenuBarEmptyAreaBackgroundColor)); } } break; case CE_ToolBar: { QRect rect = option->rect; bool horizontal = option->state & State_Horizontal; // Map offset for global window gradient QRect gradientSpan; if (widget) { QPoint offset = widget->window()->mapToGlobal(option->rect.topLeft()) - widget->mapToGlobal(option->rect.topLeft()); gradientSpan = QRect(offset, widget->window()->size()); } bool drawLightColored = lightColored(widget); if (horizontal) { // draws the background of the 'Type hierarchy', 'Projects' headers if (mediastudioTheme()->widgetStyle() == Theme::StyleFlat) painter->fillRect (rect, mediastudioTheme()->color(Theme::ToolBarBackgroundColor)); else StyleHelper::horizontalGradient(painter, gradientSpan, rect, drawLightColored); } else { if (mediastudioTheme()->widgetStyle() == Theme::StyleFlat) painter->fillRect (rect, mediastudioTheme()->color(Theme::ToolBarBackgroundColor)); else StyleHelper::verticalGradient(painter, gradientSpan, rect, drawLightColored); } if (!drawLightColored) { painter->setPen(StyleHelper::borderColor()); } else painter->setPen(QColor(0x888888)); if (horizontal) { // Note: This is a hack to determine if the // toolbar should draw the top or bottom outline // (needed for the find toolbar for instance) QColor lighter(StyleHelper::sidebarHighlight()); if (drawLightColored) lighter = QColor(255, 255, 255, 180); if (widget && widget->property("topBorder").toBool()) { painter->drawLine(rect.topLeft(), rect.topRight()); painter->setPen(lighter); painter->drawLine(rect.topLeft() + QPoint(0, 1), rect.topRight() + QPoint(0, 1)); } else { painter->drawLine(rect.bottomLeft(), rect.bottomRight()); painter->setPen(lighter); painter->drawLine(rect.topLeft(), rect.topRight()); } } else { painter->drawLine(rect.topLeft(), rect.bottomLeft()); painter->drawLine(rect.topRight(), rect.bottomRight()); } } break; default: QProxyStyle::drawControl(element, option, painter, widget); break; } } void ManhattanStyle::drawComplexControl(ComplexControl control, const QStyleOptionComplex *option, QPainter *painter, const QWidget *widget) const { if (!panelWidget(widget)) return QProxyStyle::drawComplexControl(control, option, painter, widget); QRect rect = option->rect; switch (control) { case CC_ToolButton: if (const QStyleOptionToolButton *toolbutton = qstyleoption_cast<const QStyleOptionToolButton *>(option)) { bool reverse = option->direction == Qt::RightToLeft; bool drawborder = (widget && widget->property("showborder").toBool()); if (drawborder) drawButtonSeparator(painter, rect, reverse); QRect button, menuarea; button = subControlRect(control, toolbutton, SC_ToolButton, widget); menuarea = subControlRect(control, toolbutton, SC_ToolButtonMenu, widget); State bflags = toolbutton->state; if (bflags & State_AutoRaise) { if (!(bflags & State_MouseOver)) bflags &= ~State_Raised; } State mflags = bflags; if (toolbutton->state & State_Sunken) { if (toolbutton->activeSubControls & SC_ToolButton) bflags |= State_Sunken; if (toolbutton->activeSubControls & SC_ToolButtonMenu) mflags |= State_Sunken; } QStyleOption tool(0); tool.palette = toolbutton->palette; if (toolbutton->subControls & SC_ToolButton) { tool.rect = button; tool.state = bflags; drawPrimitive(PE_PanelButtonTool, &tool, painter, widget); } QStyleOptionToolButton label = *toolbutton; label.palette = panelPalette(option->palette, lightColored(widget)); if (widget && widget->property("highlightWidget").toBool()) label.palette.setColor(QPalette::ButtonText, Qt::red); int fw = pixelMetric(PM_DefaultFrameWidth, option, widget); label.rect = button.adjusted(fw, fw, -fw, -fw); drawControl(CE_ToolButtonLabel, &label, painter, widget); if (toolbutton->subControls & SC_ToolButtonMenu) { tool.state = mflags; tool.rect = menuarea.adjusted(1, 1, -1, -1); if (mflags & (State_Sunken | State_On | State_Raised)) { painter->setPen(Qt::gray); painter->drawLine(tool.rect.topLeft(), tool.rect.bottomLeft()); if (mflags & (State_Sunken)) { QColor shade(0, 0, 0, 50); painter->fillRect(tool.rect.adjusted(0, -1, 1, 1), shade); } else if (!HostOsInfo::isMacHost() && (mflags & State_MouseOver)) { QColor shade(255, 255, 255, 50); painter->fillRect(tool.rect.adjusted(0, -1, 1, 1), shade); } } tool.rect = tool.rect.adjusted(2, 2, -2, -2); drawPrimitive(PE_IndicatorArrowDown, &tool, painter, widget); } else if (toolbutton->features & QStyleOptionToolButton::HasMenu && widget && !widget->property("noArrow").toBool()) { int arrowSize = 6; QRect ir = toolbutton->rect.adjusted(1, 1, -1, -1); QStyleOptionToolButton newBtn = *toolbutton; newBtn.palette = panelPalette(option->palette); newBtn.rect = QRect(ir.right() - arrowSize - 1, ir.height() - arrowSize - 2, arrowSize, arrowSize); drawPrimitive(PE_IndicatorArrowDown, &newBtn, painter, widget); } } break; case CC_ComboBox: if (const QStyleOptionComboBox *cb = qstyleoption_cast<const QStyleOptionComboBox *>(option)) { painter->save(); bool isEmpty = cb->currentText.isEmpty() && cb->currentIcon.isNull(); bool reverse = option->direction == Qt::RightToLeft; bool drawborder = !(widget && widget->property("hideborder").toBool()); bool drawleftborder = (widget && widget->property("drawleftborder").toBool()); bool alignarrow = !(widget && widget->property("alignarrow").toBool()); if (drawborder) { drawButtonSeparator(painter, rect, reverse); if (drawleftborder) drawButtonSeparator(painter, rect.adjusted(0, 0, -rect.width() + 2, 0), reverse); } QStyleOption toolbutton = *option; if (isEmpty) toolbutton.state &= ~(State_Enabled | State_Sunken); painter->save(); if (drawborder) { int leftClipAdjust = 0; if (drawleftborder) leftClipAdjust = 2; painter->setClipRect(toolbutton.rect.adjusted(leftClipAdjust, 0, -2, 0)); } drawPrimitive(PE_PanelButtonTool, &toolbutton, painter, widget); painter->restore(); // Draw arrow int menuButtonWidth = 12; int left = !reverse ? rect.right() - menuButtonWidth : rect.left(); int right = !reverse ? rect.right() : rect.left() + menuButtonWidth; QRect arrowRect((left + right) / 2 + (reverse ? 6 : -6), rect.center().y() - 3, 9, 9); if (!alignarrow) { int labelwidth = option->fontMetrics.width(cb->currentText); if (reverse) arrowRect.moveLeft(qMax(rect.width() - labelwidth - menuButtonWidth - 2, 4)); else arrowRect.moveLeft(qMin(labelwidth + menuButtonWidth - 2, rect.width() - menuButtonWidth - 4)); } if (option->state & State_On) arrowRect.translate(QProxyStyle::pixelMetric(PM_ButtonShiftHorizontal, option, widget), QProxyStyle::pixelMetric(PM_ButtonShiftVertical, option, widget)); QStyleOption arrowOpt = *option; arrowOpt.rect = arrowRect; if (isEmpty) arrowOpt.state &= ~(State_Enabled | State_Sunken); if (styleHint(SH_ComboBox_Popup, option, widget)) { arrowOpt.rect.translate(0, -3); drawPrimitive(PE_IndicatorArrowUp, &arrowOpt, painter, widget); arrowOpt.rect.translate(0, 6); drawPrimitive(PE_IndicatorArrowDown, &arrowOpt, painter, widget); } else { drawPrimitive(PE_IndicatorArrowDown, &arrowOpt, painter, widget); } painter->restore(); } break; default: QProxyStyle::drawComplexControl(control, option, painter, widget); break; } } void ManhattanStyle::drawButtonSeparator(QPainter *painter, const QRect &rect, bool reverse) const { QLinearGradient grad(rect.topRight(), rect.bottomRight()); grad.setColorAt(0, QColor(255, 255, 255, 20)); grad.setColorAt(0.4, QColor(255, 255, 255, 60)); grad.setColorAt(0.7, QColor(255, 255, 255, 50)); grad.setColorAt(1, QColor(255, 255, 255, 40)); painter->setPen(QPen(grad, 0)); painter->drawLine(rect.topRight(), rect.bottomRight()); grad.setColorAt(0, QColor(0, 0, 0, 30)); grad.setColorAt(0.4, QColor(0, 0, 0, 70)); grad.setColorAt(0.7, QColor(0, 0, 0, 70)); grad.setColorAt(1, QColor(0, 0, 0, 40)); painter->setPen(QPen(grad, 0)); if (!reverse) painter->drawLine(rect.topRight() - QPoint(1,0), rect.bottomRight() - QPoint(1,0)); else painter->drawLine(rect.topLeft(), rect.bottomLeft()); } } // namespace Core
48b531163f76b5e92064bd82532a1a191bbf27f9
2dd86497f804773a5de778c6efc342d86ad81cb8
/00-common/include/cbbext/container/xdeque.h
abfb4ffef3fb9206ef3d914be32ee4df9924e0d1
[]
no_license
px41833/wangjin
071e2efe94c233c0317caf6daee77debde6e791d
5c400d7605ae6060f2367bfa14bbc02d007c5802
refs/heads/master
2020-06-16T01:05:03.522914
2018-02-06T08:43:28
2018-02-06T08:43:28
null
0
0
null
null
null
null
GB18030
C++
false
false
4,558
h
/*======================================================================================== 模块名 :双向队列容器 文件名 :xdeque.h 相关文件 : 实现功能 :实现双向队列的摸板 作者 :fanxg 版权 :<Copyright(C) 2003-2008 Suzhou Keda Technology Co., Ltd. All rights reserved.> ------------------------------------------------------------------------------------------- 修改记录: 日期 版本 修改人 走读人 修改记录 2010/06/08 V1.0 fanxg 新建文件 =========================================================================================*/ #ifndef _XDEQUE_INCLUDED_ #define _XDEQUE_INCLUDED_ #ifndef assert #define assert #endif template<class T> class CXDeque { private: struct CLink { CLink* pNext; CLink* pPrev; T data; CLink() :pNext(0), pPrev(0) {} }; public: CXDeque(u32 nCapacity = 1) { m_nSize = 0; m_nCapacity = 0; m_pNodeHead = m_pNodeTail = m_pNodeFree = 0; CreateFreeList(nCapacity); } ~CXDeque() { Empty(); } public: CXDeque(const CXDeque& cOther) { Copy(cOther); } CXDeque& operator=(const CXDeque& cOther) { if (this != &cOther) { Empty(); Copy(cOther); } return *this; } public: BOOL32 PushBack(const T& rNewElem) { CLink* pNewNode = CreateNode(0, m_pNodeHead); if (pNewNode == 0) return false; pNewNode->data = rNewElem; if (m_pNodeHead != 0) { m_pNodeHead->pPrev = pNewNode; } else { m_pNodeTail = pNewNode; m_pNodeTail->pNext = 0; } m_pNodeHead = pNewNode; m_pNodeHead->pPrev = 0; return true; } BOOL32 PushFront(const T& rNewElem) { CLink* pNewNode = CreateNode(m_pNodeTail, 0); if (pNewNode == 0) return false; pNewNode->data = rNewElem; if (m_pNodeTail != 0) { m_pNodeTail->pNext = pNewNode; } else { m_pNodeHead = pNewNode; m_pNodeHead->pPrev = 0; } m_pNodeTail = pNewNode; m_pNodeTail->pNext = 0; return true; } BOOL32 PopBack(T& rElem) { if (m_pNodeHead == 0) return false; rElem = m_pNodeHead->data; CLink* pOldNode = m_pNodeHead; m_pNodeHead = (m_pNodeHead == m_pNodeTail) ? 0 : pOldNode->pNext; if (m_pNodeHead != 0) m_pNodeHead->pPrev = 0; else m_pNodeTail = 0; FreeNode(pOldNode); return true; } BOOL32 PopFront(T& rElem) { if (m_pNodeTail == 0) return false; rElem = m_pNodeTail->data; CLink* pOldNode = m_pNodeTail; m_pNodeTail = (m_pNodeHead == m_pNodeTail) ? 0 : pOldNode->pPrev; if (m_pNodeTail != 0) m_pNodeTail->pNext = 0; else m_pNodeHead = 0; FreeNode(pOldNode); return true; } u32 GetSize() const { return m_nSize; } void Empty() { DestroyNodeList(m_pNodeHead); DestroyNodeList(m_pNodeFree); m_pNodeHead = m_pNodeTail = m_pNodeFree = 0; m_nSize = 0; m_nCapacity = 0; } BOOL32 IsEmpty() const { return (m_nSize == 0); } private: BOOL32 CreateFreeList(u32 nSize) { if (m_pNodeFree == 0) { if (nSize == 0) nSize = 1; for(u32 i=0; i<nSize; i++) { CLink* pFreeNode = new CLink; if (pFreeNode == 0) { DestroyNodeList(m_pNodeFree); m_pNodeFree = 0; return false; } pFreeNode->pNext = m_pNodeFree; m_pNodeFree = pFreeNode; m_nCapacity++; } } return true; } void DestroyNodeList(CLink* pNode) { if (pNode == 0) return; CLink* pCurr = pNode; CLink* pNext = pNode->pNext; while(pCurr != 0) { pNext = pCurr->pNext; delete pCurr; pCurr = pNext; m_nCapacity--; } } CLink* CreateNode(CLink* pPrev, CLink* pNext) { if (m_pNodeFree == 0 && !CreateFreeList(m_nCapacity)) { return 0; } CLink* pNode = m_pNodeFree; m_pNodeFree = m_pNodeFree->pNext; pNode->pPrev = pPrev; pNode->pNext = pNext; m_nSize++; return pNode; } void FreeNode(CLink* pNode) { if (pNode != 0) { pNode->data = T(); pNode->pNext = m_pNodeFree; m_pNodeFree = pNode; m_nSize--; } } void Copy(const CXDeque& cOther) { u32 nCapacity = cOther.m_nCapacity; if (nCapacity <= 0) return; m_nSize = 0; m_nCapacity = 0; m_pNodeHead = m_pNodeTail = m_pNodeFree = 0; CreateFreeList(nCapacity); CLink* pTail = cOther.m_pNodeTail; if (pTail == 0) return; CLink* pCurr = pTail; while(pCurr != 0) { PushBack(pCurr->data); pCurr = pCurr->pPrev; } } private: CLink* m_pNodeHead; CLink* m_pNodeTail; u32 m_nSize; CLink* m_pNodeFree; u32 m_nCapacity; }; #endif //#ifndef _XDEQUE_INCLUDED_
07ee9f927f71ae287f629d1715e475c2485ecfda
c11901871cca4668986d8300b7e1b66324c9e319
/src/Server/Components/Bomb.cpp
10b14ddea41570a55f899f0ccf5baacd8fa6a7e8
[ "MIT" ]
permissive
AdrianHoarau/R-Type
31c9d0221423890876107a80c4cab11167862f9a
b91184d656ffcec39b0a43e7a42c1a1ecd236c9b
refs/heads/main
2023-06-02T09:30:15.702114
2021-06-21T12:59:23
2021-06-21T12:59:23
378,920,323
1
0
null
null
null
null
UTF-8
C++
false
false
158
cpp
/* ** EPITECH PROJECT, 2020 ** B-CPP-501-NAN-5-1-rtype-arthur.bertaud ** File description: ** Bomb.cpp */ #include "Bomb.hpp" ECS::Bomb::Bomb() : _dt(0) { }
649c80da3ef015323ae40eaf8d2536e88c294e32
18235c9cd03db2879f9158e462e1fcbadf936c6d
/src/core/SkColorSpaceXformer.cpp
09f399cfa5eda72d31d83f2012f903fb9bc33a98
[ "BSD-3-Clause", "SGI-B-2.0" ]
permissive
LineageOS/android_external_skia
1ffccc50c8c65acdc91a420aa55ef38e752576a5
e519a019ae513c4cf640e2122c66224f569f79cb
refs/heads/lineage-17.1
2022-10-23T10:17:35.983361
2021-09-09T12:44:51
2021-09-09T12:44:51
75,638,325
1
62
BSD-3-Clause
2022-10-02T20:13:32
2016-12-05T15:29:07
C++
UTF-8
C++
false
false
6,274
cpp
/* * Copyright 2017 Google Inc. * * Use of this source code is governed by a BSD-style license that can be * found in the LICENSE file. */ #include "SkColorFilter.h" #include "SkColorSpacePriv.h" #include "SkColorSpaceXformer.h" #include "SkDrawLooper.h" #include "SkGradientShader.h" #include "SkImage.h" #include "SkImage_Base.h" #include "SkImageFilter.h" #include "SkImagePriv.h" #include "SkShaderBase.h" SkColorSpaceXformer::SkColorSpaceXformer(sk_sp<SkColorSpace> dst) : fDst(std::move(dst)) , fFromSRGBSteps(sk_srgb_singleton(), kUnpremul_SkAlphaType, fDst.get() , kUnpremul_SkAlphaType) , fReentryCount(0) { SkRasterPipeline p(&fAlloc); p.append(SkRasterPipeline::load_8888, &fFromSRGBSrc); p.append(SkRasterPipeline::swap_rb); fFromSRGBSteps.apply(&p, kBGRA_8888_SkColorType); p.append(SkRasterPipeline::swap_rb); p.append(SkRasterPipeline::store_8888, &fFromSRGBDst); fFromSRGB = p.compile(); } SkColorSpaceXformer::~SkColorSpaceXformer() {} std::unique_ptr<SkColorSpaceXformer> SkColorSpaceXformer::Make(sk_sp<SkColorSpace> dst) { return std::unique_ptr<SkColorSpaceXformer>(new SkColorSpaceXformer{std::move(dst)}); } // So what's up with these caches? // // We want to cache transformed objects for a couple of reasons: // // 1) to avoid redundant work - the inputs are a DAG, not a tree (e.g. same SkImage drawn multiple // times in a SkPicture), so if we blindly recurse we could end up transforming the same objects // repeatedly. // // 2) to avoid topology changes - we want the output to remain isomorphic with the input -- this is // particularly important for image filters (to maintain their original DAG structure in order // to not defeat their own/internal caching), but also for avoiding unnecessary cloning // (e.g. duplicated SkImages allocated for the example in #1 above). // // The caching scope is naturaly bound by the lifetime of the SkColorSpaceXformer object, but // clients may choose to not discard xformers immediately - in which case, caching indefinitely // is problematic. The solution is to limit the cache scope to the top level apply() call // (i.e. we only keep cached objects alive while transforming). class SkColorSpaceXformer::AutoCachePurge { public: AutoCachePurge(SkColorSpaceXformer* xformer) : fXformer(xformer) { fXformer->fReentryCount++; } ~AutoCachePurge() { SkASSERT(fXformer->fReentryCount > 0); if (--fXformer->fReentryCount == 0) { fXformer->purgeCaches(); } } private: SkColorSpaceXformer* fXformer; }; template <typename T> sk_sp<T> SkColorSpaceXformer::cachedApply(const T* src, Cache<T>* cache, sk_sp<T> (*applyFunc)(const T*, SkColorSpaceXformer*)) { if (!src) { return nullptr; } auto key = sk_ref_sp(const_cast<T*>(src)); if (auto* xformed = cache->find(key)) { return sk_ref_sp(xformed->get()); } auto xformed = applyFunc(src, this); cache->set(std::move(key), xformed); return xformed; } void SkColorSpaceXformer::purgeCaches() { fImageCache.reset(); fColorFilterCache.reset(); fImageFilterCache.reset(); } sk_sp<SkImage> SkColorSpaceXformer::apply(const SkImage* src) { const AutoCachePurge autoPurge(this); return this->cachedApply<SkImage>(src, &fImageCache, [](const SkImage* img, SkColorSpaceXformer* xformer) { return img->makeColorSpace(xformer->fDst); }); } sk_sp<SkImage> SkColorSpaceXformer::apply(const SkBitmap& src) { const AutoCachePurge autoPurge(this); sk_sp<SkImage> image = SkMakeImageFromRasterBitmap(src, kNever_SkCopyPixelsMode); if (!image) { return nullptr; } sk_sp<SkImage> xformed = image->makeColorSpace(fDst); // We want to be sure we don't let the kNever_SkCopyPixelsMode image escape this stack frame. SkASSERT(xformed != image); return xformed; } sk_sp<SkColorFilter> SkColorSpaceXformer::apply(const SkColorFilter* colorFilter) { const AutoCachePurge autoPurge(this); return this->cachedApply<SkColorFilter>(colorFilter, &fColorFilterCache, [](const SkColorFilter* f, SkColorSpaceXformer* xformer) { return f->makeColorSpace(xformer); }); } sk_sp<SkImageFilter> SkColorSpaceXformer::apply(const SkImageFilter* imageFilter) { const AutoCachePurge autoPurge(this); return this->cachedApply<SkImageFilter>(imageFilter, &fImageFilterCache, [](const SkImageFilter* f, SkColorSpaceXformer* xformer) { return f->makeColorSpace(xformer); }); } sk_sp<SkShader> SkColorSpaceXformer::apply(const SkShader* shader) { const AutoCachePurge autoPurge(this); return as_SB(shader)->makeColorSpace(this); } void SkColorSpaceXformer::apply(SkColor* xformed, const SkColor* srgb, int n) { fFromSRGBSrc.pixels = const_cast<SkColor*>(srgb); fFromSRGBDst.pixels = xformed; fFromSRGB(0,0,n,1); } SkColor SkColorSpaceXformer::apply(SkColor srgb) { SkColor xformed; this->apply(&xformed, &srgb, 1); return xformed; } SkPaint SkColorSpaceXformer::apply(const SkPaint& src) { const AutoCachePurge autoPurge(this); SkPaint dst = src; // All SkColorSpaces have the same black point. if (src.getColor() & 0xffffff) { dst.setColor(this->apply(src.getColor())); } if (auto shader = src.getShader()) { dst.setShader(this->apply(shader)); } if (auto cf = src.getColorFilter()) { dst.setColorFilter(this->apply(cf)); } if (auto looper = src.getDrawLooper()) { dst.setDrawLooper(looper->makeColorSpace(this)); } if (auto imageFilter = src.getImageFilter()) { dst.setImageFilter(this->apply(imageFilter)); } return dst; } SkCanvas::Lattice SkColorSpaceXformer::apply(const SkCanvas::Lattice& lattice, SkColor* colorBuffer, int count) { if (count) { this->apply(colorBuffer, lattice.fColors, count); return {lattice.fXDivs, lattice.fYDivs, lattice.fRectTypes, lattice.fXCount, lattice.fYCount, lattice.fBounds, colorBuffer}; } return lattice; }
3c6ed43bf8b94d92d2d820105a154432fc052842
6ac670a7a328de3879ee42f14d43f916eb096087
/Codeforces/April_Fool_2020/C.cpp
c25fea57bd55238eabc50f106830b1af225b027a
[]
no_license
tiketiskte/MyCode
172765c6049c8a6c4ac1374f7433cb87baa510a9
5dc927dc4015c5a162e18b0a513776b7f213b962
refs/heads/master
2022-07-05T06:03:00.344101
2022-06-04T07:22:39
2022-06-04T07:22:39
245,660,475
0
0
null
null
null
null
UTF-8
C++
false
false
819
cpp
/** * Copyright(c) * Author : tiketiskte */ #include <bits/stdc++.h> #define IOS {ios::sync_with_stdio(false);cin.tie(0);} #define INF 0x3f3f3f3f using namespace std; int main() { IOS int ans = 0, x = 0, i = 0; int a, arr[6]; memset(arr, 0, sizeof(arr)); cin >> a; while (a > 0) { arr[i] = a % 2; i++; a /= 2; /* code */ } /* cout << "###1:" << endl; for(int i = 0; i < 6; i++){ cout << arr[i] << " "; } */ cout << endl; swap(arr[0], arr[4]); swap(arr[2], arr[3]); /* cout << "###2:" << endl; */ for(int i = 0; i < 6;){ if(arr[i] == 1){ x = pow(2, i); ans += x; i++; } else{ ans += 0; i++; } } cout << ans << endl; //system("pause"); return 0; }
d49f78b1b4ce822ca3bfe643e8d4d4c123722db0
7205d8e38098ab0d5518172670b0fc7976bb4102
/src/Temperature.cpp
0a0ad3da0abd38069daea59f73227cc218c56c53
[]
no_license
Swesen/Fridge-TEC-controller
4e36e21ecd8d264c0a8ff0d55256f8b93119ac3a
0d2a7b1e8963f2fa088b93b465a67b8836c46c35
refs/heads/master
2023-03-27T09:36:53.425536
2020-10-10T14:19:08
2020-10-10T14:19:08
302,712,242
0
0
null
null
null
null
UTF-8
C++
false
false
2,357
cpp
#include <Arduino.h> #include <PID_v1.h> #include "Defines.h" #include "Temperature.h" // internal variables int tempCurrentVal = 0; int samples[NUMSAMPLES] = {512, 512, 512, 512, 512}; // external variables extern float temp, setTemp; //PID parameters double Setpoint, Input, Output; double Kp = 1.5, Ki = 5, Kd = 1; PID myPID(&Input, &Output, &Setpoint, Kp, Ki, Kd, DIRECT); void getTemp() { // tage a new reading and add to samples samples[tempCurrentVal] = analogRead(TEMPPIN); if (tempCurrentVal >= 4) { tempCurrentVal = 0; } else { tempCurrentVal++; } // average all the samples out float average = 0; for (int i = 0; i < NUMSAMPLES; i++) { average += samples[i]; } average /= NUMSAMPLES; // convert the value to resistance average = 1023 / average - 1; average = TEMPRESISTOR / average; // Copied code from https://arduinodiy.wordpress.com/2015/11/10/measuring-temperature-with-ntc-the-steinhart-hart-formula/ float steinhart; steinhart = average / THERMISTORNOMINAL; // (R/Ro) steinhart = log(steinhart); // ln(R/Ro) steinhart /= BCOEFFICIENT; // 1/B * ln(R/Ro) steinhart += 1.0 / (TEMPERATURENOMINAL + 273.15); // + (1/To) steinhart = 1.0 / steinhart; // Invert steinhart -= 273.15; temp = steinhart + OFFSETTEMP;; } void mosPWMSetup() { // The timer configuration was complex so I found this code snippet on some forum // Configure Timer 1 for PWM @ 25 kHz. TCCR1A = 0; // undo the configuration done by... TCCR1B = 0; // ...the Arduino core library TCNT1 = 0; // reset timer TCCR1A = _BV(COM1A1) // non-inverted PWM on ch. A | _BV(COM1B1) // same on ch; B | _BV(WGM11); // mode 10: ph. correct PWM, TOP = ICR1 TCCR1B = _BV(WGM13) // ditto | _BV(CS10); // prescaler = 1 ICR1 = 320; // TOP = 320 OCR1A = 320; //turn the PID on myPID.SetMode(AUTOMATIC); myPID.SetOutputLimits(0, 320); myPID.SetControllerDirection(REVERSE); } void mosPWMUpdate() { //Specify the links and initial tuning parameters Setpoint = setTemp, Input = temp; myPID.Compute(); OCR1A = Output; }
96ab32ec2e99b7671079dead8c3ff111d138ceb0
41ab6b8bbeb03958c59350ae6da2887a4bf8e144
/third_party/v8/src/compiler/mips/instruction-codes-mips.h
4b49de36b43e419cd05d5692551c6697db00c739
[ "Apache-2.0", "SunPro", "BSD-3-Clause", "bzip2-1.0.6" ]
permissive
ofrobots/no-bazel
6472b0bb1b3309d8613ee97c6526a3fa46060eab
f7eb147044dc35aac86df8bd9bec2cc55863ce17
refs/heads/master
2020-04-07T14:21:40.305137
2018-12-08T00:53:07
2018-12-08T00:53:07
158,443,929
4
0
Apache-2.0
2018-12-13T01:54:59
2018-11-20T19:56:42
C++
UTF-8
C++
false
false
11,441
h
// Copyright 2014 the V8 project authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifndef V8_COMPILER_MIPS_INSTRUCTION_CODES_MIPS_H_ #define V8_COMPILER_MIPS_INSTRUCTION_CODES_MIPS_H_ namespace v8 { namespace internal { namespace compiler { // MIPS-specific opcodes that specify which assembly sequence to emit. // Most opcodes specify a single instruction. #define TARGET_ARCH_OPCODE_LIST(V) \ V(MipsAdd) \ V(MipsAddOvf) \ V(MipsSub) \ V(MipsSubOvf) \ V(MipsMul) \ V(MipsMulOvf) \ V(MipsMulHigh) \ V(MipsMulHighU) \ V(MipsDiv) \ V(MipsDivU) \ V(MipsMod) \ V(MipsModU) \ V(MipsAnd) \ V(MipsOr) \ V(MipsNor) \ V(MipsXor) \ V(MipsClz) \ V(MipsCtz) \ V(MipsPopcnt) \ V(MipsLsa) \ V(MipsShl) \ V(MipsShr) \ V(MipsSar) \ V(MipsShlPair) \ V(MipsShrPair) \ V(MipsSarPair) \ V(MipsExt) \ V(MipsIns) \ V(MipsRor) \ V(MipsMov) \ V(MipsTst) \ V(MipsCmp) \ V(MipsCmpS) \ V(MipsAddS) \ V(MipsSubS) \ V(MipsMulS) \ V(MipsDivS) \ V(MipsModS) \ V(MipsAbsS) \ V(MipsSqrtS) \ V(MipsMaxS) \ V(MipsMinS) \ V(MipsCmpD) \ V(MipsAddD) \ V(MipsSubD) \ V(MipsMulD) \ V(MipsDivD) \ V(MipsModD) \ V(MipsAbsD) \ V(MipsSqrtD) \ V(MipsMaxD) \ V(MipsMinD) \ V(MipsNegS) \ V(MipsNegD) \ V(MipsAddPair) \ V(MipsSubPair) \ V(MipsMulPair) \ V(MipsMaddS) \ V(MipsMaddD) \ V(MipsMsubS) \ V(MipsMsubD) \ V(MipsFloat32RoundDown) \ V(MipsFloat32RoundTruncate) \ V(MipsFloat32RoundUp) \ V(MipsFloat32RoundTiesEven) \ V(MipsFloat64RoundDown) \ V(MipsFloat64RoundTruncate) \ V(MipsFloat64RoundUp) \ V(MipsFloat64RoundTiesEven) \ V(MipsCvtSD) \ V(MipsCvtDS) \ V(MipsTruncWD) \ V(MipsRoundWD) \ V(MipsFloorWD) \ V(MipsCeilWD) \ V(MipsTruncWS) \ V(MipsRoundWS) \ V(MipsFloorWS) \ V(MipsCeilWS) \ V(MipsTruncUwD) \ V(MipsTruncUwS) \ V(MipsCvtDW) \ V(MipsCvtDUw) \ V(MipsCvtSW) \ V(MipsCvtSUw) \ V(MipsLb) \ V(MipsLbu) \ V(MipsSb) \ V(MipsLh) \ V(MipsUlh) \ V(MipsLhu) \ V(MipsUlhu) \ V(MipsSh) \ V(MipsUsh) \ V(MipsLw) \ V(MipsUlw) \ V(MipsSw) \ V(MipsUsw) \ V(MipsLwc1) \ V(MipsUlwc1) \ V(MipsSwc1) \ V(MipsUswc1) \ V(MipsLdc1) \ V(MipsUldc1) \ V(MipsSdc1) \ V(MipsUsdc1) \ V(MipsFloat64ExtractLowWord32) \ V(MipsFloat64ExtractHighWord32) \ V(MipsFloat64InsertLowWord32) \ V(MipsFloat64InsertHighWord32) \ V(MipsFloat64SilenceNaN) \ V(MipsFloat32Max) \ V(MipsFloat64Max) \ V(MipsFloat32Min) \ V(MipsFloat64Min) \ V(MipsPush) \ V(MipsPeek) \ V(MipsStoreToStackSlot) \ V(MipsByteSwap32) \ V(MipsStackClaim) \ V(MipsSeb) \ V(MipsSeh) \ V(MipsS128Zero) \ V(MipsI32x4Splat) \ V(MipsI32x4ExtractLane) \ V(MipsI32x4ReplaceLane) \ V(MipsI32x4Add) \ V(MipsI32x4AddHoriz) \ V(MipsI32x4Sub) \ V(MipsF32x4Splat) \ V(MipsF32x4ExtractLane) \ V(MipsF32x4ReplaceLane) \ V(MipsF32x4SConvertI32x4) \ V(MipsF32x4UConvertI32x4) \ V(MipsI32x4Mul) \ V(MipsI32x4MaxS) \ V(MipsI32x4MinS) \ V(MipsI32x4Eq) \ V(MipsI32x4Ne) \ V(MipsI32x4Shl) \ V(MipsI32x4ShrS) \ V(MipsI32x4ShrU) \ V(MipsI32x4MaxU) \ V(MipsI32x4MinU) \ V(MipsF32x4Abs) \ V(MipsF32x4Neg) \ V(MipsF32x4RecipApprox) \ V(MipsF32x4RecipSqrtApprox) \ V(MipsF32x4Add) \ V(MipsF32x4AddHoriz) \ V(MipsF32x4Sub) \ V(MipsF32x4Mul) \ V(MipsF32x4Max) \ V(MipsF32x4Min) \ V(MipsF32x4Eq) \ V(MipsF32x4Ne) \ V(MipsF32x4Lt) \ V(MipsF32x4Le) \ V(MipsI32x4SConvertF32x4) \ V(MipsI32x4UConvertF32x4) \ V(MipsI32x4Neg) \ V(MipsI32x4GtS) \ V(MipsI32x4GeS) \ V(MipsI32x4GtU) \ V(MipsI32x4GeU) \ V(MipsI16x8Splat) \ V(MipsI16x8ExtractLane) \ V(MipsI16x8ReplaceLane) \ V(MipsI16x8Neg) \ V(MipsI16x8Shl) \ V(MipsI16x8ShrS) \ V(MipsI16x8ShrU) \ V(MipsI16x8Add) \ V(MipsI16x8AddSaturateS) \ V(MipsI16x8AddHoriz) \ V(MipsI16x8Sub) \ V(MipsI16x8SubSaturateS) \ V(MipsI16x8Mul) \ V(MipsI16x8MaxS) \ V(MipsI16x8MinS) \ V(MipsI16x8Eq) \ V(MipsI16x8Ne) \ V(MipsI16x8GtS) \ V(MipsI16x8GeS) \ V(MipsI16x8AddSaturateU) \ V(MipsI16x8SubSaturateU) \ V(MipsI16x8MaxU) \ V(MipsI16x8MinU) \ V(MipsI16x8GtU) \ V(MipsI16x8GeU) \ V(MipsI8x16Splat) \ V(MipsI8x16ExtractLane) \ V(MipsI8x16ReplaceLane) \ V(MipsI8x16Neg) \ V(MipsI8x16Shl) \ V(MipsI8x16ShrS) \ V(MipsI8x16Add) \ V(MipsI8x16AddSaturateS) \ V(MipsI8x16Sub) \ V(MipsI8x16SubSaturateS) \ V(MipsI8x16Mul) \ V(MipsI8x16MaxS) \ V(MipsI8x16MinS) \ V(MipsI8x16Eq) \ V(MipsI8x16Ne) \ V(MipsI8x16GtS) \ V(MipsI8x16GeS) \ V(MipsI8x16ShrU) \ V(MipsI8x16AddSaturateU) \ V(MipsI8x16SubSaturateU) \ V(MipsI8x16MaxU) \ V(MipsI8x16MinU) \ V(MipsI8x16GtU) \ V(MipsI8x16GeU) \ V(MipsS128And) \ V(MipsS128Or) \ V(MipsS128Xor) \ V(MipsS128Not) \ V(MipsS128Select) \ V(MipsS1x4AnyTrue) \ V(MipsS1x4AllTrue) \ V(MipsS1x8AnyTrue) \ V(MipsS1x8AllTrue) \ V(MipsS1x16AnyTrue) \ V(MipsS1x16AllTrue) \ V(MipsS32x4InterleaveRight) \ V(MipsS32x4InterleaveLeft) \ V(MipsS32x4PackEven) \ V(MipsS32x4PackOdd) \ V(MipsS32x4InterleaveEven) \ V(MipsS32x4InterleaveOdd) \ V(MipsS32x4Shuffle) \ V(MipsS16x8InterleaveRight) \ V(MipsS16x8InterleaveLeft) \ V(MipsS16x8PackEven) \ V(MipsS16x8PackOdd) \ V(MipsS16x8InterleaveEven) \ V(MipsS16x8InterleaveOdd) \ V(MipsS16x4Reverse) \ V(MipsS16x2Reverse) \ V(MipsS8x16InterleaveRight) \ V(MipsS8x16InterleaveLeft) \ V(MipsS8x16PackEven) \ V(MipsS8x16PackOdd) \ V(MipsS8x16InterleaveEven) \ V(MipsS8x16InterleaveOdd) \ V(MipsS8x16Shuffle) \ V(MipsS8x16Concat) \ V(MipsS8x8Reverse) \ V(MipsS8x4Reverse) \ V(MipsS8x2Reverse) \ V(MipsMsaLd) \ V(MipsMsaSt) \ V(MipsI32x4SConvertI16x8Low) \ V(MipsI32x4SConvertI16x8High) \ V(MipsI32x4UConvertI16x8Low) \ V(MipsI32x4UConvertI16x8High) \ V(MipsI16x8SConvertI8x16Low) \ V(MipsI16x8SConvertI8x16High) \ V(MipsI16x8SConvertI32x4) \ V(MipsI16x8UConvertI32x4) \ V(MipsI16x8UConvertI8x16Low) \ V(MipsI16x8UConvertI8x16High) \ V(MipsI8x16SConvertI16x8) \ V(MipsI8x16UConvertI16x8) \ V(MipsWord32AtomicPairLoad) \ V(MipsWord32AtomicPairStore) \ V(MipsWord32AtomicPairAdd) \ V(MipsWord32AtomicPairSub) \ V(MipsWord32AtomicPairAnd) \ V(MipsWord32AtomicPairOr) \ V(MipsWord32AtomicPairXor) \ V(MipsWord32AtomicPairExchange) \ V(MipsWord32AtomicPairCompareExchange) // Addressing modes represent the "shape" of inputs to an instruction. // Many instructions support multiple addressing modes. Addressing modes // are encoded into the InstructionCode of the instruction and tell the // code generator after register allocation which assembler method to call. // // We use the following local notation for addressing modes: // // R = register // O = register or stack slot // D = double register // I = immediate (handle, external, int32) // MRI = [register + immediate] // MRR = [register + register] // TODO(plind): Add the new r6 address modes. #define TARGET_ADDRESSING_MODE_LIST(V) \ V(MRI) /* [%r0 + K] */ \ V(MRR) /* [%r0 + %r1] */ } // namespace compiler } // namespace internal } // namespace v8 #endif // V8_COMPILER_MIPS_INSTRUCTION_CODES_MIPS_H_
af353ffb1f636e88db5783b2e6c1c391602a4a1c
492976adfdf031252c85de91a185bfd625738a0c
/src/Game/AI/AI/aiGuardianBeamAttack.cpp
7f608b3203e0b5ffa03dbe89c56e1823fc623aa2
[]
no_license
zeldaret/botw
50ccb72c6d3969c0b067168f6f9124665a7f7590
fd527f92164b8efdb746cffcf23c4f033fbffa76
refs/heads/master
2023-07-21T13:12:24.107437
2023-07-01T20:29:40
2023-07-01T20:29:40
288,736,599
1,350
117
null
2023-09-03T14:45:38
2020-08-19T13:16:30
C++
UTF-8
C++
false
false
897
cpp
#include "Game/AI/AI/aiGuardianBeamAttack.h" namespace uking::ai { GuardianBeamAttack::GuardianBeamAttack(const InitArg& arg) : GuardianBeamAttackBase(arg) {} GuardianBeamAttack::~GuardianBeamAttack() = default; bool GuardianBeamAttack::init_(sead::Heap* heap) { return GuardianBeamAttackBase::init_(heap); } void GuardianBeamAttack::enter_(ksys::act::ai::InlineParamPack* params) { GuardianBeamAttackBase::enter_(params); } void GuardianBeamAttack::leave_() { GuardianBeamAttackBase::leave_(); } void GuardianBeamAttack::loadParams_() { GuardianBeamAttackBase::loadParams_(); getStaticParam(&mLightRadius_s, "LightRadius"); getStaticParam(&mLightLength_s, "LightLength"); getStaticParam(&mLightLengthOffset_s, "LightLengthOffset"); getStaticParam(&mEarSpeed_s, "EarSpeed"); getStaticParam(&mAdjustRadius_s, "AdjustRadius"); } } // namespace uking::ai
704494be3b34e2192ab7d154633f8c87def0cfa8
6a4bb1498d9cb21d9ef4b3cb0b325c7013cf3a13
/src/graphics/program.cpp
4047889fde7968a5365d20ed2f52a557dc79be9d
[]
no_license
argontus/3S3K3D
663fea3b79a152d2ca26cd05242d931cbe9c402f
6d5fb09546e7f70d038e8cf89ff102088c03258a
refs/heads/master
2021-01-01T16:56:10.674766
2011-04-21T14:37:38
2011-04-21T14:37:38
1,295,720
0
0
null
null
null
null
UTF-8
C++
false
false
2,524
cpp
/** * @file graphics/program.cpp * @author Mika Haarahiltunen */ #include <graphics/program.h> #include <vector> #include <graphics/fragmentshader.h> #include <graphics/opengl.h> #include <graphics/vertexshader.h> Program::~Program() { // this will automatically detach any attached shader objects glDeleteProgram(id_); } Program::Program() : id_(glCreateProgram()), vertexShader_(0), fragmentShader_(0) { // ... } uint32_t Program::id() const { return id_; } void Program::setVertexShader(VertexShader* const p) { vertexShader_ = p; } VertexShader* Program::vertexShader() const { return vertexShader_; } void Program::setFragmentShader(FragmentShader* const p) { fragmentShader_ = p; } FragmentShader* Program::fragmentShader() const { return fragmentShader_; } void Program::link() { // synchronize states of the referenced OpenGL program object and this // object detachShaders(); attachShaders(); glLinkProgram(id_); } bool Program::linkStatus() const { // fetch the link status GLint status = GL_FALSE; glGetProgramiv(id_, GL_LINK_STATUS, &status); return status == GL_TRUE; } void Program::validate() { glValidateProgram(id_); } bool Program::validateStatus() const { // fetch the validation status GLint status = GL_FALSE; glGetProgramiv(id_, GL_VALIDATE_STATUS, &status); return status == GL_TRUE; } const std::string Program::infoLog() const { // fetch the required character buffer size GLint size = 0; glGetProgramiv(id_, GL_INFO_LOG_LENGTH, &size); // fetch the NUL-terminated info log to a character buffer std::vector<GLchar> buffer(size); glGetProgramInfoLog(id_, size, 0, buffer.data()); return std::string(buffer.data()); } void Program::attachShaders() { if (vertexShader() != 0) { // attach registered vertex shader glAttachShader(id_, vertexShader_->id()); } if (fragmentShader() != 0) { // attach registered fragment shader glAttachShader(id_, fragmentShader_->id()); } } void Program::detachShaders() { // fetch the required shader id buffer size GLint size = 0; glGetProgramiv(id_, GL_ATTACHED_SHADERS, &size); // fetch the shader ids to a buffer std::vector<GLuint> buffer(size); glGetAttachedShaders(id_, size, 0, buffer.data()); // detach all shader objects for (size_t i = 0; i < buffer.size(); ++i) { glDetachShader(id_, buffer[i]); } }
f9205a8b32f6fa6e4e0f23993a9ae1459b9a8706
9a3b4683bc7ea44fe4c222861066daf5d96a6ff8
/final/include/ui/entity/Text.h
dc0fb3838530d6d3cc6bb3de5d8c152d5c02f7aa
[]
no_license
theo-kim/game-design
fb1b701232173d98c94663a0b768a4387e90e8a5
1d33744b1fa9e955724299cc5d39435d24c9d2b5
refs/heads/master
2020-07-30T11:29:33.585982
2020-01-28T20:24:09
2020-01-28T20:24:09
210,213,203
0
1
null
null
null
null
UTF-8
C++
false
false
424
h
#ifndef TEXT_DEF #include "Entity.h" #include "standard.h" class Text : public Entity { public: Text(const char* fontName, float fontSize, glm::vec3 color, Transformation *transformation, ShaderProgram *sp); virtual void Render() const; virtual void SetText(std::string text); private: std::string contents; glm::vec3 color; float size; TTF_Font *gFont; GLuint textureId; SDL_Surface *surface; }; #endif
db91142f83a938f38f12349bdb8ed0e884fbcc8f
0b289d2804ada728d4622b6523440a95d0b1a348
/projects/piezo/MUSICBOX DUINO/MUSICBOX_DUINO/MUSICBOX_DUINO.ino
b1abb07b8a02b72ec0be9de7072a5d62fb5ed2c9
[]
no_license
mtocchetto/arduino
d8e5176e1aead67b45da196f7178b49561402717
783596253af04be5edad28ba9b72d16939533a50
refs/heads/master
2020-03-30T01:30:26.506986
2018-09-27T22:43:30
2018-09-27T22:43:30
150,579,217
0
0
null
null
null
null
UTF-8
C++
false
false
4,748
ino
/***************************************************\ | MUSICBOX DUINO - Classic game theme | | | | | | NEECduino with ATmega328: | | | | -> 8-ohm speaker from digital pin 10 to ground; | | | | Created on 5 May 2011 by Ricardo Caetano | \***************************************************/ #include "pitches.h" // Indica a duração das notas, ex: colcheia -> tr = 4, ... #define se 6 #define tr 4 #define co 3 // Define a velocidade de reprodução, quanto menor mais rápido... #define SMbpm 150 // As notas... int tonesA[] = {NOTE_E5, NOTE_E5,0,NOTE_E5,0, NOTE_C5, NOTE_E5,0, NOTE_G5,0,0, NOTE_G4,0,0}; int tonesB[] = {NOTE_C5,0,0, NOTE_G4,0,NOTE_E4,0,0,NOTE_A4,0, NOTE_B4,0,NOTE_AS4, NOTE_A4,0,NOTE_G4,NOTE_E5,NOTE_G5,NOTE_A5,0,NOTE_F5,NOTE_G5,0,NOTE_E5,0,NOTE_C5,NOTE_D5,NOTE_B4,0}; int tonesC[] = {NOTE_C3,0,NOTE_G5,NOTE_FS5,NOTE_F5,NOTE_DS5,NOTE_C4,NOTE_E5,NOTE_F3,NOTE_GS4,NOTE_A4,NOTE_C5,NOTE_C4,NOTE_A4,NOTE_C5,NOTE_D5}; int tonesD[] = {NOTE_C3,0,NOTE_G5,NOTE_FS5,NOTE_F5,NOTE_DS5,NOTE_G3,NOTE_E5,0,NOTE_C6,0,NOTE_C6,NOTE_C6,0,NOTE_G3,0}; int tonesE[] = {NOTE_C3,0,NOTE_DS5,0,0,NOTE_D5,0,NOTE_C5,0,0,NOTE_G3,NOTE_G3,0,NOTE_C3,0}; int tonesF[] = {NOTE_C5,NOTE_C5,0,NOTE_C5,0,NOTE_C5,NOTE_D5,0,NOTE_E5,NOTE_C5,0,NOTE_A4,NOTE_G4,0,NOTE_G2,0}; int tonesG[] = {NOTE_C5,NOTE_C5,0,NOTE_C5,0,NOTE_C5,NOTE_D5,NOTE_E5,NOTE_F3,0,0,NOTE_C3,0,NOTE_G2,0}; int tonesH[] = {NOTE_E5,NOTE_E5,0,NOTE_E5,0,NOTE_C5,NOTE_E5,0,NOTE_G5,0,0,NOTE_G4,0,0}; int tonesI[] = {NOTE_E5,NOTE_C5,0,NOTE_G4,NOTE_G3,0,NOTE_GS4,0,NOTE_A4,NOTE_F5,NOTE_F3,NOTE_F5,NOTE_A4,NOTE_C4,NOTE_F3,0}; int tonesJ[] = {NOTE_B4,NOTE_A5,NOTE_A5,NOTE_A5,NOTE_G5,NOTE_F5,NOTE_E5,NOTE_C5,NOTE_G3,NOTE_A4,NOTE_G4,NOTE_C4,NOTE_G3,0}; int tonesK[] = {NOTE_B4,NOTE_F5,0,NOTE_F5,NOTE_F5,NOTE_E5,NOTE_D5,NOTE_C5,NOTE_E4,NOTE_G3,NOTE_E4,NOTE_C4,0,0}; // ... e respectivas durações int durationA[] = {co,co,co,co,co,co,co,co,co,co,se,co,co,se}; int durationB[] = {co,co,co,co,se,co,co,co,co,co,co,co,co,co,co,tr,tr,tr,co,co,co,co,co,co,co,co,co,co,se}; int durationC[] = {co,co,co,co,co,co,co,co,co,co,co,co,co,co,co,co}; int durationD[] = {co,co,co,co,co,co,co,co,co,co,co,co,co,co,co,co}; int durationE[] = {co,co,co,co,co,co,se,co,co,co,co,co,co,co,co}; int durationF[] = {co,co,co,co,co,co,co,co,co,co,co,co,co,co,co,co}; int durationG[] = {co,co,co,co,co,co,co,co,co,co,co,co,se,co,co}; int durationH[] = {co,co,co,co,co,co,co,co,co,co,se,co,co,se}; int durationI[] = {co,co,co,co,co,co,co,co,co,co,co,co,co,co,co,co}; int durationJ[] = {tr,tr,tr,tr,tr,tr,co,co,co,co,co,co,co,co}; int durationK[] = {co,co,co,co,tr,tr,tr,co,co,co,co,co,co,se}; char melody[] = "abbcdcecdcefgfhbbijikijikfgfhijik"; // Número de notas int numberA = 14; int numberB = 29; int numberC = 16; int numberD = 16; int numberE = 15; int numberF = 16; int numberG = 15; int numberH = 14; int numberI = 16; int numberJ = 14; int numberK = 14; int melodynum = 33; // Define o pin para ligar o piezo int piezopin = 11; // Função que recebe uma faixa (notas e durações) e o número de notas void play(int tones[], int duration[], int number, int bpm){ int i; for (i = 0; i < number; i++) { int lenght = bpm*duration[i]; tone(piezopin, tones[i],lenght); // Pausas para que as notas não fiquem coladas umas às outras if(duration[i]==se) delay(bpm/0.5); if(duration[i]==tr) delay(bpm/.75); if(duration[i]==co) delay(bpm); // Pára de tocar a nota noTone(piezopin); } } // Função que recebe uma string que contém as faixas para criar uma música (e o seu tamanho) void playall(char melody[], int num){ int i; for(i=0;i if(melody[i]=='a') play(tonesA, durationA, numberA, SMbpm); if(melody[i]=='b') play(tonesB, durationB, numberB, SMbpm); if(melody[i]=='c') play(tonesC, durationC, numberC, SMbpm); if(melody[i]=='d') play(tonesD, durationD, numberD, SMbpm); if(melody[i]=='e') play(tonesE, durationE, numberE, SMbpm); if(melody[i]=='f') play(tonesF, durationF, numberF, SMbpm); if(melody[i]=='g') play(tonesG, durationG, numberG, SMbpm); if(melody[i]=='h') play(tonesH, durationH, numberH, SMbpm); if(melody[i]=='i') play(tonesI, durationI, numberI, SMbpm); if(melody[i]=='j') play(tonesJ, durationJ, numberJ, SMbpm); if(melody[i]=='k') play(tonesK, durationK, numberK, SMbpm); } } void setup() { playall(melody,melodynum); } void loop() { }
0d2c7637d43a0fcb8020bf76698ffde497f05dfc
63a7ef9bbae1b3d68afb842451b838d4279a4e31
/Release/Source/BattleStage.cpp
446fd76b11549822768b0babcd59a97eea62c629
[]
no_license
LimGuanHui/SP3-part-3
61735a891baf1fa1240d4302fca0edfe95f7e6e1
29b74529c23630cfd3582f1bda57967f3b572248
refs/heads/master
2021-06-02T13:31:03.598095
2016-09-03T08:30:52
2016-09-03T08:30:52
null
0
0
null
null
null
null
UTF-8
C++
false
false
3,003
cpp
#include "BattleStage.h" #include "MeshBuilder.h" #include "LoadTGA.h" BattleStage::BattleStage() { } BattleStage::~BattleStage() { exit(); } void BattleStage::Init(float ortho_x, float ortho_y, float panelsize) { //SceneBase::Init(); //panels //meshList[GEO_B_PANEL] = MeshBuilder::GenerateQuad("bPanel", Color(0, 1, 0), 1.f); //meshList[GEO_B_PANEL]->textureID = LoadTGA("Image//panels//bPanel.tga"); //meshList[GEO_M_PANEL] = MeshBuilder::GenerateQuad("mPanel", Color(0, 1, 0), 1.f); //meshList[GEO_M_PANEL]->textureID = LoadTGA("Image//panels//mPanel.tga"); //meshList[GEO_T_PANEL] = MeshBuilder::GenerateQuad("tPanel", Color(0, 1, 0), 1.f); //meshList[GEO_T_PANEL]->textureID = LoadTGA("Image//panels//tPanel.tga"); panelsize_x = (ortho_x*0.5) * pow(3, -1); panelsize_y = (ortho_y*0.5) * pow(3, -1); float panelscale_x = 1; for (int i = 0; i < 9; i++)//player panel { Panel* NewPanel = new Panel(); NewPanel->Init(i, Vector3(panelsize_x *0.5, panelsize_y *0.5, 0), Vector3(panelsize_x, panelsize_y, 1), panelsize_x, panelsize_y, Panel::PanelType::Normal, Panel::BELONGS_TO::PLAYER); Panel_List.push_back(NewPanel); } float tempx = ortho_x * 0.5; float tempy = ortho_y * 0.5; for (int i = 0; i < 9; i++)//enemy panel { Panel* NewPanel = new Panel(); NewPanel->Init(i, Vector3(tempx + panelsize_x *0.5, panelsize_y *0.5, 0), Vector3(panelsize_x, panelsize_y, 1), panelsize_x, panelsize_y, Panel::PanelType::Normal, Panel::BELONGS_TO::ENEMY); Panel_List.push_back(NewPanel); } player = new Player(); //set player stats here player->Init(&Panel_List); player->sethp(100); player->setatk(10); enemy = new ENEMY(&Panel_List); //set enemy stats here enemy->Init(); enemy->sethp(200); enemy->setatk(20); custgauge = 0; MAX_custgauge = 100; } void BattleStage::Update(double dt) { if (player->fire()) { //check if player and enemy on same column if (player->panel_pos == enemy->panel_pos) { enemy->gethit(player->getatk()); } } if (enemy->isAttacking()) { //check if player and enemy on same column if (player->panel_pos == enemy->panel_pos) { player->gethit(enemy->getatk()); } } player->update(dt); enemy->update(dt,player->panel_pos); } void BattleStage::RenderObjects(Mesh* tpanel, Mesh* mpanel, Mesh* bpanel, Mesh* player, Mesh* enemy, Mesh* text ) { } float BattleStage::getpanel_sizeX() { return panelsize_x; } float BattleStage::getpanel_sizeY() { return panelsize_y; } void BattleStage::exit() { player->Exit(); enemy->Exit(); while (Panel_List.size() > 0) { Panel *go = Panel_List.back(); delete go; Panel_List.pop_back(); } Panel_List.clear(); delete player; delete enemy; }
de957df95ed646282547803a653bfcf5786bc97b
2f19e39d581eaa8298ca08192460fe3ac9f8d02b
/fhe5/fhe/AspectFactory.h
f3634b3e81730c2aa7027d244b054ffc6ac098e1
[]
no_license
davecarr1024/libfhe
77497b67c2ead85fc0bd6a7837a765daf6ccfe30
31682b423fc2255a10235f28c17cbdc7c6d7668b
refs/heads/master
2021-05-08T05:22:02.635076
2016-08-22T20:11:06
2016-08-22T20:11:06
31,622,347
0
0
null
null
null
null
UTF-8
C++
false
false
1,410
h
#ifndef ASPECT_FACTORY_H #define ASPECT_FACTORY_H #include <map> #include "Aspect.h" #include "AbstractAspectDesc.h" namespace fhe { class AbstractAspectDesc; class AspectFactory { private: std::map<std::string,AbstractAspectDesc*> m_aspects; AspectFactory(); AspectFactory( const AspectFactory& adr ) {} void operator=( const AspectFactory& adr ) {} public: ~AspectFactory(); static AspectFactory& instance(); void addDesc( AbstractAspectDesc* desc ); bool hasDesc( const std::string& name ); AbstractAspectDesc* getDesc( const std::string& name ); AspectPtr buildAspect( const std::string& name ); template <class T> AbstractAspectDesc* getDesc() { for ( std::map<std::string,AbstractAspectDesc*>::iterator i = m_aspects.begin(); i != m_aspects.end(); ++i ) { if ( i->second->is<T>() ) { return i->second; } } return 0; } }; } #include "AspectDesc.h" #include "FuncDescRegisterer.h" #include "AspectDescRegisterer.h" #endif
[ "dave.carr.re2@a83f7b76-a30c-11de-8ba5-91705c1537ed" ]
dave.carr.re2@a83f7b76-a30c-11de-8ba5-91705c1537ed
fb3bd11ab4858ffe2efcc1c965507b77cbaf50b4
d0fb46aecc3b69983e7f6244331a81dff42d9595
/mse/src/model/GetPluginConfigRequest.cc
4829c938f778026295a7d15e56aca0a3441ce255
[ "Apache-2.0" ]
permissive
aliyun/aliyun-openapi-cpp-sdk
3d8d051d44ad00753a429817dd03957614c0c66a
e862bd03c844bcb7ccaa90571bceaa2802c7f135
refs/heads/master
2023-08-29T11:54:00.525102
2023-08-29T03:32:48
2023-08-29T03:32:48
115,379,460
104
82
NOASSERTION
2023-09-14T06:13:33
2017-12-26T02:53:27
C++
UTF-8
C++
false
false
2,058
cc
/* * Copyright 2009-2017 Alibaba Cloud All rights reserved. * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ #include <alibabacloud/mse/model/GetPluginConfigRequest.h> using AlibabaCloud::Mse::Model::GetPluginConfigRequest; GetPluginConfigRequest::GetPluginConfigRequest() : RpcServiceRequest("mse", "2019-05-31", "GetPluginConfig") { setMethod(HttpRequest::Method::Post); } GetPluginConfigRequest::~GetPluginConfigRequest() {} std::string GetPluginConfigRequest::getMseSessionId() const { return mseSessionId_; } void GetPluginConfigRequest::setMseSessionId(const std::string &mseSessionId) { mseSessionId_ = mseSessionId; setParameter(std::string("MseSessionId"), mseSessionId); } std::string GetPluginConfigRequest::getGatewayUniqueId() const { return gatewayUniqueId_; } void GetPluginConfigRequest::setGatewayUniqueId(const std::string &gatewayUniqueId) { gatewayUniqueId_ = gatewayUniqueId; setParameter(std::string("GatewayUniqueId"), gatewayUniqueId); } long GetPluginConfigRequest::getPluginId() const { return pluginId_; } void GetPluginConfigRequest::setPluginId(long pluginId) { pluginId_ = pluginId; setParameter(std::string("PluginId"), std::to_string(pluginId)); } std::string GetPluginConfigRequest::getAcceptLanguage() const { return acceptLanguage_; } void GetPluginConfigRequest::setAcceptLanguage(const std::string &acceptLanguage) { acceptLanguage_ = acceptLanguage; setParameter(std::string("AcceptLanguage"), acceptLanguage); }
ae2ae4000e67a5dfd3664e1a7cf4f3eec3a4dd15
9b26f6ade6215662db0c706661f86f1a5a8713b7
/FrozenFlame/Game/Source/Objects/IceEnemy.h
d8ec47fac0d69167198271200803a175035f6ec2
[]
no_license
mbirky/FrozenFlame
d310c753f73bf092bd0e2fa9427b125c30bce568
4264bc86ee66a0c010642ecabf512c920a8082e3
refs/heads/main
2023-04-13T20:22:40.245502
2018-07-06T07:35:16
2018-07-06T07:35:16
361,937,727
0
0
null
null
null
null
UTF-8
C++
false
false
4,060
h
/*********************************************** * Filename: IceEnemy.h * Date: 10/30/2012 * Mod. Date: 10/30/2012 * Mod. Initials: CM * Author: Charles Meade * Purpose: Function declarations for the ice enemy object ************************************************/ #ifndef ICE_ENEMY_H #define ICE_ENEMY_H #include "enemy.h" #include "../Renderer/Emitter.h" class CIceEnemy : public CEnemy { // Ice beast emitters CEmitter* m_pIceEmitter; CEmitter* m_pSmokeEmitter; int m_nIceBreathAttID; // Time a snowball takes to fall float m_fSnowballFallTime; // Are we ice breathinginginginging? - JC bool m_bIceBreathEnabled; int m_nPrevAttackedByElement; int m_nNumContinuousSameElementAttacks; int m_nBaseAttackDamage; int m_nHotToNeutralHitCount; int m_nNeutralToHotHitCount; int m_nNeutralToColdHitCount; int m_nColdToNeutralHitCount; int m_nColdToFrozenHitCount; int m_nFrozenToColdHitCount; int m_nShapeID; int m_nLightID; public: /***************************************************************** * CIceEnemy(): Default constructor for the ice enemy object * * * Ins: void * * Outs: void * * Returns: n/a * * Mod. Date: 10/30/2012 * Mod. Initials: CM *****************************************************************/ CIceEnemy(void); /***************************************************************** * ~CIceEnemy(): Default destructor for the ice enemy object * * * Ins: void * * Outs: void * * Returns: n/a * * Mod. Date: 10/30/2012 * Mod. Initials: CM *****************************************************************/ ~CIceEnemy(void); /***************************************************************** * Initialize(): The default funciton that sets all starting values for * this instance of the class * * Ins: void * * Outs: void * * Returns: void * * Mod. Date: 10/30/2012 * Mod. Initials: CM *****************************************************************/ void Initialize(void); /***************************************************************** * Reinitialize(): The default funciton that resets all starting values for * this instance of the class * * Ins: void * * Outs: void * * Returns: void * * Mod. Date: 10/30/2012 * Mod. Initials: CM *****************************************************************/ void Reinitialize(); /***************************************************************** * Update(): Updates all data for the class based off of time * * Ins: fElapsedTime * * Outs: void * * Returns: void * * Mod. Date: 10/30/2012 * Mod. Initials: CM *****************************************************************/ void Update(float fElapsedTime); /***************************************************************** * OnAttack(): runs any logic when this object gets attacked by something * * Ins: void * * Outs: nDamage nElementType * * Returns: void * * Mod. Date: 11/05/2012 * Mod. Initials: CM *****************************************************************/ void OnAttack(int nDamage,int nElementType); /***************************************************************** * LoadLuaValues(): Loads and sets the enemy's variables from a lua file * * Ins: none * * Outs: none * * Returns: none * * Mod. Date: 01/22/2013 * Mod. Initials: SMS *****************************************************************/ void LoadLuaValues(); void Uninitialize(void); void UpdateAnimations(float fElapsedTime); int GetIceBreathAttackID() const { return m_nIceBreathAttID; } /********************************************* * * Mutators * *********************************************/ void PrepareToThrow(void); void PrepareToBlow(void); void StartRunning(void); void SetIceBreathEnabled(bool bEnabled); void Punch(void); bool GetIceBreathEnabled() {return m_bIceBreathEnabled;} }; #endif
997c836e86992176734c5491575bd39a358bf15e
f50ca86b14938a4737ca816de2b22c021bf64f0e
/src/Server.hpp
e22d63216d09f7b27cb5cc9ca0e903422b743bdb
[]
no_license
Dzejrou/Tanktastic-o
c544df976a37ad5f44c1ee4a92f2db85b74f93ce
7e5d6da987282bf6cfd6587af5d4f733ba3da415
refs/heads/master
2021-01-19T05:50:40.667964
2015-05-17T17:55:57
2015-05-17T17:55:57
27,556,324
0
0
null
null
null
null
UTF-8
C++
false
false
1,463
hpp
#pragma once #include <SFML/Network.hpp> #include <SFML/Window.hpp> #include <iostream> #include <string> #include <vector> #include <memory> #include "Protocol.hpp" #include "Tank.hpp" struct client; // Forward declaration, see at the bottom. /** * Class representing the server in this game, controls the communication * between clients, provides time out checks and movement correction. */ class Server { #define MAX_PLR 4 using uint32 = sf::Uint32; public: Server(std::string, int); void run(); void handle_client(sf::Packet&, sf::TcpSocket&); void init(client&); void send_all(sf::Packet&, int); ~Server() { listener_.close(); } private: int get_new_id(); void remove_client(int); void kick(std::unique_ptr<client>&); sf::SocketSelector selector_; sf::TcpListener listener_; sf::Clock disc_clock_, mov_check_clock_; std::vector<std::unique_ptr<client>> clients_; std::unique_ptr<Tank> plr_[MAX_PLR]; std::string address_; int port_, plr_max_{MAX_PLR}; bool running_{true}; sf::Time mov_check_; }; struct client { sf::TcpSocket socket; int id; };
a9da01bd675587c17cd9c36e89a95a680cecdc31
01a42b69633daf62a2eb3bb70c5b1b6e2639aa5f
/SCUM_Beenie_05_functions.cpp
6394627a44d4c28a867a00162bbf9a8f9b1af7ff
[]
no_license
Kehczar/scum_sdk
45db80e46dac736cc7370912ed671fa77fcb95cf
8d1770b44321a9d0b277e4029551f39b11f15111
refs/heads/master
2022-07-25T10:06:20.892750
2020-05-21T11:45:36
2020-05-21T11:45:36
265,826,541
1
0
null
null
null
null
UTF-8
C++
false
false
3,064
cpp
// Scum 3.79.22573 (UE 4.24) #ifdef _MSC_VER #pragma pack(push, 0x8) #endif #include "../SDK.hpp" namespace Classes { //--------------------------------------------------------------------------- //Functions //--------------------------------------------------------------------------- // Function ConZ.ClothesItem.UpdateMaterialParamsOnClients // () void ABeenie_05_C::UpdateMaterialParamsOnClients() { static auto fn = UObject::FindObject<UFunction>("Function ConZ.ClothesItem.UpdateMaterialParamsOnClients"); ABeenie_05_C_UpdateMaterialParamsOnClients_Params params; auto flags = fn->FunctionFlags; UObject::ProcessEvent(fn, &params); fn->FunctionFlags = flags; } // Function ConZ.ClothesItem.SetDirtiness // () // Parameters: // float* dirtiness (Parm, ZeroConstructor, IsPlainOldData) void ABeenie_05_C::SetDirtiness(float* dirtiness) { static auto fn = UObject::FindObject<UFunction>("Function ConZ.ClothesItem.SetDirtiness"); ABeenie_05_C_SetDirtiness_Params params; params.dirtiness = dirtiness; auto flags = fn->FunctionFlags; UObject::ProcessEvent(fn, &params); fn->FunctionFlags = flags; } // Function ConZ.ClothesItem.OnRep_MaterialParameters // () void ABeenie_05_C::OnRep_MaterialParameters() { static auto fn = UObject::FindObject<UFunction>("Function ConZ.ClothesItem.OnRep_MaterialParameters"); ABeenie_05_C_OnRep_MaterialParameters_Params params; auto flags = fn->FunctionFlags; UObject::ProcessEvent(fn, &params); fn->FunctionFlags = flags; } // Function ConZ.ClothesItem.GetWarmth // () // Parameters: // int ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData) int ABeenie_05_C::GetWarmth() { static auto fn = UObject::FindObject<UFunction>("Function ConZ.ClothesItem.GetWarmth"); ABeenie_05_C_GetWarmth_Params params; auto flags = fn->FunctionFlags; UObject::ProcessEvent(fn, &params); fn->FunctionFlags = flags; return params.ReturnValue; } // Function ConZ.ClothesItem.GetCapacityY // () // Parameters: // int ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData) int ABeenie_05_C::GetCapacityY() { static auto fn = UObject::FindObject<UFunction>("Function ConZ.ClothesItem.GetCapacityY"); ABeenie_05_C_GetCapacityY_Params params; auto flags = fn->FunctionFlags; UObject::ProcessEvent(fn, &params); fn->FunctionFlags = flags; return params.ReturnValue; } // Function ConZ.ClothesItem.GetCapacityX // () // Parameters: // int ReturnValue (Parm, OutParm, ZeroConstructor, ReturnParm, IsPlainOldData) int ABeenie_05_C::GetCapacityX() { static auto fn = UObject::FindObject<UFunction>("Function ConZ.ClothesItem.GetCapacityX"); ABeenie_05_C_GetCapacityX_Params params; auto flags = fn->FunctionFlags; UObject::ProcessEvent(fn, &params); fn->FunctionFlags = flags; return params.ReturnValue; } } #ifdef _MSC_VER #pragma pack(pop) #endif
553754433faf4ed255a352f6f613ec7bb4d13f5f
91b964984762870246a2a71cb32187eb9e85d74e
/SRC/OFFI SRC!/boost_1_34_1/boost_1_34_1/boost/range/end.hpp
ed90ccdd8304af933be16af2fe3da970df68000f
[ "BSL-1.0", "LicenseRef-scancode-unknown-license-reference" ]
permissive
willrebuild/flyffsf
e5911fb412221e00a20a6867fd00c55afca593c7
d38cc11790480d617b38bb5fc50729d676aef80d
refs/heads/master
2021-01-19T20:27:35.200154
2011-02-10T12:34:43
2011-02-10T12:34:43
32,710,780
3
0
null
null
null
null
UTF-8
C++
false
false
5,675
hpp
// Boost.Range library // // Copyright Thorsten Ottosen 2003-2004. Use, modification and // distribution is subject to the Boost Software License, Version // 1.0. (See accompanying file LICENSE_1_0.txt or copy at // http://www.boost.org/LICENSE_1_0.txt) // // For more information, see http://www.boost.org/libs/range/ // #ifndef BOOST_RANGE_END_HPP #define BOOST_RANGE_END_HPP #if defined(_MSC_VER) && (_MSC_VER >= 1200) # pragma once #endif #include <boost/type_traits/remove_const.hpp> #include <boost/range/config.hpp> #ifdef BOOST_NO_FUNCTION_TEMPLATE_ORDERING #include <boost/range/detail/end.hpp> #else #include <boost/range/detail/implementation_help.hpp> #include <boost/range/iterator.hpp> #include <boost/range/const_iterator.hpp> namespace boost { #if !BOOST_WORKAROUND(__BORLANDC__, BOOST_TESTED_AT(0x564)) && \ !BOOST_WORKAROUND(__GNUC__, < 3) \ /**/ namespace range_detail { #endif ////////////////////////////////////////////////////////////////////// // primary template ////////////////////////////////////////////////////////////////////// template< typename C > inline BOOST_DEDUCED_TYPENAME range_const_iterator<C>::type boost_range_end( const C& c ) { return c.end(); } template< typename C > inline BOOST_DEDUCED_TYPENAME range_iterator< typename remove_const<C>::type >::type boost_range_end( C& c ) { return c.end(); } ////////////////////////////////////////////////////////////////////// // pair ////////////////////////////////////////////////////////////////////// template< typename Iterator > inline Iterator boost_range_end( const std::pair<Iterator,Iterator>& p ) { return p.second; } template< typename Iterator > inline Iterator boost_range_end( std::pair<Iterator,Iterator>& p ) { return p.second; } ////////////////////////////////////////////////////////////////////// // array ////////////////////////////////////////////////////////////////////// template< typename T, std::size_t sz > inline const T* boost_range_end( const T (&array)[sz] ) { return range_detail::array_end<T,sz>( array ); } template< typename T, std::size_t sz > inline T* boost_range_end( T (&array)[sz] ) { return range_detail::array_end<T,sz>( array ); } ////////////////////////////////////////////////////////////////////// // string ////////////////////////////////////////////////////////////////////// #if 1 || BOOST_WORKAROUND(__MWERKS__, <= 0x3204 ) || BOOST_WORKAROUND(__BORLANDC__, BOOST_TESTED_AT(0x564)) // CW up to 9.3 and borland have troubles with function ordering inline char* boost_range_end( char* s ) { return range_detail::str_end( s ); } inline wchar_t* boost_range_end( wchar_t* s ) { return range_detail::str_end( s ); } inline const char* boost_range_end( const char* s ) { return range_detail::str_end( s ); } inline const wchar_t* boost_range_end( const wchar_t* s ) { return range_detail::str_end( s ); } #else inline char* boost_range_end( char*& s ) { return range_detail::str_end( s ); } inline wchar_t* boost_range_end( wchar_t*& s ) { return range_detail::str_end( s ); } inline const char* boost_range_end( const char*& s ) { return range_detail::str_end( s ); } inline const wchar_t* boost_range_end( const wchar_t*& s ) { return range_detail::str_end( s ); } #endif #if !BOOST_WORKAROUND(__BORLANDC__, BOOST_TESTED_AT(0x564)) && \ !BOOST_WORKAROUND(__GNUC__, < 3) \ /**/ } // namespace 'range_detail' #endif template< class T > inline BOOST_DEDUCED_TYPENAME range_iterator< typename remove_const<T>::type >::type end( T& r ) { #if !BOOST_WORKAROUND(__BORLANDC__, BOOST_TESTED_AT(0x564)) && \ !BOOST_WORKAROUND(__GNUC__, < 3) \ /**/ using namespace range_detail; #endif return boost_range_end( r ); } template< class T > inline BOOST_DEDUCED_TYPENAME range_const_iterator<T>::type end( const T& r ) { #if !BOOST_WORKAROUND(__BORLANDC__, BOOST_TESTED_AT(0x564)) && \ !BOOST_WORKAROUND(__GNUC__, < 3) \ /**/ using namespace range_detail; #endif return boost_range_end( r ); } #if BOOST_WORKAROUND(__MWERKS__, <= 0x3003 ) || BOOST_WORKAROUND(__BORLANDC__, BOOST_TESTED_AT(0x564)) // BCB and CW are not able to overload pointer when class overloads are also available. template<> inline range_const_iterator<const char*>::type end<const char*>( const char*& r ) { return range_detail::str_end( r ); } template<> inline range_const_iterator<const wchar_t*>::type end<const wchar_t*>( const wchar_t*& r ) { return range_detail::str_end( r ); } #endif } // namespace 'boost' #endif // BOOST_NO_FUNCTION_TEMPLATE_ORDERING namespace boost { template< class T > inline BOOST_DEDUCED_TYPENAME range_const_iterator<T>::type const_end( const T& r ) { return boost::end( r ); } } #endif
[ "[email protected]@e2c90bd7-ee55-cca0-76d2-bbf4e3699278" ]
[email protected]@e2c90bd7-ee55-cca0-76d2-bbf4e3699278
2704f8683f76babbdb5d7b9d9d682f5bfad070af
ef3824cf7c72c40661cb11ea339654b788b75286
/Ex-2/ServerApplication/ServerApplication.cpp
9be893ac6e40bfa4b0dff78e29b1a42f0124d467
[]
no_license
itfenom/POSA2Patterns
d7150b8b98d5d3f0cb0f04d647b93920ba71bad6
7db7c2cfac6c8529e22a29a01a52f13ffba1d974
refs/heads/master
2021-06-25T11:39:23.919265
2017-08-31T12:05:04
2017-08-31T12:05:04
null
0
0
null
null
null
null
UTF-8
C++
false
false
2,667
cpp
// ServerApplication.cpp : Defines the entry point for the console application. // #include "stdafx.h" #include<WinSock2.h> #pragma comment(lib, "Ws2_32.lib") #include <fstream> #include <string> #include "../AcceptorConnectorPattern/Acceptor.h" #include "../AcceptorConnectorPattern/Service_Handler.h" #include "../Reactor/Reactor.h" #include "../Reactor/AlarmEventHandler.h" #include "../Reactor/AcceptorEventHandler.h" #include "../Reactor/PatientEventHandler.h" #include "../Reactor/LogEventHandler.h" #include "../ProactorPattern/Proactor.h" #include "../ProactorPattern/Concrete_Completion_Handler.h" #include "../../Ex-1/WrapperFacade/INET_Addr.h" #include "../../Ex-1/WrapperFacade/SOCK_Stream.h" #include "../../Ex-1/WrapperFacade/SOCK_Acceptor.h" #include <iostream> using namespace WrapperFacade; using namespace ReactorPattern; using namespace std; typedef Service_Handler<SOCK_Stream> Peer_Handler; class Patient_System : public Peer_Handler { public: char * appendCharToCharArray(char * array, char a) { size_t len = strlen(array); char* ret = new char[len + 2]; strcpy_s(ret, len + 2, array); ret[len] = a; ret[len + 1] = '\0'; return ret; } virtual void open() { for (;;) { char buffer[80]; char * cprNumber = ""; peer().recv(buffer, sizeof(buffer) - 1, 0); int i = 0; cout << "CPR received from client:" << "\t"; while (buffer[i] != '$') { cprNumber = appendCharToCharArray(cprNumber, buffer[i]); i++; } cout << cprNumber << endl; string patient = GetPatientInfo(cprNumber); cout << "Patient info found:\n" << patient << endl; char c = '$'; patient += c; char buff[80]; i = 0; const char * patientInfoToSend = patient.c_str(); while (i != strlen(patientInfoToSend)) { buff[i] = patientInfoToSend[i]; i++; } peer().send(buff, sizeof(buff) - 1, 0); } } string GetPatientInfo(char * cprNumber) { ifstream file; string search(cprNumber); string line; file.open("People.txt"); unsigned int curLine = 0; while (getline(file, line)) { curLine++; if (line.find(search, 0) != string::npos) break; } file.close(); return line; } }; typedef Acceptor<Patient_System, SOCK_Acceptor> Patient_System_Acceptor; typedef Acceptor<Concrete_Completion_Handler, SOCK_Acceptor> Proactor_Acceptor; int main() { SetConsoleTitle(TEXT("TCP Socket communication - Server Application")); WSADATA wsaData; WSAStartup(MAKEWORD(2, 2), &wsaData); INET_Addr address = INET_Addr(20, "127.0.0.1"); Proactor_Acceptor s_acceptor(address, Reactor::instance()); Reactor::instance()->handle_events(); Proactor::instance()->handle_events(); return 0; }
de5dbc4ff8a710d19ecdd89f12ad0d3a5335b0d3
800e4e550ff9ff60741eac1974311c90087e37c4
/C++/hoTpLuG/RaNdOm_CoDeS/mopki.cpp
956b8e6e7a7479871a399fda0a2f7c1c8d2f5b19
[]
no_license
potato-hop/uep
4de2d60464c161b33645539d96bec831e7f96e8a
b54af3346776484028bfd6be7aa18f5e5aaadcb5
refs/heads/master
2023-02-26T19:59:38.340548
2021-02-10T14:04:11
2021-02-10T14:04:11
337,744,423
0
0
null
null
null
null
UTF-8
C++
false
false
404
cpp
#include <iostream> using namespace std; int main() { int k, n, p = 0, z = 1, l; cout << "snachala_k_potOm_n" << endl; cin >> k >> n; if(n > k) { l = n - k; while(p == 0) { if((l * z) % k == 0) { p++; cout << z; } z++; } } if(k > n) { l = k - n; while(p == 0) { if((l * z) % n == 0) { p++; cout << z; } ++z; } } if(n = k) cout << "0"; }
3b2e33bfabf063f57bb7d46b6e5eac0b9b3377f6
f1f67637c94ad64580f6d752fe361a532b22b242
/NeJudge/branches/5.0/Tests/Tester/TestPrograms/Checkers/hcmp.cpp
d124a451c45dbdf6b11ca02e610352f34858e915
[]
no_license
vadimkantorov/highschool
650d48c3d2cbcbea32d2efc5ef678184e46b5e63
1ff53ce31a789d37542d8231e80ffdc46409aed8
refs/heads/master
2020-06-03T17:14:36.029406
2015-02-24T21:59:09
2015-02-24T21:59:09
31,283,946
0
0
null
null
null
null
UTF-8
C++
false
false
1,277
cpp
#include "testlib.h" #include <string> using namespace std; string part(const string& s) { if (s.length() <= 128) return s; else return s.substr(0, 64) + "..." + s.substr(s.length() - 64, 64); } bool isNumeric(string p) { bool minus = false; if (p[0] == '-') minus = true, p = p.substr(1); for (int i = 0; i < p.length(); i++) if (p[i] < '0' || p[i] > '9') return false; if (minus) return (p.length() > 0 && (p.length() == 1 || p[0] != '0')) && (p.length() > 1 || p[0] != '0'); else return p.length() > 0 && (p.length() == 1 || p[0] != '0'); } int main(int argc, char * argv[]) { setName("compare two signed huge integers"); registerTestlibCmd(argc, argv); string ja = ans.readWord(); string pa = ouf.readWord(); if (!isNumeric(ja)) quitf(_fail, "%s is not valid integer", part(ja).c_str()); if (!ans.seekEof()) quitf(_fail, "expected exactly one token in the answer file"); if (!isNumeric(pa)) quitf(_pe, "%s is not valid integer", part(pa).c_str()); if (ja != pa) quitf(_wa, "expected %s, found %s", part(ja).c_str(), part(pa).c_str()); quitf(_ok, "answer is %s", part(ja).c_str()); }
48edd0bf0f40782917959972982068b2cdffe172
29110413ad8c4ffcc703216daf9e5fcad90255a8
/src/pdb_component/parsers/hb/source/src/vdw/vdw_formatting.hpp
8d3c185084f3a2b20ce46f36f3cc9f9f4dd886d3
[ "BSD-3-Clause" ]
permissive
MelvinYin/Defined_Proteins
68e305ea3fc05e5692bc33731490b1853c5fa1e1
75da20be82a47d85d27176db29580ab87d52b670
refs/heads/main
2023-04-03T12:04:12.562109
2021-04-13T21:37:07
2021-04-13T21:37:07
198,048,536
1
1
null
null
null
null
UTF-8
C++
false
false
5,720
hpp
/* Module: vdw_formatting Authors: Grzegorz M. Koczyk (2007), Igor Berezovsky (1990-2007) ***************************************************************************** Formatting of Lennard-Jones results for atom-atom or residue-residue contact information. */ #ifndef __VDW_FORMATTING_HPP__ #define __VDW_FORMATTING_HPP__ #include "vdw_data.hpp" #include "basic_formatting.hpp" class AtomContactInfo { public: Atom m_atom1; Atom m_atom2; lj_value_t m_lj; public: AtomContactInfo(const Atom& atom1, const Atom& atom2, const lj_value_t& lj): m_atom1(atom1), m_atom2(atom2), m_lj(lj) {}; }; typedef vector<AtomContactInfo> AtomContacts; // Create a list of annotated contact data between atoms AtomContacts formatAtomContacts(AtomVector& atomvec, LJResult& ljresult) { AtomContacts result; for (LJResult::iterator it=ljresult.begin(); it!=ljresult.end(); it++) result.push_back( AtomContactInfo( atomvec[ it->m_atom1_no ], atomvec[ it->m_atom2_no ], it->m_value ) ); return result; }; bool writeAtomContacts(FILE* fh, AtomContacts& atomcs) { fprintf(fh, "%u\n", (unsigned long) atomcs.size() ); for (AtomContacts::iterator it=atomcs.begin(); it!=atomcs.end(); it++) { Atom& atom1 = it->m_atom1; Atom& atom2 = it->m_atom2; lj_value_t& lj = it->m_lj; double d = atomDistance(atom1, atom2); fprintf(fh, "%lu\t%ld\t%c\t%s\t%c\t%s\t", atom1.m_number, atom1.m_res_no, atom1.m_icode, atom1.m_res_name.c_str(), atom1.m_chain, atom1.m_name.c_str() ); fprintf(fh, "%lu\t%ld\t%c\t%s\t%c\t%s\t", atom2.m_number, atom2.m_res_no, atom2.m_icode, atom2.m_res_name.c_str(), atom2.m_chain, atom2.m_name.c_str() ); fprintf(fh, "%f\t%f\n", lj, d); }; return true; }; bool writeAtomContacts(const string& fname, AtomContacts& atomcs) { FILE* fh = openFile(fname.c_str(), "wt"); if (!fh) return false; bool r = writeAtomContacts(fh, atomcs); fclose(fh); return r; }; class ResidueContactInfo { public: string m_resname1; string m_resname2; unsigned long m_contacts; double m_lj; public: ResidueContactInfo(string resname1="", string resname2="", unsigned long contacts=0, double lj=0.): m_resname1(resname1), m_resname2(resname2), m_contacts(contacts), m_lj(lj) {}; }; typedef map<ResId, ResidueContactInfo> map_sno_t; typedef map<char, map_sno_t> map_sch_t; typedef map<ResId, map_sch_t> map_fno_t; typedef map<char, map_fno_t> map_fch_t; // Create a list of annotated contact data between residues map_fch_t asResidueContacts(AtomContacts& atomcs) { map_fch_t r; for (AtomContacts::iterator it=atomcs.begin(); it!=atomcs.end(); it++) { Atom& atom1 = it->m_atom1; Atom& atom2 = it->m_atom2; lj_value_t& lj = it->m_lj; ResidueContactInfo& tmp = r[atom1.m_chain][ResId(atom1.m_res_no, atom1.m_icode)][atom2.m_chain][ResId(atom2.m_res_no, atom2.m_icode)]; if (tmp.m_contacts==0) { tmp.m_resname1 = atom1.m_res_name; tmp.m_resname2 = atom2.m_res_name; }; tmp.m_contacts+=1; tmp.m_lj += lj; }; return r; }; bool writeAsResidueContacts(FILE* fh, AtomContacts& atomcs) { map_fch_t r = asResidueContacts(atomcs); // Iterate over maps of [chain]->[residue no]->[chain]->[residue no] for (map_fch_t::iterator it1=r.begin(); it1!=r.end(); it1++) { char chain1 = it1->first; map_fno_t& st2= it1->second; for (map_fno_t::iterator it2=st2.begin(); it2!=st2.end();it2++) { ResId resid1 = it2->first; unsigned long resno1 = resid1.m_resno; char icode1 = resid1.m_icode; map_sch_t& st3= it2->second; for (map_sch_t::iterator it3=st3.begin(); it3!=st3.end();it3++) { char chain2 = it3->first; map_sno_t& st4= it3->second; for (map_sno_t::iterator it4=st4.begin(); it4!=st4.end();it4++) { ResId resid2 = it4->first; unsigned long resno2 = resid2.m_resno; char icode2 = resid2.m_icode; ResidueContactInfo& rc = it4->second; fprintf(fh, "%c\t%ld\t%c\t%s\t%c\t%ld\t%c\t%s\t%u\t%f\n", chain1, resno1, icode1, rc.m_resname1.c_str(), chain2, resno2, icode2, rc.m_resname2.c_str(), rc.m_contacts, rc.m_lj); }; }; }; }; return true; }; bool writeAsResidueContacts(const string& fname, AtomContacts& atomcs) { FILE* fh = openFile(fname.c_str(), "wt"); if (!fh) return false; bool r = writeAsResidueContacts(fh, atomcs); fclose(fh); return r; }; // bool asSplitEnergies(ResidueContacts& residuecs) // { // // For each chain in the structure, analyze only residues of the same chain // for (map_fch_t::iterator it1=residuecs.begin(); it1!=residuecs.end(); it++) // { // char chain1 = it1->first; // map_fno_t& st2= it1->second; // for (map_fno_t::iterator it2=st2.begin(); it2!=st2.end();it2++) // { // int resno1 = it2->first; // map_sch_t& st3= it2->second; // for (map_sch_t::iterator it3=st3.begin(); it3!=st3.end();it3++) // { // char chain2 = it3->first; // if (chain2!=chain1) // continue; // map_sno_t& st4= it3->second; // for (map_sno_t::iterator it4=st4.begin(); it4!=st4.end();it4++) // { // int resno2 = it4->first; // if (resno2<resno1) // ResidueContactInfo& rc = it4->second; // fprintf(fh, "%c\t%u\t%s\t%c\t%u\t%s\t%u\t%f\n", chain1, resno1, rc.m_resname1.c_str(), chain2, resno2, rc.m_resname2.c_str(), rc.m_contacts, rc.m_lj); // }; // }; // }; // }; // }; // bool asSplitEnergies(AtomContacts& atomcs) // { // return asSplitEnergies(asResidueContacts(atomcs)); // }; // bool writeSplitEnergies(FILE* fh, AtomContacts& atomcs) // { // }; // bool writeSplitEnergies(FILE* fh, ResidueContacts& atomcs) // { // }; #endif
9e054d79173a33e484ed80e0d97842daeebc8f5d
3943f4014015ae49a2c6c3c7018afd1d2119a7ed
/final_output/output_recur_large_cp/hermite_formula_-10000000000000.0000000_10000000000000.000000/11-16.cpp
a19b22d4a01b306af0347551b33aa3602c906c5b
[]
no_license
Cathy272272272/practicum
9fa7bfcccc23d4e40af9b647d9d98f5ada37aecf
e13ab8aa5cf5c037245b677453e14b586b10736d
refs/heads/master
2020-05-23T10:10:15.111847
2019-06-08T00:23:57
2019-06-08T00:23:57
186,689,468
0
0
null
null
null
null
UTF-8
C++
false
false
1,630
cpp
#include <iostream> #include <stdio.h> #include <assert.h> #include <math.h> extern "C" { #include "quadmath.h" } #ifndef IFT #define IFT float #endif #ifndef OFT #define OFT __float128 #endif template <class _Real> _Real __libcpp_hermite_recurrence(unsigned __n, _Real __x) { if (__n == 0u) return _Real(1); _Real __t2(1); _Real __t1 = _Real(2) * __x; for (unsigned __i = 1; __i < __n; ++__i) { const _Real __t0 = _Real(2) * (__x * __t1 - _Real(__i) * __t2); __t2 = __t1; __t1 = __t0; } return __t1; } using namespace std; static const int k = 3; int main (int argc, char *argv[]) { assert(argc == 3); char *iname = argv[1]; char *oname = argv[2]; FILE *ifile = fopen(iname, "r"); FILE *ofile = fopen(oname, "w"); assert(ifile != NULL && ofile != NULL); fseek(ifile, 0, SEEK_END); unsigned long fsize = ftell(ifile); assert(fsize == (sizeof(IFT) * 1)); fseek(ifile, 0, SEEK_SET); IFT in_x; fread(&in_x, sizeof(IFT), 1, ifile); FT rel = 0; FT x = in_x; #ifdef ORIG rel = __libcpp_hermite_recurrence(16, x + 0.0); #else rel = ( ( ( ( 65536.0*pow(x,16) ) - ( 3932160.0*pow(x,14) ) ) + ( ( ( ( pow(x,4)*19372953600.0 ) + ( ( x*-8302694400.0 ) *x ) ) +518918400.0 ) + ( pow( ( x*x ) ,3)* ( -15498362880.0+ ( 5535129600.0* ( x*x ) ) ) ) ) ) + ( ( pow( ( x*x ) ,3)* ( ( x*x ) * ( x*x ) ) ) * ( -984023040.0+ ( x* ( 89456640.0*x ) ) ) ) ) ; #endif OFT outv = rel; fwrite(&outv, sizeof(OFT), 1, ofile); fclose(ifile); fclose(ofile); return 0; }
69e1faef2a7412dbfaabdda58ab6b122f31a39ac
40712dc426dfb114dfabe5913b0bfa08ab618961
/Extras/wxWidgets-2.9.0/src/gtk/mnemonics.cpp
33048fc6f2ece787d692307095f53dfd3fe69d24
[]
no_license
erwincoumans/dynamica
7dc8e06966ca1ced3fc56bd3b655a40c38dae8fa
8b5eb35467de0495f43ed929d82617c21d2abecb
refs/heads/master
2021-01-17T05:53:34.958159
2015-02-10T18:34:11
2015-02-10T18:34:11
31,622,543
7
3
null
null
null
null
UTF-8
C++
false
false
6,294
cpp
/////////////////////////////////////////////////////////////////////////////// // Name: src/gtk/mnemonics.cpp // Purpose: implementation of GTK mnemonics conversion functions // Author: Vadim Zeitlin // Created: 2007-11-12 // RCS-ID: $Id: mnemonics.cpp 49885 2007-11-13 02:21:12Z PC $ // Copyright: (c) 2007 Vadim Zeitlin <[email protected]> // Licence: wxWindows licence /////////////////////////////////////////////////////////////////////////////// // ============================================================================ // declarations // ============================================================================ // ---------------------------------------------------------------------------- // headers // ---------------------------------------------------------------------------- // for compilers that support precompilation, includes "wx.h". #include "wx/wxprec.h" #ifdef __BORLANDC__ #pragma hdrstop #endif #include "wx/log.h" #include "wx/private/stattext.h" // for wxMarkupEntities #include "wx/gtk/private/mnemonics.h" // ============================================================================ // implementation // ============================================================================ // ---------------------------------------------------------------------------- // internal helper: apply the operation indicated by flag // ---------------------------------------------------------------------------- enum MnemonicsFlag { MNEMONICS_REMOVE, MNEMONICS_CONVERT, MNEMONICS_CONVERT_MARKUP }; static wxString GTKProcessMnemonics(const wxString& label, MnemonicsFlag flag) { wxString labelGTK; labelGTK.reserve(label.length()); for ( wxString::const_iterator i = label.begin(); i != label.end(); ++i ) { wxChar ch = *i; switch ( ch ) { case wxT('&'): if ( i + 1 == label.end() ) { // "&" at the end of string is an error wxLogDebug(wxT("Invalid label \"%s\"."), label); break; } if ( flag == MNEMONICS_CONVERT_MARKUP ) { bool isMnemonic = true; size_t distanceFromEnd = label.end() - i; // is this ampersand introducing a mnemonic or rather an entity? for (size_t j=0; j < wxMARKUP_ENTITY_MAX; j++) { const wxChar *entity = wxMarkupEntities[wxMARKUP_ELEMENT_NAME][j]; size_t entityLen = wxStrlen(entity); if (distanceFromEnd >= entityLen && wxString(i, i + entityLen) == entity) { labelGTK << entity; i += entityLen - 1; // the -1 is because main for() // loop already increments i isMnemonic = false; break; } } if (!isMnemonic) continue; } ch = *(++i); // skip '&' itself switch ( ch ) { case wxT('&'): // special case: "&&" is not a mnemonic at all but just // an escaped "&" if ( flag == MNEMONICS_CONVERT_MARKUP ) labelGTK += wxT("&amp;"); else labelGTK += wxT('&'); break; case wxT('_'): if ( flag != MNEMONICS_REMOVE ) { // '_' can't be a GTK mnemonic apparently so // replace it with something similar labelGTK += wxT("_-"); break; } //else: fall through default: if ( flag != MNEMONICS_REMOVE ) labelGTK += wxT('_'); labelGTK += ch; } break; case wxT('_'): if ( flag != MNEMONICS_REMOVE ) { // escape any existing underlines in the string so that // they don't become mnemonics accidentally labelGTK += wxT("__"); break; } //else: fall through default: labelGTK += ch; } } return labelGTK; } // ---------------------------------------------------------------------------- // public functions // ---------------------------------------------------------------------------- wxString wxGTKRemoveMnemonics(const wxString& label) { return GTKProcessMnemonics(label, MNEMONICS_REMOVE); } wxString wxConvertMnemonicsToGTK(const wxString& label) { return GTKProcessMnemonics(label, MNEMONICS_CONVERT); } wxString wxConvertMnemonicsToGTKMarkup(const wxString& label) { return GTKProcessMnemonics(label, MNEMONICS_CONVERT_MARKUP); } wxString wxConvertMnemonicsFromGTK(const wxString& gtkLabel) { wxString label; for ( const wxChar *pc = gtkLabel.c_str(); *pc; pc++ ) { // '_' is the escape character for GTK+. if ( *pc == wxT('_') && *(pc+1) == wxT('_')) { // An underscore was escaped. label += wxT('_'); pc++; } else if ( *pc == wxT('_') ) { // Convert GTK+ hotkey symbol to wxWidgets/Windows standard label += wxT('&'); } else if ( *pc == wxT('&') ) { // Double the ampersand to escape it as far as wxWidgets is concerned label += wxT("&&"); } else { // don't remove ampersands '&' since if we have them in the menu title // it means that they were doubled to indicate "&" instead of accelerator label += *pc; } } return label; }
[ "erwin.coumans@e05b9ecc-110c-11df-b47a-af0d17c1a499" ]
erwin.coumans@e05b9ecc-110c-11df-b47a-af0d17c1a499
9b8e6658b87f4ac9feb7328e6a5c501f4de39ff7
184b6c7529e15a646cd95ce0fc90e435e34dcdbd
/src/DevelopmentHelper/DateTimeAdder.cpp
6b5538244c4631cfc876c98f4dc772eb3555b049
[]
no_license
Ulle84/ToolBox
0ae4a297ca435952c0664f32bee975cf279356c5
2f686cfb6728880e40b8bdd4a7c6da381ebdf2fc
refs/heads/master
2021-01-22T22:03:44.716242
2017-07-19T17:19:38
2017-07-19T17:19:38
85,501,056
0
0
null
null
null
null
UTF-8
C++
false
false
619
cpp
#include "DateTimeAdder.h" #include "DateTimeAdderUi.h" DateTimeAdder::DateTimeAdder(QWidget* parent) : QWidget(parent), ui(new DateTimeAdderUi), m_seconds(0) { ui->setupUi(this); } DateTimeAdder::~DateTimeAdder() { delete ui; } void DateTimeAdder::on_spinBox_valueChanged(int seconds) { m_seconds = seconds; calculate(); } void DateTimeAdder::on_dateTimeEdit_dateTimeChanged(const QDateTime& dateTime) { m_dateTime = dateTime; calculate(); } void DateTimeAdder::calculate() { QDateTime dateTime = m_dateTime.addSecs(m_seconds); ui->label_3->setText(dateTime.toString("dd.MM.yy hh:mm:ss")); }
9ff3ad581d94b5b88de30392855edd91964fa3fb
f98ec690d3cba316b5dbddad91ac5832b4a9ca9a
/Source/YutnoriDefense/Field/EnemyMoveField.cpp
1aa6aa5052cee085b60078711997bc8248f14087
[ "MIT" ]
permissive
SiLuYot/YutnoriDefense
2971affa96bb2c6e596c505295d4a957407b54b6
ade9b64e76f46c2787ac64d606e0bd118e6b833e
refs/heads/master
2023-01-28T03:47:51.763754
2020-12-14T12:53:52
2020-12-14T12:53:52
307,973,786
0
0
null
null
null
null
UTF-8
C++
false
false
110
cpp
// Fill out your copyright notice in the Description page of Project Settings. #include "EnemyMoveField.h"
1c3dd50e3aa50275f6fd6c6a783966fd25728b04
3296cab14de3ba88ba01637c634f213f2345da55
/HSDF/ExternalLibs/GeoTools/Mathematics/IntrCircle2Circle2.h
1e581ca6946bfe82f1a240f32c72a4fccb75feec
[]
no_license
teshaTe/HybridFrep
63b2fe47a6ce49927309743e1f708658c2f2f18d
ded2bbb917bd1f8bc22e28b35bdf86cf6b0340a7
refs/heads/master
2023-03-04T01:35:36.054376
2021-02-18T21:36:13
2021-02-18T21:36:13
158,251,562
2
0
null
null
null
null
UTF-8
C++
false
false
5,900
h
// David Eberly, Geometric Tools, Redmond WA 98052 // Copyright (c) 1998-2020 // Distributed under the Boost Software License, Version 1.0. // https://www.boost.org/LICENSE_1_0.txt // https://www.geometrictools.com/License/Boost/LICENSE_1_0.txt // Version: 4.0.2019.08.13 #pragma once #include <Mathematics/FIQuery.h> #include <Mathematics/TIQuery.h> #include <Mathematics/Hypersphere.h> #include <Mathematics/Vector2.h> namespace gte { template <typename Real> class TIQuery<Real, Circle2<Real>, Circle2<Real>> { public: struct Result { bool intersect; }; Result operator()(Circle2<Real> const& circle0, Circle2<Real> const& circle1) { Result result; Vector2<Real> diff = circle0.center - circle1.center; result.intersect = (Length(diff) <= circle0.radius + circle1.radius); return result; } }; template <typename Real> class FIQuery<Real, Circle2<Real>, Circle2<Real>> { public: struct Result { bool intersect; // The number of intersections is 0, 1, 2 or maxInt = // std::numeric_limits<int>::max(). When 1, the circles are // tangent and intersect in a single point. When 2, circles have // two transverse intersection points. When maxInt, the circles // are the same. int numIntersections; // Valid only when numIntersections = 1 or 2. Vector2<Real> point[2]; // Valid only when numIntersections = maxInt. Circle2<Real> circle; }; Result operator()(Circle2<Real> const& circle0, Circle2<Real> const& circle1) { // The two circles are |X-C0| = R0 and |X-C1| = R1. Define // U = C1 - C0 and V = Perp(U) where Perp(x,y) = (y,-x). Note // that Dot(U,V) = 0 and |V|^2 = |U|^2. The intersection points X // can be written in the form X = C0+s*U+t*V and // X = C1+(s-1)*U+t*V. Squaring the circle equations and // substituting these formulas into them yields // R0^2 = (s^2 + t^2)*|U|^2 // R1^2 = ((s-1)^2 + t^2)*|U|^2. // Subtracting and solving for s yields // s = ((R0^2-R1^2)/|U|^2 + 1)/2 // Then replace in the first equation and solve for t^2 // t^2 = (R0^2/|U|^2) - s^2. // In order for there to be solutions, the right-hand side must be // nonnegative. Some algebra leads to the condition for existence // of solutions, // (|U|^2 - (R0+R1)^2)*(|U|^2 - (R0-R1)^2) <= 0. // This reduces to // |R0-R1| <= |U| <= |R0+R1|. // If |U| = |R0-R1|, then the circles are side-by-side and just // tangent. If |U| = |R0+R1|, then the circles are nested and // just tangent. If |R0-R1| < |U| < |R0+R1|, then the two circles // to intersect in two points. Result result; Vector2<Real> U = circle1.center - circle0.center; Real USqrLen = Dot(U, U); Real R0 = circle0.radius, R1 = circle1.radius; Real R0mR1 = R0 - R1; if (USqrLen == (Real)0 && R0mR1 == (Real)0) { // Circles are the same. result.intersect = true; result.numIntersections = std::numeric_limits<int>::max(); result.circle = circle0; return result; } Real R0mR1Sqr = R0mR1 * R0mR1; if (USqrLen < R0mR1Sqr) { // The circles do not intersect. result.intersect = false; result.numIntersections = 0; return result; } Real R0pR1 = R0 + R1; Real R0pR1Sqr = R0pR1 * R0pR1; if (USqrLen > R0pR1Sqr) { // The circles do not intersect. result.intersect = false; result.numIntersections = 0; return result; } if (USqrLen < R0pR1Sqr) { if (R0mR1Sqr < USqrLen) { Real invUSqrLen = (Real)1 / USqrLen; Real s = (Real)0.5 * ((R0 * R0 - R1 * R1) * invUSqrLen + (Real)1); Vector2<Real> tmp = circle0.center + s * U; // In theory, discr is nonnegative. However, numerical round-off // errors can make it slightly negative. Clamp it to zero. Real discr = R0 * R0 * invUSqrLen - s * s; if (discr < (Real)0) { discr = (Real)0; } Real t = std::sqrt(discr); Vector2<Real> V{ U[1], -U[0] }; result.point[0] = tmp - t * V; result.point[1] = tmp + t * V; result.numIntersections = (t > (Real)0 ? 2 : 1); } else { // |U| = |R0-R1|, circles are tangent. result.numIntersections = 1; result.point[0] = circle0.center + (R0 / R0mR1) * U; } } else { // |U| = |R0+R1|, circles are tangent. result.numIntersections = 1; result.point[0] = circle0.center + (R0 / R0pR1) * U; } // The circles intersect in 1 or 2 points. result.intersect = true; return result; } }; }
94c9db43635c677a20ecf39cc0ba4735c5fdc26d
1a543e7112e6a3b49098c2c8f8b1a7f1973a77fe
/Books/뇌를 자극하는 C++ STL/06_deque의 Random Access Iterator.cpp
36a05c2d41044ea087bb89084c7a05126e96fc3e
[]
no_license
booknu/PS_Relative
d0bc27cbc695511610b83a6f541410f4c13fafd8
944964bfed4ae04f38c20b1dfddea1c63f236f82
refs/heads/master
2022-06-09T02:22:12.306623
2020-05-05T08:35:20
2020-05-05T08:35:20
198,022,480
1
1
null
null
null
null
UHC
C++
false
false
548
cpp
/************ <주소> : p141 ********** <해결방안> : ********** <오답노트> : */ #include <iostream> #include <deque> using namespace std; int main(void) { deque<int> dq; dq.push_back(10); dq.push_back(20); dq.push_back(30); dq.push_back(40); dq.push_back(50); deque<int>::iterator iter = dq.begin(); cout << iter[0] << endl; cout << iter[1] << endl; cout << iter[2] << endl; cout << endl; iter += 2; cout << *iter << endl; cout << endl; deque<int>::iterator iter2 = iter + 2; cout << *iter2 << endl; return 0; }
8de6578cbafe3203a27c259c2b341b51c59f3429
d2fe987156fbe19832e1e6c24d8fcf4aa9472907
/MapleBlankBlade/processor0/1.3/vorticity
21cfde65c3218a40d44a73d040ea6a757940e3b5
[]
no_license
harinik05/BASEF-2021
d18ae164bc116d51b9b68c351b8159c2809ca63f
a83dee5d369caccbb513dad8df5023926689a71a
refs/heads/main
2023-07-24T14:12:16.730306
2021-02-03T00:33:51
2021-02-03T00:33:51
323,745,817
0
0
null
null
null
null
UTF-8
C++
false
false
1,415,844
/*--------------------------------*- C++ -*----------------------------------*\ | ========= | | | \\ / F ield | OpenFOAM: The Open Source CFD Toolbox | | \\ / O peration | Version: v1906 | | \\ / A nd | Web: www.OpenFOAM.com | | \\/ M anipulation | | \*---------------------------------------------------------------------------*/ FoamFile { version 2.0; format ascii; class volVectorField; location "1.3"; object vorticity; } // * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * // dimensions [0 0 -1 0 0 0 0]; internalField nonuniform List<vector> 19631 ( (-0.04460670548859501 0.00707523412466848 -0.01367648650987323) (0.1981690283048295 -0.561068984720185 -8.148421488245839) (-0.03104837543018178 -0.04140604688373693 0.01219306707803427) (-0.7773215933213773 -1.899752605256501 -22.46044994318153) (0.2572472074281481 0.06352007246692659 0.03592098976478122) (0.1017480898237922 -0.1678371551094118 0.1234681690488184) (-0.05250447631286503 0.01112906423875583 0.02630787183084236) (0.008780439837894061 9.012710969685994 -5.596207135472659) (-0.1593866337266099 -1.901097537354906 -6.480441732917749) (0.008785482774907693 0.006130501420297457 0.0008521617633249226) (0.5572413706751889 0.29893524010237 0.2132466641906849) (-0.06346607593209971 -0.1338808105761349 -0.08129080301729098) (-0.8060395175718371 1.206480897104036 -20.43824111037146) (-0.000334457435644156 0.03514820690240294 0.074194864514304) (-0.002015915628207551 0.001400802789110214 -0.01039487097585234) (1.142626184757128 2.145680333012619 -1.521973941747946) (-0.172711545538855 0.05861443574093748 0.03730289064542679) (6.95129581459131 6.311481049849594 5.116226087659623) (-5.24089582243513 4.761251880732337 -0.7406215612954065) (-2.360503804089073 2.158941028444686 -0.9438244250049144) (-0.07434594885052802 -0.009682112495837503 0.06380757975780724) (-0.05028088865371978 0.01815518610528333 0.01336701534053954) (0.9391048427939763 -0.4197144765659535 0.8303082711189732) (0.01124013895326585 -0.001160911669415428 -0.01480436295814684) (0.1309839047573536 -0.1711907789414834 0.1397913879436118) (-0.03053449753761186 -0.01109078223062098 -5.49501900828135) (-0.03605090179403625 0.01302352702537544 -0.2182019660707127) (-0.8946085258584009 -5.720083292048046 -6.834738734521184) (0.8061879032184016 0.9138479782183057 0.2457057324128271) (0.003659582168145166 -0.0006271185373484659 -0.009367558560113742) (0.1001702337949714 -0.0799503760346235 -0.01320279473491598) (0.1661510896260535 -0.0130402952298358 -0.01744204836793795) (6.662236462346741 -5.020266257951771 -0.7228205046983671) (-0.1909639137617071 0.1250092303224685 -0.07144110213970131) (1.602263658780947 -0.7030632599004126 -2.173867640185772) (3.475524536944549 1.043868961211771 4.191680075856331) (-0.003124514129458193 0.01502088668129267 -0.0871319840350068) (-0.2490882643916891 0.6190937676840905 1.266555475180163) (-1.27527508550364 0.3826170874914093 -0.3156666890340896) (-0.5252066130141041 0.3464119956182449 0.4223629794466551) (5.413792711155168 -0.04498734958401118 -1.428909122119491) (-0.05547143799426266 -0.01717497603675838 0.04249420289401107) (0.02075157258618867 0.00800241033471763 -0.002678347124817633) (0.01599055390647602 -0.118633758448548 0.1049722210141262) (1.271807032825411 -1.41689194579744 -0.01744776304551365) (1.736415466528009 0.1303373873555647 -1.447359376069867) (0.02902982666532669 -0.01484825792281274 -0.01576032095681947) (-0.1816801203358349 -0.05581223788514603 0.0723423214544973) (0.0218061750500193 -0.02632304557052071 -0.006188390965084917) (0.08533761867200582 0.02118856556804007 -0.03492939026708658) (-0.1575130279944787 0.1927793245460166 -7.19266979726352) (0.7182461268736409 1.000507223220913 -1.350719350995753) (0.05041809245485878 -0.01451126852746414 -0.01413738717794601) (3.129426755372199 4.530584624612785 -4.874200535194467) (0.1771874413796333 0.5550274570051364 -0.1111088220011408) (-0.3848023054255306 -1.113470623085997 -0.4993274096072787) (0.04163683135453405 -0.08116502162996955 0.0759184340400139) (0.3986477320378884 0.1498878747117822 0.07446524768591638) (3.108806589945887 -3.457272517743741 -5.086412843691769) (0.01162386512629213 -0.006330879039788926 -0.006746585887596686) (-0.02207346539499622 -0.008856809132965177 0.01755885303831083) (1.252983870304633 -7.694565072631073 -1.591495428087106) (-0.4507910191705893 -11.8045448954858 8.007054030380218) (-0.1271286382652672 0.1082316844670769 0.05494480668164058) (-0.02998279261740396 -0.01783392707165395 0.0859453252308377) (10.38049316798658 -11.50195583061034 3.821144645827452) (-0.09969127540460351 -0.07089419221360613 0.01664673104633231) (0.1585278040058783 -0.06361544861184933 -0.06677714172129107) (0.04169092101002758 -0.1740507663867878 0.3992928337662321) (-0.02241678942114455 -0.006950832554127524 -0.0007455638987619861) (0.001878609838812572 0.01163005732370439 -0.00195718904050044) (-6.683548633422081 -13.48340025014901 -13.92727370418392) (-0.02113091841709613 -0.02364964180221336 -0.001543609785798473) (-0.01208884237881044 -0.01366398765519499 0.02487151351726753) (0.1033077161126065 -0.1145012780037488 0.07536562125060313) (0.9691007366478666 1.1590752529974 -0.1504171613378782) (0.1000500561738039 -0.07174704971224401 -0.2082719101348613) (-0.8696043752905165 0.2627283477348265 -0.2200662790443688) (-0.432315835770424 0.4579473222236681 -0.4870367024031663) (3.810986966986788 -11.77576225696663 -57.8982716308488) (0.1304812897280494 -7.352226774620771e-05 -0.05632058106563713) (0.3743110924905533 0.05011508999668408 0.206754112162208) (-0.2265308661925488 0.0533816733404367 -0.1743463121737108) (0.03734091920539274 -0.5410648268047799 -1.566045683280854) (2.455709251097291 10.43656775787013 4.183124829456708) (-2.950117887189728 -49.81448909186314 1.374897865275242) (0.008886186190753403 -0.0227556276974271 -0.06973470973991833) (-1.069858582199158 0.2214778726704945 -1.376408643083595) (2.05725443834569 10.71943324154686 20.94283067099913) (-0.3938769535677172 -0.06495087957475322 -0.02189613038910746) (-1.240770471263565 -3.56347915193861 1.990784508128453) (-0.1670617589554425 -0.04336630320268511 -0.003303148825901173) (-0.005666931433014746 -0.0273744233886906 -0.1098949448034714) (0.08080773511165622 0.005781086800118317 -0.01382849325539448) (-0.1229589968175536 1.411384810563055 -0.9557045659003802) (-6.176259697020865 18.16312313395592 -0.6155259655276368) (0.7847843920260187 -0.3945146648726806 1.066879783985621) (-1.227551062167628 -2.059098166896104 -23.29113411022215) (-0.01627304166011204 -0.01829114966466344 0.007653850511090965) (0.0243218570278068 0.07605491971610209 0.009946491893122671) (0.1543949368353407 0.1064958832089125 -0.02091321090666445) (-5.846780471420154 13.24847386586536 -0.5369523723791513) (-0.2416376688873787 7.095582895092914 -2.95196622259059) (0.06866519185387045 0.0113826808849912 -0.0002515429875159228) (1.640242997240581 -9.732472999610403 -1.8011459475504) (3.151945191922745 3.823969072270528 -4.259934168978273) (-0.4851269026199643 12.66249704714109 -4.020761302894133) (-0.2210972563439469 -0.1024341218748672 0.06262819974332788) (0.05636642081309452 -0.04852512353169632 0.06340516709710671) (-0.1442511532657618 -8.490178742844439 -4.335136032792207) (0.1257533613908873 -0.8847166349168365 0.0438432599092746) (-2.279366742932489 -5.694542313990692 4.11404326543184) (-0.7872669993228116 -0.382893602520548 -1.14809199606274) (0.006272320226510759 1.425382565599459 0.3728114546246115) (0.06680362068148055 0.01296458882647821 -0.003167787979499096) (-0.1118251019973741 1.978144101489164 -2.261021494227713) (-0.570108552772324 7.616871578351855 4.653677800044521) (0.04291755191014416 -0.1057751949615405 -0.07069550061358869) (0.6674792816999346 1.414649208092385 0.1538010800670039) (-0.1278253445239078 -0.08760064419660096 0.03554429381267616) (-0.002677938098564918 0.04604698610132633 -0.0315490593508026) (-0.0007904419264037656 -0.03694618447288647 -0.07797716486263691) (-0.01102492112907225 0.04280639332788076 0.007345052401604785) (-2.311485111257339 -3.218836731326179 -7.108487871045132) (0.1717257907642399 0.07465184522593205 -0.01073653363357978) (-0.04585820334026008 -0.02723682092614655 -0.006264886855154486) (-1.651741700583833 1.362635994675345 1.564013410149123) (-0.02662125826473694 -0.09054649748981239 0.02246689402590973) (0.01408454572176941 0.008080617032459979 -0.007819983465939971) (0.3982370621579102 0.1414670037315057 -2.4991537505894) (0.05130096577001399 0.01148974876409234 0.009775398594494675) (0.3020139955553457 -0.1140867298453461 -0.01277715077655029) (0.7054068040025383 0.3120927726794647 0.1570389236346313) (3.627197710012481 7.908637354247833 -2.403796740048347) (-0.1133781711266483 -0.3183736435006977 -0.3612497111698577) (-6.588379412776194 3.795044177677269 -10.89320814822427) (0.3793357142944764 4.211032526597755 3.016890772293917) (0.5202693612799457 0.4975631045422446 -0.01086184636763281) (-4.637587795694597 8.976523388484056 -35.00945807078197) (-0.2337186181643265 -0.2603000978917363 -0.0795737499661396) (-0.04975706895303622 4.514793240019992 -1.287245646882474) (-2.774038837429388 4.600294539372325 -5.456967124937264) (0.9371184164352465 -0.1777972203442653 -2.698954908341308) (-0.005172776940156193 -0.0004098254714889581 0.01466435116137813) (0.01693029080409819 -0.1001514773538533 -0.04920029085345849) (-3.587137803442424 -0.07800538997711026 -9.631038896300588) (-0.02675843930235407 0.02464700731190321 0.009656594793010093) (3.098098922586345e-05 0.01135287925276509 -0.01403641981127336) (0.01021675042565912 -0.01297488406852037 -0.00556087728101717) (-0.4943412221327279 9.022257134212055 -6.454354049237603) (-0.1902523505933412 -0.1169286604115182 0.06218599284480579) (-0.07349120720167869 -0.06990880799042487 -0.02228225727955549) (-0.0359494142132678 -0.004660296094578044 0.01898229515794479) (0.0154645423257867 0.02910443566588128 0.008728166504646782) (-0.07242817118463717 -0.00170429958777845 -0.001500917442095122) (-0.2529726139790752 -0.03777379787449126 -0.001738790649591211) (0.007946396110264875 -0.004236096802395534 0.003018118954253617) (0.2563794739989419 0.3253231011545299 -0.6473266245369407) (-1.58819607449874 37.2089757296936 7.618497635804308) (0.1460367696017074 0.2861274978179251 -8.653675289561221) (-0.03899217323110747 0.02268298873779608 0.0257946559724295) (-0.03235980842191492 0.001247812088249951 0.01724564042514765) (-0.000709738768738942 -0.07852505649646242 -0.1468444413825414) (-0.1492638557442155 -0.009955191396003118 -0.05475240026710949) (-0.02758146986319548 0.0009989518663276117 -5.489301651137523) (0.004268856193200148 -0.01327853366023299 -4.936208824286419) (-0.03742985856994581 0.05208196278698889 -0.003798441324036856) (-0.0330433240660197 -0.01045394578140925 -0.02918037797583356) (-0.1065877808150644 -8.771587051970894 3.996582156702876) (-0.03752325264149541 -0.01589437070411854 -0.04092024666412643) (0.07414306871957477 -0.04055494238440963 -0.1905684650614739) (0.05924520438850431 -0.02059175815954617 -0.01382244506065455) (0.4503401511452652 -0.08006859260992776 -0.1499726380822282) (0.01666855081773687 0.003706124356801808 0.02332758807477165) (-0.0394234410305799 0.01537643843345075 0.01835054343735816) (0.101920923290197 -0.04682098758415941 0.1199600840915085) (0.003241805178742127 -0.01816213156296686 -0.003630148152722642) (-0.05467006463356766 -0.08171196267849218 0.1958613187693317) (0.06278324231992777 0.01398636307017099 0.05382112315247911) (1.421084851227865 3.462605866618024 -2.832222270895469) (-0.305018219363866 -0.0840440562684682 0.2072541118309453) (-0.00775870163833646 -0.002713947902363109 0.01036111722540437) (0.004298602555852123 0.001178980375773723 0.0301535290335025) (0.01748376504842448 0.02682739816500425 -5.462196741200573) (0.03574739029771935 -0.02474997026555839 0.08786617641596089) (-0.005426628834906843 0.007279590524956538 -0.04717704594804684) (0.03115597723169724 -0.1555535387292337 -0.1525779623117088) (0.06544715330368978 -0.1378879857203375 -0.08745649996708162) (0.01691309557818758 -0.02933556671985667 -0.002355722886548717) (0.02958275642494382 -0.05268731642275754 -0.06103328937310844) (-0.1319067244239294 -0.002557718772628304 -0.06446541860960421) (-0.003253836793004956 0.01509053096295911 0.06243336480869438) (-0.1547878531503424 -0.1832534352505416 0.2246178007993265) (-0.01935504951922582 0.001325243201767828 -0.01471058102850381) (-0.1215650813342431 -0.06263767752399624 0.1228111712823894) (-2.70933260902502 -0.06899445650555625 -1.461115783912225) (-0.08418339124429305 -0.1725891305247352 0.09676630109705059) (0.01888042163769843 -0.009153839243121879 -0.007561737471886385) (0.04231835306003541 -0.02859076225433887 0.004168061997708141) (-0.02607113738494878 0.003118667414862712 0.005022362957071487) (0.06920726143752662 0.1348513437390951 0.02217852903890424) (0.02101954960406955 -0.006042595733310709 -0.01087703407068674) (-0.02202447121081124 -0.02280909736888668 0.02939758960372748) (0.03970825637065418 0.02325374434086581 -0.01869451992206086) (-0.007832824732078723 -0.01294557502605849 -0.02788638396514923) (0.132357023795277 -0.08355879271120999 -0.1745373450808878) (-0.02856960066845253 -0.007449031083517979 -0.0603423118237545) (0.06360112592615193 0.08488454643475787 -0.1516621630112154) (-0.03503651644117246 0.08743084348057729 -4.859254998248097) (0.06058030824773326 0.1092886945887402 0.1071293671801485) (-0.02717349079000674 -0.01267153344644979 0.06836456977115288) (-0.4162835853518566 -0.09165917039813065 0.1581594999151827) (-2.493998634365317 -3.107532970797339 -12.63395733606465) (-0.01917940930827291 -0.01003712645941023 -0.02169750785685345) (-0.2449122133214541 0.01370272401503455 -0.01801371196600529) (-1.556629440219656 0.8501321622173491 1.424078428752181) (0.00361968812826001 0.006803793007527648 0.001693213047459198) (0.0416413163234676 0.0054172113586975 0.007525993188116784) (0.01541934185236336 -0.01216035934519256 0.005855003128440584) (-0.2891880423939557 6.589712724503214 -2.822282784516603) (0.04008586444373279 -0.07422609657649037 -0.002080418278632621) (-0.05940422234966224 0.05003280264611455 0.07688376443815405) (0.01418126873016034 0.003596788573555609 0.03150320837432719) (-0.001057499662533628 0.00198105608485609 -0.001435215307522415) (-0.0007256129313828058 -0.005770847105396038 -0.008066011107001819) (0.1211372132812087 -0.00864039057377676 -0.04918461640536332) (0.2820433928239714 0.08168001829491113 -0.0293356195111355) (-0.06592212473555163 -0.004615311281167017 0.03206251205728122) (2.802763534572413 7.020925962513843 9.529447812493663) (0.3037908706062329 -7.44429727831572 6.040256028071993) (-0.03813569011192791 -0.01980777695218661 0.01460170329970072) (0.3856844798583753 -1.355610804645813 5.092754671694347) (-0.9667831653696337 0.481799033309274 1.279630501769872) (-0.1437301552729865 9.439172830898027 -6.0117070125163) (-1.023130431194563 -0.1335245603131723 -3.756147501695894) (0.6290571679624558 -1.091060876248309 -2.231383415003433) (2.908828762313059 4.573719089297655 -2.076276016055418) (1.535770826931705 -1.063168761605719 -2.148327491566224) (-0.4322713172763196 0.3405985450625616 -0.3456266129756991) (-2.756233434065238 -5.54436983841838 -0.210454789734469) (0.04314310623643765 0.01010048372886358 0.02892184518274349) (0.1885646256707236 -0.1125346697398267 -0.1254917351636226) (-0.03531379327266514 -0.02414731098380456 -0.0509198289742011) (0.06832518476182334 -0.01555159848241472 0.03047087669906175) (0.0208318556819112 0.002155864974008902 0.02071627493100418) (-0.3090038031843768 -0.4208175751708524 -4.951783617719) (0.001785075800637621 -0.03738795129928661 -4.839731563086175) (0.02694370181171011 -0.007778553699984977 -0.001843704721119672) (0.04321369393728068 0.4387449977506761 -0.667289080919812) (-0.0168163588400718 -0.005405006052937716 -0.01654803291382377) (0.8515288545617556 -3.587480355256955 0.5814952915872365) (5.941757286689732 7.798284631240233 2.402954005757258) (0.06207818182913799 -0.05318053954742195 0.03978649862600404) (0.3988975535103975 0.2168024868649772 -0.1165520625546947) (-0.007198748125409537 -0.02389105193020677 -7.88878396244548) (-1.705499528161359 0.8649483629416199 -3.359984689713361) (0.4095741772807178 -1.255841182470502 -1.243686105689884) (0.5198014453874559 -35.81444453536553 -1.618272092329001) (3.647673903447695 -30.87466884683217 -3.172452956380531) (3.655034922274071 0.8344993393234643 0.7565477299975331) (-0.01588947808914987 -0.02161336125862709 0.02375795089848398) (0.1782090387657428 -0.06289881691932753 0.1310749810658066) (-1.005610489236895 0.9206634980185437 -1.712845875646372) (0.1845399329048578 0.2667462877277624 -0.2385806841142954) (0.08425750499736759 -0.007249023423153419 -0.1030493907239302) (0.06590758245045933 -0.08138625614399717 0.1037311655912385) (-0.1634488278553606 -0.1135848378581162 0.04023756125642165) (0.2283826508559271 0.24119816397561 -0.1655256036612957) (-3.053628850156831 -23.26324129344615 -1.3685808515239) (0.06434753345494859 -2.197094407664422 -35.32350206114891) (5.269070729302106 -8.109261383180529 -3.287964867335877) (0.2547027973862179 0.3305719010089638 0.1889782398326265) (-0.671560777928229 -3.907383478068455 -2.50203274876037) (0.001274321097159223 -0.01165690702964083 -0.003230398733620702) (5.306586934060211 5.957802528292577 0.03632935893010725) (-3.6581429787015 -37.11783397716574 -0.3898761315547363) (-0.1034224128036675 0.02348401613395687 0.004597229835575783) (-0.03860365333047221 0.08200640978736971 -7.396489640414605) (4.286275952600885 4.06017904335024 -1.929963538387256) (-0.008537682492488739 0.002195137947442754 -0.008353020692172131) (0.6102966956401334 -3.04499303284951 0.8646163841116644) (-0.6023448028650717 -0.317317647228416 0.4353551820419536) (0.1716879997317999 -0.06505768943064888 -0.5308406521792266) (-7.705050047976592 -0.8044986010468058 -36.6546782632681) (-2.950868683306817 -6.629015371250279 -2.341053640330503) (-3.504833299143237 -15.88657857448547 -1.444198177276523) (0.8147394780905672 -11.09807306469664 -43.13051440995348) (11.42112104780736 41.02571215568992 -2.67666387199054) (0.1751999936135648 0.09392614395720614 -0.1038167639775438) (1.08073366620138 6.739915725521569 1.090386798004532) (0.1731198198707622 0.1932029755710712 -0.01401465955309381) (-0.0202987305375892 -0.00808217631533851 -0.01612509840255886) (0.0271298777013117 0.0540593967161393 -0.004362246623169093) (0.7590076848003289 0.9074952186470204 -45.42675857270423) (0.1453659975220936 0.09968682033590942 0.004504169392853474) (0.00119380038977759 0.001413587763756874 4.095627090705631e-05) (-1.462225212037815 -0.2252801446455246 0.4436608340019251) (-1.926911196094446 -0.3087615463975089 -28.38102087884978) (-0.0756595159165396 -0.1020719599317229 -0.05544172176600403) (0.3617311392060315 0.6005986630549547 -0.8398691885115077) (1.415081489893525 -0.3342613832138838 -0.833853482768766) (-0.2163758354843366 -2.053282849770549 -4.20354800632558) (-0.02855178586973295 -0.7581797271467443 -0.3356583481785725) (0.02660572689985615 -0.1363111539704183 -5.535631018409787) (-4.593872842642246 1.926563805305865 -0.1686527633792441) (-0.005564737265178248 0.01899324323136173 -0.02240216637717098) (0.2007119849291608 -2.43002452074055 -1.096672776917883) (2.305933065120794 -2.322119220706768 -0.1780790845046215) (-0.00700262500522045 -0.01058447129388611 -0.01502945695937958) (-9.580716627011117 1.222493147101132 -1.605318255051874) (-0.3843573492709788 -0.6497347863150513 -0.295633149804275) (0.0002689872267688403 -0.002823319175117025 -0.00186327668677422) (0.01803374816961775 0.007433658623384964 -0.006967032685134374) (-0.008737772016239972 -0.04433556053733741 -0.1124384733252705) (0.1971447635601616 -0.1991129198408803 -0.09305694147159448) (2.863446186577759 -5.785787969707331 -8.844583766752237) (-0.976260871860988 -14.1941430123409 -1.221316010974545) (0.3935685932303803 1.500705607121317 -0.171345416833445) (-1.196707284443642 0.9687615454478338 -1.844347519402136) (0.02969985480854685 0.003629479317331487 0.007895593639463195) (-0.1565365612977577 0.1841304210964919 -0.1856775907835581) (4.248962439159861 0.9367197657282081 1.452249492399954) (0.8635456231680908 -1.099669645271929 -0.1611659881227391) (0.1910009227301932 0.06013100119298892 0.02342289324472777) (0.03515569914567913 -0.04323319556534579 -0.04821437814205943) (0.09885656994308475 0.2741765401085248 -0.04700034754518079) (-0.05960978512021209 -0.8746312823785324 -18.36073664275309) (-0.03563093992618551 0.00379065138929641 0.02197791945969033) (-0.1515393944764225 -0.05032548741613441 0.04934961696617571) (-0.01160462419622419 -0.006129873161448262 -0.003776442428982249) (-5.089887277762166 4.767514897713702 -4.643494349449643) (2.565966462342208 -9.021023369851671 2.404565803725082) (-0.7260087569044412 -0.1640333016481862 -0.6375362215217572) (-1.00996027289811 0.08575200664037165 -0.2498573545839978) (0.19364044609247 0.155423005941533 0.02769968539207499) (-3.039566652378126 -2.941760851174333 -3.828469731106584) (-2.850779366881779 -2.128690094853612 2.024279572864342) (0.8998587779213216 -0.3806742782746019 -1.604594034744488) (-0.03507031116899995 -0.4026728085608123 -1.079610853046904) (-0.0120515638856375 -0.02782298343632277 -0.08830699538758474) (-0.2366837184357393 -1.601346911047811 -45.66043233748805) (0.8802878182551606 -0.1353112718917552 -0.03872785386275966) (0.02916766260733466 -0.004992779507979057 -0.00623075328883824) (0.6606725328817287 -4.664293496571694 -0.8399779225761832) (-4.961892763136629 -6.968103165253197 -3.957734407395026) (-0.2056557385451141 -0.2126413961281998 0.135278716396015) (-0.5896508312116659 4.585911868285737 2.775797621906743) (0.03535332438012549 0.04146990584521072 -0.008137914132651676) (0.1258071514438548 -0.05470214704542646 0.04316536058454282) (0.02322623371203819 0.1042045627141705 0.1281535178222983) (-0.1146870260462012 -0.001860416762777681 0.09985769128388214) (-0.002439655298779528 0.001801590097056525 -0.0003237093806072972) (8.78006988419172 5.223698460578086 -3.309463574625426) (0.353008604378646 -0.6022309717306623 -0.3483719250340009) (-0.1279727732387593 -0.100837354438645 0.04095288453867116) (-1.988367579526406 3.027451986086124 2.601718268861701) (0.08058727011299339 0.009667750107380009 0.03330568770749651) (-0.2489483409596821 -0.1461921491987863 0.3845077246058559) (0.1939587636859671 -0.678719662966649 -18.28888611825936) (-1.075307844353754 1.172914887596965 -0.1293880207828121) (-0.03982899988537858 11.14604211461788 1.192056082376159) (-1.70778600965369 -2.70330069338776 0.2478464444064453) (-2.226745461719798 12.21327685646106 1.054509168335486) (1.109294967564345 1.115344822143753 -2.664096066359117) (-0.2488902646205925 -0.4458294647801275 -0.1107218770779495) (2.488499217732365 -3.88069842798724 -7.722288311733998) (0.02993009746537417 0.02533622179297488 -0.02735233749622401) (-0.06158081643557346 0.03346594733330244 -0.03306173790833754) (-1.004351444370824 -6.557980347496941 0.9136584085386527) (-0.02273024807356648 -0.2296847045633988 -0.03964024832537523) (0.2794458841173129 -0.2897097723919649 -0.8305685530659052) (-1.857200737871021 0.755847868192971 0.4053686963350622) (0.1625758871881675 1.097865359631589 -0.6175084998304136) (-0.04565195999282538 -0.02788267484444822 -0.03497194670952782) (3.598232110306182 -3.754596759056433 -1.02376514644971) (-0.2234065274204999 -0.006945962587295185 -0.04079313455259831) (-0.2956832297265919 0.0415074491210424 -0.1255059634296185) (-0.00154525438103223 -0.0009732055949392649 0.02090914250515859) (3.700996799991223 -0.4510242276185633 -18.51636619260377) (-1.116020154993439 -0.4293070449764009 0.5454542180254134) (3.603082000021444 28.5804128759404 8.016997242363212) (0.08819095107932912 0.2065396499328158 0.3150947944388205) (-0.5072173565179838 -7.417825882218009 -4.859081640827837) (2.979087751784478 -0.9640690188948827 -2.092254812686063) (-0.1663180555100767 0.2274057472506155 -0.1907763888007215) (1.125543388010422 3.20502007839867 2.286628803315531) (-1.564297236605501 6.660304726247009 7.667427323302999) (1.160421080902231 2.963605126416303 -27.18330332227369) (0.2000580252782436 -3.11201772506376 -0.7643988146802272) (-0.008764202934419067 0.05045716064320444 -0.02957965780789566) (-0.1277935903109727 -0.05960502775926573 0.04619009573100332) (-0.02290714048007129 -0.01823364888603526 -0.004302506097185875) (-0.06325760243211566 -0.01692023445617033 0.02130371461393915) (-0.02168416625046844 0.2571389615700537 0.1183561079249945) (-0.002248459931388471 -0.03372278652644527 -5.468453911771752) (0.00415364224494415 -0.006010054561747517 0.004072310714962136) (0.04854241906728774 0.05890855922353255 -0.01936338210747053) (-0.364394397084484 -0.2211634558473358 -25.59363614753833) (-0.01052594397373212 -0.01681258054540414 0.01953488461596718) (0.1318073180298812 0.9949335007529245 -0.221941146573493) (-0.3710832275800754 -1.062736228699632 -0.3911036714242276) (-0.1340396688848343 -0.06288691194291904 -0.001428577167003259) (1.38717476306767 8.915290552492424 -5.068433250676285) (-0.2972019649785207 0.05909471513324963 -0.2852466737192675) (-0.2502099526639561 0.27684635734764 -1.829711154505319) (-0.0543358766762083 0.01606691241358552 -0.00503835506918599) (-0.5100945161221055 -0.1499663846957429 -0.2236831367437179) (-0.1693480964611696 -0.05788128983224326 0.01003678156422503) (0.003891376220788174 0.004667025462292897 -0.2720982283923847) (-0.04109227315803048 -0.02194077387887349 -0.0220234002763345) (-0.02075226290814444 0.02808878067014559 -0.02367254498725664) (-0.2643321550006492 0.1738460686452982 -0.1267950919834434) (-0.01215362304492349 -0.01724736776339473 0.00414405077243648) (0.05118740517832561 -0.02319922726216743 -0.0166619457202635) (-0.0001167155149012552 0.00142049843143469 -0.001265709191487401) (-0.07576524337643596 0.06671715936906614 0.02209814715701264) (-8.442289466339595 58.36726489638935 -7.612635357403396) (2.131620904219061 3.143280674061126 -0.7288007003672554) (0.03952513567167788 -0.02965205117488635 -0.02282143940412556) (-0.03323939797731388 0.1298181451012546 0.02379712445688904) (6.822972641319487 43.60806986134299 7.520759516274454) (-0.07578639558962706 -0.01708576757566509 -0.0007242729576868428) (-0.0002373437837235193 0.07574552864466939 -0.01933061175696672) (-1.135586823933502 0.9348958045891049 -0.3026885643847607) (0.006367232504624423 -0.002933726847695629 -4.987095060444168) (0.4691589657167083 -0.2258033480439084 -0.2476174830459179) (2.615930500607617 0.4948745977828711 7.503166335593895) (-0.003103445964062882 -0.5158667314004052 -0.1743133118180534) (2.745081250818762 -6.518663854020682 -0.7500409538563294) (-0.00831077442612459 -0.02022619777986761 -4.780191215731123) (0.01634993319343172 -0.02079291722764273 -0.0266017225061072) (0.3306932686981363 49.04754903925949 2.296834478500545) (2.175390138007853 41.41076604007068 -4.624940311782911) (-0.02689233465300648 -0.03162905297619011 -4.968096449049596) (3.282987972518045 6.263713119581978 4.439309213563268) (-0.01401914978738414 0.002172790516827058 -0.02320885899289937) (0.1469289502838925 0.769691811741493 0.3492119907495874) (-0.3132404224414585 -0.598623495320276 0.1967849150769088) (-0.00168602397605688 0.0001057601952970189 -0.0001576706372005565) (0.1346181303106822 -26.87306615637171 -0.9242170563632661) (0.959225796940494 -0.1730704862202178 0.166686483298389) (-7.388628518284127 -44.06056708587831 -2.629707664978318) (-0.02915138825753971 -0.01959769011695499 0.0535913243097979) (-0.1394048106164016 -2.121883494628596 1.610098160290125) (-0.1164499276244277 -1.292335727407342 0.2444097673014139) (-0.7264647118692469 -0.4420423290766952 -0.4226047153553152) (3.14822967659732 25.71984193334341 3.087997084083021) (-0.06730883413397146 -1.699835228396094 0.93166347630524) (-0.6316688708491616 2.972759169230073 -0.09125823182794668) (1.55596768616137 1.623694032889383 -1.367473200327227) (-0.2752367616761605 -0.1752916871521734 0.01373867419962036) (-0.08830354649649624 0.0774258890426598 -0.5948573430721915) (0.1892512581901092 0.1127814448184477 0.006522855474865079) (0.3754902498824536 -1.086973944954277 -24.31876598450533) (-0.5028505367456704 -1.254265151141539 -0.6208446920951334) (0.02337297114369322 -0.003564332167300198 0.01042451004419811) (0.05458082042777168 0.03810858831853343 0.04068502233870182) (-0.5294438502932821 0.001395170534244317 -0.02150417334958472) (-1.073358861862661 -3.735872035833796 0.5857363741803718) (-0.07932715304339204 0.03951906179479132 -0.02865710192406371) (0.2487178453878782 0.08119266742006506 0.1602707014223056) (3.263272596590976 14.2944186555529 -7.333976342418318) (-0.9798330263515783 9.046834594803386 1.361016695185425) (0.005492680371491566 0.005165281180508899 0.006722196078376836) (-0.4765056807020613 1.419188872068074 0.4571330957367677) (-2.465260903376381 -0.9095304206027348 -1.050223388033634) (0.8745179673228517 -1.21308461083383 -0.7732914106435522) (-1.57725655184248 2.618767569842225 -3.115978304462535) (-1.427581293615018 -3.507207248784092 -0.02727226051414522) (0.4305735066326016 0.253288582677317 -0.9027414066398668) (0.0819151205801799 0.08169403307492903 -0.02416095623018591) (1.54347930421874 0.9427874646464498 -0.159302372511132) (0.03286223194222928 -0.005800453715337444 -0.01688794193781435) (-1.689973492953433 -2.169712319615779 -34.40315235580267) (3.024612868667626 33.21289015701758 -1.899797950549629) (-1.272373424403016 -1.962512161447735 -24.7734147746198) (0.03631401678493457 0.02731755749623839 -0.02335022183434922) (-0.5293996573365884 0.296005106221521 -1.424332213261994) (-0.000592162505552757 -0.0002610007412653144 -0.003331978332702836) (-3.320914155020355 -68.08740874865325 -3.425301394008081) (-0.359402149349354 0.09994369341091422 0.2238352841952672) (-0.4387593780990731 -0.04648593042279554 -0.08275494771040895) (0.03188774246325148 -0.03992456443368185 -0.00858767470156541) (-9.225883614248726 -14.41866196696603 2.854412027816242) (2.23173528638965 -1.633430569967871 -2.530830348226376) (0.1221434754298116 -0.1343710184729713 -7.229213028442763) (0.289489614716792 0.2046115348238984 -0.3018983448674688) (-0.1115110446166843 -0.009104994680609983 0.01637775684815076) (-0.08100708912848542 0.009914466005711844 0.04709568954300193) (1.436779930879035 -0.06942337573681176 -15.16353440197022) (1.879794771894691 0.3192164405312093 -1.37058673418782) (-0.05155573213338589 0.01259456231312652 -0.1445046552701093) (-0.1633722988241577 -0.03236199597171396 0.0778401718419284) (-0.2393650719237398 9.70927697454205 -1.716457916549707) (-0.8284178796736595 11.72680729377648 5.107557070472266) (-1.615656969200906 1.976711472670359 -6.00331907418561) (-0.3038568265709306 -0.5064003831859732 0.2171594275363684) (0.3792184948433022 0.1334867275171919 0.03097876023826188) (0.2984979561929431 0.156251011041336 1.037334918467337) (1.571473656635537 -3.113476404330627 -1.597901471335322) (-0.05226239567125143 -0.07080850030961743 0.00426699219124204) (-0.3243056083955573 -0.05046414192319487 0.2016975741441546) (2.461277515449254 -1.247336756777629 -0.1409023925496968) (0.2175125703542787 0.05941368116503139 -0.08874068568104293) (-0.4789390893580686 -0.1674567810944356 -0.1835539280626562) (-0.1709127729865829 -0.1870585696808216 0.2037343847541396) (0.02177335340871311 0.0513807291456583 -0.007622588393384838) (-2.572617308679701 -7.664596936997548 10.23175827657547) (-0.0101352820142695 -0.02656889676937389 -0.04450018251389463) (0.4550912301620395 -0.2581181817591788 -0.0900547695568461) (0.4209916458099336 -0.04013196777166891 0.1379930081750906) (-0.362580712135907 0.03330072233007703 0.07312938082286879) (-0.06557685872317406 0.003200881946232415 0.01874929351666697) (0.001064712741640678 -0.01920857975275458 -0.005869470814636846) (-0.7506782230098662 -0.2034636839105884 -0.3492001819085713) (0.5464790785840663 -6.939881654849069 0.1400817727393255) (-2.562686080209458 -50.04045280784166 -5.460308671724088) (-0.7654139088652141 4.123491161198412 -2.162896138560757) (3.192800268948093 -33.27962531137717 -2.2420465046214) (-0.4998206901225438 0.03696837308231335 -1.70177841386135) (-0.931925837257001 -0.564688216687578 0.2893720329593573) (0.09417019359226657 0.02626712231286395 -0.02942997971001436) (3.924141795091431 -7.517130774968085 1.444923472173257) (0.1306885892287739 0.05829396036928421 0.01546102014516017) (0.9470487143185813 6.036380269630827 16.36273740588635) (1.138184956377883 -9.381662619542199 -5.41380383811135) (-0.09302103521522562 -0.03124478847766726 0.03060539290426406) (-1.6431324526283 -13.19418426630175 -1.430424078405953) (-0.3869606699967722 -0.08175420472295428 -0.3582064040368914) (-0.9393862751424941 -1.679199225651031 -2.748132239744443) (-0.3950794878270276 2.710311345397033 -6.913172827540653) (-0.6391772013243798 -1.085997288610586 1.160775915204633) (-3.594211231976078 0.7527353716188978 2.60334052942953) (0.1580279819134844 -0.1508157985402906 -0.1109206084092962) (-1.262078097406056 -10.36823625961954 -1.940959692904421) (2.936455153042785 1.806565069805082 -0.4138649462455151) (-0.6026353674690159 -54.39565950451557 -1.760096203485735) (0.009451055434362796 -0.005959210241412913 -0.02759868261703385) (-1.497408795946253 0.7319954765518518 -4.475531939508745) (3.297164610286148 -2.359018112262827 2.546137427653856) (0.05458370663700775 0.01951999384917833 0.1080815483855093) (0.6173540628405612 0.1207226211274868 0.2207529009791311) (0.6931202410671833 -5.397338270807721 2.384242341831855) (0.1941206315022096 -0.07398637965745265 -0.3247004325548173) (0.03511650721239817 -0.002718265043141744 0.005744046890926696) (2.107368270014369 -0.6203831253474275 -0.8915717790730813) (1.704573825733682 0.08498176885804237 -0.3316970988672304) (0.2806420610402617 0.7193341598264253 0.5720503511160239) (0.8093678546532851 -4.227671440292401 -1.88035179189186) (-0.0880320827689467 -0.04954632481652346 0.03978900068157529) (-5.42841080231193 10.30647396425488 -2.981509758171168) (0.002304958228101247 0.01813330259188545 -0.08307231119562117) (0.01456627660402316 0.003143912147344591 0.003793016817147056) (-0.8061286992023331 -7.735210145338411 2.151006097242284) (0.07909278364835697 0.0670421622511109 0.0438322294760673) (0.3278756155995384 0.330981898549566 -0.4143647833054585) (-0.2147556300510976 0.1187230477911486 -0.001231856651346105) (4.485207514536858 -65.38715590958678 -7.391277306026188) (0.04526734839130901 -0.009806513325965797 -0.02289174340688851) (1.16111370078065 0.2269256113539247 -0.5413257365265061) (2.15939858394724 3.074270720267928 -1.981615035441175) (0.01058797281155013 0.1254735750519384 -0.08134383132066515) (1.744403525578303 -4.797816725751639 -30.23712520282353) (-0.008415811079350884 -0.00703290457727678 0.02557627781877136) (0.5353115838909064 -0.5485642531787076 -3.572209038551518) (-0.734235159066459 -1.269784415299622 -3.33132434660511) (0.6389810339908135 8.122178755378084 -8.47719358184556) (-0.1568850961886889 0.001153475742629237 0.4900671088132947) (3.705896666959996 -3.238384445716168 -21.45631139022687) (-0.2541474824853849 -0.4185886578762897 -0.02834318747551023) (-0.07047685735979861 0.00400902057977344 -0.0155647438936087) (-1.938822142948132 0.8180571973498388 -0.2146334807840188) (0.2692392075117909 -0.1085660895913843 0.0678396557086168) (-1.731715910115625 -2.210882173415223 -0.548884331174293) (-3.537802129110813 -36.55964545353697 -0.4991655313932923) (-0.1094170369055582 0.01209656512764391 -0.06116963380153088) (-0.2845334349992943 0.04378396674197168 -0.0998850929086674) (1.225400800717542 29.26282594731407 -3.687277666610859) (0.00960394049434401 -0.007354529370310921 -0.01456248241445878) (7.219465804212579 2.614099449683024 -9.008797594465154) (-0.999289510642833 0.3870507006257345 -0.4955801775097257) (0.6426608763736641 -0.8459318197458288 -0.05683668017600976) (0.7207127946475633 -0.09943079953471842 -0.418351930676629) (0.362570844275405 -0.9547170172568171 -1.076509802338711) (-0.7650615510424412 0.0623113671368749 0.08929352455037115) (0.8497898398595563 0.8096290504609915 -1.279130116770415) (-1.317677540891132 -2.047663001084596 2.246667855596135) (1.979077675445563 -5.506374272821617 -2.280502105322329) (0.1494775504907458 0.001553878113771903 0.08969916856370728) (-0.5460063898528977 -1.371313761236229 -0.6110619138315688) (-0.2205469875241617 6.88731161301145 -1.460388941171605) (2.716282649847148 0.3709682891953051 -1.18390637767594) (1.064125873962071 36.26924336847438 0.3424346096259474) (0.1609608297035874 -0.1206548286396285 -0.2147579743396467) (0.4929105627408422 -0.02395937260716274 0.4666636847997993) (0.1968003352019815 -2.007425163301832 -18.33647154100905) (-0.0181767792905343 -8.979486447112142 1.112832296807499) (-5.986114779149148 2.602282598816068 1.620535142157425) (-0.03580386801088016 -0.05735879231272047 0.03836083433858018) (-0.01561047661556863 0.4081265687053472 0.835106212792241) (-0.04370706897206832 -1.131434159451995 -0.8603496827492483) (0.2142198703242506 0.5181454917596612 -0.3184706358359131) (0.2422157544651915 0.3184715615504426 0.2617448681297611) (0.007950526497987581 -0.1621633373971672 0.0009263384437440464) (0.8558136504048637 0.8774914214141813 0.3533430255589748) (0.1868230336754073 -0.09665001056087752 0.1589534572653887) (-0.02078449787836623 -4.272249018117508 -22.64810520748016) (0.6909863095350987 3.840166565881364 1.456239220290883) (2.342162714292183 6.884334187028585 -4.96898414114221) (0.4790268930687281 1.410378398712885 -2.70506140283662) (4.892099915986583 -9.039132448524136 -5.427011434610532) (2.626998306365492 10.03992718565145 -0.004401583772514872) (-1.006444468211604 0.4406449593229125 0.442009269490761) (3.421534931161403 0.3831238459166615 0.1311199552551965) (-0.02908870083561461 -0.1097478367836593 -0.003018036278063613) (-2.910951014547821 -37.50495591373455 -6.621159591893) (-3.132999219489665 -37.96518653589681 -3.832993089327044) (-0.02818987872857043 0.1058326568290859 -0.07234580490778866) (-2.031162714118802 0.7235167427102196 -8.924434704152221) (0.3258810829886296 -0.05493647190618685 -0.3761975373435936) (0.0604954283868512 -0.06595840528915808 -0.02103313570973345) (0.0671986298836723 0.03486629700667404 -0.1482125196495859) (-1.082985373149741 0.8444368214063949 -1.83948157080759) (2.795044703129629 -0.5004599407277806 0.9550156621147399) (0.05068000352826076 0.06623183817366229 -0.05327261339972532) (-0.2411226773691161 0.06885930888453727 0.006638191097912857) (-0.05517820726025463 0.02164564169676349 0.04484349322885757) (0.6061384027500917 0.4635793146772411 -0.9843329979835287) (-0.02267099942371298 1.350119689591923 0.2741361387090963) (0.003256328357605224 -0.009275895406851514 0.001334780871134311) (0.1646164353997241 0.005410888294849533 0.1045519597817386) (0.0860247357592977 -0.003983411813665415 -0.02197046756530871) (0.6718960808287116 -1.901575009560557 -35.69653555089501) (-0.8645451041144944 -1.945731734633646 2.489396087900542) (0.8115062413209521 -1.024875708109157 0.2343698668027728) (-1.051071916321204 -0.2269625260079551 -0.4431613202818468) (1.030266353441731 0.7836677192676273 0.2892760357037874) (9.519441007164097 14.91440224623892 -46.00691454720609) (0.08752036223961047 0.03069613341365586 0.05369525886275534) (-0.4758831708707859 2.487918745682348 -25.44169113589638) (-0.1380682486676078 0.2475784623877251 -0.1542907066639199) (-0.04004406039659124 0.06150462029026378 -0.1087684697240704) (-0.3543355971077881 0.1633642940575681 0.08192287466098729) (-2.386319747247768 -5.812754821954472 0.8611976403445546) (-2.630039870918393 -41.27330039611293 5.045706395364335) (-6.550215754794161 -13.11052605456502 8.361099457027228) (0.4843940803374556 0.04740268185336909 -0.1223411124788392) (0.02003129845871746 0.0541452261447731 -0.257287426292565) (-0.2013610207549807 0.3188691332454425 -0.3644226607741015) (-0.1834648118083911 0.0807583443116963 -0.004635419050417815) (4.565741241584178 -40.18221792319906 -9.95573623155013) (0.1316500751639382 0.1182138792324582 0.01508827791609287) (-0.671488747112906 2.321249713428421 0.6842938737952156) (-0.2719406295131765 -0.02007711060473701 -0.2315191428858511) (1.773527926316607 7.380408406009672 0.8810170946141775) (0.05618110664704038 0.04040747270071082 -5.597684021487956) (-0.06710405251756218 -0.06598783395559146 -0.1050953834798279) (-0.5169143053157843 -11.56327311689955 0.2177723993832171) (0.166252574417524 10.77029302685047 2.764559497156333) (-0.9122688191241923 -32.32178516827987 3.895849127588873) (-2.471399545274297 5.835740374008334 6.671040739808403) (0.0847140214408092 -0.1676375005429117 -1.031887808490113) (2.282485332431379 9.633118955095814 -46.22702529019867) (0.471540767310104 -0.5778143507298156 0.4346419016212026) (2.205414652068469 -12.69771177524401 2.318339336537198) (0.119443695718656 0.07220029963665298 -0.0007255992279256163) (0.1465981483994593 -0.1070841806650961 -0.9399741775215701) (0.03726181639196114 0.08595728102964781 -0.04873017518698292) (0.02705805576063983 -0.0230558224567487 0.01207813245269673) (1.774043950212647 18.44263726358662 -3.495992255176491) (0.1704867033218384 0.2748831932623579 -0.05000950461738481) (-0.011668797886456 0.004782819861645009 -0.0009132608501647398) (0.03083063001388961 10.45205389608819 0.9908065974573129) (-0.2969380321660474 0.3468458663251895 -0.1958402502573773) (-0.5163601906894666 0.1913527597973387 -2.928591462158409) (-0.1612137552364096 -0.3165928611341104 -0.2516878222259063) (0.8123734322829889 3.196266201171721 -1.228804430277907) (0.5720529589859054 0.2852298154151329 -0.1754807946097432) (-3.645926857804468 5.064677301961916 -12.80183657543874) (0.2660194420470311 2.02359304259971 0.5691224172710068) (-0.03965548300704223 0.08166306325068075 0.102471693890641) (3.861070540973279 -36.87522802233969 4.554651347207893) (0.9924068710553351 10.89495859781225 -3.401533587237002) (2.965166053946833 1.124036400370915 -22.93283129736946) (0.9176260625848496 4.581403932421006 2.880168195283866) (1.181542758603771 10.68395097080534 -0.9069443565320038) (-0.02928934882718087 0.08427258212785783 -5.503527313406594) (-0.01433113779257162 -0.1160844553294717 -7.316753868392796) (0.00406444982035469 -0.01091866004895962 -0.001354230946168706) (-0.005426385193535775 -0.006436504285906826 -0.005847141106340969) (0.009050914096587551 -0.0259035123757447 -0.02092570939173043) (-1.347263362117245 11.93069061227358 7.488665375976857) (4.202044710594961 9.88665694969704 1.789466061623536) (-0.9050426681591822 0.8317231446967559 -0.9419951618086997) (0.04403127599087694 -0.03595244078468099 -0.00806083953262722) (0.02078745997968591 -0.03984583682187257 -0.08978581955979606) (-0.07325981998033176 -0.7898436682782519 -0.4981144745195511) (6.948711674913387 -9.266128597746214 -12.31164646508982) (0.03518769259171897 -0.01671681241975486 0.002175528254334272) (-0.4470376761763632 -7.290426320196657 0.09562672509339137) (-0.01824445884932417 0.05534507573043729 -0.07000941242682357) (1.526168467082079 6.086292069173178 -4.349992634468672) (0.1576972685451343 -0.000745942772572946 0.0051218440777192) (-0.037620983355593 -0.1029142740222064 -0.01248825543602443) (3.457898579050998 13.97098803352367 7.508717999075444) (-0.08062737183954799 0.01546461482104896 -0.01668311593473674) (-0.002582893619488158 -0.04463758133301622 -5.807583731841486) (0.7082549104103932 3.736253714924109 7.448680587156726) (-0.2534025935268656 4.850320589345008 -1.490788943004266) (0.01893731632170373 0.008134467470777989 0.04526284060775057) (4.972159076701407 -5.247713243485452 7.145953972457741) (0.7289270941067674 5.339843342294095 -2.809562564591906) (-1.915496133309948 0.6895197721957738 -4.26942915805722) (-0.2674577476177711 -0.03402320544952092 0.5320565476118926) (2.321373772475065 -8.015602998727818 -0.436841702390447) (0.6597339725902435 -1.221125669406375 -1.229693061262144) (4.666047223098279 9.117406649020701 -6.229976790302237) (-0.3455776032522657 1.653774200943093 -1.125835121573304) (-0.6145532235097475 36.12868322294719 8.423705314755562) (-2.138110441276971 -6.430362066467522 -3.837685203682405) (6.591526378446725 6.265259669275739 -1.421659292323957) (-0.04648725506709365 0.02335309609951258 -0.08943939065427248) (-0.06756323011570578 -0.2061891342398135 -0.1751530148084757) (-0.1071992842987376 -0.04853010391818036 -0.06590699155651825) (0.7019139069727397 -0.142316569770407 -0.2532525795099339) (1.525102361572872 -7.22843676653911 3.241451201008859) (0.8914337148713145 -1.093024658592513 1.341374923649476) (-2.314023210375576 53.5341323844147 -6.359693839547657) (-0.2859690588492763 4.615190441831511 -1.197639986326987) (0.1797476504059559 -11.69905281037336 3.568722947973271) (2.230196560066061 -13.34601183525934 -8.36918321359787) (1.451578450800276 -0.03181203086777229 1.073920964607506) (-3.101512114467965 39.01494792300506 6.250640457413394) (1.277031500498137 1.359190378542044 -4.417153757716355) (-0.1450750603294943 -0.01857844967166757 0.005330830886175978) (-0.06034466926286065 -0.1901661106876853 0.04486814112733369) (-0.1436012377184102 3.355636072292191 -40.69706911954808) (-0.3050091352357023 -1.001516517630204 -2.052205550085647) (-0.466642246111701 -0.255039912141322 -0.02607833400856654) (0.002634446697681064 -0.0734890829360986 -0.02498899452992874) (-0.9754724101182987 3.456870130463963 -2.442775626671305) (0.8177983202736335 0.1286704379758687 0.5234701380935116) (-0.3905683493321336 -0.07378585599640528 -0.00218261742438744) (0.1654848085427499 0.229485974375482 0.170636480829375) (-0.7301183150285647 10.22761598924038 -1.504357803363527) (1.260834171897877 -3.613089668655104 -5.099412115562946) (3.761220826701623 -1.183905979176979 -6.369161325860857) (-2.645326330577574 9.004369323176917 7.097370195249237) (-1.902404832078424 -1.987121441033623 -1.076556176215309) (-0.9493756414465075 -2.897972217555878 -3.224598874228071) (-1.125624422965045 -0.5578148424544411 -1.329257831415836) (0.5351437035155298 -0.2969703515431549 -0.6892336162970774) (3.433999432489716 4.503467715278287 0.1689627891053367) (0.6635201597219674 -0.6597216017251262 0.4240834942685203) (3.460523357127991 0.738927543500149 0.9110825301959177) (-1.371752945832309 -8.605847196962648 -1.331268364622998) (0.7660911240699945 -3.447084164102199 -0.8499427579527508) (-0.07839967636471948 0.08553552331648115 -0.1236783102488741) (2.277083251172471 0.6843288659895044 0.1877219286418108) (2.42589713271617 0.4548794357515806 -3.055053161031577) (-1.248325099245885 7.314896533468672 -1.61707656366442) (-0.5037066034000306 0.8939675399081475 -2.907342779798951) (-0.3207294643204299 0.0632742911466348 -0.6303475569284996) (5.66561146581033 1.021745122613846 8.834616243693693) (0.2570630214485543 -3.611914371824843 -2.730902775646002) (-3.308850996497858 10.38978650225944 -2.203554639632754) (0.02349158393050043 0.01032663713338402 -0.01715257948807052) (0.0004368000840344818 -0.01115287175691401 0.001966134989428249) (-0.4020731908053466 -7.157894585878169 -0.7457733639234914) (-9.915841953273009 -16.48721879032599 -7.740300498886487) (1.421099241720047 0.3009594618950795 -33.63162035901711) (0.04706945623045147 0.02266271538528451 0.001387463646780159) (0.02439189167254235 -0.03580133813954309 0.04255209610671473) (-3.443283209228304 -71.84449464859884 -3.365130793734541) (5.700294135038664 7.449032830255252 1.529768984552191) (1.372602375007212 -8.084872879083274 -2.371572973844923) (-1.23365870937999 3.49482216151241 -0.1582466316312148) (-2.259497737005832 -6.546321733896907 3.039651399216964) (-0.08006248609263962 0.0002404339110479512 0.009075079711486838) (-1.063286467458485 2.598934595898481 1.396212204831973) (-2.528643625834797 0.8006750869617139 1.071250524224116) (-0.2674215792061307 -8.05748437069454 -8.46308859688077) (3.746914912699734 -12.20450054235543 -0.2761054947703112) (-2.025314124370025 -7.525609361658417 8.896173752353645) (-4.478933811765478 -7.00334918106195 1.632208097955075) (1.679301251190189 -11.04556846231478 0.8879778052663008) (-2.024943485796867 -6.698797629720744 1.569144120503386) (-3.879716701688953 1.5740610004844 -1.197204976864709) (0.05021398078621765 0.2642801124883689 0.3323851345440327) (0.04299118797058205 0.02981412743490874 -0.0002510023612695735) (0.07884728232183662 -3.771213283086951 -0.4186329125472355) (1.110996855680617 -8.144884126252082 -0.5846450662835995) (-1.294289067031271 10.19239243727499 1.254491514822402) (-0.455468510079883 -37.02000108903001 -2.693879856975068) (-0.2369793461229757 -2.509603211147013 -10.15159604147771) (0.2695821307271381 -12.61045590297304 -2.022510707774302) (0.01280330257928131 4.204652188383678 0.6194516013217878) (-0.3016760919331156 0.6209164803016771 -0.7358356104995677) (0.009852260787885092 -28.57261831404212 1.642980053806998) (-1.602519523085553 3.381538109852193 -1.243922315953149) (-2.410652603409417 0.2457934204529066 -0.5991903250669866) (-0.1458547454796235 -8.887010210919971 -1.92652960004294) (-1.359202972577493 50.05494004362746 6.240034633766742) (1.319645337969663 3.388842157950357 2.882362260985551) (-2.392671061342395 -9.099597004127274 0.1546567187366921) (0.004439271565757838 0.1519323493140006 -0.0580802921712601) (1.064164743096268 0.1362333015899645 -0.2886152631353555) (-0.004434440360750871 0.001462956244704894 0.00206135597911028) (0.1226038614051313 -0.01318642547712313 0.06511718640972279) (-0.06456922374587705 0.03549292620312928 -0.02427419062652335) (-1.754998037220651 -2.496533420106015 -0.6950347640345536) (0.07067789659548275 0.06389011853821114 -0.05619649980845595) (-0.2336098330026283 0.01003149511356957 -0.1477057040428513) (-0.8020997531198697 -0.8653015030201937 0.1484611988758351) (0.08343827473619964 0.01388859607360625 0.03927652047989565) (-0.04918901533764215 -0.02365067630064229 0.01850820174546026) (-0.9841969285570245 -0.6760892153919575 -4.244534467149222) (-4.709367484558372 -7.740747221360285 2.509591304773545) (0.2181206773425984 -0.3519621987577359 -2.041143892356047) (-3.42049964354896 1.536060353634852 -4.976771345790392) (0.04389249485392801 -0.07030282866821991 -0.001930005283102113) (-1.055418378816771 -29.59364096277563 -3.642696882516227) (-0.1526639593242599 0.06702054097909921 -0.04140514365446287) (-0.7443730896272944 0.6892412417564677 -5.049297381069154) (2.044328066051861 -8.647524317525178 -0.7947535473004029) (-0.3174157582928011 0.03839245649374912 -0.09889985142491976) (-2.029475728140691 -8.602071775138615 -2.509879492949896) (0.4406484554825467 0.09914645966331248 -0.3961620327989638) (-0.1506093148450599 -0.01758922427546712 -0.3436458526470423) (-0.3270367657472636 -0.2256696474101254 0.2324355311991223) (-0.0301924512240809 0.005691406056412301 0.05612783725901382) (0.2458514354796241 -39.85516365619925 -8.463282100913363) (-0.1173492072909366 -0.03063349545435899 0.03332361236123735) (-0.03258521163646146 0.03115667663751728 -0.03283505499081577) (0.03251034214186643 0.01271677056484893 -7.03802982419734) (-0.0461734196452463 0.043748051086537 0.02286382284257733) (-2.593378722120248 -0.6511614056773695 -2.813090818825626) (0.2256247901770576 0.8388824826394273 -1.518053468558314) (0.6149769367504841 0.7239729603316056 -2.005809532883886) (-0.01966710885015615 0.008841901940371197 -0.0287006221117047) (2.839577584573347 -2.46632742549713 -9.508988763022233) (-0.1640089586746903 -0.09414570175339333 -0.2088008261431721) (-0.3757808757615219 4.210828392689361 0.02331719338059324) (-0.138855743137976 2.984184339112311 -1.77824170250458) (-5.49319969584184 11.54989227867864 -2.231878969446359) (1.271667256887358 1.511543557288946 -32.07759171779412) (0.339182441020791 1.047740837769086 -0.2962481906810697) (7.158634130601413 7.984671578713776 -0.8431324707120887) (-1.111887529175114 -11.66573189005105 0.5335546701613056) (0.4952675005058562 -0.03305773544227245 0.2828618914195646) (-2.042349055574251 10.28033087421234 2.70451348366511) (0.02585157104580945 0.004053598373315696 -0.005079874561937214) (-0.1200235813018766 -0.03278900838617714 0.03908647700068796) (-5.02750201672006 -1.300349570034962 -4.514826436970545) (-1.449625966826705 -31.50511672614008 1.716443040450688) (-0.1810368050064198 0.1284459597037323 0.2011764390513444) (-0.4938999086946382 -0.3786530473887235 1.167614893328471) (1.022684669276404 -1.382000772543329 -0.6757033940082062) (-0.7239215667177161 0.2497522228439648 0.07545373650014692) (0.01575931956599877 0.4324510380933428 0.1217586842465248) (-0.01110973306003555 -0.03078086503043162 -0.0298095314442508) (-0.00104305459729576 0.05092817906215066 0.04414195189939526) (0.00875738844459072 0.0299636584882464 0.03160999569519596) (4.760409340036869 1.450749048555037 7.682166293664467) (0.07552515130166154 -0.132293725280598 -0.4307576751034952) (-1.294721153231186 2.152495646889248 -4.189267423712358) (0.4857043355493946 -0.1934311403602432 -0.473628660557657) (0.5152123740791987 9.818291643111193 -0.2028147533952174) (-0.5690144587897583 -0.06208599982421967 0.0542192161849662) (-0.3653899073718971 0.1912213541487162 0.02654658174547806) (0.6034908987985904 8.90108030634571 6.312142963596676) (0.4981420340342601 0.2650461156275197 0.126056641212503) (-0.1105701638371619 -0.02469144710979007 -0.0708102680768804) (-0.0237505587132042 -1.430058444737006 -2.167645503029039) (0.541774205079767 -17.09178446165017 3.655286458606775) (0.4171013978571768 5.138050924555645 -1.50759368855982) (4.541396357666128 3.949879009543945 -5.651873295847119) (0.1567171822469415 0.5028786237090239 -0.154144123412067) (2.533184799601511 1.877202119383114 -0.1933811842737791) (-1.235578423866673 -0.4035725396236396 0.5300689350930838) (0.003562705477204246 -0.01590464202002433 0.01344550937692809) (-0.9564064180740589 -0.4773541533314317 0.8492896788985401) (-3.259849038311403 4.628853806453876 -1.996725664559581) (0.8153134169804057 2.753296147273303 0.2575719751846514) (0.8363354204975169 1.749615499929013 -0.8342169784617595) (-0.131436980596992 0.1222556469479329 0.4602008701522665) (0.05638750433554778 -0.0140483867875533 -0.0583680768300954) (1.367009204415872 5.223587307961222 0.01554010388249588) (1.869412707177154 -9.010674987013401 -1.141636852406306) (-1.214250295824505 -0.2419039164708028 0.7298944847783067) (-0.2880693106097287 -0.4894390652394298 -23.89272298887238) (0.1294409969129131 0.0229920376403367 0.1075832969864275) (1.657738241508377 -34.06801598041574 -2.612947173840331) (-0.4932606236057981 -0.8427972989860131 1.279613193566976) (0.2102928019332664 0.4891298853558373 -1.9235708851435) (0.2565345523875862 0.8656199361840363 -0.1849287520602516) (-0.01688184287930929 0.00124141666858864 -0.008185510899636466) (0.001998194533427061 0.7191819001163392 1.328562518554295) (-3.282499513511405 8.847030979061888 0.2976285385275372) (-2.781816464305926 -1.729509831747981 2.144784500307038) (-0.1477205007887473 0.07913682588452614 -0.07055488399054868) (0.09139098297046111 13.07985768753256 -3.9825345693968) (0.007943614199723364 0.0102685810646616 -0.04482865791100513) (0.146756845277652 -0.1588385070718908 0.1877780767741132) (-0.06576801472204563 -0.09154866869199718 0.2741433300444515) (-0.2602313024316762 -0.2363503444459563 0.05648753711507406) (-0.02029857868650341 -0.01931034183541488 -0.02006868857324384) (-3.105895583606008 -0.5902385215443275 -6.386633126755664) (1.566909997142908 -42.95832565108378 1.08203438180428) (-0.02443819234851115 -0.1001624285736994 -0.1688337710731192) (-0.1344435301500546 -0.1009343291117989 0.0009138525956889493) (-0.4801975936538064 0.2092035678245769 -0.006026276132207645) (8.234456818031449 2.082278441608079 -1.532539380057289) (-0.5131079638294669 -0.1139552605678195 -0.5291854286475562) (0.5317675692453938 -11.00952922180543 0.582824173532301) (-0.2687373011545691 1.389149404280074 -1.288056736939538) (-4.5475005490712 1.490755672822329 -11.06164106552646) (1.266794704358098 1.920552534078084 1.171272011237829) (1.348834397563103 11.92482458475871 -7.458942063444622) (0.1405620338730644 0.2242087056701555 -0.6062881948029463) (0.05462837777640363 0.2680739227739216 -0.5192534699762525) (1.850491631015182 -8.296885387867322 -5.627123078773261) (1.874780068192549 5.81484496262452 -3.72903689943568) (-0.002216761359409556 -0.001062557222731133 -0.002494096057950687) (0.5454590023597937 -0.01206548982493579 -0.5992405402433679) (-6.925819579113098 7.186520102226283 35.17015679088109) (-1.845055671798731 6.582962800339548 3.682570350884172) (-0.01075458233483059 0.03806625116953919 -0.004609618428882101) (-0.7946448754389221 1.327073768950104 -2.703007441867653) (0.3091369739004556 -33.07980269951459 -4.398544218730476) (-0.004920092374476498 0.03055904059748363 -0.03221604803034805) (-0.8134037862506212 0.996411226560293 -0.3561424162248074) (-0.04769738087393562 -0.07828440185847288 -0.03416711949643451) (0.4250483176958533 0.01623233878712435 -0.21250718065954) (0.5239541362725679 -3.587328792631746 -2.102781574217172) (-0.6615794282459833 0.355501506074722 -21.82300991792661) (0.3462091581814443 -0.1853171060243627 -0.1113205302186916) (-0.02059778781784588 0.01412701663850736 -5.799494559014116) (-0.01570621447612941 0.04599830329395393 0.006428331980811539) (0.4463873211492682 -1.289181285677316 -24.35429537018774) (-0.03769237628410999 0.1645543535685688 0.1439477948459451) (-0.01106226004498454 -0.01430474070833961 -4.580890444153074) (0.01081227933796268 -0.01425090001320991 0.004923254045449407) (-0.1721596713503142 -1.388540159857728 0.9490455088998169) (0.02550563860178358 0.02658018762743628 0.01621511260818247) (0.2166574239958247 -0.01912233381696318 0.0788787028408013) (-0.1838569717666447 -0.2355608296492983 -0.09153213030466302) (-0.6869757460843899 31.75823066659865 3.626148323358913) (-0.6435849268081991 0.485507988055019 -0.42702120432177) (-0.3932825170481474 34.03982017467018 -6.783014575391671) (-1.824739001170533 -1.345730568887206 -4.501419521709724) (0.02665610376259703 0.05077288192514763 0.01279961091495599) (-0.1318695729297779 0.2091415237576257 0.1900255724596773) (0.07575522966075365 0.1403239325217993 0.3091337113375866) (1.322538744266341 0.8760354025331638 -1.355248635107649) (-0.0831322227935927 0.06387626142941701 0.1516349536478143) (5.385031397248075 3.514432997665249 -22.5754674866013) (-0.04357491619341033 -0.5479441071167294 0.0007642630572765596) (0.1070124500934714 -0.006687093396663679 0.01129288415879615) (-1.273271675823357 0.2898636534196873 -1.293725064080671) (0.1715492939096845 0.06218401022506973 -0.2633823452904379) (-1.08746648459471 1.412160700904839 -2.456813294314455) (0.1292107198316548 -0.0008809690105239243 -3.449009387662683e-05) (0.002426364632398997 0.01496373233252193 -0.002155491099595386) (1.186651331703954 0.8138206972790066 1.034386448589764) (-0.08342018056917361 -0.2083360387218695 -1.96986315554635) (-0.6921263542065252 2.22999747645721 -13.48317875523314) (-1.158327019344765 -0.2511878910668924 0.06154886992531329) (-0.04250051658254428 0.1500065181924842 -0.302779113212255) (-0.2847197378880008 -0.003247012952009042 0.05970658821169064) (0.1873674366028931 0.113039288814691 0.01408377536897976) (0.04952907282514174 0.009470888876975425 0.004333136341209472) (2.088082318371701 -0.45793568113341 -1.443000902584654) (-0.003154974932377222 -0.1235748726982054 -0.03207744775469377) (-0.1213613108139222 0.1407284048296595 -0.03129954088937446) (1.260519016100559 13.71704573203647 4.474187519079801) (0.1526384071983415 -0.1257842617212988 -0.02492638468280866) (0.6260494020298332 35.45963741082922 7.99417814942225) (1.030735151394845 -8.111090361630549 2.039601834747969) (1.632664135050565 -3.461037011927574 0.6958590346519673) (-0.5033769871562093 -69.58482037025937 2.561383026831135) (13.70739486159545 29.85363469328201 -3.554946604359073) (0.01850445681094148 1.077228285286583 0.1751863376478984) (-0.4355964588416449 0.7646446053003136 0.1089735518618132) (-14.60680263469873 9.768888413195969 -6.5824170610579) (-0.3553565922993309 12.7952773054696 1.250548579963806) (-4.336929541369916 51.67773072817667 -1.421583257746112) (0.4317403180210316 -0.3128011046722308 -0.1902600753578874) (-0.02068482110601738 0.01942622352934858 -0.002172018924967493) (-0.05517737822656176 -0.002281682698713887 -0.02472557099861375) (-1.023978566251054 1.748117794758834 4.168099706860653) (1.205189242237639 0.3162238825027376 1.149215350542813) (-0.006187935007391981 -0.04191085902570232 -0.04988996134514102) (-1.130149234150325 4.546512479145875 -2.962554135082945) (0.3863154415427773 -0.0943452259592662 -0.332772650163964) (-0.3814211131807236 -2.737125610302303 -3.271427734429868) (0.5568560242377262 0.3062994205324309 0.4096524649332892) (-0.2781145064305219 -0.1727939047449247 0.02448802518989689) (0.1058171331053335 -11.1437874283321 -7.936024443236043) (-0.599457006714405 -0.7633333134389546 -0.4126012720942958) (-0.3314361239605906 0.129370480550981 0.01990093243838599) (-0.2635009083577787 0.2107718008786705 -0.4785866057154483) (-4.004799721591991 0.6260989970976922 -4.97915431159036) (-3.515565470676292 13.34426580639146 -1.458234542105298) (-0.3729400869860439 -0.8925194107250685 -1.001692191233576) (1.04506092734095 -4.069586276795818 -0.739466629245251) (0.009277255055578949 0.04011882496286491 -0.05347621018654734) (-3.960081727456006 7.68831016267543 -7.891504085660189) (0.7197360131106605 30.13083225014856 8.202630350535481) (0.1343088694923868 -0.04957733076893985 0.01398713417386658) (1.05411804541601 -63.26918702582153 -4.973557570389018) (0.1914218445551153 -0.01344529845942533 -0.2345810961581236) (-0.3590547395096459 3.449104781645548 0.4770067842338731) (-0.1196171719925956 0.104432005758303 -0.1894712258318324) (0.3916417133270771 0.06537719942750227 0.2410147253576773) (-0.8995835027685224 -3.166368014110499 -0.008004126499856629) (0.3222112493640121 38.0505692827808 2.726121683291524) (1.237439314078943 -13.1010269917774 -50.24588918712777) (0.9136363475298805 48.63129059789044 -9.492500538901606) (1.581179568315997 -7.074816720867778 -7.052649421902649) (1.476603635134936 0.6133787745504222 -4.98425633800464) (1.05978329834497 0.5049961752456154 0.6102162180829476) (3.37391159594827 5.689228493906955 -4.073164987408823) (-0.1373088097041971 0.1175591774186739 0.006916051383819219) (2.021070066240314 2.414503679758863 2.658410735046737) (1.39161072678884 35.44997125724468 6.808930466390599) (-0.9393049577303176 -4.996629571700668 4.684066006624899) (2.259603972634276 6.535445991085367 -3.280182440015385) (1.357350207272262 4.700577917759088 8.385422907631508) (1.925309871406121 -1.562053202713328 -0.3252743505506764) (-1.727779562575141 44.20808028424811 -6.460538499742497) (-0.8485571240091847 -3.869184766273487 -7.177374404767892) (1.651941787441304 0.9379101998637024 1.154814998191431) (-0.6943394003345446 -11.03635288341336 -6.082926058510628) (-0.01026094902240715 0.005151029863959915 0.001004594911289875) (1.037015874046339 -0.5554635828627774 -0.1250601436956129) (0.7972680077023169 -0.1022495633781567 -0.6951456801838661) (0.01351087936424827 -0.006391249458752236 -0.01217359139637884) (-0.5097350388282378 -0.08698011924111401 -11.34162440266629) (-0.5673520651316566 -1.239573438031251 -3.064139488997381) (0.1278426956062537 -0.3093725580536842 -0.3026497091036417) (-0.6827767445028388 0.2036279323779009 -12.24869829176688) (0.6673594979584111 -0.8861591099235037 0.3391000627984557) (-0.9837599430483764 5.460236410850369 -10.04390937118658) (2.155819192390339 11.66902114374728 7.537281097923494) (-0.3367124577292884 10.43758056337557 -2.174298641498829) (3.079929678031912 34.2521531857084 -8.606953176995496) (3.357676773069723 37.67240564574033 1.938304728715156) (6.228008815235454 -9.575577057833996 -2.038432376561395) (0.006671755509014651 -0.05430760770307309 0.07937104225641714) (-6.285873396195618 -0.03220519967931668 -10.78747738795222) (-0.01511868123335058 0.02221734732809004 0.02288722027416232) (0.001098585170602474 -0.004288817732995644 -0.05811313749476042) (0.1395472454050193 0.2423223346790288 0.1943302671733147) (0.7257799374557677 0.06238247238687765 -0.4182955267454119) (-5.383657754804047 -57.69586926169206 4.729864545638269) (-0.5453363707439864 0.2673326383005923 0.6699803033342504) (-1.157698472466742 3.983758751090977 -3.197830641029258) (2.253200992358991 4.298510984554884 -4.621079252641539) (-0.01773394342649548 -0.4162878209449341 0.1375036402792681) (-0.3191000784629414 12.84265751412691 -7.747454037918732) (6.618328621651532 42.83148382955907 -1.805059251748367) (-1.423243545544549 -18.95133235508881 -12.66527762151694) (0.3869178799502488 4.426000690946033 -3.769506541262322) (-6.377195499934517 -7.790742691236503 -44.991807236376) (0.2539323079745343 0.122745971236015 0.1017068440039917) (-0.009723877493415856 -4.389033024474767 -5.161389998941525) (-9.447859586502179 -4.05372253643025 -37.95914461821443) (-0.02102080405536697 0.04147629211929214 -0.05096933951464226) (-0.4146100142778184 0.08172326129970686 -0.0002826807828041969) (-0.1432282187653699 -0.01967896863881005 0.1047938775482681) (-0.9150425612525901 -0.6366120519617356 0.1335398378348659) (3.346585569538896 19.04591986879273 -33.44895609738871) (3.834962829286555 -4.35662526515253 3.466198657096583) (4.318764348286281 1.114272095100857 -0.1879187129746185) (2.332070267305607 -0.4968200739043019 3.086171559638724) (-4.756989704948369 -3.197665247173623 -0.9161199550626312) (-8.120054804801862 -5.363013477522971 -39.25323217034092) (-1.116271399766406 -2.150037817340747 -3.862618308863794) (-8.895186500183488 0.4478511485077079 -35.69163305083516) (-2.07508777700219 -0.05944065670818618 -2.557898806634347) (-0.0004142368600030255 -0.7966259772313911 -0.456141015050159) (0.01420624776846978 -0.04895372875907244 0.09567938555797227) (1.039106872523409 -1.579936993309843 -1.915731612236877) (-0.2656444419221784 0.2226199870067032 -0.5005491557297361) (-0.005518296168620393 -0.0005607431389699552 -0.0002847025358413487) (0.0006366313312699157 -0.001072210342439972 -0.001633144107390208) (0.0002454556438887482 0.002506322404024495 0.0003435924574060993) (0.01785971356090274 -2.918735205387647e-06 0.006332269471822207) (-0.004211900873676729 0.0003000114105576636 -0.01075156404293392) (0.0006413303497543998 0.009896763197654378 -0.01535392918812199) (0.01283064438752896 -0.03873433825387804 -4.590431322234601) (-0.01229296336783736 0.00562125595523326 -0.004778659373814875) (-0.0001719284129049386 -0.09892353983183315 -4.805640347958101) (0.03770526757093199 0.1108137864136395 -0.09029819642542919) (0.00128383811563705 0.003220269259647121 -0.03432382002593946) (-3.118431016515431 -0.7507018828822356 -31.94492162037128) (1.469618111811864 -9.486926568347764 2.211626828439528) (5.500403233452914 1.230192838160846 -7.991685522682342) (0.03149493707782749 0.05751366346788393 0.01140010712044635) (-5.514969274705832 -1.727213753686867 -2.839232331304481) (-0.04360834662166685 0.06817769401035956 0.05756167166892347) (1.225968507657991 0.689555036666051 4.475089808736619) (0.6671027453841551 0.2886382781055796 -0.3392653751286251) (-0.350929813186741 -2.867044601234701 0.7957501001876847) (-0.5416510155891865 -1.174824250968935 -0.5134363275738312) (-1.073696172051011 2.835450662251348 -0.5124776982976593) (1.015802671650043 5.675731814415865 4.536015059695354) (-1.799682286771929 -0.4135160092022374 2.907415693957076) (-0.0339550863858585 0.01359443246165159 -0.01266600925452272) (4.23134377494329 3.277011521426934 -0.3830233037842247) (11.68787154429763 0.9333734337720504 -5.948028385845145) (1.863948791656565 2.804392019387444 1.573219623427975) (0.2207378833847939 -0.1015028357248045 -4.884496568565425) (-0.0647805606092388 0.04123800598794155 -0.1471132542973213) (3.41949940373944 81.07614725491915 -5.510697869272569) (-1.145965160233991 -0.4204728254811614 -1.128422307340609) (-1.398125478591434 -0.9130512665311574 -0.6036112440571189) (-0.05483444325387346 0.0002251208433049906 -0.01711886243939781) (0.2349844597142896 -0.004851921903894663 -0.462277590644954) (-0.1420657213694262 -3.046073463322186 -0.5120802742410417) (0.07871340146615557 -0.2153098669461742 -0.01445545109030633) (1.602550583490827 -0.519416414692118 -32.16211296399922) (0.7483119720775748 0.2910113806436591 0.8055543884845915) (-0.5301060372688892 -5.875427945921919 -1.467053642538195) (-0.6315623757411127 1.611661389760435 -2.415407400739299) (-3.805393227180438 -8.336253564433665 -4.798071125393045) (0.02112590617934504 0.1813639502076476 -0.2206776616526335) (-0.0033303805048741 0.001486310850380386 0.006114374195351126) (0.8864893143778687 0.2191725672701278 -0.1836546233706176) (-0.03297135410693905 -0.01795182474287581 0.04103940733306105) (0.06944601148788898 -2.31661760095744 4.596492662215028) (0.3400295483537374 0.09373517735567133 -0.1968733036499263) (3.722021091943761 -14.2314213794783 -6.623865949227548) (-0.441483182949822 0.1626334382122194 -0.007350723845760354) (-1.201765169272047 0.1331116640728588 0.163070584679367) (1.219273018547063 -2.311776326107667 -17.41383480592097) (-0.0849450466158127 -0.003299608277731851 0.03462326076724497) (-1.10161619259451 0.07133768360181476 0.04462394336076181) (0.0002634550522823747 -0.01104959634658203 0.007187952946503978) (-0.006141541492331338 0.006049548819966297 -0.0092360994446595) (-1.171719945283445 -0.2106090243711753 -0.6908499781658675) (1.063210479287655 -0.2022636894373228 -0.08983524996928982) (0.1566170260505671 0.3135206872566096 -0.2754938533546371) (-2.754088408730494 -7.902022731146387 2.086552767752198) (0.1863028632134728 -0.005479760133516087 0.05466019691714322) (-0.002510482562921802 -0.007780508639902616 0.00483833075073836) (-1.45965779193209 0.8499672373346301 -0.6306643834050382) (1.265399713428262 6.992877151289514 3.84967997117459) (0.03460500994122189 -0.01279420113342485 -0.001282246957802144) (0.003318853955350143 -0.2443239233274847 -0.003544964977046261) (0.01480215356325651 -0.01439653954109033 0.00132505055967412) (0.5225129550979107 1.346034862730584 -0.01776140790155906) (-0.004549654945047788 0.0002209895844737608 -0.003867014279836826) (7.866723803787341e-05 0.008218140265359001 -0.0006192134138176958) (-1.746792193121924 -0.6393901144948492 0.5432866969234813) (-0.00157485554196096 0.01246895449345672 -0.02660097865716741) (0.08602748317976353 -0.03588175808027338 0.01753491889422827) (-0.02542340379322393 -0.009352568954004117 -0.007238651509009944) (1.22281426508173 -0.3083793463483203 1.02569753460257) (-0.5564348618504924 9.149328045686017 31.26252741669505) (3.85765998443936 7.88160789315604 -1.004499326479678) (-0.8398600214793343 -1.800644804296019 -0.6626926758152905) (0.04437662727987968 -0.1719547033175801 0.09788918950419978) (0.02246908295944592 0.04824067196129892 -0.0001918285803818934) (-0.03273470407103992 -0.0130992460234415 0.01972031932575299) (5.827411948035771 3.202464790904642 1.609529327101416) (0.1136818828781485 -0.03516647616754617 0.02722243407473886) (-0.03406037228111346 0.05666106660251514 0.04795993397622287) (0.4604693799112155 0.1657783844015558 -0.03268962583224023) (0.1080002250670411 -0.1456974808765945 0.05632173348351139) (-0.9615392704392978 -0.1495482649703963 0.9489427866333726) (0.2053219348987036 -0.1663996599190833 -0.1890476375132696) (-0.07737682975181188 0.1628006657864617 -0.06603407418696461) (0.0819069879781248 -0.1335040178742982 -0.02168204585624041) (-2.911500828039327 0.1746304361511113 1.506543032750138) (-0.005542225785632814 -0.01557818596426329 0.0360299808391551) (1.342724004986625 0.2635809621671508 -0.1045426970034429) (3.208505485679962 4.260677520157873 -0.6798412108536456) (2.962914271241906 6.047762998911718 -5.063470327652071) (0.006567365796237245 -0.01301092025920801 0.013149901391663) (1.812484814142879 9.355321436331005 0.08023371215347241) (0.1281245966482029 0.04102996221436289 0.4822652237567296) (-0.6797430718276791 0.02231484179124506 0.4784537245255282) (0.8783401988156148 0.2292186559708236 0.2398155556401871) (1.486281086584343 0.8409326892215181 -1.192627718117428) (0.00673722725019793 0.05131062802601966 0.01262758079548786) (-0.2903572056271805 -0.9394999145207944 1.040547814904643) (-0.08102869745281188 -0.3949714753618787 0.3742063555649222) (1.77287155762294 -40.70075914806614 1.166911402968143) (2.94435269422116 -5.240565827541624 -1.536886043269113) (-1.895534571713384 -1.411302222227555 0.8689465186241182) (-0.2527877672974539 -1.538929524234496 -2.733223245734609) (-0.227933086577724 0.220792720620142 -0.1010852277939193) (4.065862853911169 1.154271960190528 1.39834256277033) (3.868769649969117 0.1835534270901629 -0.4359290070082459) (-0.2569114215343632 2.766572849729512 -1.204484869058347) (-2.671498386314438 -39.6922321162736 4.006307224362192) (-0.1121472375324965 0.01442007508357803 -0.04054548316254314) (-1.740262270064516 -0.1635196888636268 0.0008558420263163891) (0.02121313149153908 0.3486583646970904 -0.104739618575317) (0.158436584184946 0.06673563322306002 0.02139424926270667) (-1.030915065843725 0.7990096093330256 -0.0309157277755773) (0.5804239081139557 0.4460736768750537 0.3566308022606698) (0.002342321686562218 -0.04721376041512224 0.1660981953022918) (0.8449535956402157 -10.27446952725638 -9.222076896126719) (-0.04367072416799844 0.04280851686698393 -0.03031098656537191) (0.08568235900111754 0.001984270534175331 -0.003117586350164164) (0.03253932234558438 -0.030519031315439 -0.007716959218525209) (-0.2047128679356837 -0.03190579801788349 -0.2887741174655524) (0.01378276500909087 -0.03115514915911 0.01058118757945375) (-0.04253403287162549 0.1916315594531056 -0.09007633006633514) (-0.0485678031432354 -0.01769197032027969 0.008853685929142402) (3.355984577203671 10.03132749544871 8.073025870656069) (-0.06846201834804992 0.01986159405863609 -0.07173948302258147) (0.6986511260836107 -0.9436744259446632 -1.629073162581238) (-2.4918224695481 -0.2690589522229567 0.9888284223915003) (-0.2166849957369779 0.04925280690488143 -0.4617657123434491) (0.02377320691569242 0.01269044189854779 -0.01111184530570139) (-1.359117257216387 61.7436062482839 -0.6773919759556337) (-0.6985574385002514 -40.86841348816771 -5.442498701851973) (0.5390590033247372 0.01588634466354717 -0.333382050748604) (0.3958962741131884 0.6289413066288055 -0.1946432242445139) (-1.052599333531064 0.492199898335317 -1.013894268045779) (0.02276004551332457 0.005423083908109952 -0.03158032529007854) (-0.08937960628050766 0.0715918295930813 -0.0319636050196857) (-0.05558333980576563 0.01332498833062742 0.03334651565249675) (-4.070780220286474 -1.272955737987305 -49.01772172059392) (0.01257818954184242 11.11669361611467 -0.1080743570719542) (-0.02170098857601201 0.0758991114133695 -0.05347136041471053) (0.03242458607700688 0.002792497481489589 0.008511893760006949) (-3.980722231955693 -14.85780939833072 -57.6344765044832) (1.132472326559181 1.485124818629742 0.4714002540466967) (-0.07645652869290166 -0.03743770806586949 0.01891870614022351) (5.057006571279404 2.434288022087455 -3.46823711469352) (4.610285036894546 -2.397136170087039 -6.019565817424213) (1.048757567613546 0.7979901097001871 -8.546913826770769) (0.06147801102060549 0.1407316075395672 0.1510185265757111) (-12.02113826646547 -20.52265855822068 -57.12754357503068) (-0.2482718474160855 2.754975665731723 -1.093785620307794) (-0.11309455240845 -0.26829592225066 -0.4549655883841136) (-1.020161526543848 -0.7355812529797789 0.3453896956033006) (-1.898718445219223 -2.042667854798391 -1.180980778636941) (-0.2827125227520632 1.388893546817674 0.399150100484339) (-0.6099624744325858 0.03544497526947853 -0.3684851390513941) (-0.6250002147701589 -0.6421059181824827 -1.764750785687156) (0.05334811203166979 -0.07017514049519014 -0.1185799761404435) (0.02483820932625836 -0.165459026830864 -0.03123345088653538) (-0.02653080400048605 0.01331051055342336 -0.003955646271329939) (0.07096354900164135 -0.01971795677390797 -0.002988351672335739) (-0.4655280541636144 -0.2379816417990452 -0.1568665467486536) (0.7172542356037752 4.435633684619764 0.0803104063693052) (-1.497892989908405 -6.706416113220179 -0.3723251469882065) (-0.01423616258642371 -0.005552791615897897 -0.003770895719843188) (3.267866686420553 2.511839387021356 -0.8154612048775394) (-0.01268764587075968 0.02042364598982875 -0.0005725680444346546) (3.547553299943814 -7.922178616135249 -11.03215462947669) (0.1872484271795306 -0.3611450837081708 -0.7228307452050673) (-2.828936349835632 9.801474084741505 -7.251534012047551) (0.18092822492794 0.6489255192810642 -0.08249728318048136) (-0.04816565413428351 -0.2625474993607926 0.1941548786812448) (0.294699805013634 -2.000841618104655 -1.418556545261586) (-0.5360195625798527 -3.825800632702537 -8.062541304401744) (-0.8316770678834716 -1.621516195917531 -17.53005378143087) (0.2059621450344637 -0.1722297631460744 -0.07711673776252553) (0.02158209711832504 0.0489724458850285 -0.3622459766648429) (-1.596724907395466 -0.2435302227892269 0.2349694792905931) (-0.195176145635756 0.194651330734778 0.123231980751771) (-0.452054794461208 0.4655877557806499 0.4005492793319114) (-0.2763006361274879 -0.02097508363636395 0.07848682112994607) (1.002729887642 -0.8335947693087348 -0.3985760634214475) (-0.4165718082348095 -0.01011192421187227 0.3231440627301875) (4.191113793324215 9.333847816352566 -0.5338822114305874) (-6.330884054348807 -7.072543755729544 -0.57776155411618) (-7.661305698704453 -3.21220308621943 -1.547848495703548) (-4.237917088927157 -1.171226878726268 1.100934184462576) (-6.592065678043685 1.426574624037741 -3.994944663437127) (-0.4654481082914143 -1.391806539233284 -0.04717118160023906) (0.01209435915141457 0.02466025600151009 0.01962036660885098) (5.753885808854363 5.288427455616878 1.439004552651055) (-0.03100334297176773 0.08014837327179372 -0.01839499901849287) (0.1731651205307492 0.03988700604439299 0.1396511876909883) (5.660525408675601 -2.097149953707843 -1.244347640813191) (0.006288947358793234 0.07897866087475507 0.1451934172079408) (-0.2167715185219358 -0.2985562893371647 0.4312954401532492) (0.02524684655033843 -0.09146483136998147 0.0194965997845311) (0.02466976241800061 0.01351334801124669 0.01502440880858152) (2.347108991415698 0.7679234933178216 0.3004633614826119) (-0.8347032310421012 3.434704245095938 -5.833668149750666) (-0.0424605926603242 0.02459439413689953 0.03291061361950683) (-0.01138838219606078 0.008674172452884158 0.00534905322570426) (0.1432533446985902 -0.03992435419078779 0.01571847504017564) (5.745578396009329 8.947672618149134 4.293291464167588) (-0.2364244308957701 0.09770653202954245 0.06924840611289115) (-0.2458587901165814 0.03685213772930194 0.2968206765968049) (-0.6965256953124239 -69.15128423859629 -9.149387671497253) (0.6924118200476636 -7.863082383600096 -6.716336517638995) (-1.039639190847928 1.361216777868615 -4.354120370721553) (-0.2912473660752478 -0.02229561063656786 -0.267129314717234) (0.2361653430570942 -0.2010692494824509 -0.2323356851010697) (0.4842859890216927 -0.7623270942020622 -0.8496631982116241) (-0.11576614852531 0.1172126066659864 0.005247632586293252) (-0.2705024520875132 -0.1290317030286817 -0.0322481322367028) (1.632268204373109 0.9847205639424018 -0.262689731329388) (-0.09965596025370971 -0.0093130061619764 -0.1466688047095935) (1.295941612680449 0.2873294734679901 -0.1092831490402885) (-0.2554812319157016 9.909942610010637 -5.785182403532658) (0.1158912428355794 -0.2508378898767114 -0.03263978114731908) (-8.613537131494208 -2.7299697621455 -39.72066069552388) (-0.005474723902616514 0.06452914155571535 -0.02333572111019153) (0.01441792528412944 -0.05808246575726747 -0.002546843802541804) (2.100593182494718 1.256681263778081 2.053782563535471) (0.1571808152276621 -1.405585803864402 -1.729732864635306) (-0.5497124096033712 -0.2328222506043169 0.1515547189716293) (-1.947966379398784 -16.1603282116909 11.11198494460786) (20.95640267900833 32.02799280070537 -40.54146371662483) (-1.837532098502794 -54.19251780202048 -4.339918284032287) (-0.04555475583216184 0.01013907807752558 -0.02701516866219734) (0.06688329703176762 -0.004514352097307273 -0.01314608971704661) (-0.04459995913761177 0.03675658405938381 0.01343503645698122) (0.06765405777231126 0.0531536530351106 -0.000796541180515125) (0.286198697332309 -0.192126797585814 -0.02898859779202947) (2.173785884434765 -1.049694761541092 -1.403837813981998) (1.844036066837503 -0.1270783863671121 -0.1924008175876712) (1.570308692783079 -0.005768368644818623 -1.151276148151936) (0.02844473014052306 0.03235898623951079 0.0606373676581195) (0.03153395689071093 -0.1350140895375465 -0.09187048263896169) (-0.4308786797205577 0.4225049508283832 1.058692138216855) (-0.1088111438072527 0.2318075363974797 -0.1876545772757749) (-0.1067718624105645 0.02920760353416002 0.04116846364880443) (0.002894391697175348 -0.004241848318918792 -0.01178102730887232) (0.3718194832222984 -0.006471099600806579 0.3205931660300211) (0.04984879971230507 -0.05975945953752435 -0.02988743800288133) (-0.04437418082761323 -0.05437710960490569 0.02661370244952253) (-0.1465072441223833 -0.07709259994277562 -0.01059109806629521) (-0.01802812753011477 -0.01201558696392184 -0.01275603150362506) (0.00419544101699924 0.005713861228859949 -0.006838612126883786) (-0.9716424129270075 0.378695169374387 -1.188170467394742) (0.1064499938893892 0.04186039626908383 -0.09053017777830227) (0.02213781713912054 -0.002231505017961249 0.05982891780230024) (-0.1799836533558388 0.1887968838391104 0.1303327955116098) (-1.243390033879994 -7.897108647805194 -4.678354828160493) (0.07329046555172324 0.2054530167211305 -0.09878274265159533) (0.09922705000400212 0.9996273949300115 -0.2344167021290367) (0.9507713154197505 -0.07716020819840971 -0.04884485047938503) (0.1084936524954448 -0.2613790387007771 -0.6934926516602782) (-0.7082025839835916 0.8141258066989558 -1.516180137575949) (0.009080907679832217 0.002266947031874378 -0.05595241876391416) (-0.5421561655940905 -0.9209472529537313 1.290151336899524) (-0.08366143362839214 0.009037645995744012 -0.0001597475914368457) (-0.4116589849026261 -0.3092710184106854 0.2575267788676542) (0.04418272417341176 -0.01136609346138512 -0.03881612520221615) (-0.04107203567341382 0.02391926630805062 0.02485899568934113) (-0.6431027204432418 -0.02906558064261885 -0.05039731530631408) (-0.01695520119583127 0.0578587152707625 -0.09842728769932441) (-6.528750692531617 -1.519913265525419 0.004769379836873089) (-0.07360251462133068 9.094165753359071e-05 -0.3736978974135903) (-0.4268258455204242 0.01640488245196995 0.4034228583431879) (0.05387318914012379 0.006508288112975814 0.00652307474432666) (4.385932166042378 -0.642300925788394 -6.61079883849997) (-1.561707214910197 1.232243494675386 -0.7563287461244491) (1.280600461403382 7.204015648018244 -8.010702162299751) (-0.03308733440467029 -0.03499880217806814 -5.489122167246426) (0.03539663070261884 0.003683354897634939 -0.006779761056272385) (0.091919472792312 1.030365974518682 -0.3609699694903901) (1.584454591578908 9.545568349941083 0.5013727094431318) (-0.7509233935975788 0.1608611780673425 -0.07842101868329959) (-0.1359362198680859 -0.03547195225118169 -0.05144909274810323) (-3.691926577866718 -45.51700610764161 -3.716337381740279) (0.04418886689621739 -0.0627675142583537 -0.02650113621182241) (0.3730067264741721 -0.4120778614428445 0.1588818035713634) (0.1218411457468531 0.3365141195156874 -0.1541312067597402) (0.1792471278299914 0.1205609604145699 0.001937096574393473) (-0.07406707649138503 -0.025295517815674 0.1698126677846818) (-0.5355760566973615 -9.170047965817991 0.4822674889891762) (-1.358245204970673 -1.95436507348716 -0.4684490275442899) (-1.994579580490257 11.36371467341726 -0.2458628585101807) (0.3178463064778294 -0.04292059782765704 -0.07274454274363636) (-0.4357262026208079 0.01071448940063904 0.3085583034318287) (0.09012385115722048 0.06803485896350023 0.001412349546575285) (2.054964792295372 8.242517148354075 2.894013831454819) (2.215035849111338 0.9859468397834945 -1.885669180780356) (-0.1087993057425927 -0.323910465404915 -0.0348256631989283) (-3.290946563139934 2.125285015258501 -0.4413257807825317) (-0.02524304678841277 0.03597285321161509 0.01715337708947724) (0.03622736428270415 0.3459624795345601 -0.8890438651736925) (-0.04122596464967891 -0.1982076258128307 0.1187172657649109) (0.1299170297982839 1.399786205680981 -1.425609028878995) (-0.1575254913197877 -0.1030285478540645 0.01510658007941737) (0.1481006957312698 0.006228503300717614 0.008746886893759609) (-0.1928101035289241 -0.0148424669978411 -0.00247933487576641) (-0.03293667589782472 -0.003934679979358424 -0.02764891254881856) (4.298295744586455 -42.68868699285369 -0.3989785574939837) (1.752972631976853 -0.7557791308506349 -1.877239253230939) (2.292235216104783 -4.935693283253512 0.4078789567579453) (-0.004412947531184541 0.06856110217982361 0.005190619030909218) (0.06540613573057973 -0.1369585350768773 -0.120883191373313) (0.02019522949163109 -0.02738574529172512 -0.001169865032443519) (-0.004079592693245323 -0.01158605607838448 -0.003831093151746937) (-0.1417706256273098 0.8257820706074125 0.353336128011666) (-0.09388911189025738 -0.1097869650482723 -0.3766333037785699) (-0.02178845787377475 -0.04060476562059021 0.03361475290804656) (0.1897491512343299 -0.4109247955319785 -0.5883742860104293) (-2.408617742346672 1.116300710196733 0.8346942794808508) (1.174958628276468 -1.097266278830452 0.5605120291647829) (0.3259011622559083 4.057197717677179 2.287415010322859) (-0.04233304739447336 -0.0187283512131509 -0.0134521595091994) (-0.0528096151964611 -0.5813785447281367 0.6412843025756039) (-0.01104152337072413 0.02895274091976879 -0.04795302676934891) (0.02667827676286215 0.01097655429858311 -0.05467949589476671) (-0.2795490722495933 0.2869539389088051 -0.2890822751370519) (0.4680043252293594 -0.3322787793595221 0.1808112500471404) (-0.5784965583062474 -0.5518910459545525 0.0684396182441962) (0.07824478802207936 0.03626130880591332 -0.006022282360024632) (-0.09003950339718675 0.01043928440774654 -0.104023075173141) (0.1191388610866809 0.04951681819685908 0.08419422188182893) (0.004235439747318315 0.00665352898846602 -0.02236368567076276) (-3.339632389568654 1.633349045465812 -2.217646481849387) (-0.2151199747775426 -0.02616424874612988 0.03316592951025528) (0.1584938245158968 -0.1147442984612725 0.1983607911879736) (10.94590171017078 8.008618055790654 -9.224204976541813) (-0.03542879551386219 -0.01253410236863084 -0.01902901616996187) (-0.104054389315009 0.09687489227796051 -0.006808386887857489) (7.003069522969861 21.72873643293196 -2.041101241800446) (-0.1230966541833088 -0.1864295298700098 0.2309478220621204) (0.08784933019238905 -0.2724583466232525 -0.7976398414166308) (0.2348571779742299 0.317423895304247 -0.2899191065869093) (-4.871548606710584 81.44624366374661 -1.860216249582301) (5.106049311718101 0.8619299736618256 -2.886826193826703) (-0.7693901671880008 -4.50063268376286 7.749437846557865) (3.572989543371389 46.51668711689578 -3.271536835050704) (-0.7752077676237065 -0.01164897153282612 -0.3899386018981162) (0.14201683078612 -0.01588488699500763 0.08047569213514438) (0.3858771841594177 0.2190987448910741 -0.5506169834911938) (-2.338787591037375 1.569744201086767 -0.5561866031914814) (-0.05243238064047279 -0.1621409168250222 -0.5216732528260869) (-0.1971121469238367 -0.00514721582532127 -0.03931151945677558) (-0.04205680009442814 -7.487702358542481 -5.444493187766822) (-0.04170579883587855 -0.08266448719249288 -0.009064213623396232) (-0.5062258551363088 -9.419767170824914 0.2929408913716758) (-1.239387036301552 2.24125542281932 1.513422342008927) (0.8103130324046793 -1.097072623383734 -1.786473125305702) (3.589349261513114 59.09980583083005 -9.459156632373858) (-0.7116726901662029 -0.2860200005727653 -1.044653497981877) (-0.1405449315377423 -0.0326976282640632 0.05726501346909515) (-1.940083178909578 -1.024689569610204 0.4514942119206786) (0.03561011196319535 0.0341001195193843 -0.08882894666324008) (-0.08162045165262219 0.0005449917544238549 0.004801028190728338) (-0.4735910788529814 1.107761786222817 3.128201939741241) (3.505862486612074 0.146589025168216 0.1680169677114107) (-0.159360115402975 -0.08014342614694162 -0.02647772553450489) (1.865908920008337 1.862261042410495 -2.469102872152711) (0.680390862209552 17.41795616818481 -7.10805609221295) (0.0202954518599322 -0.01414191567966652 -0.015093771196802) (-0.05896403617752008 -0.3458753430554785 0.1744809187409454) (-0.07277021341364429 -0.03428201255302304 0.004344846839541276) (-1.491829468927501 -0.8435811420180566 0.2339552356865349) (0.351247320632679 -0.05509416820305735 -0.07157870583447976) (0.7995577071837499 -0.1102415384783118 -0.1470970547987606) (0.8918727266770818 41.89137045034023 -7.918602464298671) (-0.01752297206949401 0.08245575339882208 0.1258080083002523) (-0.3080964444689137 0.03577868934173228 -0.07753513894728359) (1.531969320139142 -1.501293630991487 -0.7311439498806691) (-0.01018625819105934 -0.006190295410964812 -0.001106157113492455) (0.4606144515256253 -0.3056060420844779 0.2257882035228024) (-0.002736481366475299 0.001447141230256179 -0.02117793165688118) (0.03737799301468997 -0.07012905243142305 -4.594309348394874) (-0.05658005408075734 -0.1168127040586879 -0.3666963803420623) (0.01032070346271866 0.02135988089615018 -0.001501154254066907) (-0.3255413295610757 0.2501993619744842 0.07988529401076828) (-0.1966835882299988 -0.0321739986907254 -0.06169768261588265) (-0.005074823865342831 -0.04598442519664524 -0.01463910713440204) (0.5678441399803963 0.2380669162847153 0.05630096598953567) (-0.05412333271021588 -0.2073207975047599 -0.02806533593711305) (-0.07197355695824831 -0.5705011059828885 -0.1737062475166788) (-0.4127519374055319 -0.3939175089865461 -0.08386188834065163) (-0.1818937507572239 1.212662537586851 -0.9585664837111232) (0.1479930778956488 -0.177824812425723 -7.065897792519658) (0.005841452816371662 -0.04179213881130719 0.01265147947384098) (-0.8903970533804728 -32.41133534053423 6.286837796620275) (-0.03556899563330815 0.01206151169571071 -0.01926784059051207) (-0.01360016756093833 0.03196410123166879 0.009425407682342889) (-0.05754824825347291 0.2147334217992921 -0.04533300585213484) (2.128380883472523 -0.9676575280181645 -1.177079572126465) (3.017056855264713 17.74951294727101 -13.42033141775522) (0.2701808845018656 -0.04916934680629656 0.03743552023801731) (0.8314290969728784 -0.9117909493964759 0.5306513220668365) (-0.09446450863974805 0.0970571032811206 -0.1935339857182163) (0.5003321129666951 -0.1585206857825407 0.07986279158672485) (2.588647004892687 26.57473613896598 -8.831214184172469) (4.657690468455906 -12.06635956474572 -8.095933860104545) (0.4483918227138936 2.355880581856741 0.2947549451897991) (0.002720856092799423 -0.01284218345734502 0.008175479248643492) (2.330047338195961 8.621263864239294 -13.19802436658424) (0.944181471304455 0.7521214808613924 0.8480563648766818) (-0.3287437121011418 0.3179028103906847 -0.6686450760518861) (-0.05218190371906287 -0.1634276182190191 0.08210392851204078) (0.03193288032041822 0.1116023143502676 -0.04740719937251517) (-0.3153039151974041 0.2384932090101174 -0.04693656725611617) (1.481234511994335 -0.05126921423139751 0.5088311682101213) (0.09897527012730009 0.05239085697629266 -0.06806503321744484) (-0.4763124478221954 0.007274954200935602 -1.173063708569434) (-1.697465928221175 -52.98962452216556 -10.94825480268286) (0.2661218520154188 0.3853524936150511 -0.2375387366031232) (-1.78298294280688 0.8784994191843895 -0.1978322424611381) (0.2362100175747429 -1.154329766255282 -0.8868849407319244) (-0.09598244060045569 46.34465418931808 -4.466873941416591) (0.2251027803722291 0.1882136132346886 0.0943061198058657) (9.698461727054765 5.31639649728694 8.839002941320704) (1.560663747792487 -9.497668599839386 4.366791115864991) (1.216929283853535 1.42809409859816 -1.122341601612872) (-0.04782128873141278 -0.9712236992678162 -0.101805807856805) (0.8807202359091411 -1.311439425875274 0.3053691816325422) (0.06980408796154113 -0.006745138483086166 -0.1361090426574798) (0.7386666432715796 0.1575819119662568 -0.2300968604420849) (0.3512648932449897 0.4291032928276264 -0.02247729638523455) (0.5764523803731048 -8.311812394804866 -1.753588971855073) (-0.01985001427308737 0.02038883819842138 -0.01795457578194739) (1.293571465770906 2.838547955313351 -4.745908029878429) (-3.561605300596749 11.21951843798633 2.156097536441214) (-1.207803190565475 37.35239674889216 3.88793193270503) (0.2972874310045653 0.009119354020872078 -0.3594392696084544) (2.885844783787381 -1.53514343092685 -4.2834605507209) (0.1046864860969275 -0.4661893509215815 -0.474402634655853) (3.135684502586756 -7.857273612774569 -13.74842144152791) (0.7952683493892447 10.67262227711397 -2.654865491276714) (-1.039926812606535 0.41758687404704 -1.56548864619619) (0.381849691261839 32.32400175735986 -5.400892348171253) (-0.1976364812635163 0.01116553577466461 0.009269382317882244) (-0.0135176971288609 -0.2252202034413313 -0.06443169862550896) (0.4224530687788968 0.2376858405001976 0.07919382219735704) (-0.1013588698681102 -7.606414799045917 2.776896897609296) (-1.017671244882779 -0.1448023682631263 0.4990197820979823) (1.126140935349536 -0.6698430832142983 -0.4183152596721383) (2.189221941327432 6.710246756339915 2.083416383717833) (-0.2183881521198751 0.1593120106336764 -0.6455818321907779) (0.1397040886879627 -0.009209759324741898 -0.1878728809168058) (1.375547233035799 3.892648777983809 2.172574051373572) (-0.3843459301325091 -0.1037555588890423 -0.03217004488579955) (0.2618758138170535 -0.6876745002094889 -0.09658732507129578) (-2.149122532991253 9.57489242506314 -51.87425765256188) (-0.06289230653276416 0.2971239811388426 0.09095022135241482) (-0.01145161359910534 0.0959395045991602 -7.615291327805231) (5.620795746784935 1.360869579223189 3.037971816388499) (0.3334490826793384 0.1914396299489064 -0.2983951763218824) (0.09225883515294467 0.008200614736901469 0.02306838678941961) (0.05887191475787386 -0.03599482792441979 -0.05906363564887981) (4.282800186307094 -40.71044724966186 5.008432307803902) (-0.04993381255801208 -0.004985651828049373 -0.06129002852644652) (-0.06970859316040987 0.2748119518471747 -0.2235653850511073) (1.056144742973107 -1.741811904910468 0.1776555264542656) (-2.680545714763553 -1.27499922817701 0.1588232951493114) (0.03240923657208503 -3.216518618813953 -0.8042668898662972) (0.02901921037743115 0.00527070723165424 -0.05784470499326603) (-2.783806778700301 -5.983815783348739 -0.273139966721192) (0.2989377966562766 -0.2722567786713925 -0.9513436521882744) (-0.119866618624672 -8.564518262881206 -0.7116828871878931) (-0.8357595785167939 0.0464596678175857 0.5943834325393926) (0.793663319310653 -1.547132768915119 -0.5343263760850518) (0.207125567562573 0.4757995476906006 1.114392503793001) (-2.269978745555295 -0.9415883702848302 -3.134065472502323) (0.3697249917328493 1.217571255692682 -0.08075775267449274) (-0.04735001941859455 -0.1551935849333473 0.09567884934493368) (2.083231755746979 -2.447472804244249 -9.18483764397382) (0.4663010177442299 4.963122673803177 -0.5186205397369452) (-0.1462193807269733 0.1323148170663126 -0.1216001341272431) (7.974577009108264 38.78311221507044 3.963321877987601) (0.01959424730740034 0.312356398947262 0.2109101035396965) (-0.1782167569761206 0.03122089078063678 0.1262241958526413) (0.09949352094351684 -0.0401313077367339 -0.01349794141945938) (0.2518057566214898 0.07151004563691264 -0.1123597546535037) (0.1422142294715054 8.969390512114973 10.41434612946996) (0.06943684756012444 0.1701205300240702 -7.713199632878326) (0.2641082022966984 0.2328711554458343 -0.1687265464314674) (0.1189643581065138 -0.1100106621234651 0.07831353287906251) (-0.0841541714343709 0.0395073099033636 0.05826515548651502) (0.9268507933706722 47.26857593201286 -0.3388780098210873) (0.04566609796517325 0.07336788467326071 -0.0588455405359192) (2.418637486193931 -1.40567031077626 0.06655748114607918) (-0.09620680410566293 0.41379067974483 0.04439056477611848) (0.221047793702759 0.04115957136638576 0.1400419246229566) (-0.007434602053192488 -0.02762691703394522 -0.01591104648875684) (-0.03486660123255987 0.05088451455702411 -0.0419708298525465) (-1.076555139394164 0.1749058361020074 0.5537538128003632) (-0.6357266525811356 2.357224998969136 3.185348045789975) (-7.414055814884368 -23.6759212670032 -6.817969845503717) (-0.6865222393700512 0.6168638228720777 -0.8162053138943608) (-5.901010348840166 3.416741969957629 9.917557929555576) (-1.481446322779348 -3.250275758364922 1.74717378033001) (0.6871696815027026 0.1479651318678877 -0.3081295019195704) (-17.40265079681613 -35.38351738550053 -30.84262099205871) (-0.017830293653515 0.001096783098968097 -0.008040020386429578) (0.02559452016754638 0.07270942643943978 -0.0001829687751358153) (-0.09112295182328646 -0.02561020655800328 -0.04581222135655198) (0.006519232645692466 -2.869902488176915e-05 -0.00389434656222022) (-0.01373225444808304 -0.05825791273432711 0.006447624316709552) (-2.962438077562316 -1.861760740704188 0.6607756875804325) (-0.08694299031908864 -0.08873659541945945 -0.125729513776337) (0.06861168239746851 0.06536186596671298 0.09013622092095605) (-0.08981448465075603 -0.07708215855931412 -0.1222366429260793) (-0.5481649480570204 0.03419948738519364 -0.5952018280161571) (20.864067120323 -3.088173101687542 9.874169658786723) (0.06988086812244924 -0.09213359497457325 -0.1360409356756108) (2.076874343287461 -10.20263230236045 5.849046565057506) (2.953253692529294 2.293862113095725 0.2587881399061287) (0.7686821834582902 6.817164003354468 -1.903109231226317) (0.07354285808941532 -0.007603302388740206 -0.06772913774379527) (-0.1469142424612989 -0.001115894964937969 0.3846665651070343) (1.114334055273107 -1.726327195575086 0.4164948942090012) (-0.08099096605284165 -0.06475352665698517 -0.01607422653283454) (-0.09291349569861215 -0.03683195949666852 0.03838159445616694) (0.1246196163688573 0.07785028170921568 0.003269511411467075) (-0.01197494783951472 0.06573983100897852 -0.02233488646385998) (-4.01306343635104 0.3612971465771193 -0.2601287721790306) (0.05234761056370399 0.02286937801853756 -0.02344273272136405) (-0.5067435344796054 -0.2032856387266262 -0.02976376618076573) (-0.5864231305732057 -0.06938459179492276 0.1190442077651646) (5.586715861653026 -0.7093818682455741 -1.237324420753363) (0.1762137071771356 -0.000284543392085744 0.01877671131825701) (-0.04205647829373044 -0.06179108572669936 0.03714159979847851) (0.1102642308508259 5.021015822211634 -34.44149339278368) (0.290824044180051 -0.01375352764127886 0.08232028074114954) (0.03831459000319946 0.04800196167306812 0.005872796325597092) (0.02617668671712359 -0.005091332333523678 0.02557173715009405) (-0.3331893133843834 -0.06303488190041086 -0.2473449477592067) (-1.400079062398362 0.768399888989142 -0.296647019589132) (-0.05833174316141346 0.5189261774648104 2.50233575094521) (0.1716292447555964 0.05663592477772941 0.06245307925253213) (-0.05782306345782789 -0.04979656405154618 -0.01123285183346108) (0.8305312145279542 0.7858853998723592 -0.8241280918120797) (-0.2952574102731333 -0.01186952985491408 -0.0603057622663762) (-9.117089098749595 -15.42228032524708 -8.449535491440901) (0.0719022605327741 -0.2063600637207971 0.226750841760233) (-1.058855056640419 -0.7124040142072755 0.1318170468448002) (2.535170663135316 -57.46450652136664 0.3549528439847378) (0.008577303350833943 -0.03188513038485045 0.02094129393093492) (0.2665133103015478 0.6839619817028808 -0.5661883918632412) (0.9883485629532007 2.566565404540823 -7.233895559685906) (0.8517527270465319 7.533587547287173 -4.676073164449513) (1.67820318823074 2.707114971888716 1.77021897093382) (-0.8745540364751933 0.1793981854883809 0.1756917885158581) (-0.3481342971083825 0.5155010119709978 0.4220341061331806) (0.007930616598208835 -0.02050069911441009 -0.03514846774444456) (-0.2590969524125993 -0.1839591428398905 -0.1084226881921881) (1.198916820298125 6.161486059817926 -1.286795337070706) (-0.1383812106896991 12.31630371724473 6.966195358826106) (0.8535354504067768 -1.137168050130346 -0.0831185953584252) (-3.299868401863861 8.927007576515399 4.018954188833193) (5.047799163645259 -5.360573242251819 -10.81098280635348) (0.05763747711547976 -0.001561293774935673 0.02507230319093052) (0.0830718013703003 -0.1226113717830871 0.159196034488437) (-0.22829602520342 0.1776297256495646 -0.2290811780445208) (-0.07191258592734195 -0.6852567442100762 -0.4839536401828711) (0.3070444897553229 -0.1770238362494967 0.1766751979143203) (-0.03140432411288049 -0.2300945813671041 0.3624828304679706) (0.006411370396174332 -0.04727402580970462 -0.03165815173964527) (1.799660396320986 2.156361139840265 -1.701971866903426) (0.2335772024882752 0.1520384336422698 -0.1345940895956385) (0.3450144175848626 -0.2497013942495456 -0.3746575427771045) (0.9707262354089679 -2.420929475180515 0.8511356740985703) (-0.549382313893706 3.218393127593897 6.288298672377433) (-11.16493081476136 -8.279482880559721 -5.816149594771383) (1.307421328394213 -8.653665360566421 0.2852898685689069) (-7.846905401809812 -6.685026097758573 -10.86488818387383) (0.3192249396726572 0.3762051022213704 0.1916788629643852) (-0.3357513044517887 -0.0434958970354203 0.09872455898413449) (0.3495568518533552 -0.2672786725029327 -0.3389225279141993) (2.151689607687227 -0.1726626657003978 -0.4976408559098742) (-0.00225517159570174 -0.03767964890206606 0.01002427169486864) (-0.02318070618436987 -0.00309959375171261 -5.54187514979642) (0.2976476715921971 0.2494088070229674 0.02455262415351404) (0.2797822680536177 -0.08692705729389004 0.2340106726508566) (22.47075224327183 31.97388610463893 -4.99503829579454) (-3.372190656284707 13.9315345275328 7.089359750327622) (0.1325143672235358 0.09259742105469546 0.01710458322667246) (-0.008060219645762465 -0.1745077340414853 0.1103120810030278) (0.08698218572348124 0.0824652906737771 0.02707036070164328) (-0.07930272612992494 -0.03429054587086149 -0.05741773713713055) (-0.7275355710316769 0.5564168659513811 -0.2588407902793841) (0.01563033500808442 -2.115996698663235 0.7055265761382525) (0.1331818324020717 0.05798763257873037 0.05191007736696503) (-0.05110328362335527 -0.03326031543268149 -0.08538290255375261) (0.1404780202447134 -0.009380000245597958 -0.131361498041434) (0.09001914736048491 0.001563261512888499 -0.03704529174442781) (-2.285694588597291 0.8080195622823532 -0.6757692692401835) (0.7113075299211327 0.06033505954914753 -0.9106207830621805) (-0.06663649460326448 0.1230743092642273 0.07132560447647615) (0.3491928427694484 0.3787756476584579 -0.03192193270754387) (3.353175204970854 -0.1053711116144171 2.246083112076876) (1.063036860094776 -1.054661225076959 0.0671244709355848) (-2.286595803718765 -1.96835096586626 -2.368814011310519) (0.6861527486574652 -5.517888513158225 -0.8111255542178069) (0.2695902032190617 -0.1433247920636473 0.1088908266679762) (-0.03088472360265128 -0.05119930004507086 -0.007773326588473579) (-0.4708894179548787 -0.1627088083611319 -0.1911952756833784) (0.2919129381061506 -0.4456840025090603 -0.1389845165606523) (0.01753396102082112 0.002173002902462254 0.05580120820102472) (0.05358863753556751 -0.07008236932026579 -0.2654210125821924) (-0.01362414833977338 -0.008193825428497614 0.01066934878745854) (0.1562704829729406 -0.1680579042951025 -0.05565777883403675) (-3.342313541679694 -1.404708712498528 0.2577153690027817) (-0.09924887350996256 -0.02734704125381053 -0.2575276876424933) (0.2186403753941833 0.09535159563737519 -0.3273399100694113) (1.470629098412114 0.03353531047821012 0.8568848124057709) (0.06756516110582707 -0.003609942514501332 0.04338470638085164) (-0.3680700317248337 -0.1824674123114661 0.2400125242254156) (1.134855234827398 1.673096228035716 0.6638092332764958) (0.9340508050899765 -5.074807214735873 -4.980004126478732) (-0.09633491129136519 -0.0002389400027187332 -0.01021268678985534) (-0.01656390645129617 0.002549989422530268 -0.03378185042628229) (-5.228606840063225 4.778697301443224 -1.087246494595627) (0.3838316327152468 -0.3112020236283389 0.3472745889663328) (0.4058314952004213 -0.005693538373752735 -0.07421273450453839) (0.09563465554760917 -0.02994817980960685 -0.1239328342805322) (-0.40958510862901 -0.3178487253648437 -1.94390692331876) (-0.03429273731497054 -0.05959110373440805 0.1319198302286582) (-0.06851623999893316 -0.1058982303938362 0.008991116678053926) (-0.2654384523368761 -0.2481172963877568 0.1097284498895873) (-0.1478472485580649 0.08858955921719254 -0.06478716476256972) (-0.08485480457110212 0.01707057367918432 0.09959308354763588) (0.002164189252014406 -0.009795574294488914 -0.07594212018143028) (0.2987831186374791 -0.1360426966233487 -0.1554084928828636) (0.132927109503709 -0.01037415865551216 -0.01783323335413547) (-0.2308791544743105 0.004688786383545812 0.7566943271119916) (0.0477368072447686 0.01261237147167685 -0.02325006945242283) (-1.261450129478613 -2.478974849985901 -1.459461934997271) (0.03816288602490686 0.4675516908201841 0.2041004849558632) (0.1063607366064037 -0.008506354721066258 0.02629753344339025) (0.0678993127133667 -0.01548835608420937 0.06838248545289594) (0.08273644654530195 0.06971223686736819 0.0001052044016680159) (-0.17701170934384 -0.2765536772907847 -0.2160718759573609) (0.01923142104964581 -0.4827533477813371 -0.4451633339964566) (0.04059179952477265 -0.04018674650475328 -0.03792841493603303) (0.5803023369258583 -4.118323263297984 -0.6812025748194285) (-0.2724123745720738 0.775573979238438 0.5965940651416031) (-0.0477010408986888 0.06823966412597442 -0.0462754544882627) (2.771614447720935 -9.178978606309546 -27.60590104354151) (1.308375664042661 -11.31248254409096 -12.57769724103094) (-3.777254038205082 60.52832059808374 1.157589779089649) (-1.7285474144172 1.921850018218858 -0.708138768570922) (0.07013945001020827 0.07574191578407566 0.03289193455706396) (-1.321136440427475 -0.8075133270664722 -0.01580234681481119) (-0.2262450636180715 -0.2842020088699029 -0.2100618319827953) (-0.2515288385964781 0.1825796539156558 0.7420672937409605) (-0.2650245504914492 -0.06079919758953171 -0.08138258469346857) (-2.834949097939822 7.81395699743348 -0.4863364614638886) (0.01656747764937666 -0.01083055830427922 0.009214868857984677) (-0.04221605465827774 -0.03893240235944465 0.02622872647392647) (12.97700976570835 2.903476411870745 1.075895178754324) (0.1419546908908716 -0.2638526013299951 0.1803728869558681) (-1.217240370484846 1.106461671990465 -0.8416554505834534) (-11.15476896697784 21.33448760060393 -16.08561320568184) (-0.146376502477922 8.588830563831266 -7.967057407927121) (-0.6015503104877177 -0.1116883661751225 0.08473582149142204) (-1.665366802228892 63.15500291599975 -4.940480880800386) (-0.02786692933020018 0.02189097078238457 -0.07738189292018025) (-0.07970547518219405 -0.05319298526847518 -0.1956784716176658) (-0.2833824086754172 -0.0671548897965723 -0.2161411525620379) (-0.003859061918410165 -0.02812180480296731 0.02149798788072286) (0.3191530239747429 0.06694265738761793 0.1124374083116576) (0.8293401035163361 0.6155474052280899 -0.04387901881736489) (-1.198901692593093 0.2275447571649728 1.740202996687814) (-0.5422206435463652 0.2411143259696834 -0.1518996012549349) (-0.08877911923798693 0.1777765339176096 -0.1695790226478049) (0.009023140132723775 0.08690952634653967 -4.759776449192965) (0.0839261284726634 0.1452880045609493 -0.3825293260572389) (-0.07441485472598383 0.04422502766977228 -0.03448635373592068) (-0.1309189328234444 0.4709276578910768 1.375004681661729) (0.6358849254294391 -0.4708011785058075 -0.06776294528696034) (0.17024130789922 -0.06254814065667472 0.06845313297205886) (-0.3556477683697769 0.03538965259171241 0.1223844037908196) (0.04313068974655516 0.001596295541851304 -0.02569899528895835) (1.057135901830603 -0.3304739378428968 -0.3107183186278181) (-0.01667677844353049 -0.02743739145977602 0.0739715673816915) (0.2848151807073192 0.150217129059234 0.06755422902029969) (-0.7222633974764996 -5.24973193360025 -2.458423015666552) (-0.01757402726292988 -0.007288154036974787 -0.008739366946750031) (-0.1307396697369816 -0.3194350479195071 0.1342827035511631) (-0.4975970106421185 0.1026645651612267 -0.02337876184541858) (0.4079459136353943 -0.09055083862851585 -0.1234361777972649) (0.332121991944441 -1.054600695852664 0.3499714755561706) (0.0009596618814549144 0.001597679276195058 0.00272773203764634) (-0.0164725838871239 0.006817862894907704 -0.02774638347856333) (-0.149012051178041 0.09207448515166954 0.09134975613924855) (-0.7187554133177834 0.06574130029211522 -0.3122644130719356) (5.590978504823457e-05 0.01467765311609228 -0.0106526998350217) (0.1854160439712583 -1.448665071757463 -0.4874157232913683) (-0.0986663787503865 0.06304705363981007 -0.02667946586104545) (0.03056069365272834 39.70309784425596 -2.858230151769329) (-0.4254187291402733 -0.9209215622154104 -0.8180885229655699) (1.437798152377664 -1.356051084063689 6.714931309789547) (-0.01237328732874785 0.09046908744646345 -0.118010803640984) (0.2305098893787172 -0.1769766846955208 -0.1377456488744313) (2.280519747098466 -67.54383451825309 -2.208907971128582) (-0.05002123360952253 -0.03710767792599508 0.08786739697396795) (-0.9207621835544966 0.4439385119969001 0.3350315698965065) (-1.007780169473669 0.3572121334781476 -1.636787467893842) (-5.620921788251122 -2.077381339267586 3.52143311318055) (0.02116684101381647 -0.02734211938587468 -0.08340722417561601) (2.665342716069344 0.8122755499158985 2.522511663759762) (-2.12337742874833 -1.456015845872634 -2.923708078066856) (4.233278000043629 1.271607858287005 2.909222665686133) (-1.096681992664446 -0.2409392853331919 -1.642237332412006) (-1.866471035987104 -68.66605153860215 -0.9013015840723153) (-0.2073383838231476 0.1794916696844786 0.2077881749395594) (0.1369850345618732 0.08737154319360238 0.01773570672735815) (0.9677309021401168 -0.6129344171977994 0.3571132126879286) (-0.5300608887853864 3.95143707034006 -1.056054799546009) (0.5263812469443925 0.340422866103776 -0.9637737701321338) (-0.9040599343294006 -1.810863275649905 1.216619245124699) (2.230638853484973 8.847113757191797 -5.233262367569574) (-3.089275073668464 2.736008953060639 -0.6468444679096267) (0.1422514771858527 -2.677051597904409 -1.207898894998589) (-0.06598739041575066 -0.05551907423936853 0.09769073204216097) (0.02140634075140681 0.009395794579672895 0.01866249320691836) (-1.039978736228285 0.413233289027082 0.418592209808999) (1.464894229289863 -0.2448449656774813 -32.08474978691846) (-0.03295449062584892 -0.02593072981125905 0.01655803485348881) (0.0180041453008496 -0.01929268875735739 0.07714309200314406) (-0.2781115522991342 0.2007045554153153 -0.1289296835281264) (1.899362211962614 -4.371533343178696 -1.803688240909798) (-0.443367486579214 -1.436303667227314 0.1046287034503738) (-0.1730353901600749 -0.0358586857636032 -0.1405471539861825) (-3.076395290522083 -0.2751999160371744 -0.8342696013517115) (-0.06906513965951044 -0.06229087990674732 0.01376016889940539) (0.5898989697255825 -0.3761913717344469 -0.6290074945539944) (0.947683919234817 0.0162607103246043 -0.1619454365377901) (0.1264453896326721 0.1053438920036355 -0.1077329012884095) (0.1291209486952312 -1.899892848328168 1.799444411282069) (0.05526894765089696 0.009656745541855565 0.00327520020450125) (1.662485852101693 1.426236609891371 -2.533656854623949) (-0.03014778370401951 -0.0006002998044440681 0.07646165350677195) (-0.2768507270025229 -0.2800279889597764 -0.3733888449499321) (3.366211067967264 -3.69306759000534 -2.857086553974966) (0.1300574135002986 0.06563671129314476 0.01808557942198152) (0.5341694492972567 0.1558147833729619 -0.2718607525866554) (-4.487478328153754 -35.14528499715014 3.904107366194299) (-0.6155274504353627 1.575417323428533 -0.9587365622841184) (0.0326000202823773 -0.1051413150717343 0.1037453103708169) (0.4337808428371502 0.1002085198767104 -0.3763467894406248) (-0.005107657190241635 -0.007985264550790374 0.0538248736170145) (-0.755735593050558 -0.2549451023895841 -0.5926095671430118) (0.7837550132292871 -0.1200771226213915 -0.474578843289353) (0.1248142526094123 -0.8649752423778834 -0.3607998113050159) (0.2164418591757862 0.02895963351235042 0.1649029844784073) (0.408707884966938 -0.517250820890326 -0.722840491287695) (-0.6383726911245882 1.550724530106352 0.4616873134498131) (0.3931295238205635 -0.2058182439665177 -0.3624727899880676) (-2.805536846745155 -1.75922060046078 2.265781729726974) (0.3514370462476924 -0.1884546168270361 -0.07951055324913406) (-0.3799913444773451 0.1224588684493782 -0.01082815672239992) (0.2990407500772721 -0.1698494898947298 0.01920429425150514) (0.223493404590951 -1.947553125518823 -0.4750647610619906) (-0.593242812014467 0.0955986908877372 0.3291998464788757) (-4.480223474572095 -50.70410101069458 2.876362510740305) (0.5548519966756005 -0.002909532669587753 0.4791959562298283) (1.059851292435744 -0.122898502745095 0.9877355976231025) (-4.004245135098158 10.35056272819973 -4.045079597265454) (0.3135208480444637 0.2089975623641334 -0.002587340191263166) (8.28665230747503 25.10909916671249 -4.559009278453748) (0.0147445814004742 0.02108539984414308 0.04796329346252032) (0.435065059173658 0.5907243096483715 0.4039398556276862) (4.594560484712977 5.908807251826143 -4.085471318947533) (-0.1185290791141545 -0.009125123275974034 0.09192569956743882) (0.04384151223325168 0.02168704883364905 0.0302357715935825) (3.405235501891513 -7.2296372320607 -1.014168140516842) (0.2699936306406385 0.1605166611282416 -5.143005996325869) (0.8260292506019511 4.477275040445727 -1.936414698591064) (0.2820617601518062 -0.3540302686314649 -0.0240502019152431) (0.5323335844356923 0.1310140577936301 -0.1885933153710344) (4.738674320341209 -5.563365824123911 -57.04456366736934) (0.03031444858303819 0.01334887826523534 0.008255393311488338) (-0.02022573991533427 0.0003346599408998088 -5.636822488351216) (0.05260788285469537 -0.0252582380563485 -0.035516561144112) (0.2145291328186756 -0.1405239777705715 -0.09133189588330554) (-0.139388633244382 -0.9129212647376432 1.723431974824414) (-0.02478402313427439 -0.08052563411245464 -0.04817679762017932) (-0.004840354810433494 -0.008868266616121223 -0.02542917047361658) (-1.076755506846666 -0.6153043828268335 0.4733402143396879) (0.02092258024899418 0.06102694432671667 -0.01121343460921941) (-0.8091230255957972 -0.4885294169589918 0.003186886219371521) (-0.01104358822714935 -0.004715595222222048 0.05088469109923744) (0.1189301087367444 -0.07956461913253055 -0.06184978364836613) (-0.405305226593681 -0.173012028130229 -0.06598660721201111) (0.1383263901684306 -0.1827120355538515 0.1418415272693573) (-2.059602141478973 -0.04504314156012151 1.271625804577937) (3.912019241431138 2.534424111597601 -5.60763948249879) (1.39819462210974 -0.2422738728865562 -1.726511639741644) (0.87884990602125 0.3612388874731169 -0.6327523954799376) (-0.1868436984530988 -0.2995201140675357 -0.4876453871670887) (1.236441198618705 0.6735290022319108 -0.2262486026116399) (-0.5228034338243839 1.244902899577064 -1.131593180927481) (-0.04544824181568001 0.009757279910168597 -0.01371595027316511) (-0.001459604519904456 -0.07640104423156213 1.270907607680015) (0.04727615787885489 0.03894925354945152 -0.02185292813654831) (-0.06799593604576067 -0.1563135280127537 -0.004065761863404724) (-0.2875417536464092 -0.005675360608800528 -0.1727391516982393) (3.639187270734393 0.6015598453638171 2.514389248529205) (-0.2629525144612464 0.6363471592623312 0.566500743404085) (0.0734242186543094 0.2772641467737816 -0.66930395441492) (-1.102497897053994 0.4831037798653064 -1.133657644556313) (-0.9641352336910259 0.2847768386574365 -3.493936147864642) (-0.01190994637106191 -0.028308816689183 -0.03494024232387852) (3.889424664080947 4.155822996519024 0.542692164181127) (0.9669784285927594 2.200881511227641 0.847693271608291) (1.879360724543666 1.358048975919883 -0.7779749247841874) (1.294522604519513 5.074178033087198 -2.425338971474599) (0.9803000847245548 -0.1978538008933239 -0.07105469157523388) (1.150661657401397 -1.010460630576099 -0.2420382006393992) (-0.2452515747906665 0.1865016500900412 0.310218687009634) (1.435564450212431 0.1702653572959689 0.5512388834184465) (-7.693697506976124 3.106433126083346 1.931649591170707) (1.397646299409361 3.835703528500662 -1.335984534843894) (-8.579634088894514 10.09989745191301 -2.450197756711355) (-0.7656237680023177 -2.475102247434528 3.117335713590809) (0.06727117742716075 -0.06399159483006284 0.1107974820057355) (-2.895862419247193 8.382063621665171 -8.357406798895372) (-0.02273019466075793 0.1440315112068472 -0.04548443937654886) (-0.03124039777206045 -0.05198156312487368 -0.06507323972930759) (-0.08861257554570784 0.03907711896714017 0.01122705719004494) (-5.643950150607283 -31.47601962245982 4.797545850162994) (2.53934946218934 -0.468116255859746 4.981373801993078) (0.2475951868576672 -1.370795922771449 -27.65108425527571) (-0.5127886018338623 1.639536425471355 -3.962547102784954) (-0.2180326193321039 0.1225077776482862 -0.05879489983613287) (-0.02149265311880913 -0.00893588133800316 -0.005918773727493854) (0.04075978250300005 -4.624247686948375 -0.8991656528656755) (1.697984692012332 -3.447267697868032 -0.4862856762145719) (-1.956241369361665 9.443046722299529 1.723467730055389) (-0.2866819659034691 -0.07053929589284158 -0.05121662883944385) (-0.8313889215891946 -0.1217137480909219 -0.2847202044865413) (-0.8164742402838223 -10.63783904645162 -1.757265474422262) (-0.2737778931472281 -0.1031825171419344 -0.01170968295726377) (0.6296181701410244 -2.268671780855116 -1.391664711364074) (-0.6148839300369119 3.11599534781561 0.2506862152723511) (-0.8208884736009801 0.4238023571575524 2.220719854113582) (-0.07022006797260119 -0.011991510239648 -0.03403687329498623) (-0.04574834683603606 0.07857777466951968 -0.07057084720585279) (-0.2204382412254817 0.1099311417417077 0.2956732024999191) (-0.03882136769192913 0.01504607996724433 -0.002501669422378578) (3.617727539393568 1.323360163369682 -30.73051472113967) (-0.7082063827009153 7.599905153659559 35.40649654572049) (-1.976592480375189 1.340602423120929 -4.399209408843913) (0.9126975787062526 0.9138301871845727 -0.3320953114155506) (-0.05068544268857234 -0.03019510684741688 -0.06316857840821904) (-0.109189684086041 -0.5907989640092293 -0.4802511499576699) (-1.394989386868308 -1.094755019005039 1.015690827486068) (-0.1348625314776563 -0.263735480328589 0.2162674377930943) (0.163380289969229 0.2765745710961408 0.329040155537445) (-0.07148067246387099 0.007761351843890323 -0.02332422325501591) (-0.4467061961145794 -0.001065801367163832 -0.1234979921356909) (-0.2794629804116728 0.2541476790153185 -0.1664226251338389) (5.232511404147463 87.17744204160522 -0.9921198696956663) (-0.08082331461687492 0.155928096582338 0.1576575785840636) (0.6660658348021287 -0.3602719604320954 0.1088618908172113) (0.5877111752560885 1.564033991331186 -0.3757533116476599) (-0.3646641615568301 -1.814440126114188 0.4035399923692151) (2.295454241933467 6.365592283072606 -5.897600563808902) (0.6425569798752117 4.232652439965007 -2.833407123028275) (-1.241807473605071 -1.300743328095344 -32.18074525407259) (-0.7081098365730256 0.5641459638294624 -2.855681025575559) (-1.598519382940047 7.14352481759278 0.1246304663271767) (4.893025749228387 3.596023027898009 2.330436237286864) (1.504440122293011 -0.2392064723133762 0.2426350683637273) (2.05938935752435 -1.091700762685799 0.5949758714322479) (0.4335935812821302 -0.8162206566914123 0.7109954730742776) (-6.52770681621273 3.332222845285438 -0.8364812522601509) (0.001555363810098853 0.1462297503821433 -0.01145391382235324) (-1.671268574267209 -11.53613611977261 -2.928967973568914) (-0.8284170393586315 -0.1680718391303785 -10.89690586561496) (-4.355069952544014 10.27321236857696 1.634550897835956) (-1.70276356057987 2.172675301636433 -0.9740647469837771) (0.9656046490549011 8.732143771282527 -3.385519144454803) (-0.04044661149916953 -0.02146905177122147 0.03076083765209893) (-0.2719417492012307 0.05179366499820186 0.001974830404372185) (1.398587077333809 0.1357981525854821 3.342888825881672) (0.1739029560119888 -0.04665590839812998 0.1077994613676642) (-0.1635683074667847 0.0162542880098813 -0.09457815463101713) (3.46223825156439 2.688327424243776 -0.8000325041422562) (2.432098846850829 0.5604445953997375 -0.2200921737845372) (-2.987113159955753 14.42050198505844 4.16187228318973) (-0.9551262967713483 1.197525310929577 0.1367313879645742) (19.57990065007449 -0.05647391404156288 3.615491582562767) (-4.679236094189672 -0.1873027832894503 0.6428036950176095) (-2.518132967695447 -0.1375755358854862 -0.4785080938951292) (-0.3788546465115143 8.629945228748298 -3.904497912344408) (-2.458645662638681 -7.622152928019114 -49.04561208505653) (0.05571492517460871 0.005950039546913858 0.004314874628920554) (1.673274794040781 -5.509417735782945 37.42383118427963) (3.982430758857798 90.42854973909877 -3.416678107569818) (0.0109477194018628 -0.7774099156207797 -0.1995325229561938) (-0.6529733611257016 0.2919656118071403 0.1867410350203507) (2.963912703448136 2.119252166905543 0.3525931275156193) (-0.2932504487836889 -0.9349444941617203 -2.300192216801819) (1.411299952065201 0.6822554334294748 -1.033612386920773) (3.810318739139743 -3.816237077464129 4.159400077492927) (21.64762346018094 -12.32065898228963 -11.79019067765688) (1.474263746861423 1.512046602017817 -28.53705520732466) (0.07552192262225517 0.03807372643377344 -0.03584149548634562) (0.643371192113096 -0.7492275357384279 0.974295200102633) (0.07211185520177353 0.04509126127853274 -0.03004024249775942) (0.424708313887492 0.4868174770845348 -20.74040112117793) (-0.0149195562860266 -0.04323056124336694 -5.522048795971958) (-0.3850146533784881 0.0177975625968492 -0.116508471475452) (-0.2866948767079711 -0.1330610643987783 0.2057717685161125) (0.1570357030708057 -0.001271803295737454 -0.01773920389728921) (-2.7230468097598 16.91488610737586 -1.154040016714241) (0.158354302386247 -0.1419315164621813 -0.05056391844406335) (1.030231427805902 -1.643036992753431 -0.1071420324902584) (0.1752495092668218 0.3878512823864385 -0.1262728086493304) (2.911179091755354 -4.888738166091745 0.6075755963897306) (2.250329264504872 0.374103816927943 1.233354398515151) (-4.602070790454079 -0.988475551359673 -0.6395577402771431) (-0.3151341758406905 0.01669633440713615 -0.1786615902858377) (1.138604605027818 0.7929593246118115 -0.3938249822113151) (0.6113797056734461 0.1797922145967377 -1.114743111615885) (7.123644786689796 -6.020874635159695 -1.632035175617626) (0.1416819771808764 -0.1436312899667705 0.05126345283607861) (0.09308127140524258 -0.01691794896161736 0.009685749003072865) (0.3384635433087679 0.2194720712144165 -0.2054073127923439) (4.442775148281255 -14.15344637833066 -3.587909240409887) (-0.4114158807023952 1.649370574761345 0.01111174681227475) (-0.0384291868853553 0.1411909175445722 -0.1842959064866285) (-0.01952713482732428 -0.06072035688644103 0.04154838944150081) (0.09909904562005689 -1.193958493524698 2.019428864862266) (-1.221073657247363 -1.070352801396884 -1.105539616810119) (-0.07224289213336285 -1.123593879577106 -2.229458876318168) (2.765212699271974 -48.57109493370965 6.696315465734322) (-1.964270881506952 0.8613183512154619 0.3080917500225558) (-1.154421564567727 -1.782674745728113 0.4884168626686126) (16.697710214716 -2.067366726151434 4.365749787275842) (0.5392404012323215 -0.4828893246048641 0.3498029623578285) (1.114660385380065 1.252054875638063 0.372498819956165) (1.479212051855697 0.3585485180559222 -16.92544371482964) (0.05127215413722783 -0.2719401216775245 -0.2324316738692486) (-0.1192755532045334 2.41241213176477 -0.417655896187634) (-0.135656864801579 -0.04946852251681211 0.02348138624740858) (8.723267887022855 -3.68866510833361 -2.77791890397882) (-0.1388855836192512 42.58443861687453 -2.61476800184548) (-1.738828049146658 0.9305964080053778 -1.004314604097032) (2.389331175209664 1.424183020966241 -1.459690384604631) (1.086661167977002 0.4405474041873242 1.123042747242516) (-0.6975801218285066 -0.4625398559795325 -0.6045069275596577) (0.5533565352581907 -2.242020291148708 -0.6033449880205261) (-0.01222924747211912 0.04332715407736185 -0.1223363998804496) (3.688082475557722 10.31921694324932 -14.94148888661487) (-0.01918207827231657 -0.1643578274173764 -5.99903951688225) (0.05595589247632431 0.1339211751606342 -0.06667712657908101) (-0.03177905125149293 -0.01080494298853376 -4.751521727562258) (-0.005151767553899836 -0.06042554577693895 -4.88211253389274) (1.887625871964249 -0.2030428914162805 3.877209291151483) (8.004702476984676 68.08662951339095 0.7769857004520384) (10.16539851030324 12.7606941501146 -14.20462194367572) (3.004938487592667 29.73264164776716 0.3261701575306449) (2.347350176939899 44.88778254539292 7.780223070962248) (3.711522716396616 56.21615807457056 -18.86490443496305) (-1.552422300131478 -2.348903119056952 0.7852615759619012) (0.8478929128258337 -5.196446695454517 -4.422459873408396) (-0.07113214758150474 -10.02124101665252 -4.122296186272726) (-2.000055454283071 -32.75491674179051 -6.612736031579578) (0.1308827978462667 -0.01312602770211737 0.01495226728875272) (-0.008778831843176928 -0.01370729893472891 0.007599985431232771) (-6.05413867806238 12.93428552968104 -8.409846695567667) (-0.306095299643257 11.83260747625065 -0.08206834086312964) (0.055654958139123 0.1260569700475773 -0.3543103175400845) (1.070313878212638 0.865120887961679 -4.827637460304875) (-7.1467208856477 57.72406168435946 5.065563938321778) (2.532950180052305 11.80621125534131 0.4399708642215936) (-1.127325643814592 -33.976078616492 3.173430396662028) (-0.07090465816976674 -0.0878785491998228 0.07792902827649528) (-6.090146866532557 -23.97560527178985 -13.54495739942772) (-0.03035480397779099 0.1192768363377035 -0.07501159319757041) (-0.005415230537171335 -0.1667036553199127 -5.510689991421362) (-0.5853530588027824 0.430469183817471 -2.326518925792368) (-1.622816488149815 0.2799967082665042 -15.14647376795225) (0.09338755688772538 0.2425736602445575 0.8552222244483568) (0.3689536621813631 0.2280819643098614 -0.004463522439117719) (0.5546870196195219 9.51562389265807 4.071922752260979) (0.1701422009098817 -0.5068125264511743 -14.44158468694859) (-2.69713465247822 43.11126531397942 7.355623730117951) (-0.4482532936213776 32.41840613869712 -5.260355972682555) (0.006596904524849915 0.03026902682620726 -0.007154166097807116) (-0.01463923142716968 -0.03121170360282988 -0.00950711115513767) (-0.9975965320436531 -8.191937304386926 3.087087281098149) (-1.702297666828305 -1.564418166578588 -22.55121552731143) (-1.563174570959499 34.29051801320638 8.242125109597316) (0.0162992325433159 0.01373787678073821 -0.02445502319280916) (0.7547323844985426 7.261684955223905 3.604307414949846) (0.0005029875398813101 -0.005360060019515174 -0.0008934605797060514) (-1.056735189205529 0.4385987704514329 1.253016424061896) (0.01697546275740284 -0.04835746735747299 -5.315666838029455) (-0.00482800249534961 0.01749213160227283 -0.03112216155780639) (-0.02028108617778582 -0.01474871119547956 0.008187173959637035) (-1.931982307551074 6.010660247090524 -0.8304136689889073) (-0.1138222627690874 -0.01780396011173684 -0.1183977627992522) (0.08265169879905951 -0.2290857421168555 0.2601076734930095) (0.05843385207498671 -0.005815098159715943 0.1015601348601151) (2.206440005688155 38.70881225552048 -0.1386227209962421) (0.04041283351980675 -0.01944306564040246 0.08212356457803408) (4.558354374181634 2.630343576417035 -2.521290524574574) (0.00878648432257445 1.825177173875039 -33.99208405691788) (1.148849988396753 -0.02563865034192167 1.129116781558319) (-0.6380070205684067 -31.60308129133373 -1.234855883747575) (-0.4691338765308224 35.92261077385206 3.966681281591977) (-0.06071058106773992 -0.568919829667848 0.07237099717628939) (1.428738754098439 1.863632823262878 0.4942670791203687) (-3.791342333508082 -0.3960031269247624 -2.126603418436089) (1.191846840270654 -7.411233846604802 -6.403118821216559) (0.9407738941140845 5.681191164963928 -2.012639145177509) (-0.1817826519185322 12.40969364181924 -5.655861716884999) (2.628441660456324 0.4198640186815509 -1.029916702007294) (0.274451646997359 -0.113486988636973 -0.3242961346103226) (-0.02744574657824778 -0.2328734740368485 -2.009951279762002) (-0.05315591093177116 -0.04969300342108203 -0.2994369626938245) (-0.3463038592150157 0.0735673258612121 0.1930112006416076) (0.1579876505854983 0.1168983465553534 -0.06193767494000257) (3.53755250172673 -4.114449104830584 -4.587571682019217) (2.783274135739102 -0.7282159567213806 -3.682165769172486) (0.1731333447970348 1.340890099936156 -1.286222236107112) (-1.877251303774382 -0.07779200562771826 0.5639059110888511) (0.4964784245527826 44.240125851801 3.809384231580061) (2.551810905209209 7.142075897196178 -6.660874380572208) (0.1945198321833753 0.003397274955054024 0.02694883146418178) (0.8572483263484076 1.017148248810247 -36.37791417053009) (0.7575020264423564 5.271790744295407 -5.389219842988159) (0.7209542992468003 0.3108682112960617 0.1393096093377002) (0.6527292717350245 -0.02267844821238646 -0.2572201659751633) (-0.01602466836090669 0.01067454633863858 0.01652694042439216) (0.03781675041180348 -0.006776157545077743 0.0346832640419577) (0.291507398896765 -1.863748426592683 -33.6536953113595) (-0.001391960054394363 0.0002445018221861116 -0.003543998725816891) (-0.5703335552137909 0.04940428743254033 0.1737325772227262) (-0.3405563829212986 -0.08629959691424885 0.01391620614599184) (4.830337811667415 1.925468857796578 -0.3524865244504101) (-0.0190101370807395 -0.008777421896444905 0.02091758839707895) (-0.5788408340634466 1.204272246017855 -0.8319910821539327) (-4.895549001776573 -4.829783183391475 -16.75963602951557) (1.48030141017262 -0.06021118109648893 -1.141404595951216) (-1.287615751418742 6.166964656293073 -30.95718452461725) (0.02324307367754311 0.03079800713771158 -0.01748130763467171) (-0.003780884081593609 -0.008925719250642419 -0.1829165526004817) (0.02766271990312124 0.01781010107061143 0.004144689124144708) (1.812253272412394 0.8989642951072445 -29.24348340198172) (-2.348933747035333 -3.568938379045845 -1.565238835263276) (0.002464595399761562 -0.04909382141960643 0.007500297162082699) (0.0279390257524145 -0.008257120886478292 -0.03300672101318209) (0.05678889230135507 0.01759078235778682 0.0006185369483138956) (0.0456240747579492 -0.04226523804200235 0.02521248070807161) (0.1287614264222348 -0.1737870587106373 -0.3152938178224841) (-0.2430254823763295 0.5030750843056124 -1.060725170471081) (0.1848358080723262 0.5999919058892351 -0.161093322926803) (0.3880163553328647 -0.3674282559165355 0.4881867854515342) (-0.8094789090733047 11.15551585322041 -7.290598835541763) (0.2290331852606105 -0.06432945119225011 -0.472847277541937) (-1.317269804730522 -3.101646883379306 -2.654570488421636) (-0.04672678679682411 0.02791002930026519 0.00635347844716838) (0.01815509113354472 0.0006226805355328408 -0.008890915912372011) (-0.06003717837693978 0.01322057761150066 -0.03285978047647323) (0.02209861421180027 -0.003821966204977829 -0.1580227967330502) (0.009971925490180635 -0.002116201315223602 -0.003744395672596171) (-0.07599755613068797 -0.04606367713124969 0.07366480043371641) (-4.729060589434336 -1.435935812073021 -0.6376280686162292) (0.1197217466053558 0.1930628167202142 0.03522160743885715) (-0.1809358380006124 0.02469148826229757 0.03174908060630573) (-0.001730104910524558 -0.006334345059769569 0.01226687515918032) (0.03668268186444509 -0.01451980378116813 -5.510964659851885) (0.1320908198282781 0.002690016716839817 -0.01604387872395116) (-0.2158691666606538 0.118940323258768 0.3229088641946122) (-0.007455987983921867 -0.03080752606912828 0.007757007964872459) (-0.8237868231217531 -0.2064190583727714 -1.137439971546124) (10.56041964510364 -3.709575840262027 1.7897318063679) (-0.3303060251825218 -0.491325588534011 0.2763652571714111) (6.015830064972094 3.353812773770435 -41.68078766884138) (1.547190033559037 -3.140498689137146 -3.435689058109229) (0.2016048224015806 0.1775556186138395 -0.2333142662180152) (-0.1436012796774847 -0.6590651586403248 1.17845452434668) (-2.295146841783664 -0.3739525087331845 -0.4623612757131413) (1.253606807423685 -52.02627449416416 0.7268724099589944) (-14.41823931902952 4.620548475559775 -2.386024587660323) (0.3181857730915594 0.08962519227378773 0.3163571609599262) (-1.289796846745482 16.69717125446124 3.126985161316141) (1.559586642056898 2.110542092496933 0.2638476621563927) (-1.736200188848277 15.23539672646523 -2.721294775091959) (-2.860682026459484 -52.17786651389274 -24.60894288494483) (-0.03114471318376794 -0.1690951131604606 0.1061412640668505) (0.1385481123212239 -0.02175770499886887 -0.1016655172903709) (0.5241835332445426 -0.3393348822388489 -0.391194444602579) (-0.8026020585263017 0.3057255432765515 -0.3978536445053419) (-1.300253412178463 0.08370410289657122 -0.4124959157396041) (3.172121176327691 0.762015826873252 -1.506681272333302) (-2.009070531475573 2.434346901235556 -2.290954516114331) (1.409795418195093 -0.7845034020590053 -0.5904095739044919) (0.006707072402295792 -0.01724750988923952 -0.00104653101256429) (-0.1442271604723645 -0.04269480554832906 -0.01887945198842822) (3.169370431149133 30.64993689429523 3.506846418414826) (0.2083626321705695 0.03960638764401307 0.1258077790624439) (-0.2958741200693598 0.2595769603699569 -0.122849812138696) (-1.22816347778277 2.245275772817089 -1.092028688332771) (-6.514604303351153 -12.35882757204418 2.837199865120764) (0.1561859818740363 0.1323949016006505 -0.09772117227657764) (-0.6453052557438168 14.34566811275748 -8.288281617262379) (-4.141555236122146 13.42465478851624 -4.326801319139435) (-0.1178886096735601 -0.03442498233463397 -0.01296394238460656) (0.6313942032106659 1.521017117431577 3.903618724855107) (-0.4121737374801488 -0.2588511223503635 1.644112201148551) (-7.735388773694885 -1.626393356263656 0.5416624793208749) (1.375625114351827 -4.132237664018119 -29.72342403145324) (7.796175002465683 11.26842357590757 -47.59470533353166) (1.48184256438057 8.123803839379871 -1.647916471806799) (-0.4013011180447765 8.664237756678954 -9.926970524639387) (-0.002916644422250869 0.3461238605790758 -0.06447291897341932) (-0.2700854114213374 0.1474930905357476 -0.03220418522627816) (-0.8716656818656039 -0.08396448191861206 0.3463507893435803) (-1.115122682752494 5.254402807802214 -2.017139362177537) (0.5148095062146087 1.46825630420005 -0.8028140138622568) (0.3065112902358322 -0.5028983508572021 0.1169262124468356) (-0.0007785772871984342 -0.1149917765912344 0.1082502028745717) (-0.1957019336559694 0.122234441044988 0.00830363809775669) (0.8890245250735695 0.02712866837598801 -21.53326769743197) (-0.8101068768590513 1.676652634738515 -17.07117927895006) (-0.1922787900868981 0.5028981972472599 -1.593334133039275) (1.030083745149138 0.4509545855603396 0.6536852793405614) (0.0640249574429094 0.00730891896997096 -0.06140144183395333) (1.825458858673342 2.092238053897842 13.07680283311342) (7.992815508799797 2.70713689530506 -39.87494955288444) (-0.05025480062159515 -0.3982236193095969 -0.03704835342989757) (-0.2198055036095375 0.06859087081360271 1.093739074061963) (-0.0571197895742139 9.336007787726352 -9.41664730922566) (6.566548254077493 -17.80044778181106 -3.612441868059384) (5.0531498949492 26.85410288481789 -2.458031461923571) (-1.080785897256222 1.655006954741263 -52.14295071092838) (-0.539136903818528 -8.050281165656555 0.0743425368370888) (-0.8817890493105039 -0.5377365928029746 -0.4552080602405361) (-0.0902989496476504 0.02796174798814387 -0.1031385366852499) (-0.2664542995423758 -0.003972762116979722 -1.01474694586745) (6.563223292880478 3.518082955547892 -6.042778657252964) (0.8211094569805031 -0.0485331161137833 -0.08724906287458775) (-3.805426097195816 -4.288817350650996 -36.06515049234537) (-1.072978228234022 -8.841252868536021 1.618995345841193) (0.1113799319957107 -2.043086638711974 -0.7679191149371386) (-0.08437511806602127 -10.93294935982131 -0.8859672295349714) (0.007476502105927433 0.008062024323695256 -0.004756444900847262) (-0.005294905315829997 0.004974189818857032 -0.01931679919983369) (1.46702512015965 13.97656288019589 -3.424039085150998) (0.01446430456683299 0.01078922335945212 0.008115346325338104) (-0.04081503454872893 0.04885649165436033 -5.486704209484225) (-0.0555261284378887 -0.02811140791147277 -0.00768200325635938) (0.01479564467749378 0.01674923978518864 0.01155667958037038) (0.04324411167714993 0.05526426291798436 -0.08207829809858046) (-0.602904102699605 -0.5223649341791387 -0.38101795607853) (0.7684924253045446 -0.9914266968903154 -0.3170270235181016) (-0.02756426512435609 0.0350494338926603 0.08292397078267023) (-2.594042803212038 0.7260318671437823 -0.4314649541242465) (0.007851051457021779 -1.218440526392307 -0.7940737775655939) (0.5253820792717898 3.420808527643108 -3.743597493322734) (-0.2740155703892917 0.9992525519970596 0.3736591858316204) (-4.291642159270507 10.53095401187254 7.019440089687785) (2.076358954583726 -1.541117670112497 1.288375351571764) (1.194765110356409 0.3275447375115603 -0.1171033479474621) (0.8947975969956288 11.10263393416516 -7.62968077925589) (-0.02417301264719957 0.09579661652543321 0.6022861747664966) (2.651591625373761 -32.22032971888435 7.697845352816684) (0.6143492707343273 -0.5173193689293959 -0.1362995701441206) (-0.5744974293828607 0.2183430822072648 -0.651116669089437) (-7.518196480716011 1.281905445013554 -1.051134236001876) (-1.506858721509897 -0.6793482875868563 0.09717042945102661) (-0.1576572944313857 -0.4399366521347112 0.5553195172133631) (0.7597114278240638 -0.2310699672122202 0.4453764881586679) (-0.5118153506295315 0.1760977896529867 -0.7513631356779116) (-0.253969020378401 0.1258280263439436 0.6931839191915389) (1.393974785979137 1.120006746079581 -0.04020747179804609) (4.902915287004541 2.984518361652718 -7.981056397082838) (9.261549358435211 43.54018449479508 -0.5717522279956619) (-3.608038139298379 -0.3949436144726439 -1.10964320358098) (-2.208372600360361 -3.768372442497764 0.777840860004535) (-2.194625364320939 0.4437755331751827 0.03160320489001947) (0.01382786793797835 -1.03708867396011 0.07388753527203415) (-0.9078098793952103 4.738202315592509 -6.614869105187333) (0.1365579953318362 -0.093272824721647 0.08043640313732342) (-0.02412318609317837 -0.04335145445713906 -0.04231002617323888) (-3.807745318842172 -38.51086297680233 1.557075513131844) (-0.4461269501884374 6.858667879394305 3.278715341287133) (0.08556052039340956 -0.09749510908594344 -0.09968734174863662) (0.004442302695945269 -0.001401984225280756 0.0221413877948861) (0.006866057299255532 -0.02516243039907253 -0.05369646470920622) (0.0644919579952046 0.008269658979803363 0.007079839168735953) (-4.459622765803704 3.125573674309006 -1.768740284981284) (-0.2555521208399577 7.416411087823565 1.328648286089162) (-10.08852089019033 5.681889695198632 -39.1877573847632) (1.458257463548889 2.444623568581022 -2.518103196378701) (6.279302217868911 -0.9759436558705477 -2.831379010961187) (-0.2195368103577988 0.5587154377937131 -1.414404651973142) (-0.7593656736228366 0.4122169092313512 -0.9119531590438024) (1.878549292769171 -9.486331650021642 0.5546746806614768) (3.581496460529105 4.120874175820457 0.6311274216046432) (-0.2239210701165169 1.249388378176654 0.888012630027639) (1.032219417418538 -2.519648049377696 -0.02339661604930293) (3.716425136688615 -4.452253697137478 -2.382458711498975) (-3.083931771753422 36.80683857842844 -0.4009446005752089) (-0.4467116899684666 -2.057185466364643 0.6129121901622256) (1.678051310991954 -28.42919011732659 -0.3490939405090255) (0.2465028771486153 0.0548357766092271 -0.05636468631881762) (0.03712133761482067 0.6222574861783222 -0.7709020656179333) (-0.1029544743071332 0.1369144273119739 -0.02725365673193777) (-0.0786366713071816 -0.1145883603210215 -6.200167468763378) (0.9826462670754368 -2.508019880178007 -1.603027592597714) (1.625652867984141 1.14521544969358 -1.879515263926578) (1.1825432360718 -0.3825428387495138 -0.9200531014783121) (2.292281502275081 -1.294572329942838 0.9684872690438238) (3.225370336459634 -1.552307348859232 -1.141841969798441) (0.07979162856104009 0.07313228250355022 -0.0699474408762935) (0.4504725180774457 0.8250243619248163 -1.62753511086059) (0.6507400409343849 0.186237590779822 -0.4240856585397987) (9.030445954783497 -3.6585929079043 2.109423605794194) (-4.197063160082664 -4.531427872870055 4.907967697806113) (-0.7470757146969489 2.711553668119429 -0.9997344946763225) (-0.8524912808051459 -0.3127499391346036 0.5375348261078465) (-0.7718838196469167 -4.054145638710761 -0.7970980349814198) (1.883829908241031 1.733400697419883 0.4708334748718838) (1.65327003812427 0.8566687300782816 -1.241862166743014) (1.61555322488386 3.524694862830656 1.416072983523249) (0.01390619691155889 -0.02006940268153709 -0.06105207511558455) (0.7500571087097523 6.72853094104254 4.234506723464127) (0.02689081465930249 0.08042344716132838 -1.539463250868099) (0.08734210999908248 0.9145600900259092 -1.363709893566216) (0.941268368427278 0.6106019093313049 -22.43788019549778) (-1.577687865768743 1.387936145525867 1.29378298017206) (-1.708761498793965 -1.127202670250277 -1.481367833776584) (1.092591400897624 0.651791326995012 -0.5776579520180734) (1.674291852823164 -0.3047040075500884 -1.488488018993525) (3.905475687391764 -1.297849746547662 6.535734885065079) (-2.140233680306142 13.72906064337626 2.290441068700896) (3.267883425475788 -3.211845512817372 -3.593736107836671) (-1.951292468120946 -0.5520645571036423 -5.820576743860801) (0.508401994759806 1.734944048258968 0.7188674537281239) (6.758845364891253 0.03700556930698731 -2.120972287108773) (-2.863864033240731 2.037833385703595 -6.193415956410418) (2.67350286678857 2.545805663273657 -1.188017578815487) (-0.1662727571365855 1.867213204933057 -1.255346268860754) (0.7318124685994366 0.7316248473833167 -3.44556725774588) (-2.474711815129381 -1.626566216773269 4.953497028105366) (-1.059755020139378 -0.5470340802630865 0.4598181562934098) (0.01926195557103738 0.01471429495960268 -0.05631046171567536) (0.3548975971304291 -0.04365545854596095 0.1952455786572151) (-0.6163533854004321 0.5826577141133674 -0.1150204035246745) (-1.43784116775738 -0.3248363835806466 0.853567895107641) (-0.8408913064335175 0.1092662001248343 -0.6583528413442382) (0.07061978992900708 0.3003171131170106 -0.6426694981781469) (-1.258385120165227 -0.6758564127687322 -0.3442054426607841) (-2.696812574937191 -0.04247784938902754 -1.15750759207569) (-0.6698749297048733 1.463313411188307 -1.808789027245342) (-0.5274656458063683 0.1113240212322165 -0.378945474224973) (-0.760370860983857 1.187176659585303 3.425327221776225) (-4.665832820140478 -2.290533825596965 -3.567342434232385) (-0.2175590570721185 1.304614171535705 -1.090220351947808) (-1.157489109817909 -0.1907222435090256 0.5949642696831976) (0.02131845992189324 -0.9103424815524481 -0.5183328093625225) (-1.080040147428488 2.483728193410226 -0.6709356165411686) (2.625118344457661 4.340674667327472 -5.745186245553882) (0.3441170319519942 1.003434925273566 -0.6237417864437539) (-0.02166138207644831 0.006987099126648836 -0.01995913146333937) (0.3039827413988226 -0.8601458302840671 0.6654871580265294) (-2.986415546166851 -0.7473219081880824 -0.7018112939856123) (0.01685489775238661 0.01307102626099177 -0.0002590703681520732) (-0.2335229188412135 0.3509808007277525 0.3337643973285395) (-0.4865568204919815 0.2715025953263094 -0.05548808026023166) (-3.900346531211382 2.040040948169788 -0.3652202872237853) (2.459122678730948 -2.056979947112064 0.7308665191886548) (-0.09032320325442753 0.142853476749951 0.4675179111020916) (-0.1251863262691207 -0.02846653289869597 0.0796119941577916) (-1.699620814158499 -1.001976072995366 0.3187463101166967) (9.106076295245584 1.113583731277391 1.182814045162009) (3.778314878783245 0.9615075161720076 -0.496825960533894) (0.2485863484907709 0.1699077732421254 -0.4808375242521507) (0.02889701825936626 -0.170143256801123 0.08438690874856813) (0.795555209785459 1.788622860547236 -0.6972084235352229) (-1.956784372731846 0.2877645645209693 -0.1775650417851985) (-0.7508908869473689 -0.5856932219584479 0.1209464227689759) (0.09128244387799646 0.04656104909703416 -0.09720669649841017) (-0.06220422391193323 -0.02102279295536763 -0.06598884541130645) (0.01421542595235281 -0.03358689999266073 -0.0242814982792919) (-0.1010021591497034 -0.05669612463676902 -0.02983768749994789) (0.3729220486467955 43.56774408252565 1.825620073360158) (-0.01550430285446657 0.01101354136990518 0.05112507622951341) (-0.02291782478903795 0.06763198057318287 0.03978486444194471) (-0.005422987823237156 -0.002010300823825127 0.01060060259105693) (0.002915646087173483 0.01520457352098387 -0.02015193134462693) (2.572764034905954 -1.032978935276067 3.80448007784728) (-0.01548004365660841 0.004090842077775979 0.0741336251156364) (-0.0131469396776682 -0.01916986592379039 -0.005625288317853836) (-0.01171749704992691 0.04575233510442521 -0.07456874154713976) (-5.556950792726944 0.1288646954267251 -0.2600823680345008) (-0.08665949482846663 0.1057593472479173 -0.1569109679561062) (-1.620198972727079 -3.833803312279895 -2.99162909408013) (-0.06419286990451537 0.1470083482034272 -0.1729337781653557) (-2.128176961149878 -1.076776101699273 2.985339812759876) (0.4379368980780318 1.047857227296187 0.114204316235256) (-0.005918007044082739 0.08371480549565355 0.03841474047139087) (0.004277366871064777 -4.261870871323558e-05 -0.001334616145211235) (-0.1428373658815422 0.01806556109113037 -0.01794482800952275) (-0.4568512600352006 3.338484855616505 -3.075668861582664) (0.6015835518771141 0.6688903427551176 -0.6912522014158929) (0.03616911741987067 -0.2933419994721115 0.06453797258533367) (0.4421130197315358 0.5187847503677864 0.7516597151464196) (0.762296354647403 -0.2849839970186342 -0.4065340268521863) (0.05316848244912881 0.00937035432621218 0.03194723259008307) (-0.0002515517624333795 0.01249772934905477 -0.03189818746105864) (-0.7693270456335474 0.5119406108532411 -1.227222146476602) (0.5244329568204208 -0.4975526843605355 -0.1558919478872286) (0.501432220030118 0.6259552644081177 -0.1387275440547406) (0.1275187591614369 -0.174913149531526 0.4533168124686864) (-0.001707701649969973 0.03561612062517765 0.000872578426633866) (0.2174610828890672 -0.2339250957586106 0.5120799828203152) (-1.313562855635982 -0.9410961015188533 -9.781024795981322) (1.003914929098479 -4.835759217946382 -34.45927870357753) (-0.1086215006020641 0.04411660759480981 -0.3399536020548447) (3.314495331203344 3.975155323737889 1.946344673056181) (0.6733763921186233 -8.437876350456744 -0.3339249495985163) (1.628068495476423 -7.546813610352871 2.312118457081333) (-0.05132786692406693 0.05416421645548809 -0.1578259507542125) (0.03102579212126855 -0.03751341271082671 -0.01012821660009) (1.544244704885235 -41.62859107179214 3.062745523262641) (0.02375369217083231 -0.08582771883095491 0.1462675435216198) (-4.399058475794893 -4.358373686601073 -0.1789759526980137) (2.05049871470607 -40.06698126788995 -1.723621308484694) (0.01266993486115317 -0.03863439068456078 0.04970723242862648) (0.3637746956658464 -0.1587762660570242 -0.3470458661367629) (-8.627477661658366 -13.78360331493816 0.5858213220528912) (4.202797470393907 -59.43934221861543 -3.09637914909598) (2.136912633435927 -3.727506889156683 -2.542439486703711) (-0.01747635417131201 -0.04032801822798047 0.04021778957636593) (-1.330657053540897 -4.273649944046008 1.922871594878383) (0.1511793493552487 0.2941792545358084 0.1056570101928652) (-2.044452276528255 0.2592241720232131 -3.212928660209561) (-0.01291257806150453 -0.004641093637812134 -0.003098670214691016) (-0.8227357403425993 -12.81627512042011 2.002721035778879) (5.62168967857215 -0.5429644136403065 6.859054604068159) (0.2198667954141593 -0.09730988141170291 0.08875406473552462) (1.178030289878344 -46.37085307468144 5.339508843618695) (0.8149196302047136 -51.44119371420378 1.698370871913542) (-0.1278117194126658 0.5561952498499654 -4.439117917122448) (9.340826688319504 -53.73663703618907 0.697226683552012) (5.466000778873976 -68.49119403155031 5.248840219592524) (-0.238689781337158 0.8636558932134947 -0.7093936235410379) (-0.00758015826192225 -0.03205794315932278 -0.02409306985980389) (-0.6339446164125696 1.176115725994967 -0.1502092096847272) (0.1150560591492028 -1.040512840776124 0.4363127852469534) (3.01523189095771 -5.695200909938431 -4.314613577702814) (2.231321365230054 -1.129568754141907 -4.11980513250111) (-2.481818973584242 5.065294730485881 -7.529203580173613) (-0.4952267125659275 33.57265139114593 8.422615353755145) (2.846886552142854 -1.957616560700645 -5.210721863724959) (3.390798781588972 7.401441862889818 1.532556143152549) (1.873685390126473 -10.29110948045361 -32.82673836616216) (0.5711521486059264 -0.06975353116778607 -0.1137343140264983) (0.9368119233948202 -1.737116209630682 2.136180790184693) (1.448610300392748 -2.039171229434112 -0.8379899951409752) (0.1620537136095774 -0.09520701046725595 -0.2992794835304471) (0.09723547782536232 -0.2129904403663219 0.7344112815135539) (-0.001814819146069048 -0.0006752722033736239 -0.002197106298164452) (0.009065004569925469 0.05883953516910882 -0.01392184869410519) (-0.0002011297320689449 -0.001804273472013522 -0.005169258770377705) (0.01228459028466729 -0.00909447882875228 -0.01232562496244819) (-0.001817301282595245 -0.0007054424151235238 -0.004792625125748643) (2.038362043001589 0.3059137754357366 -0.5917742132877024) (-0.01313403199080677 0.0315749512457429 0.06114697726975795) (-0.6538490128451822 0.4590708709043639 -0.4301967279096597) (-0.01235589786127306 -0.005820619387991104 -0.003602351179604136) (0.4278479671915544 1.238529725408857 -1.742399322171081) (-0.01653429330269503 0.002022201302341177 0.01536973662245612) (-2.34717177062578 1.931828552558307 2.999894275841477) (-0.59114822191022 0.9199869202433874 0.4180464846871359) (-0.0115126269174622 -0.001391621728994296 0.006345957928608025) (-0.7615790599520398 -0.1290157296683726 -0.1627661180409345) (-0.006816159633106214 -0.02158219571177569 -0.00695517329338024) (-0.7494087861949449 -7.013101850853004 -5.493681180845431) (-0.5848848218827618 1.323746902134864 0.06859751078685444) (0.002518826117303898 0.009569627333679654 -0.009919420171462323) (-0.3320555064615561 0.4269967431047427 -0.04773796055356866) (-0.01066270448333164 -0.01890842880731507 3.108982792813034e-05) (0.01242810696276171 -0.0202534447907415 -0.03046030705752317) (0.0004502533830975874 0.002526984144672884 -4.874293752402521) (0.02097970264412247 0.0157789706508094 -0.01089443088238474) (0.004471445195188074 -0.002690854144935636 0.003421347156207212) (-0.03729966857179341 -0.01893291289857509 -5.521395578751569) (0.01167266117833343 -0.01963368615523526 -4.612483062038556) (0.03949455862765595 -0.07395877766252738 -6.009095231561807) (0.0002819376389256474 0.0007960497572126229 0.00139333752240583) (0.01204085911389644 -0.1394899375129827 -5.225855837609203) (-0.0185282667968796 0.01230299140239285 0.0009140401339365956) (-0.06927510999896125 0.8303933834063864 0.3609903430812858) (-0.9159625755447889 -13.68481376715425 0.9359654661246841) (-0.3215530217169276 -0.4306813061381258 0.01876650396997262) (-0.3706975921132043 0.3714879696575947 -5.40609931322965) (0.7140424088918694 1.281842343538212 -1.223881617749139) (-0.02727493478647434 -0.08988977346260774 -0.07608656399787606) (-0.006431522344835478 -0.02571733212315355 -0.0145187885784562) (0.4550101808605173 -32.96728056488347 3.153597098006236) (0.315105249218153 -0.1127047532633021 0.05322191447221028) (-1.044152504355944 -0.1144728080889732 -0.08507832697911306) (2.29508324135298 34.06290951099338 2.237578587813807) (-0.104400851518507 0.01145672554984001 -0.002236669374146176) (0.001116981112934495 -0.01116537239765606 0.007755336245436025) (0.1357697206234393 -0.0009341720500836849 0.06302506182672275) (-0.01935767026348061 0.04777983390900956 -0.01730588250791649) (-1.164755650668907 -3.69303543117489 -7.361196432220572) (0.07408151893039414 0.003607677560745662 0.03271025675603299) (2.260210010049728 -7.680307426526871 7.16415504161803) (-0.01476194373496792 -0.007852216280984059 0.02187087382792928) (0.02177861099314654 0.0226094263225843 -0.02278046123272677) (-0.03489597665066128 -0.004073960320326186 0.03668791545393525) (-0.04033185806497398 0.0237074069934758 -0.01056051363117196) (-0.00634860022272711 0.1417862473463828 -0.05888447221730231) (-0.5738495765295424 -10.56473122768838 14.47446562938519) (0.0164665171911715 0.03860576577101691 0.06395344239815065) (-0.003012594274058252 -0.002808186251541013 -0.002033805077455637) (5.081027596628584 -56.73469120551736 4.548078241031257) (0.7185183249534064 -12.88553435604999 -1.162436253253946) (-1.613985141967239 -56.10949810412325 1.893474536907248) (0.0730471325395865 -10.27082105800621 -13.28763936481343) (-0.8676350754856255 -48.81891214219876 -18.4128538568883) (-0.02132563710472094 -0.02653682234388043 0.05254118588633262) (-6.174061058885734 -43.30009741027867 -0.6590724641336118) (1.221741409995951 0.4374937126802106 -5.340224652856968) (-0.0002323773209276028 -0.001657890743308016 -0.01302399479727697) (-0.2391243289322196 0.2461686426790833 -0.3423496603192819) (-0.01135180567442562 -0.07596906580245978 -0.01839518284794724) (-0.07005244318771175 -0.005526905890411516 -0.05962538267241277) (1.539395108950369 -6.919057342234527 -1.293442878436927) (-1.276857160064556 -4.393072420191152 7.521761194401822) (0.0331157142171472 0.04629761619323621 -6.245301157620583) (0.1038775817690614 0.03014802275564609 0.08075147949858344) (-0.0447094052657048 0.01624182267233289 0.002632100783651267) (0.0062845690752164 -0.002565974075162929 -0.001378257462289661) (-0.003277168047277836 0.001133121917259711 -0.0007285469161167599) (5.158200033811104e-05 -0.0002885673227615101 -0.0003096858560476806) (0.044060632715519 -0.02525003076448545 -0.01045239456112783) (1.005098658531753 -34.40897102301798 3.429202172535142) (0.01370791148971578 0.006999964914407678 -4.679869356835843) (-2.426704489665409 -6.131954139313801 3.207396456449737) (-1.289943963033521 -47.76544031667738 -5.535857280730385) (1.26271122945309 3.165697584128014 1.26827436262562) (3.737539170778704 -10.9692582978402 0.4195392974660528) (-7.850815284438327 -1.60603161721748 2.44035693041873) (0.001093122613030569 0.01704127817195488 -0.03278167163176067) (0.1102402527626201 0.0800211454890714 0.08108735689005897) (-2.045096551927688 2.809445004979283 4.839799062513004) (-0.0007162795674352514 -0.02800857972462726 -0.03463820551712035) (-0.039063888039903 -0.003395007515279968 -0.0004173820726728339) (0.009416539016081889 0.01996538038488622 -5.201825164853987) (-0.05647898079439775 -0.04412190859273279 -0.06926277251817121) (-5.221911408245658 -10.88926366520072 -9.575610540280231) (-0.2157244120661337 -0.05588108456091938 0.0494563991584764) (-0.8247823063287427 0.4987255363101141 -0.5875790543180662) (-2.195943320789369 0.265936649913075 -1.065821228056395) (-0.6929377366026022 -0.6204037121107451 -0.9267081757753909) (0.3493404573281544 0.2255233713728126 0.06448394630971743) (-1.447206530612693 -0.1848705730711432 -1.755331113047498) (2.832027923559285 0.3252123297123726 0.3162256505709559) (-0.6686642736230919 0.3927800240385356 -0.2118371384222717) (-0.07898908485163375 0.06396774451492684 -0.07530364724873051) (-0.1190287887413089 -0.1292540790056512 -0.2419341668001201) (0.05799133079709671 0.1856548161208356 0.1109286311469925) (0.0892315493208109 0.03481254830383868 -0.03539770059200044) (-2.715848176295233 -0.303217184357414 2.75095991304921) (6.215221155336272 -57.89048235342666 3.738038592236086) (0.1384743208523226 0.1030249866610971 -0.01843261942177862) (2.149845886706809 -2.688944507647677 5.700203718233348) (-0.06913741875733455 0.2419426065144711 0.1258282024408213) (1.222289502934041 -31.45950384312889 0.001515387660492196) (2.350060615348966 -8.038999165649955 7.562951384437935) (1.628761987398644 -0.4559035560132416 -0.7130103775747407) (8.871152713286898 -2.188529185691844 -6.169978467862531) (2.44599300643142 3.264019005306597 0.1564359451624221) (-0.8518111391776317 -0.7314422564899006 0.04822308936081543) (-0.9747240751242097 -1.260201667831458 -1.116738960135193) (0.1260806246978763 0.2931909251779333 0.5182145374056247) (-0.1064665972933386 1.504407058982961 -0.2571314163737137) (-0.2424302755002611 -0.1189991600594296 0.003080234028402289) (-0.5869813118090359 0.5563449990637707 0.08458865538454918) (-1.079428918829186 0.4832016014751912 0.1717158793811538) (-7.686496955853142 -11.00163318437366 -2.878876764918415) (0.8201807183722636 -0.6614637071119082 -0.01710145787039657) (0.3469021320097413 -0.1946840306657165 -1.169590928247637) (0.4142509166108687 0.3395881135655786 -0.05177601102987128) (0.09069340472403578 0.002759368981666281 -0.03256778995288956) (0.09025560648974389 -0.09502904534769538 0.1353883071193439) (-0.1759740828029309 -0.03086302744478278 0.1340103702334484) (0.1827230426875108 -0.04508451681313285 0.1361425039163769) (0.03642203685680837 0.01089569425522895 0.02997947396433159) (-0.6184035172740714 -0.2263393656883694 -1.642141175287707) (0.1065053958316309 0.05984809624728556 0.05449625222986618) (-2.714628639350645 -0.8617544085463416 -0.1382243170302455) (-0.033182676587525 -1.012524619357432 -0.04365495343893877) (-0.7581291206833891 1.035429012664666 -0.3479051492652603) (-0.5980419097016818 0.1460932333976897 -0.07322405249848141) (0.02946929261396058 0.0812202583578765 0.0823683765764069) (0.3700551874330888 -6.692618639708436 -33.39504861475515) (-0.5014828155011427 -9.990998547569362 -5.594766323783229) (-0.5994365865114202 -14.69828238777399 -7.903360119884331) (0.3265832960265411 -5.881787259540768 -3.901917390900021) (2.52531202983113 -10.2365361434586 0.8125778252515586) (-3.625519214865533 -5.63109776473862 -4.96670833536056) (-3.982443975779016 -29.87188831231637 -21.13745638555809) (5.275272653486746 -1.159342894754605 -4.243561587506843) (-3.442658422331159 10.0654704406624 -1.792646664909522) (-1.03646507766219 -1.078611113675139 -0.7819706473834533) (-0.7538795619973719 -0.1115332503110372 -0.450648629962898) (-1.992142483537748 0.01289945916794388 2.64053141156491) (6.8878250396712 6.207875563815621 4.733009676397205) (1.434100382779929 15.48796020272669 -0.895035597850575) (5.728700751040023 7.020166308070428 -0.7792850978605981) (-0.5294528976946917 0.9698374096516988 0.3415856131730427) (1.71770267760508 13.43606186045371 -3.261286524386715) (-3.000099001544167 11.27464750246975 -0.1365619400938602) (2.090534248410256 -1.017054819137196 1.185409787282889) (-0.4786222041618601 -0.3589715886637149 -0.2426313706621033) (1.571246978665036 -1.74179329395708 -4.554540164937048) (-1.679622899909259 -1.703536094902311 1.356381264249808) (-0.02709260132173365 -0.01368268522287508 -4.623800738712818) (-0.04975476495173559 0.1445283256711167 0.06517336851996629) (-1.018888955604459 3.489741323726419 -4.103148285450129) (-0.07667041494185023 -4.258939376966307 -38.32652959096466) (0.2261634424622146 -0.03240138356826573 -0.01178982171729517) (-0.01254638365515275 0.06074231956385863 -0.06037746575360177) (-0.01412608237992038 0.00639573616529464 -0.008833756485751585) (0.5158714607489655 -4.384948020587318 -3.944801312625748) (-0.4898479235825143 -4.805895926448695 -2.124867471161708) (-0.5871207931902819 0.2888846459374002 -0.2154335027101196) (4.484031556127817 -3.695877010550452 -6.844164430441896) (-2.152080536848636 -1.116360016847336 -2.471385320272201) (2.412456551416109 -0.4406195062686655 -2.761046955512844) (-0.1211956466121071 2.75304783073712 0.03725477920056441) (-2.807095685795208 -8.621255865865315 3.838133629203516) (1.538526982944816 -4.646820938786994 -4.779141333240713) (-0.9320594720612623 -3.192831682677002 -1.975393611012156) (3.310128623795237 1.70783543044693 0.7006916270858129) (0.6591018635617681 1.253663136709896 -1.310972834231149) (3.007245693511346 -11.77624456050846 -3.558988774759814) (-1.659861380265785 -37.14329983818678 -0.8874449101424956) (-9.634053202940089 -1.256514078152304 1.150345175959401) (-20.42701702989038 5.160648307151485 1.74083719258314) (1.818476029813356 -0.6188486268370854 -0.5268731284180999) (-1.861988752984665 0.06134203447046216 -2.298828102634288) (-0.2839670532296857 0.4126028350495452 -1.04621094071491) (0.03151887686655902 3.874548482114502 -0.03840852731244676) (-2.409010896614164 -31.0180710814768 0.3497311699477452) (-3.052658585407626 7.248345175023772 5.014005024428428) (-2.471671880314402 -36.16245896971535 3.415552910982329) (-1.0794220526559 -1.110569663959966 -0.4187186206228584) (0.01064296752862248 -1.138085894744885 0.3868048314690247) (0.0995409590672483 0.3749482966117041 2.062925932408906) (-0.0146270791279841 0.005217645583237279 -0.01121262696661129) (-2.10829786795399 -47.958764130152 2.198128075212911) (0.03090626699175869 1.223395733840449 -1.208074549481262) (-0.04892774942277485 -0.113284392029424 -0.01894452854861537) (-0.1471209217948827 -0.6577711530036233 -0.5927545646859019) (-0.9928119583498773 -5.987769082687075 -0.04391817623616023) (-0.7662024081886978 0.6855239318423683 0.8860362634246901) (0.001585559203114026 -32.91840379714469 -2.307682634544502) (-0.9065593563100331 -6.770544245622913 1.750332845381798) (-0.0383945623555273 -9.265442642403331 -1.967257442787061) (-7.911483562909081 -17.36802049472329 2.877034331325241) (-8.241438541981484 3.786811424893147 -3.385850313798216) (-0.6522089848604684 -0.6162472347320085 0.7060687930997166) (-0.9257423059942491 1.355867971209648 -2.28693567642827) (-1.745793827758656 -0.0228660256844524 -1.394488509471789) (3.351769865646918 7.906476102237479 1.377944237878069) (-4.029479504789756 2.443060885479915 -0.2297343867241253) (-1.837354847999232 -4.115448701598631 0.4660875804204173) (0.2561147405729697 0.7720097780496716 -0.3488947727053007) (0.07414883348123656 0.4277664947250255 0.4170097051452304) (-0.3540486018537011 -0.240220757262077 -0.04012851261974998) (0.1353465961899347 0.1132578770626064 0.09206455718939441) (0.103698119517464 -0.05866110940002867 -0.05280952120244867) (-0.1360351560599438 0.01345464666748342 0.1012659494163705) (-0.2950998245611537 -0.3196376587407067 -0.965513656582708) (1.688985940394072 -1.503978713512464 0.912258193162653) (0.2900749375602849 0.1373071092537043 -0.489301930631052) (0.9235213353103902 0.2558840749031543 0.02986211062555599) (-0.04410606180382496 -0.04213350467534588 -4.758143683753675) (0.1123985532411776 0.1369556260677519 -4.812113470924068) (-0.002224940604026231 0.02258086076702306 -0.0239067498950056) (-0.479804279254795 -0.8628369451140734 0.9511150598143974) (0.3386826704000325 -1.537130419237555 -1.165456012233239) (-0.04341367014272524 0.05108373312199233 -0.1902103129894999) (-1.198014450713952 1.213484444920072 2.100138352350062) (0.5466788170782084 -0.2866389876034584 0.2289579756927939) (-0.04172818884669364 -0.0006915131946272505 -4.365775744469879) (0.9241803038113094 -1.141402997945279 -1.171650562467873) (-0.9140979675255946 -0.3870555622116828 -0.7189561869856638) (0.07812356366908582 -0.02808994875273683 -0.1350392181253872) (1.125789335084471 -35.31620309185327 4.813036165613263) (-1.225079934710026 -32.96554288414489 -4.827993478090772) (-0.6088525738972272 -11.5100235415952 0.4353896588980497) (0.6237697127826516 -0.3399696465764204 -0.8301937353178899) (-0.5907759544608244 -11.56416107085786 -4.879629830064254) (-1.01996562308807 0.06094721701934944 0.2629609010520564) (-14.65167680942108 0.5961731652575972 8.716728662745039) (-0.7577669067711312 -0.862759461217911 2.185637144107003) (-1.551532819438339 -1.075184243493452 -1.165810849228506) (0.2570268199022545 -0.008035663540505861 -0.7616100730581816) (-0.3429987185252671 -12.58295906443845 -6.656952007575954) (-0.2498926855305537 1.101532138983141 0.7387713114764598) (-1.809850721417716 -11.08301484322794 -6.180285693714041) (-6.710868264068058 -5.223654587141166 0.2980870515121428) (-0.4365381585958735 -10.71061756599961 -2.91518295461313) (-3.047705319628768 -4.036405261929649 -5.052267882383749) (-1.27678709769316 -3.032693087841583 -3.123533771547152) (-2.481807836581796 -11.11000144092413 -7.758058817881784) (0.5821126428434986 -5.982628777101326 -1.556170495009285) (2.658450777243262 -31.54746751029372 -1.49803254382327) (-0.09085333098951198 0.6306269844171626 0.8908676317226886) (-0.001502718638577562 -0.0007078746924232445 0.0006571924922021214) (0.07663192380487939 -0.04643861000503105 -7.592205022695349) (0.01163385242184756 -29.98575817240272 -0.3359735194456054) (2.906192957559238 1.919820846443706 -0.8276791385064309) (3.048310043855907 -6.933829610202966 4.487587940061248) (0.3790418072571083 -27.84307343921921 3.074513196296322) (-0.2374426496172354 0.2545959771555574 1.545589596481426) (0.01656438428260104 -0.02248452823516908 -0.01681304059868494) (-0.4178412734511154 -9.158655582077062 -2.063116278542835) (-0.7515324019356562 -1.169299276720647 0.7930893070058485) (-0.05913743290619602 0.1016232548013508 0.1526138754101375) (0.1022874768545764 -0.0726573461829413 -0.1823943849861217) (0.003647785340036091 0.001153163732582195 0.004801995851791191) (-2.620171248998152 -8.764057737667184 0.2092672465462394) (-0.3015934410410598 0.03047529714823088 -0.1301024478509358) (-1.058204225434758 -6.701600796422844 -3.677755631946864) (-0.4860333526759564 -9.986789652173195 -3.30670896064255) (-2.281001853570066 -7.508906856659011 1.035212714989522) (0.09870828198968423 -0.08171649247120051 -0.07883073749616996) (-0.335758795958719 -0.03162158795112579 0.04049319712568305) (-0.03648490691795869 0.03475574629610934 -0.07396452817021286) (-2.048714905279597 -5.979187053065296 -4.004248966358661) (0.01938235458435179 0.02171583264739912 0.03989513577003133) (0.07406266217993956 0.08220835481771691 0.06387769621194597) (0.5226773409969152 -0.04980410749308982 -0.3776809050742765) (0.179499229162738 0.2890768300099731 -0.8720289852862374) (-0.7957536363058482 -0.3352191339415478 0.3500238973429061) (-5.946526256619147 -1.230503475538641 -0.4521177797099046) (-3.172786617195864 -68.45501536570701 -0.8092353413446127) (-1.548195144667715 -5.164032673938289 -6.661327993683837) (-4.157266078533147 -1.02707796568424 -3.170028261504351) (0.1594567909985639 -5.021720080385733 6.532327631550061) (-0.001685509452675187 -0.001158937564273259 0.002128547398384263) (0.0364523126537017 0.01885111056189498 -0.0408321464978289) (-0.1154282525501546 0.02346061073463999 -0.04105114878453246) (0.007646870407333153 -0.06838692340646081 -0.03567080109573988) (0.2565434158507992 -0.8770948223835946 1.39922839001609) (-0.4263066088379868 2.081428608094835 -6.450196035805653) (-0.5893456191053463 -3.551214489184088 1.743118278612356) (0.7025990449608862 0.1342202821815297 0.1157996345482608) (0.3727453981556377 -0.2184364148245695 -0.3522483027492359) (0.3957382890665606 0.4494980882839805 -0.4954353221717991) (3.254410810343924 -6.172438025219112 -5.863202253620603) (-12.19085400701241 5.416575173281361 -6.854585350794211) (-0.3954033027770765 0.05892463844202589 0.3843229333671651) (3.35650669239941 50.71532900482399 -3.009921102184958) (-1.071046025435935 86.07291262993165 -11.85227476661793) (4.260046850148461 0.676275322517887 -33.43435840327839) (6.318862709152679 6.052364497485113 -7.282561688097742) (-1.290637081972434 0.02841405905080058 0.1219098065324832) (13.94229122321549 7.394465368410455 -11.68018064144518) (0.2641050110081682 -0.4769852351359879 -0.4986054911998996) (0.07634635520197094 -0.08400295258305124 -0.4749512287072677) (-0.9345634395432804 0.6616268237650588 -0.1976325393270136) (2.83805253006073 0.3402957610303452 -1.010791444616398) (1.732230503467734 -4.223183532538306 0.2332814706568044) (-0.5380895571953885 0.005046394961926361 0.02934507757412324) (0.216414797937786 0.149646868970632 0.06126106328592743) (0.2202879269218319 0.389458442379438 0.2071925170318268) (-1.428321551869691 0.2965842558275583 0.7280023590873157) (0.01880179235540299 -0.009195992616852985 0.03642987941699538) (-0.1269513307135224 0.1203083176723237 0.07009538381630079) (-0.2281031502450968 0.07882498263794881 0.05267267846043671) (0.1842877378241141 0.05606966480456089 0.2109978844581881) (0.1982775075341878 0.1057891538331819 -0.1652658043005607) (0.7206609403643116 0.03052762751311579 0.536384619054204) (-0.9498013768356506 -0.4164389862598226 -0.4958339659882489) (0.04605315070415505 0.1454707398290048 -0.1530448460015744) (-0.006898792211645524 0.004572446478531761 3.259891818321176e-05) (-0.2736216193752363 -0.1072165077717931 -10.91415857659312) (0.771061168433383 0.4421386054567664 -0.4425855880967705) (4.077953617866798 -0.9867878597455223 -1.610277304570354) (0.5726107195395611 0.7304769932328696 -5.553040960679815) (-0.1172734584347716 -0.005235800134521088 -0.04220954339139923) (-3.780625069844357 4.017524251687073 1.822669897444132) (-6.977727979184341 3.385864333081603 -5.145812479036199) (-0.09566415261931563 -0.3698986182983464 -0.2767499832266114) (-2.168986042689571 0.3791633844483315 0.2336998774938091) (12.71557516125977 -12.15647900036786 -8.286590968333053) (-0.2829645032090812 -0.0663488330884186 0.02074510104413463) (3.631855757132732 -4.788124062680416 -7.485348479944584) (-0.03700806081556716 0.04188970299453079 -0.03128321641368126) (-4.023195749211564 3.331390494465922 1.214761658598035) (2.305771405269946 -1.794551635293342 0.8178636939980761) (-0.125584125380082 0.02545432515684415 -0.2361248561044355) (0.0168279484858689 -0.2535828756301419 -0.5377123774938886) (0.004022582392173726 0.0119622645752672 -0.066249938413733) (1.639281906023104 -0.182296927901284 -1.992544273839935) (6.901238112439076 -0.1541712918887925 -4.453485123486827) (-0.3106865149508928 -5.700837353466918 -4.054102322730539) (-0.2205855384456737 0.01714512408588083 0.3261413423967974) (-0.015731146523668 -0.004228052675271156 0.009260297285968755) (0.2405512311899256 -0.04840865370428223 -0.08543801964100599) (-1.222784250742047 -0.3734454942262923 -6.379016170521592) (0.005348302027245002 -0.01282920339323278 -0.03023973686015584) (1.063955136870158 -7.790874414730939 0.03285983313992014) (-0.1650483861489315 0.02108860702770766 0.02318781417599702) (0.05776535446341569 -4.290835635141835 -10.06503701226963) (0.3736764651792605 -0.1606683922691905 -2.29192497701409) (0.1016724733219845 0.02467981857861483 -0.06028244259861314) (1.984431737641447 -0.5069681708478994 -0.7081141086940477) (-0.4854987561336729 -10.73998103371601 8.043267496345432) (0.159803366440587 0.4677921031173399 -0.9086464346227817) (-3.047923437559475 5.874321212008431 0.3061132323167854) (-0.05687044748551556 2.559025569263064 -0.6729396906654584) (-0.6351316667601768 -1.495646720453665 -4.977689116028137) (-1.531537665048239 1.81463528476446 -1.31364098290532) (0.186738769665096 -0.05350091843982075 0.002174419002097965) (1.236699008313391 -0.18054146740093 -0.3237354683270559) (3.477342992597578 5.228159420386298 -2.533051937993452) (1.019741797909684 0.06896491559160367 -0.006645651755187002) (-0.4350627577866709 0.1167420284337184 0.7705515419945741) (-0.523309136096846 -0.1854256768480578 -0.9135166976028788) (0.3003833448939801 0.1882772316551674 0.05941109126823776) (7.668733456374079 3.107548623831022 -7.201126116069918) (0.9540618930650624 2.776289369859536 -0.5589551559552474) (0.0617350998106635 5.634892457582062 -5.353602746812161) (-1.026810544215858 5.043218737850384 4.571159720437534) (4.976603017170154 -0.3365414057993919 0.4796185686968086) (-0.6633148862117721 1.241573765198619 8.614830299535136) (-0.7596254428256599 -2.103401879747089 -2.077153088974811) (1.903003160856471 5.896960740744572 -0.5742167702875595) (-0.858723152693319 -0.4289920587254589 -0.6486374071938652) (0.720496898864577 1.846708482831071 -0.01615082595258793) (2.020447799118959 0.187682093226796 -18.1953171344407) (0.07394929237582343 0.1303229251223706 -0.04586411164412447) (-0.3511787982019275 -0.5066180265642756 -6.963479567630677) (-0.7456797267492885 5.17674309813841 -2.706897326991119) (0.9507668545627181 -3.06035093853627 -9.487980658913088) (-0.591619653697631 0.100020296565923 -0.5679565673360851) (-0.3859569775345419 -33.15243381970987 -1.80516368447056) (-2.775060789512203 -3.069201031289961 -24.7951361383638) (-0.628310305596694 -0.3493187747655703 -19.62876324612508) (0.3392208137340672 0.9147374529620589 -3.257712022539176) (2.029823805595234 -6.110559644852954 -27.05553360326963) (-0.3244235416503215 -0.07903939479812598 -0.1052955178968324) (-2.854100355740452 -4.17779389172973 -4.903032409162201) (-0.5432264704233558 -1.102837392102458 -0.2795488268683529) (0.001849865345017562 -0.01739562016584847 -0.01017945381863303) (-0.1864332225541896 0.04862707151741612 -0.3650780965873391) (-0.1814494058021113 -0.09129537352804093 0.108373662172632) (0.01570641350453713 0.1248112728828598 -0.01644469073402825) (-1.172237215405433 -2.924878632210881 -3.273926819203883) (3.344191223939688 3.395668849330734 -5.535434094136019) (-3.44686157980594 -1.628150150956854 -22.1547638116985) (-0.4422146083871749 0.5526749151013192 -0.7478128038163352) (-0.03635285168419272 -0.0007625302617909587 -0.01161099430257378) (0.00264369032090794 0.007843601316587189 0.0100627049222565) (0.03715049114322529 -0.1466980755261 -0.2261812025060071) (0.3464736515062624 0.5612897982939857 0.140906600154293) (-1.270018193652958 -5.285795636163769 -1.875964470781538) (0.05277491148800167 -0.3150660829250912 -0.136584527016155) (-0.4886934570896326 4.220663609137476 -1.157785330526406) (1.801646819541068 1.626279343574062 -1.212151613538779) (-0.7821883353068197 1.025210817455755 -0.1965109325965469) (4.336435206184561 0.8212970459245564 -0.8588565015307925) (0.09898500347705014 -0.2338026495302311 -1.284834853366466) (-1.239952820222299 -0.8058596839362293 -0.2286456963945358) (-0.3260412591711976 0.8824259323976311 0.3581138222171292) (-0.308667553900727 0.9637622334418467 -1.564925573250372) (6.522825287765359 -10.23175046844933 -5.570770848036681) (-2.264460098963688 3.224653206381639 -2.326819165674571) (-0.2947146115194304 -0.3460612383187548 -20.53656682202811) (0.2450902271408247 -0.3949376148438893 -1.172052009762919) (-0.04299354904260733 -4.021398165141813 -0.6821116674115493) (-0.60317073460599 0.2745102055182376 0.3257798066044515) (2.080737872926022 -38.24333729466439 3.762868159611579) (18.51748049963093 3.93049163116831 -11.83633369213854) (-0.1581133674131685 -0.07569857704982763 -0.2154710569805146) (0.006188172911452293 -0.007656914078165655 0.0001351443924667164) (0.09737010307539837 -0.01585187179743492 -0.09802996502064869) (-0.1303652739499482 -0.02745455690461159 -7.567136459324836) (-0.04653874755574354 -0.01586578280832936 -0.003382156568469567) (0.04808824439340595 0.04707301181511354 -0.04063388055064984) (-0.0230223026732286 0.03370921214963687 -6.910022981085342) (-0.08094597267269038 -0.09245107005307626 0.1333050167892907) (-0.007507060078344346 -0.002223310522080644 0.001603491476695923) (-0.01249113948620102 -0.132331654982451 -0.1957210726195782) (0.03027992680448479 0.01505161182957565 -0.02291285603933392) (-0.003151832946349866 0.0002465889321090109 -0.00626139422407001) (0.8232690898873205 0.2503602838080103 -0.08650781083088922) (0.2594817099157888 0.0853903955429364 -0.02008881032508512) (-0.4216135451954334 -0.565557067023065 0.1958645955296745) (-3.260453571708377 -5.960386396921434 -9.160904021203766) (-5.375504766060929 0.4090853730344195 2.710124875195254) (-0.6762693344697015 13.28013803114382 -2.516498664053961) (-0.4719179580868675 -1.060081805694396 2.951295022281021) (-3.181257697411783 2.96189456304478 -4.953689340931945) (-2.391809309372722 5.312888079910021 0.8263810841143608) (0.2589726481101792 5.687686370402181 3.24180160673485) (-10.36251412203664 9.11166756577831 -0.8289861923277475) (-0.02693107189945756 0.007204723821465576 0.02200868485470374) (0.1379925533295414 0.2851965432082271 -0.05964284012277872) (1.735003528294187 0.4154135851207064 1.235658339275889) (3.586656918470918 -13.74162984212806 0.2570119525665543) (0.5130874775973904 0.1690919446725942 0.4075537967243146) (0.03715711932724343 -0.0580057816699305 0.1409349217330436) (0.1060304209187053 0.438562143751551 0.4810039337472868) (2.963217598478658 -65.57293784353374 7.660880977597168) (3.765307110657838 51.12039970116513 -0.299848713242346) (-5.795715247680834 -0.1612675201460135 0.9750035716264923) (-3.478211261020408 4.962113942652519 -0.9184812829691898) (7.177985889809574 2.0085571547901 0.1923509659744208) (1.365723918727269 -33.95922733949809 -0.8210612677297751) (-0.01039106500325241 -8.661374826250912e-05 0.003237876006622981) (0.04563377416986812 0.03452394948025049 -0.003934180586141214) (-4.92149929018071 -5.312081459307075 0.3337783158539536) (0.07697270700622943 -9.879547430413833 -2.843508001424521) (0.1280208367090827 -0.1290932628098955 0.1376151882144248) (0.2308058871663594 -0.01618366070686534 0.0559841988436808) (-0.06739563737198728 2.208880342205399 1.005920958188279) (13.37069985267455 30.46472054762745 -1.823903199619762) (-0.7450221896846823 -0.1264465988437307 -5.242564911578046) (-0.4075026651815504 2.12015865045327 -1.590456390067664) (0.05390560412044065 3.916713821342693 1.348290890295577) (1.092659621373249 4.040208139720897 1.084886292267077) (-1.733043254562285 -4.064725741042227 0.6372522414129393) (2.59954758202625 24.67205011195509 3.824515102368376) (-1.029316985541689 -6.539560726046455 -0.5017694786594866) (0.01090809586135127 6.352971341463752 -3.966761885451708) (0.05402088049832986 4.540519662075042 -0.06693029368372438) (-0.5432461834518479 2.315101713991183 -1.206156287125422) (2.064041549038412 -0.2252929666300538 -1.730779587356713) (-0.3005116851358514 -1.714252292997527 -0.332754353972691) (-0.250917974233453 1.548210768431205 -0.1547734375083161) (0.06976519115741503 0.2569986504262279 -0.01518247764308714) (0.2781338956880484 -0.2986779352146199 -0.110554987069874) (0.7219689583725684 -0.1360813616578718 -0.2711383486431243) (1.38266471471785 11.2724026235889 -4.75754532582395) (-1.16994649296671 -0.7829015991585204 0.5973163437732675) (-0.5430199021294717 4.545528529639729 4.620786486061552) (-0.3172680310016692 0.3492538879863101 -0.2026790942672435) (0.8236559075103316 3.414072074324949 -5.404865737604776) (0.08480484211815321 -0.005742266453330843 0.07970861576901382) (0.2654559258220273 -0.4580826050142631 0.2845398090497696) (-0.146609826532984 -0.1401465829801464 0.2052848749472907) (-1.336640357522257 -0.08210539106998627 -0.4680321975647097) (-0.8952181870190029 0.5331469189659452 0.03957292710985952) (-0.1901439854496851 -6.413667431363421 -3.753158440562017) (-2.821809384231832 42.55293371928251 6.278403297444945) (0.04166953373635846 0.06596168406408472 0.02897781930595768) (-4.074112108851705 8.904516516449187 4.796579438532127) (4.984979480175765 -0.5924447235789159 4.553149457721024) (-0.1963541249497882 -0.3412018433805222 0.060563064978674) (-0.2833748188207112 -1.174186739362396 4.025946402346632) (-2.655783034403161 7.538750514371285 -0.3144433683726455) (0.4672471921870054 3.109698815568689 -3.183766344277242) (-0.1041193316297759 0.1548679216372346 -0.05500309036329347) (0.1736120632348563 -0.006033404989355561 0.056778586965374) (-0.07749111636127988 -0.03021053324784478 -0.0245310922733087) (-0.01961655120592021 -0.004823160657364569 -0.007247292369465252) (0.06739489821841683 -0.03529478314740562 -0.03402846268971607) (-0.02176135793977521 0.01292445373011219 0.002074294486368221) (-0.1126040439355943 -0.007047468389335872 0.01420255520024905) (0.7774528671639841 -2.126682055636064 0.5997775567597301) (5.234819868718379 -14.68274478243019 -26.89279325120809) (2.387150063941735 30.95972625821424 2.044969736749606) (-3.779539885224009 50.10520440272148 10.26141454893994) (0.04004213253116299 -0.05984826417869937 -0.003445231681186187) (-1.194987914474762 -0.309259177079747 -0.1112647292207092) (-0.2457198660159939 -0.02412768271231666 -0.3665687567846693) (-0.0546113315717146 -0.01227614249029489 -0.05288209195386961) (0.1918815383453439 -0.02127887915647801 -0.3265718280418747) (-0.04911275383467861 -0.08956973932070179 0.02917318291299791) (-1.114745756880226 -14.04828803245529 -5.463536193869018) (-6.906554483227329 1.595484378520391 2.579698235405113) (-0.6585802020836681 1.159319755265233 0.5529101541504513) (0.6545515396384098 0.712425046112477 -0.5747483035179564) (-0.6914953988555924 1.368797694540163 0.6603175549505096) (-1.481023345968082 0.9811131949195269 1.213459119976981) (-0.2118800259021796 -5.722800273419672 -3.371441303390261) (0.5436208019688469 3.31933663948303 35.0634055551867) (-4.512967693738259 2.583225847428634 -3.351946561089485) (2.607075420287202 24.66563759443038 -5.388762900925395) (-2.392208594903817 -2.118507682688734 -5.668714653746878) (-0.01063553450652258 0.1243256139731766 0.02928041021127047) (0.03898309431131172 0.1559764651776092 -0.3782288947898538) (7.721640879126028 15.14267916167069 2.876349097875594) (-3.346654478170966 41.9699132043752 6.702351485793207) (6.063521992794572 10.09658581247637 2.505190145300243) (-0.08205095233353675 -0.4131470694882475 -0.06370296177742997) (2.92816423189963 6.134536479943712 -4.018816553090163) (0.1190946520722655 -0.2092141292040963 -0.08199617964776212) (1.758965229424717 -0.2320950781994644 -0.08590276512476105) (3.165505558735254 -1.161821163777492 1.018085400226875) (-1.831882347033449 -0.133503513940187 -1.218703134474994) (-0.1428369926429593 -41.37176174658111 -6.821601970193939) (0.2277779172393051 0.5621940969420007 0.8895448704804818) (-1.948483127967356 4.953374111808102 -0.5177910114968629) (-0.3611368564999244 1.564964137601054 -1.266717761804396) (0.09501359810196935 0.4051008495099622 -0.1193109152886762) (-0.03083018206804367 0.9537818147213395 -3.360784316315848) (-1.11822071700626 6.491063384891442 -1.800108125967688) (0.501959812087902 5.321049699871234 -3.231653425407081) (-0.1785786497706579 -0.1516742066531494 0.06471102639457114) (-0.1004813249237028 -0.1006281134959098 0.06772445018990958) (0.05558863550755402 -0.06310471162838607 0.01146278049508478) (-0.0243825065475178 0.1807383640889695 -0.05631539516477023) (-0.06726975628204535 0.5309733086394114 -0.4487196059378202) (-0.972511358999488 -1.402031614428567 1.485165729795883) (0.1232598598066598 0.09121875826138504 -0.01117670541125225) (-0.2338294670065041 -0.03887994073064867 0.05485025741143265) (3.966796078741445 9.106042394533791 25.72122330057397) (-0.8104265940234271 -32.58369836864343 -4.199177720746256) (1.578442786666629 7.204849192039147 -2.28537642275123) (-0.257193895567127 -0.06200277517205702 -0.05436240129908351) (-0.06949993794974127 0.2845436321589213 -0.3022858646682951) (-0.1212149577146294 0.02586009888428428 -0.06822211107212189) (-0.172286173721431 -1.968417347348709 1.082247603957199) (0.04569031509734645 0.7023312660562597 -0.2703971291798724) (-1.843660751303876 -77.31686888633962 -3.134172564612134) (0.7458170931658403 0.1452452032042972 -4.366919624732279) (0.215138020870801 -0.147235683907125 -0.335869986516915) (-6.470758255266483 9.083152434322356 -3.254070615404594) (0.3575751089316711 1.140850166562059 -1.723164043714345) (0.14951729204533 -0.2118006490299234 0.2509903067561251) (0.03872876072406856 -0.07098169612093083 -0.05495303767818085) (-0.04936805702678937 -27.61571557050387 6.786898867480442) (3.338979891317669 -40.15518841952246 -0.7221823493691317) (-5.610283722354169 11.50423778263735 2.146077338645739) (-0.2607203099101582 3.631778922783349 -1.115984114757564) (0.3038175936682599 -1.650386372316829 0.8235241927218133) (-0.4367141809268812 -5.307518572261483 0.09044604286343427) (-0.5831411464444456 -0.257792145812421 -0.4222131886478985) (-0.01255424679149802 -0.02450086248190222 0.07157675985559843) (-0.6392551448428089 1.066878589340874 0.01235873040899413) (-1.081747479814124 -6.075074115114672 2.071931981880209) (-0.04119948659066922 0.1468657268846333 0.05828942661105745) (0.7033361640824494 -0.01962926332292542 0.1638897817777417) (-0.06199456283656607 0.3648575078097516 0.7363004713086383) (-0.9155952689599445 -1.198814350292097 -5.249678318271401) (2.264855563271136 -7.902473495560117 1.143627229053489) (-0.1448264235914795 -0.302102787655879 0.1496417567712543) (0.08542906365832213 0.2395744975798429 -0.2001222147044604) (0.1980956705066436 0.03213555558872187 -0.4366505242730067) (-0.1647264494837943 2.775080850619599 -5.152733441884928) (-1.592145010474824 2.072986342802002 0.02702470492941522) (-0.0001882887116182452 5.947439995517458 0.7971738234798389) (0.1415767078198783 0.2760100567408467 0.3640969214387998) (-2.567411056516135 -5.212202927683743 -0.6973539899621242) (0.04185619760595215 0.08736293601540483 0.04140812527995778) (0.6796549100114342 -5.291500159598458 -0.5679713747002104) (-1.304427823250743 -5.928479851950399 -0.1874466461588062) (-3.176907481144742 -32.73145753014062 5.610722729673356) (-0.05460687658579172 8.996070908905224 2.531882715799581) (1.872864857265549 11.78452533523519 -1.803213704886976) (-4.763766802500692 -2.541886222598163 -6.121414374632269) (3.607840981393206 -1.185214226027154 -1.582971617522947) (1.173545238798318 -0.452220615979924 1.134011080404683) (-0.2460623824027525 0.1291076128668916 0.06142622422364381) (0.3103656212878231 0.0126179177866981 0.1359609605530687) (-5.749993294447024 35.89334025676352 0.07835255594944873) (0.4819069193554716 -0.4859918822797903 -0.08366521495304109) (0.6365808749542842 4.522136247234608 -0.5824432084390939) (2.265107161542351 -0.2231933874441963 -0.4756091328969757) (-0.09051886297873395 -0.007335359880902718 0.04509423218052497) (0.8140973767595228 -31.02556809466046 2.10552143695224) (0.3057622997625885 0.1462409233615941 0.08247123908010018) (-0.1939116502764506 -0.05357143040794114 0.04526470479645942) (-0.07879694424880056 0.07145096183781037 0.005679814905095091) (-1.660698329879443 0.6407287229490572 0.8606669377412177) (-4.811999956085836 -3.690662041969601 0.5881870239740039) (0.003672389421289177 -0.01666727079119112 0.004503005982491986) (-0.03465193330271981 0.108089424887929 0.02589941954810573) (0.1006554459968348 -0.06596469535900212 0.008621799650638126) (1.134601760862275 -32.8123255706624 -0.8998046336590413) (27.50251985010485 16.41524376983485 7.466951313844827) (0.1505063157186249 -0.02599973969766557 0.02499010826359594) (0.007419918730651481 -0.02481644458040232 0.002914977623710232) (-13.32061587213211 -4.021775618002432 -3.004369278728157) (-2.137087053623246 0.1993880512646641 2.772189848398094) (-3.048060374156242 -0.2176199802455018 0.5554764545383353) (-0.1720640931096154 -0.8282301480853576 0.07206413757252014) (-2.994490318122105 -0.05953713946076822 -0.2236840264821652) (-2.073249278006343 1.579319738850006 1.186063230848867) (-1.795729672789786 -0.8051171646438329 -1.334703371107854) (0.7466752828001038 -1.233976891902768 0.7309122340683603) (-0.01121085771479097 -0.006783957551287561 -0.0008803995508425908) (-0.07105415657851491 0.05148033322035785 -0.03521913270163986) (-0.03519460646735342 -0.01856768064911451 0.02212271174370599) (0.2938910451487584 -0.07180142223985186 -0.7974337300246568) (0.8984568851967332 -0.1197009069099551 0.1049009212485189) (-2.211872598311387 0.00663553721089058 0.7760146095747031) (0.291233861883482 -0.06213805377775085 -0.2829520628374476) (0.1285627472619996 0.08060394153693734 0.08769203597422298) (0.08275263743831307 0.02273628651533136 -0.01722183734999811) (0.2504312889771351 0.02664604520303514 0.02100177317953617) (-0.1130032782551716 0.06451930000870792 0.005593354658171175) (0.01104368019242747 -0.04650348483069452 -0.03780423466555961) (-1.036583956960665 -0.3847421437146169 -0.2302448356570183) (0.05275092084287183 0.003240671489272217 -0.008798422960778707) (0.2303085144705976 -0.05441391189612954 -0.1170624151970259) (-0.695185120962028 -0.2134113604911449 -0.03440141563710311) (-0.1779073412358249 0.7948297381728349 2.450573870228465) (1.539941290677004 0.3612954849019865 1.486111515130158) (0.1058329771399975 1.086444796215962 0.6316058972793865) (0.2731683736273123 0.5767587094936907 0.599670351868782) (0.3591421355524254 0.8407766778606676 2.59850666731652) (1.194982438924805 0.8060817223266081 2.536430830024689) (-0.2630310236177904 -0.9490484376479802 -1.027055961501203) (-0.2677948673528383 0.2971149209014412 -0.07549486373436347) (1.310281410849289 0.5187664379274223 0.01071239556816297) (0.2844054723690193 0.984236723302766 -0.5086563161702089) (1.924586362687826 0.4876492051160619 2.109588463726683) (-4.790127935635192 -3.403961422015104 -1.919705941983352) (0.6556454890540675 0.8668285308049156 -0.314841243033358) (0.08876990408381755 0.0699956398949959 0.01555569456382087) (0.03182330325202321 0.04778892815880882 0.119332603046824) (0.03246711653742437 0.2646213054591781 0.02059304938688492) (-0.407693077584196 -0.9032362822399166 1.110642296021774) (8.225121844632447 9.936106562378693 7.888223041687214) (-1.169793746909268 -0.7545202479686149 0.3305802380442942) (1.610232728098569 -0.5278765197640447 0.4706053033830688) (0.101817024602276 0.8987788832416314 -0.1049356986632622) (-0.894731490645623 -0.1060937682606852 0.1063592422948664) (0.3010638258734723 -0.07735874136625182 0.06757868588648422) (-1.782254994206273 -0.4643584790878709 -1.88267671364484) (0.2545730148745809 -0.6129022494690164 -1.183725289130931) (0.5232944756724326 -0.03579439719960398 0.929551120177682) (0.06021421213361311 0.03471212261637192 -0.1562497949520921) (-0.09050100679000418 3.482968968628755 -26.07421774151688) (1.411822491066324 -0.3261856648108361 0.7075867903982515) (-1.108949916760379 0.8065949955928914 -0.1397925230029382) (-0.7702551901029596 -0.07064925045589718 -0.03482838404777361) (12.01884630006912 -5.496838455228326 -0.4224105032137677) (-0.01108517102337758 -0.1349642976007152 0.009922688898400363) (0.08346777455071619 -0.431306473110312 -0.6111401011311484) (-1.87445809611643 0.9538438641498963 0.1333318989704522) (0.01142144360411839 -0.0006500299494266927 0.0004167675406247344) (-0.009992956984265094 0.01337995490939307 -0.02184094189670117) (7.594592726241448 -1.55590165735007 1.413189563765757) (-1.805509079234278 2.120405437856221 2.208720996304318) (-0.03485169824776051 0.003517534538931034 -0.03238610015674632) (0.3080983609048281 -0.1109643593461046 -0.3446630150979658) (-1.377958656121716 0.4523080247876633 -0.744157124414054) (1.035921732553428 0.5743159460208382 3.168977775903903) (0.01055313363356641 -0.2418938082652639 0.04977500466082868) (-1.023272323824701 -0.318484511228582 0.283258159865396) (0.6861673373948046 -0.7047054304766975 0.9560973669364605) (-0.5359144895497504 -0.03815899267460764 0.2293553570669715) (-0.2447398386310893 0.3820143536558704 0.08145138431235545) (-0.05920997160349672 0.3671366335704298 -0.1503897998822934) (-1.376323263929788 0.927778692357744 -0.9521901262908047) (-0.2276156115602243 -0.2146758876347015 0.1105019930788834) (0.2443367876142037 -0.2835521322412913 0.7027809429193341) (1.105145812323268 -0.3375141946930307 1.556314276473165) (-0.01269471911402578 -0.04476452669384594 0.3997120560943003) (0.639760120652659 0.6150736598045328 -0.3892611294453683) (-0.2628671193034892 -0.4824567788790952 0.04391246079532659) (0.2115590235610465 0.02521459625280376 0.4088910282380527) (-0.1269106978806872 0.02919837619523312 0.08823067601116596) (-0.1664080297296563 0.07001990728204546 0.2579893188726727) (-0.2184202000439275 -0.001978789214461305 0.1856907526939753) (0.3751127370504007 0.3018281373115257 0.04943713406190733) (-0.3061747410940526 0.03548193897021872 -0.1262342224362874) (0.09884164967416571 -0.1277632116388385 0.05455343561579026) (0.9356736272353221 0.02837360040667873 0.4385857848684495) (-0.05083079862984487 -0.09835986779239625 0.1914895566421408) (-0.2754771568577543 0.4057062357898494 0.2691263215682839) (-0.09047827899696329 -0.1370809193950472 -0.05810780285521865) (-0.1365844458436997 0.06371800054005217 0.232379854292857) (0.2986960494094827 0.1785325215209151 0.1101305476787067) (-0.1226346492799587 -0.2358725786852133 -0.4064520540060249) (-1.279401755379838 0.8851586719395639 0.6062250280342865) (0.8699911623781822 -0.04610496876710637 0.7713850006486346) (-0.2683667850547799 -0.009128199787507701 0.3177664151619215) (0.2231623777718616 -0.04928846211719153 -0.2630674232393661) (-0.6404186570498563 -0.03793505690965421 0.4000081935127026) (-0.5340138042192758 -0.3890456169213577 0.1122853428153945) (0.549264353867293 0.4861692907155464 -0.01372215059097379) (-0.4299373538734691 -0.1893474630136062 -0.2627005521583655) (-0.3741965393939786 0.2297311040223901 -0.05030282129927675) (-0.2342386928807694 -0.03090252305337267 0.2131287870232252) (-1.591518041010385 -2.783957037005946 -6.160692408414278) (-0.2440859319910073 0.0552811845214948 -0.2483643584290268) (-0.2258961640983824 -0.008706480249667581 0.7496173486589695) (2.923693581103225 2.71471192591821 -4.031385742495825) (-1.067054076040023 -0.7198827082607797 0.7021999364315911) (2.195733318730066 -1.042456115898331 -0.6567133125221301) (-1.198465687921058 0.3726816187857442 1.592293018410727) (0.5270266125011991 1.639227922958421 0.1968953983485797) (-1.515114635336465 0.8293644793436038 -0.5270613002211884) (0.159791152135252 1.936945223344177 0.4463585244376373) (-1.33863904467027 0.5046881867136915 0.4628996919126018) (-0.1707906188701849 0.4128013077765217 -1.260006811967357) (-0.06109398709906863 0.5373079238509946 -1.618240567797486) (-0.2832259033015089 -0.08825179136969322 -0.3540002227335068) (0.2770470099948247 0.180934773513086 0.2442689377282177) (-0.001798737370184926 0.002558736524599734 0.0194821173194296) (0.04553179791426336 -0.003951266255316207 -0.006516261015979928) (-0.05756095071219368 0.003880232885943147 0.003969857491249128) (0.05472128394000087 -0.03335265528014673 0.001307073906830934) (0.002409742069633175 0.0001132254472323115 -0.009581516647003635) (-0.1038425080002556 0.04118767292208343 -0.1633272212951858) (0.2371789012975517 0.1056748475682979 0.03126877098996284) (-0.1582878637623981 -0.1655576615360743 -0.01273586044680611) (-0.1017964985511377 0.001040715923478394 -0.09951469806027136) (0.08409908788807983 -0.218232240096123 -0.2287666125222885) (0.1689672717030276 0.3115244536118713 -0.08082705382059185) (0.4139183593123906 0.4365062981673099 0.01703337462846303) (0.4647423654813307 0.2974462187643009 0.07154318725931148) (-0.1159307633665101 -0.05867723382069601 -0.01817772916861413) (-0.6779265737861185 -0.04599129020090816 -0.1035834867419999) (-0.2783938095594166 -0.7746232985679355 1.010427179137915) (-0.01824637139459466 0.02067580685261445 0.1166238513011042) (0.02104393780075126 -0.02625396912527453 0.002729296778610885) (0.03032931300927647 0.03199246435493387 -0.06454428741285592) (-2.012295833373002 1.441824404824247 1.133234770198664) (0.04361241344201656 0.009320250368507811 0.01130346894344728) (-0.005518564289370888 0.00347018159522954 0.01766709184786963) (5.346482409198648 14.87958111398878 -3.099627353603365) (-0.03416597344435847 -0.006193511549175814 0.01971551873765304) (-0.09326905129400243 0.2458501586217334 0.01400731277423678) (0.01600467841268765 0.008058283729996729 0.01772562636507848) (0.3213967233370723 -0.797687504001554 -11.92461337229025) (0.4202676597228963 0.05161176168601633 0.01129934106534958) (-0.03173561651399256 0.01478749184703868 -6.305613552195363) (-0.5473017948150161 -1.749795007604406 0.05045940001689347) (0.2194756348253902 -0.01382460678661864 0.1544659811279137) (-0.7486876551597018 0.3076655038394481 -0.3989825067742806) (-0.3498041049939454 -0.1317626181012131 0.4611767310188042) (0.04774431099897303 -0.007287657976836281 -0.6187475839366662) (1.933452445251674 10.93856131571577 -12.08029123597541) (-0.01309522171069788 -0.001484070050770398 0.01109699313163984) (0.009576153407773826 -0.01466181177337824 -5.987056966913707) (-0.6053611357930951 8.994098509543958 4.256108057580214) (0.9829243201747372 1.128776054504392 0.7156097610606805) (-0.2458709051521114 6.423152550685299 -0.2661680927379683) (-0.01246507042677836 -0.02691924299097187 -0.06864219899691838) (2.503502504191033 5.956875358147535 -6.405817242801904) (-0.04783672621091828 0.3179774943094033 0.3129356000705064) (0.1183738829760101 0.370274057375479 -0.1509465144411551) (-0.1221371647859843 -0.09241847427578649 -0.01196704520625629) (-0.3154497260122676 0.7198601717798895 -0.2015954393356456) (-0.09269495756502877 -0.1949997637989477 -0.018105771753437) (-0.02924792163127472 0.07027749568332883 0.08085269788620389) (0.07388322475642399 0.08392081939916952 0.03496942913096348) (0.8215796127334937 0.7048467988730699 -0.3610299339579095) (-0.8784347045542868 -1.009693815244291 0.7303919375177368) (4.701117937486323 15.31974545462556 -1.317397387992075) (4.038433846979594 2.359255721077067 -9.412206830257018) (-1.235888036953167 -0.3710551315294871 0.3240863938503445) (-0.03900676980571219 0.053761565357609 -0.06561041852632825) (0.03468633116559853 -0.0336964416011031 -0.03284354494356767) (0.05931888427520558 -0.04881680175222733 -0.01008476797851591) (0.1462746813801079 0.001107463353136995 0.02037522500062168) (-0.3545836186274108 0.2429931348408637 -0.178321922540074) (0.8159528617321988 0.7798677383477737 -0.3061637747695642) (0.3013701414656235 -0.895789370462367 0.0654341464358742) (1.172992074036007 -0.2255609210738727 -0.2179013249354284) (2.098872387234192 -0.4487334975198344 -0.2419616611708821) (0.2496375789918882 0.266245450805596 -0.3062033576807986) (-0.1570719998332814 0.3238793042867985 -0.104182353464545) (0.5469114625541687 -0.06796428767465582 -0.1870658330817448) (-0.1610842772634844 -0.1244123928683918 0.1849571377774699) (-0.5902925306506002 -0.7060689191460302 0.3139548435785789) (-1.884851120244329 -0.3553989040977266 0.7602349691456942) (-2.327789889286044 -0.9828723613964061 1.058418911652559) (-2.312166518460955 1.340653356501242 -4.021696841053489) (-0.7710664227749798 -0.6104804450485934 -32.30866847823452) (0.8879138617585247 -0.5466449876876225 -2.122476586726953) (0.1559837932837681 -0.4197444429134565 0.4765243543502455) (2.015500427606805 -0.8443651957703929 -2.56570076700802) (0.3489066409805451 -0.1252959741588353 -5.605263907095111) (12.46635237166194 3.852383625585127 -7.474451729949507) (0.3031701845586997 1.129905300953074 -0.2099043851791027) (0.01424260799186012 0.009335931397384818 -0.01924931733290734) (0.005027146355834044 0.01999797634041475 -0.005055753650234025) (-0.4774703392401136 -17.93187905113977 -67.34183572150316) (-0.2045955379106412 -0.2149094042898078 -0.04940014251545399) (0.1620095234646761 -0.9116686979350608 0.07868194393186809) (3.808769766274094 -9.3467102870127 -40.03534021593366) (0.009008517278141382 0.04198089702417779 -0.009940994778136786) (0.1133960072093446 0.4747422081090633 0.6852683940436416) (-2.090996082346518 -3.484817963022366 1.689523285744346) (-3.131246123340026 -3.010098009067892 -1.227251990336483) (1.093310037236491 1.691927511492453 2.19630067342275) (0.13437251015859 0.0472608412115996 -0.1104533270422356) (-0.0323939095868231 0.01112279097502145 -0.001410841354068201) (4.143074787068788 8.944680754138307 -56.9470247804976) (2.371059210005072 -0.9450151034658861 0.6302709211070001) (-3.478955325997221 -4.034793123455372 -0.5843377064808937) (-7.097175970386532 3.17370222149047 1.390352830331061) (-2.683689703431253 9.120122978151308 -32.21222948798726) (-0.7674413350258926 -0.09129097028898472 -1.231558324543937) (0.235199953489577 -0.9380708593653778 -0.5279765555471787) (-1.001636457801398 -4.229640084021383 1.621577907943994) (0.02661480496145453 0.08546164734232209 -0.02702105184300143) (0.1477856113072436 0.3164699477998897 -0.2136142260809513) (1.10072684201348 0.4586125268603056 0.4013611548229097) (0.1345559537168587 -0.08374302615874191 -4.894620223026964) (0.04327637859954202 -0.04414430563831719 -5.409605454798579) (-0.158147625962731 -0.06567564098697573 -0.3652796293658208) (0.0006636428082940416 -0.0001114397868950119 0.003238088930723895) (0.04899645536878049 -0.006861708566558516 -0.002735451055309701) (0.04173224765843858 0.6851051123091199 -19.30142428929319) (0.02382184903480756 -0.0007878698365870671 -0.005661579751688503) (-0.7861911589885037 -3.264669998422356 -10.24382743856519) (0.105322966946054 -0.003844550119903041 -0.02514777781535847) (0.0916547706195836 -0.0196512220574921 -0.01533738675952177) (0.05453655968467461 -0.04796072372538679 -0.06757889421192134) (-6.272338124841531 -2.80363628629138 -2.40998841311612) (0.01276629640891111 0.00384984715413735 -0.009221413668269993) (-0.1419262499369917 0.06871104877426969 -0.04428798544885421) (-0.03722250745165262 -0.06502277748476573 -0.01476364152452752) (-0.009779378153239343 -0.005057762883858681 0.001648096516137926) (-0.0006969106997192394 -0.0329332134770153 0.009511796939042317) (-0.03515333711938778 -0.071149622973843 0.00159300641956725) (-1.953078387226527 3.361178429535514 -3.636806240496917) (-0.08327075014626384 -0.4806449389922767 -2.378707853233968) (4.242941603468609 1.215816607725042 -33.0991675267081) (1.085646920943332 0.3631736600319501 -0.708651573291596) (0.1883874572624805 0.2331101060839826 -0.1252457635930984) (-0.07054299538735842 0.01022389833547357 -0.02329763491612864) (0.001142932268824077 0.006714572144521926 0.004934883384391704) (0.09314554877696446 -0.07970730530776576 0.1415040015491686) (0.2121464906871026 -0.03584584496568824 0.05220189442740266) (0.03912782793237977 -0.05847921829200765 -5.394066349603626) (-0.5985756846873747 -12.01553133443666 -9.984464333377902) (-0.690715531779733 5.110471980163718 -3.611644374386349) (-0.02615408186784639 0.01786105274240403 0.004483370026025883) (2.143028753762841 84.51410021178248 5.435046109230747) (2.384596104642916 5.868274631537325 -44.98218372572074) (-0.3767622624446377 0.6672570093070054 -2.35241539179601) (-0.1104439900210242 -0.02672930233278293 0.005681214737701182) (1.079484033934052 -0.9848016541149642 1.09618316933879) (-5.220686597001073 -11.54417508849517 1.310943118787626) (-0.3110680960705811 -0.1741794564636223 0.09466565268544157) (-4.17430080333608 -5.779271064161558 -1.220340821319236) (2.777232331254809 6.396822522804763 -2.420012702882195) (-1.825772369908752 1.147517784576734 -0.3211905758361264) (0.4087533345428096 0.7863585956293667 -2.154355536562862) (-1.656311383288021 1.167085666343443 -4.595048843761698) (-0.5295653339201764 -0.0371392701760852 0.6077258530242682) (-0.4017509871003411 0.009317837119899752 0.1576960100849157) (-0.0667301444921545 0.2777690787334469 0.1849426422457138) (1.357249716613415 -0.5193011208096033 -1.416027311976756) (-0.2397639832205396 -0.2334769056843015 -0.1278236232149089) (4.218000371643004 -8.433233161527463 -1.032795807535403) (-0.2337198673230101 0.04234695020112846 0.06933597198510619) (-0.2893382372450032 -0.1107830061489444 -0.04634064464587957) (0.2016698329159669 5.702449718867719 -34.12588582392851) (-1.865618995088904 0.2606653495468707 0.2505338273198685) (-0.005483814446766816 -0.1235173096802976 -7.866134386383401) (-2.714195683724117 1.624966573288393 -1.107617994096332) (-0.9120512163396488 -0.8516418858093369 0.159098710944352) (-0.7137442028666249 -0.1113834794377396 -0.8274476780439451) (-0.000246870559754862 0.001187903889820342 0.01052317533404641) (0.4763284481155272 0.4677494085295667 -1.830760191077508) (0.02990395965595316 -2.804560625995045 -3.535163754737999) (-0.7990700730785243 -16.33097151077511 -4.619578611768563) (-2.030766880627629 -1.518717039686017 -4.124927007660695) (0.4372067644233384 2.922301479646177 -1.023955381780301) (0.4363523055551171 -0.003969596383637169 0.001470328790262864) (0.03627377530318884 -0.03585668033352725 0.01510534014998631) (-0.09053221378132455 0.0302037903504466 -0.09739651772182278) (-0.001127971133830424 0.01567829547677226 0.02151923959608675) (-5.402745725033494 1.947125707652641 3.438487970959882) (-0.04291951116828858 0.02554050566553506 -0.06745396050659903) (-3.672951623636437 -0.5279206863660857 6.282412786396675) (-0.02828332221009084 0.01676472681000345 -0.070553920076314) (1.730160223823292 -5.744268569168364 -0.5823768301907988) (0.1422028093131021 -0.06626048503734781 -5.100396438701511) (0.0434947331635504 0.006379245647488233 -0.04417688622457352) (0.02626484244691069 0.01086126412506941 -0.01011336598976939) (-0.00358055209656407 -0.02400710351967408 -0.1143294571976729) (1.627547838739573 -3.426011501914568 -2.019389940193206) (-0.04476200693585028 0.006736021545228364 0.03772213852497455) (-0.09503424947099562 -0.02093438347741513 0.004337853134758568) (0.06700514479015982 0.0635773956630621 0.009580476533975431) (0.2735457955106373 -0.0440437617688409 -0.3035270324556467) (0.2074605610354787 0.003719071403832661 0.02759927647790664) (-2.902369569376404 1.152632302072844 0.24052078436127) (0.1934796546069551 -0.1193090647589626 0.1340574134318597) (-0.09241900243279784 0.03311655187021668 0.05009568236572089) (-0.01033391379696439 -0.09032152370076992 0.01960761006301701) (0.0878040214301212 0.0333783414248185 0.03678526722762025) (-2.645225308348197 -2.821192898064363 -4.898752606359918) (-0.1683831213299704 36.26913355314176 1.182597527718344) (1.123766865823797 -9.110032255863688 -11.1843032872004) (0.01801610867994485 -0.04866577954613246 0.04577141583656436) (-0.007648225537059176 0.007650671630497115 0.003345309651086645) (-0.05523252318631119 0.008935600397306672 -0.004694195278794066) (2.939893907030676 -2.166385316199174 -23.88674438018299) (-2.34282701039396 -11.56536768315964 -5.824882783746199) (-0.2233068172530664 -0.04114175844547511 -0.02922734484785548) (0.02330807746742778 -0.07520795740671503 -5.895716793057782) (-0.02828129654101951 -0.002123191617839739 -0.02271019294764296) (-1.713131101280953 -1.454534915824325 -0.6427027664883823) (0.02847567130114131 0.01549678540951525 0.02579131907753375) (-0.1043680191351079 -0.07371704140734063 0.05318992768579334) (-2.342969741983481 4.096072509505804 4.106219727471772) (-0.2033706552399825 0.02105559431361535 0.05651212168459187) (-0.02624163148737282 0.01289266077949118 -0.01021498486097305) (0.01409737696427714 -0.002758283996944857 0.02523101160650748) (0.008534009071795795 0.01280424490367145 0.009554882849050246) (0.04455931294811934 -0.05489177661176335 -0.106634300045054) (-0.1523104880067322 -0.3450095444551335 -2.385823308654008) (0.002631901741559473 0.1554649970965636 -0.1118750719649023) (-0.3984769893273433 -0.8191247548526206 -1.714858297685204) (-0.04043720649418364 -0.02248185114553695 -4.989090793789907) (0.005167056794110086 0.01019247048581179 0.03128003340192685) (0.04426874951350912 2.115980342581407 -4.949070261676859) (-0.1645683686158523 0.1518950990436853 -0.1515368385421339) (1.192966607243563 -3.889934662340536 3.081084736852467) (-0.02635851538792904 0.001689450796421802 -0.0006480548978105511) (0.7137274128174953 -3.496473760105758 -4.014778005875121) (0.4900392540406018 -0.1111582425047798 0.1420222245389481) (-0.04187714103533591 -0.02354893363357404 -0.009058140587910643) (-0.008877061261668893 -0.0005935173471703904 -0.0009994537484821053) (-0.006229166429990343 0.0004261660380665477 -0.03343191509275854) (-0.1557739846551652 -0.1496464660251666 0.003144366457974454) (-1.720371744627345 6.145812618852978 -4.811472184822819) (-0.9961029347900955 -37.5186480535392 0.2276458403513971) (-0.09816038744255606 -7.669713965596568 -13.41732855482957) (-0.03659680912742592 -0.001413266961057964 -0.03673772904339489) (-0.03947506646912069 0.7210593297393009 -31.44590790979254) (0.0009427522848172313 0.01742273809847506 0.02535953924632633) (8.827799558441104 0.8091838954855821 -11.22552890143178) (0.1607132362246141 0.02553440997106284 -0.01726603628549335) (-2.028654850144524 0.6086019124746275 -13.43030994412077) (-0.01270549077492026 0.01185850262195709 0.01793744492423591) (0.5022300863850738 -0.7377090024520595 0.7611044472030412) (0.2463803363501395 0.2174557523211621 -0.3339597564867409) (1.529685711674087 2.190591108084426 -7.450896610562078) (-2.151690523693553 -0.1328900022694506 -3.003045402052104) (-1.326621149089287 -1.662574611667903 -3.199007169396219) (-8.369291465757366 -6.738482398664246 -0.5187174382146991) (-1.421686195401989 -3.225430964702173 -32.48710692801598) (-0.07404585891020037 0.02927427145963336 -0.2260968558364509) (0.06686126924930777 0.03621423348559772 0.07463912981018687) (-0.009968136253789003 0.009471348641097858 -0.002740259182161935) (-0.002189013825812054 -0.1726546087520162 -5.71151125738464) (-6.422709057659689 -3.821807352994335 -8.797348922986799) (-0.02337682233266303 0.04452559161011603 -7.170605820696654) (0.04446988895360601 0.003381980740877493 0.03856177557590127) (1.119736045329448 -0.7704192871396752 2.102348066650419) (0.01502235309755249 -0.002156648964472731 -0.1146555835154696) (0.0962769224990893 -0.001183843321987083 0.006090413922710135) (0.07317458194830065 -0.03547657215424251 0.01016345943094455) (-0.9225309317982244 -0.6531017594335999 -23.0554891452651) (-0.04121100411438881 -0.02528758626027339 -0.1267659134851249) (-0.08942353099016764 -0.6090319943163978 -10.31936485770518) (0.06767892892587836 -0.1458351512011198 0.05619792401650637) (-2.448909013233484 2.613098432256021 -3.146737643189025) (-0.2413415607804716 0.01020078029739516 0.4120805792552856) (0.1973013184719996 0.06096573727278193 0.003478080898633745) (-0.7591109993009691 -0.1865044696425526 0.1082904537593406) (0.6207446505250269 -0.0915493719904511 -15.27948905340879) (-0.3119727246921367 0.1957795766533881 0.1278839018062656) (0.01109578559640489 -7.942081897206347 -4.07278316223756) (-0.09240538157856114 0.231190687873614 -0.9146696336547764) (0.02134096266021668 -0.09472977216857115 -0.11653565390594) (-0.00853036849104126 -0.005071198367779377 -0.004175888591428577) (-0.2356668656893012 -0.04999192750847165 -0.05365418215872765) (0.2183898224986561 -0.007001189495780116 0.1987309993153417) (0.1461665787416472 -0.07093185064938967 0.1991591654864014) (1.843614601813951 0.1097791473457218 1.096110656076605) (-2.042094796908763 -40.02212941222432 1.896970775801785) (-2.884854591397606 9.612134358166395 -2.160519963199893) (-0.4508076565798448 3.522117728061621 -1.539698973427634) (-0.5350394817068782 -0.241647313347487 0.1045452883360827) (0.0217906660935002 0.04311633099308113 -0.00887253351967201) (-0.2632577834050598 -0.04303861334274711 0.03847330229356129) (2.448535013254456 -0.5548198291451314 -1.469595408236813) (-0.4020301003837987 0.4240720575041164 -0.9020995600834411) (-0.01326935002796112 -0.01432240063131968 -0.007677394542772485) (0.2851548896894781 0.8406699817366006 -2.581092542551307) (0.2856183562233496 0.6536588668153023 0.4284867197039048) (1.045741976298256 2.357968365365453 -1.810663930680989) (1.256405306560092 -0.04857199343459278 -2.018226392407838) (-0.2806255284901096 6.395814796896426 -3.290094189792992) (1.408322827738961 5.777568323464909 0.2584367847411129) (-1.770391621516047 -1.85518074839065 -23.26173152689516) (0.204761567142877 0.1373446524972223 -0.03890744173530195) (-1.619657584488477 0.9942896523793234 0.932919929142707) (-0.0009386030805939027 -3.400350138271085 0.389801072988076) (1.438442931579575 10.5122611609024 3.083671677648699) (-0.7890804018273465 -2.924349251593736 -2.492724169541029) (2.349390166290438 6.40980005595442 -0.107146398859616) (-4.879252728630185 -5.035995144304779 -3.012399111255161) (-1.113320259925515 -0.9229417485898055 -0.7557638604906083) (-0.9232036336541688 -3.075822268886054 -0.2756672248019199) (1.865579226399622 0.2685953026015054 -0.4569397216233171) (1.400380655744397 -0.5418424628680116 -1.677769017406928) (1.521280641183686 -0.6120523838620102 -0.5183628864053444) (3.375746512257076 -3.001676287453365 -3.708571283171442) (0.1283478920726268 -2.088124793020592 -4.729368061652726) (0.563480492285561 -0.3144063589641107 -1.656162740878869) (2.275638582737886 -0.990852106980046 -0.3170480033426002) (-1.423575738996962 -1.160209605448371 -0.8924584440023414) (0.2069649131770793 -0.0001213427442616627 0.03561363400049955) (-0.2526085264640814 0.0799886056638172 -0.06100440581754318) (-0.1003885207076233 0.1374384331405073 0.1345140352117134) (0.1418157627866606 0.0801895514080036 0.06632331845296757) (-0.9304043369593198 -1.354277887551246 1.360659320170245) (0.03260584005065331 -0.0402418542756191 0.03657587216674524) (-0.8397546363265797 0.1181843113922257 -0.01981924929858729) (-0.6114468812811221 -0.1016442329868076 -0.06468708262216445) (0.6209285530000539 -0.4096854718554517 0.1401273521009706) (-0.3550683038199926 -0.0622922970113591 -0.2638877229866178) (-0.05367576572549615 0.004765509349414674 0.008308161850094364) (-0.6933667819204826 -0.1602130523963632 0.03586971346460786) (0.2107744519185676 0.05298027687771455 -0.1653178970967464) (0.5968318648099951 -0.170935786863199 -0.1797183750736186) (-0.1386204301050566 -0.08085461547796302 -0.8224444071807424) (-0.4128617655294929 -0.1881432573446608 0.2408009332427407) (-0.0870782074049587 0.06525579140827864 -0.0007655448504256986) (0.1369060563985676 -0.04153576026104251 0.06525120874272528) (-0.04970977366129985 0.02943923014389218 0.01189421256255943) (-0.007052505544106857 -0.0994228033943233 0.01313836126265609) (-0.01476604521052966 0.7666754046265832 -0.4556436329697655) (0.0203017375230528 0.02944132507415245 -3.955313490501197) (-0.06705154743687386 0.01919341985398032 -0.006425318936709334) (0.2633437207165492 0.3960945601629509 -0.1054361817019978) (0.7068623290235247 0.8004201671851662 2.770666555998038) (-0.5371231397521589 0.8797048205014972 1.035014952662844) (0.1799524982028891 1.466553350066076 1.422836323329012) (0.1835092059067046 0.756162710851959 -0.3023981244486817) (-0.02762174398706615 0.1496064863059363 -0.1959971885672396) (-0.1361657539501935 0.01593408674544655 0.01131758617368293) (-0.01234419978731678 0.00184096531241796 -0.001295268763442181) (1.636914271678198 11.17125727172321 -7.687102971068523) (-1.040584209885864 44.96487565992046 -4.570048523184195) (-0.3609196022954587 2.367777618208204 -5.42461334173601) (-0.0004215708072442641 0.06759316063288176 -0.03923372488933823) (-0.07881121391986456 -0.06726882008373505 0.04347668199933765) (-0.6385628420280675 0.4499786655624675 0.04848662248704983) (-0.136440599590327 0.6931957906646085 -0.4291731282125079) (-0.2820670522367845 0.05666088294702717 -0.017565987136497) (-0.8160011767281787 -0.8326423249321191 1.369636489705128) (2.013786207682965 0.2981399042816167 -36.05780553949243) (-0.6455058253077028 2.927262797215347 -0.8388787119655763) (0.3881862262006854 0.7271027357510553 -0.2605361848340618) (-0.0218339275355869 0.0003592285794715139 0.0009421433200246777) (3.084527705572202 3.406904433264813 -5.959977167310225) (-0.4422784858246011 -0.2603051959389507 -0.3500241963681534) (0.06664182192422605 0.002485704283746115 0.09204447430234104) (-0.04025175993512922 -0.01436950904838353 0.01609201147998033) (-0.0806111647783774 0.001066257248395173 -0.2178632635855196) (-0.1359214069096398 -0.007201263296489849 0.1153002279073898) (0.1411033350092342 -0.02718939041039549 -0.1606085547513003) (-0.00608118076303742 -0.01060067466064959 -0.01017154864647414) (-0.2987755653944558 0.2123081513397434 -0.03719559412394202) (-0.2183921458536099 0.0681388370647641 0.0478119126457936) (-0.04895434759631202 -0.1460547779010896 -0.1344036118630454) (0.01347269793921957 -0.5833853102849376 -0.8231747300645987) (0.8179501113946265 -0.6531755037606782 -0.4443648033133391) (2.340511695806928 -0.2010089863773765 -2.406846471301773) (1.744610301907465 -0.9873546557690202 -0.2200662898756198) (0.09048248978241125 0.4273067585302918 -0.0687783837046958) (-0.8023811715551817 0.4356139672974429 -0.08115154793113691) (0.4633305747556837 6.522275736373322 -1.673530482333142) (4.253194074162882 2.868413049893932 -3.461133255933365) (-0.07996114018205283 0.04781735435207164 0.05653797281232185) (-0.05609540918524926 0.01526257102045128 -0.01485980649050658) (-0.1057631685058524 -0.103914418871622 -0.03159839999798411) (-0.0390763943368473 0.1423987904826428 0.1059445159011615) (0.06242131379929957 -0.09495276649666366 -0.01863002979008239) (-0.05962671916533727 0.04475567313216845 0.1214254903088694) (-0.3111397728876865 -0.06464636001491195 -0.1205638652609499) (-0.1316653464872559 0.02091740823946479 -0.07943576610076872) (-0.0963033121411708 0.1698840682963771 -0.1551902459285713) (0.09592207170474329 -0.004062915383130068 0.04291470238694908) (0.338251825906247 0.117615489165065 -11.64670054603164) (-0.02307802828331651 0.02495273625706019 -0.007356202682525809) (-0.342284811206525 0.2734338995244932 0.01876806734297198) (-0.137679596342672 -0.3249535173833748 -0.0732722657416212) (-0.2630834637522758 0.6058931511589678 -0.02035050952770851) (0.08637290760056118 0.102106457055564 0.001562311477638624) (0.0427911702424212 -0.002736477156952313 0.003124345794695062) (-0.07954077466140211 0.1860618059414078 0.07909551662505603) (0.07126064306575014 0.07750451420502893 -0.1286324867595147) (0.1818318900924913 -0.01023943731619858 -0.1604466946089479) (0.0431153436235126 -0.08309359770881802 -0.07631150833177404) (0.1021682745970501 0.1740454925442592 -7.818408781976542) (-0.1227273241738701 -0.02079473640736703 -7.899822529001122) (1.586401033175071 -1.226727524185347 -0.4320136710416668) (0.08350390051222822 0.1008266321273439 -0.3511382729877158) (-0.03495577209018415 -2.009103323572653e-06 -0.01336695768111383) (-0.02647564480802016 0.004802800369420839 0.006395147361269875) (0.03127270959524998 0.0009864737216079252 -0.01172478479523482) (-0.1004155912190609 0.4712280999717644 -0.4074637405221935) (0.02273426674574574 -0.07145870050015134 -0.07792375856499002) (-0.1163702058788168 0.007749016058170077 -0.0101869298845084) (-0.06866103119999786 -0.03904946369395088 0.03628272713271855) (0.01501099731656014 0.007425170327790671 0.006951232921160939) (-0.1771495572559935 -0.09119237239887723 0.1098774370344104) (-0.02213310525780784 -0.02948405788422644 0.0889416707551168) (0.6827781249654677 -0.9260941328330263 -0.5768101229458047) (0.03875727239232211 0.3022308706638895 -0.795791802583192) (0.01686974179487471 0.03467196622957835 0.08414895736351122) (-1.435285249143403 -7.086973314749396 -1.906496376786019) (-0.6078139454876802 1.078414781871688 -1.310012990297099) (-0.7790407262566733 0.5279417314025505 0.2093889702913304) (-0.1245869350018989 0.2093436845143169 0.5002577906924119) (0.5870384229501185 -0.3644566827823807 -0.4787442047106916) (0.06121276242362761 1.58059687549013 1.22076161595382) (-0.708957118764578 0.5936939120479161 -0.6812277124564572) (-0.07535755937649397 -0.0305809591777042 -0.8998751913664587) (-0.0306168448112325 0.167631956009463 -0.002639157228979443) (-1.506160310953159 -2.364136285913446 0.4538768435703752) (-0.06619398538066605 0.129607108207527 0.07708273804697779) (0.6452267481035914 0.3505577811146779 -0.4290861307391696) (3.640989695785422 -3.445268614714778 26.89130851597551) (0.7598946822855581 -1.027439974852143 0.5229748274716026) (3.443811797104103 -60.37723721044407 -6.012710513506429) (0.0955758239760085 -0.08596726134553759 -8.274190141240942) (0.01621462120442018 -0.02226244987377154 -0.04001814945684562) (-0.04418121302710983 0.01829727570032921 -4.147443904316711) (-0.03259970274785454 -0.03183814654831722 -4.141808375771868) (-1.52928457530279 -1.399154817976545 3.362906672434708) (0.1161254412148193 0.007369865343481455 0.1089298557542846) (-0.229451458343821 -0.03840355724803868 0.04461117070809011) (0.3823474911774437 -0.05121200365597074 -0.4213578193637613) (-0.01279886819900842 0.07753763338482628 0.06587915368972748) (0.003429584193988935 -0.000500482403034283 -0.006384538748978578) (-0.7812440002586912 0.5773702435614754 -0.03400358808205933) (0.06161871514785172 -0.001296837871102799 0.02740290064589232) (-0.1100352832876346 0.03658771593539049 0.0285709935877605) (0.03723920760432348 0.04818694343193848 0.1430492460790451) (0.04809988844006202 -0.01635626572900254 -0.03352578560860003) (0.2028193765079076 -0.6997217653507465 0.6742627192221753) (0.02648847672251358 0.01619415880592704 0.08628936749066814) (1.584588429867482 -4.193506165339126 -2.900088455307274) (-1.618312519396348 1.203720700515106 -7.318751178732777) (0.546710353291339 0.1978275716233828 -1.007932449061355) (-1.57863861162475 2.001605216926325 -2.204170107995302) (0.2286578695207657 0.02326994119304319 -0.1505689941314717) (0.2751762358540599 -1.1165960211301 0.6558923850268255) (0.2383148013308945 -0.01869475488733037 -23.38903700444532) (-0.02271044789656878 0.007252476833588973 0.03852288876259706) (0.003536682288144938 -0.05691136849476501 -0.03088959024990074) (3.70012001077562 1.96217471447433 0.9617557209896427) (-0.1113222698102477 0.006905422996608951 0.07654753235064887) (-0.1074186707665043 0.1387343955023067 -0.06139380708183742) (0.03102948760280548 -0.06124976076263938 -0.0410752888135387) (-0.006228132813820621 0.01245619241602246 0.0006668805956065189) (0.2126063804724287 -0.08968486860246433 0.0476301416589046) (0.06252899349094845 0.2680509318711349 0.07656314302679272) (-0.136203099003631 0.02092225296223956 0.05434817906194232) (-0.3648031174503914 -0.02026410027593803 0.1854580826839773) (0.1966930561481974 -0.07380964868777186 -0.1099778625269765) (0.00901537296896214 -0.1564689294812332 0.1443936536201892) (0.1321297802805984 0.001526285323682555 0.007134740524309784) (-0.5039028424212202 3.699211387696101 -30.04741001636152) (-0.06622900315868756 -0.1457645891253066 -0.2618655526384212) (-0.3694240775477218 -0.1323466323337381 0.002533733228354804) (-1.649787127157401 -6.932973614227729 -13.34053732527879) (-1.485356096360672 -3.549625859789569 3.089021609977354) (-0.1408428748026761 1.472938021926499 -0.2268192517862637) (0.06550653096026289 -0.002447073403662174 -0.04389894467699702) (0.05254158885617093 -0.002469960881909051 -0.08601728774287322) (0.1621624212667013 0.03200390073838433 0.02469867862517292) (-2.244839024105684 1.236019207581892 -4.881314627096659) (-0.1525567465115682 0.008975810199236043 0.002390552172820546) (0.003351637973881051 0.0139759496430636 -7.613524289638504) (-0.0388414924430362 -0.000485924664824694 -0.06169781515586749) (0.002848918598826432 0.01031914212976328 0.002417446883925734) (0.03700060142612676 0.05416759465333439 0.01156100581320108) (-0.002855806732789515 0.008134426252381928 -0.03280510331722945) (-0.02241591749428654 0.02877705662247377 -0.007527590951005431) (0.08096895002320029 -0.03429422224116169 0.006862876890621677) (0.0009885191797980258 0.008013347735622482 0.002365987750974358) (-0.006044338202720541 -0.01126811022542111 0.01165694018598746) (0.001717040138805175 0.1354326658041023 -8.176743154492465) (-0.6416720318711293 34.2702557064739 -0.6230268642534933) (1.584383260968257 -1.381553342730011 -1.377414996867403) (-0.1122056118724199 0.4476204727883288 -0.4380826575916743) (0.07641957323989088 -0.08479957206717459 -0.08181018021182632) (-0.07009808603613162 0.0346151276039553 -0.004214494256847237) (1.443821218037023 0.7893194488589601 0.4372037979130954) (-0.5540669768592399 0.6275050064193188 -1.011816117731778) (0.2092178643606688 0.4220054571663495 0.350370997638392) (1.404036378711854 4.085475309524169 -1.909626534239801) (-0.1212713463317077 0.01138118183495083 -0.09632013883861575) (0.05304026879065152 0.4376603228182321 -0.1983838762033197) (-1.106324126331421 -0.1544950751997162 1.448546118504146) (-0.06271158805269911 -0.1508217025752139 -0.1098254590730969) (0.7803281956228513 0.09784044109433471 -0.2605218191248269) (-0.0977339469929665 0.008624049902600295 -0.07094245115881702) (1.470049241357565 -0.3538982854670247 -21.71637498509223) (-4.662588989286201 1.432283677347322 0.8312602260963114) (-0.3252566359258308 -0.1041733079228451 -0.9356835382861857) (0.1611143484324612 0.2109794661752522 -0.04144187130767309) (0.2448084695677917 0.1404830535595107 -0.1978752963473927) (0.0003361118375677873 -0.01183330059930776 -0.01065195051331887) (0.02067839576344577 -0.02418350767808963 -0.02636800774832522) (-0.05133966928862296 0.04480584759679645 -0.1397156163891288) (0.2318776708941366 -0.7207410122041382 -1.75517376516774) (0.001461765875031268 -0.01906499358475143 -0.01399698205057652) (-0.003381054850015138 0.002578354011126858 -0.003295547798278107) (-0.1079505804635001 0.04613887076145666 0.001359498774330427) (2.634416873278624 2.921963020965407 -8.014826910334637) (0.1268916275892107 -0.1202882380317485 -0.008414016581792104) (0.1343015839900563 -0.06249457164033757 -0.06508815307837254) (0.05613357276107611 4.257209617259667 -1.628254195267283) (3.229938188938881 0.0295582749305634 -1.834281869954241) (-0.8210913716671072 0.5902332338794056 -8.226713171844548) (-0.8116711579488778 0.4817285454931659 0.2553607464450153) (0.005960667526352726 -0.003684087215699969 -0.003501428910052737) (0.7040094675589521 -5.771844344587791 -1.279622669487719) (-0.001223434327171937 -0.002212180443763462 -0.004001087516659898) (0.368326007943536 -0.3378778995081232 -0.01273947062790481) (0.4396400015650507 0.1580129626940949 0.4868369515903017) (-0.02410205830562618 -0.2391825092541071 0.08146218185215792) (-1.873264237931034 -11.08740505177362 -13.70775573264723) (0.3692920263208876 0.2345218551629512 -0.2389633705998166) (0.02400768949501852 3.291844528918308 -4.58850357902522) (0.9390140126275361 -11.15737900839748 2.884892780940701) (0.2109705443334632 0.006774764204433558 0.1269437191396331) (-3.651879300456412 -2.562898836917642 -2.452576429300129) (-0.07302660055000619 0.3942418497385314 -1.09534113794494) (1.031140568843096 1.589171058611139 1.31552033892541) (1.004527640244769 4.313792422847611 5.136630334036692) (0.2919697108810231 -0.4054390376363801 0.577582735549139) (1.429607614227283 -11.35070143428864 -0.5390679859265252) (5.027141642451864 42.94568228608222 -13.30131500960398) (-0.522203895352147 -0.3337110336708054 -1.941531201427146) (0.3776698105404808 0.237136204362562 -0.3440854462011864) (0.004375845641788537 0.02671489470190559 0.002810208886143975) (0.07354382651155 -2.824489882575963 -4.949372478094936) (-0.1640856499864704 0.1248319043092639 -0.07382764029026756) (-4.223031047496564 2.4641761378733 -32.82605095079167) (0.2270733513775511 2.134376641514804 -2.497405190179024) (2.015789490274564 -2.881377718603483 -5.342497938592036) (-2.413435323459994 -7.587538145590112 -0.8687627178781194) (-0.02985583173135903 -0.210897475689365 0.2303038924272544) (-1.100267983323521 0.1708653975635944 -0.4115264534079065) (0.1820933003657954 1.806430793180346 -17.85473205831461) (-0.2001668424773774 -1.324034824702735 0.4489600761429184) (1.230895082970791 -3.61584346518036 -0.3268557307501349) (-1.43453621613692 1.085658686008758 -10.11859576185364) (0.4393366205651817 -0.01869200171774052 -0.1119332095405692) (0.4840024402891616 -0.01536281038700217 0.002627375128209763) (0.1684423543938366 0.1538707101952883 -0.1074623888802131) (-0.06426429805311848 0.08719873661349493 0.2469022648310039) (-0.06521834218838479 -0.04669196042959242 -0.08532952954082171) (0.6656215887952132 0.2272370371347222 -0.4956289150347453) (0.1012440495780057 0.2123807140774388 -0.3326645891761362) (0.0937677566063146 -0.08573134366138141 0.03538002725329863) (-0.2236380193402193 0.07203080107232669 -0.02107150646886458) (-0.1283587488482864 -0.04732665980812475 0.006070978652498123) (0.2383922912385447 -0.1042527566213804 -0.05128124750271128) (-0.1054224929101902 0.01513108438614989 0.05267274062260652) (-0.3437376928757742 -0.2977781405084381 -0.7096039049946516) (0.3776610611350943 -4.243068730055986 0.05966075717526816) (0.9551783761220374 0.910564163330396 -8.241328853253115) (-0.075907071771125 -0.04055595826545662 0.05589117976688923) (0.0214787602462104 -0.02292309785224141 0.02941190239311656) (-0.1582275447952717 0.1711120059028661 0.1695095660978788) (1.622841126905294 0.06565366768383532 -0.8296587358333305) (-0.1729259892560717 -0.05012548270246619 -0.05274236430118017) (-0.1442161158138113 0.4133811664505049 0.3219281966274546) (0.4589187810734092 2.007462055989995 -0.6724924492253171) (0.6003496557146488 -0.03549774129892308 0.08276041923696453) (-0.1505449714029919 -0.7240011180391777 0.4595747660989767) (-0.03056428080630363 -0.2053026853519235 0.5782900916396447) (-0.2690106583240249 -0.06578812436381115 0.3893798637400745) (-0.01760867942345568 -0.03636816785242754 0.04821011240283565) (0.4541513187857973 -0.2401884143707681 0.7408090661911437) (0.6494428711645066 0.6099133017496098 0.1066018514716665) (3.760227858044034 9.095107322988783 -3.00721097460632) (0.0170987962985284 -0.03350702987049273 -0.04427669079832172) (4.368756245407938 12.16553182376801 -1.551980114007298) (-2.367570979991886 -9.04055409219899 -1.601143810733624) (-0.03194448352714477 0.1211720912172116 -0.015670577054555) (-0.1499427658238017 0.3237366886187536 0.1563041913244828) (0.5725616375799533 0.4510543350289683 -0.5717924375759583) (-0.6392011403740161 -0.5321599429330468 -0.01177501141637856) (-0.02537178464380795 -0.0118504404107173 0.00417415679805129) (0.04034085934838702 -0.002220295329066264 0.03150011983713396) (0.2503585305992911 0.1100868051567534 -0.2429537541601634) (-0.140478343544749 0.09858735603442087 -0.0168890703746374) (5.13551697662122 -0.879425749149843 1.251009025383756) (0.00848313068047553 0.01914030896874634 0.01283757335536723) (0.005985997758393341 -0.01743699921793494 -0.0266876552178031) (1.545431771607037 5.637909540477623 -1.460959878484287) (-2.596161526752534 5.476416325243347 -0.9600319965268773) (-1.658043193576388 -6.164971818829704 -23.70841216664448) (0.3860052586942773 0.3677473551902848 -1.616684938684119) (1.42436146643499 0.8758088193520642 -2.726990827936031) (-0.5967013107795223 -0.3414339656559927 -0.3427251792797199) (0.2972739895734883 3.230235744881168 -1.153160363040842) (-0.5029937772733213 11.32256082550147 0.0672448738448671) (2.03114029574209 0.3328595999212119 1.166344293267402) (-0.05433194268908481 0.01785452920154565 0.04313000586913723) (-6.46994519477902 3.74765156625332 9.427679250667092) (1.016692746169234 2.508869766595939 -2.768747304323247) (0.05139881160805393 4.890640908063843 -5.78095697498801) (-1.136405185939954 0.5773613211723319 -1.017854361146006) (3.897737739307941 17.02689782458039 -16.05918825293698) (0.08056664527813977 0.002914188986384521 0.006749852219639307) (0.2988766931837513 -0.4021589460221093 -0.001147842861515603) (-0.144329576660938 0.3323133785599912 -0.01414093625098088) (-0.04482483353015767 -0.1035783130573423 0.05344366071539276) (-0.02297528221827756 -0.03424202748401162 0.01967441648573065) (-0.2020269871756198 0.08776137227115516 -0.1432327574650873) (0.2925728838890786 0.1033946741674429 -0.3578388713590216) (-0.03695250049663677 0.009776348367958159 -0.1041366172262073) (6.832748069620079 0.4282977076704717 4.080101751503959) (-1.913618264395264 0.4270707726007244 -3.664919472962137) (1.978748380967803 1.073645116898998 0.9425668988052331) (-0.04263495209527293 0.005012109332775065 0.07005605878999176) (0.06721761716865149 -0.391582273623482 0.2208165568027043) (0.6734905557876387 0.4533183669682671 1.352605409029745) (-0.06913819139756948 -0.2050248252656958 0.004930254165233836) (0.04066871988714799 -0.02640370491906231 -0.05860839617525111) (-3.165887795355204 10.81570537564012 3.188371448919503) (0.7894864329541893 1.661156733545707 -1.28801958861936) (0.4796361015830222 -0.2000931295640758 -0.1214919163341101) (-6.907388840272828 -3.879850830878157 -1.559961796993538) (0.7019401807794367 3.42496929710057 4.211266450699299) (0.9759935691211629 -0.3646538654198672 -0.6944030667547991) (-0.08030082691861215 -0.04569481669223127 0.1021540384151113) (0.06831864881389514 0.1971848456863722 0.07536304922776725) (-0.0001808637078719658 -0.03769512380903664 0.005726734997044756) (-0.9758665459523064 0.2046967978131176 0.2608196011778406) (0.07797355429931052 0.07785959687940099 -0.0249198653714901) (0.2790974928997672 -0.1034817537812616 -0.03210329601317879) (0.019233231161389 0.01293746381817236 0.04923516277033267) (-0.06802305124723541 -0.03552540896982063 -0.09324854061347927) (-0.3107037367605134 3.026821706253528 -0.8099648882273679) (-1.718576648678211 1.052707481731072 -4.344017494193333) (0.406984339887673 1.227767126475296 -1.059666599922305) (0.09883311386395804 0.2293191742349223 0.03993463404576513) (0.3479692408930544 2.737812593999727 -3.527225787984924) (0.2630051007586308 1.362377498525372 -1.758462283561115) (0.1391203139540284 -0.03348668961646988 -0.03776271435203361) (-0.03198159088188184 -0.02830033186960211 0.0792412816045811) (-2.529310827063272 14.99133677325209 -0.4022956817369483) (-0.7334117409504627 2.025612955957929 -4.737821818434638) (0.05443660737354394 -0.04223197157016273 -0.05709327786773945) (-0.5035509973949099 0.168438768269073 0.05184098021347854) (0.01052711254033648 0.5498395340983491 0.472285962554839) (0.2320360378678869 0.1130999999841331 -0.1360157238059616) (-3.81971898956753 -10.78692039861354 0.8185972190260675) (0.00682985253088042 7.303128142531257 -3.695223043965489) (1.440793364399775 -4.657027655922963 3.684306171729991) (-2.435078767291039 5.294247140423204 -1.472572349015818) (2.024818290778913 -2.42444855933444 -0.07328799210783872) (-0.2155856987552628 0.1320067372137727 -0.05825438874604338) (-0.08575442592207713 0.04736449897292737 0.2344997298405952) (2.902785262959742 60.03935950719806 -5.567821946731863) (0.08589067758118241 -0.2539607204969217 0.05617405461093899) (-0.6724073618596493 -0.004403240172916045 -0.6712003584403445) (0.1724089427972888 0.07918458810708418 0.01698549414422428) (0.1441868655843451 -0.03438572295617665 0.02904654992034282) (-0.1411035446615262 0.01039818786870551 -0.06621675272186006) (3.341079237758211 9.116111778965383 -9.539260459315649) (0.02986534429066222 -0.01979023337603409 -0.03574830618817458) (-0.3187060060564877 -0.1651264479263244 0.07034229073944354) (0.1014944252674228 -0.0005506870109899028 -0.01708411510062573) (-3.740334925254316 1.808332502231967 -6.268911079097109) (-0.7152222678721369 -0.4153128721276531 -0.763377833394413) (0.1048739855571615 0.08144293854088445 -5.41485640879559) (-0.2559000392662439 0.1207453417417078 0.2446704800581035) (0.3888150732545996 0.08127196989118918 -0.6392755788488249) (6.037445567991046 2.783190783332476 -2.668098328228173) (-0.1797028833594808 -0.3760539826573214 0.690262526992346) (2.469535257834558 4.547465830790692 -27.49995923941178) (-0.006159651660052555 0.03239309232417844 -0.03185334888654004) (2.853803881626852 -0.2360146765694424 -35.48771685016181) (2.853940009851153 1.09674862059613 -3.464300135428709) (-0.03390518441215187 0.02472669731858943 -0.15555221775374) (-0.173582172297027 0.02305763692058421 -0.06164531251740576) (-1.321095783523895 -1.063701295704075 0.7886468309744736) (-1.105927033229385 2.459083425050165 -0.9379722792177786) (-0.1240443210906695 -2.667045636239771 1.448052090174706) (1.183306989824838 1.011463062746544 -0.4338515959464716) (0.6367297884699514 -0.7849864678195572 -1.019895727528812) (-0.4208509378799496 0.3203531376166841 0.1403554800004686) (4.588819577531439 4.167885316448112 -1.949196551359827) (0.1059948998258375 0.04080161664794894 -0.167603238503289) (3.23099997024276 -3.393342806097881 -34.76322973216409) (-0.5572785778460123 0.1267039178881839 -0.6490641924493299) (0.2258200291367279 0.01793229558783969 -6.910869300260893) (0.3401074813732668 -0.1028829920398771 -0.2223505528672761) (-0.1205121045948044 0.1954947117271991 0.1528234367715975) (-0.05608349862166517 -0.09646681071435625 0.9669273137432998) (4.358710733577121 53.95645678913384 -8.164050697866141) (0.01153288903757713 -0.01018652641002916 0.0002795686432992923) (0.7536024532028252 1.714223044490313 -0.07644905422956039) (0.0931335962795765 0.07786940433866546 -0.05868418579864723) (1.355433022348931 1.70347853887311 3.814534893649189) (2.477690936752675 6.07482028416002 0.1330538658660956) (2.967549474160685 7.597721599277032 -12.08103253503977) (-0.08478537271777778 0.05264067555298414 0.006333733895209881) (-0.0375067747925457 0.2664269352350294 0.1169455601594464) (0.2784063038394179 5.489330343242937 -2.028222957329079) (-1.4452525281454 -1.70909022087048 -7.091622054676552) (-0.5293307754442703 1.240155323583777 0.6742698839700577) (-1.103726247693071 0.5450250776951546 -0.2516449706117643) (-0.06148498445582804 -0.0936357016103863 0.04133996751065448) (-0.001301478941244061 -0.02567991596461518 -0.009618019787016124) (-0.7799758805033481 0.2626243643313534 -0.3430649270917403) (0.6708740378001783 0.1330264230864102 -0.3516777321937918) (-0.7492820808196968 0.9880537510773704 2.589034628032258) (2.432624733368752 -1.543105062277523 -0.608647843228768) (0.8394801803929793 -2.198921063922168 -0.6171162623935812) (0.09090664858764706 -0.0003150855044050729 -0.05921255873584934) (6.080115972086698 6.204158118910772 -1.65562106071) (-0.3812109740876528 0.09980748545282714 0.01238481015700023) (0.05143306457559054 -0.1192234789279018 0.03374846627618138) (0.04429435930944021 0.07355374221037832 -0.05384605915867231) (2.806520554485236 5.028367742907984 -6.820142945009852) (0.0270154057477239 0.001650677802076997 -0.0134075370617187) (-0.2206294725928069 0.9657347317268081 0.7176522786293418) (-0.3370494320235385 -0.2945687846662302 -0.658256999361708) (-3.23819323798734 -0.5968354791926319 2.539176723557865) (0.04014572440302647 0.001635257913588775 0.04340105753609205) (-5.762520081721656 9.312697621244158 3.528799535837186) (0.6402698289157314 -0.3905150357856658 -2.565198007125078) (-0.004477251098369828 -1.383791448002534 -0.9197505925039146) (-0.5719940881373651 -0.05739093676643028 0.4003232498008744) (0.5321840178259816 -4.853220485960166 -4.687562650048022) (-1.127536162188615 -8.070365221059339 2.618829496217536) (0.8862195414639933 -7.635792318987798 1.753313369804017) (3.183561485605681 -6.839207877903924 -7.679935260521683) (-8.041937516022429 8.159479109659641 -2.764198334146424) (-0.008946932384332787 -0.002291111255309289 -0.002605099635011625) (0.9242743534396598 -10.2690590164067 -35.86317587004849) (-0.2451008908152245 0.01301041311259767 0.001227337889109736) (0.9993746827346995 -0.07126295122274101 -0.05720778648465918) (0.3735221907957833 0.5331780668714696 0.356195548099352) (0.3022344892428211 -0.7005974767225051 -0.1888540862536219) (-3.260966067729718 -0.6427623124956336 -0.07850767199196443) (-0.3597450175857534 -0.09994505864864274 -0.3754603815054517) (0.3008290777261936 0.1292869302425841 0.3185610848709328) (0.02347819025252031 -0.001476457665785922 0.04070085148710665) (0.1012293872159056 0.071158800715167 0.08269281215297666) (-0.1139331876877284 0.2991089974654877 -0.1805912731447689) (0.01123475167235792 -0.1894742205241509 0.3826866493485216) (-0.03430924023750651 0.005625061409162333 0.03269828680429963) (-0.07641131608337169 -0.04027945598593059 0.06774832748234574) (-0.008101513705090995 0.03757310872015603 0.006434029988015217) (0.4309463222128931 0.3916500481928757 -0.06734653835600744) (-0.0892108826575406 -0.1676472205802488 0.03989335946461836) (2.086204895425309 -3.835451955783918 -1.286251536695088) (-0.09419873390295017 -0.07240266128112134 0.001585047044186401) (-0.07506533519980724 -0.06069577594871642 -0.1082364219431726) (-0.6788915790830048 -0.01972210483135617 -0.3106814493321432) (-0.5349608010617504 0.288815604655724 -0.4080741178509846) (0.05366243492550705 -0.05093025465727907 0.01541710220875363) (0.07438998235044249 -0.007202870251841215 0.07862461999059786) (-0.02145524187304485 0.06410741890447924 0.1271300002269936) (-0.04575858031566913 0.03234916221352781 -0.02101259227032168) (-0.3242790249616807 0.6276655573460775 0.2418903970267782) (-2.570087489943288 0.527506849230992 -2.856707282586171) (0.0446194337864927 -0.02648201920553894 -0.06981852575201639) (0.04398709711854344 -0.04057367787214742 0.02849679731010226) (-0.08557447720909345 -0.001592099759891101 -0.06387100419340896) (0.1540614800648681 0.1343432319958552 -0.1212872602964385) (-0.08310702486378257 -0.1001704157944662 -0.002997444098435456) (-0.5739254655134436 -0.3125165060242385 -17.4609545671691) (0.3624695652649845 0.07546245255788867 -0.2720321973441809) (-1.735372791067986 -5.63089240574867 -31.4784094334535) (0.02374626382447756 0.03553134176637417 0.006194102536984202) (-0.719166179480678 4.422241885162457 2.919245271479423) (1.611709172687508 4.249159347017523 2.732151396798877) (0.5687081473082904 0.7872642095994691 -2.935158187940465) (-0.1856541203129337 -0.01871311527127861 0.1949968579952965) (-1.20469339032264 -0.176035951456065 -6.95891202310264) (0.1386576047732564 -0.02213242132481062 0.0306900172822212) (0.1278292632303241 -0.005785752958627152 -0.00798940032763535) (0.01903819573710201 0.008247998658145964 0.01102131472128758) (-0.2692174244286964 0.04753779874095349 -0.02549432095245895) (-0.04530053008131127 -0.002357622891160732 -0.04301901819119956) (-0.008036403798518539 0.02955662214443291 0.02849665907721847) (-0.09211378217715332 -0.02992123311563704 0.06491706284425655) (0.0660948744831832 -0.0308121905172128 0.01670489288643555) (-0.07323704822542174 -0.287517027486235 -0.01998406616609731) (-0.4674747528025118 0.9829746840459174 0.3942097632233922) (-0.003065472022675438 0.08471362720335587 0.1358160902865643) (0.005834827517478077 0.0179688795990167 -0.04441155373815891) (-0.3985976157211317 -0.6300600220574187 -0.1713462621102513) (-0.003111329709666905 -0.2177004044560701 0.02169776745316253) (0.05318896080843543 0.03098364295803217 -0.02590850900337025) (1.04851033047335 6.556375531466321 5.975242962941178) (0.07119647355267891 0.005972959874355168 0.002324990486665429) (0.01115102449839232 0.01149104098478041 -0.00211273117726583) (-4.818904252942284 49.29763418071725 -0.7421564000060624) (-0.5166677868085469 4.112786113842263 0.1724716282747414) (-1.643152683492645 -7.696691099355032 -1.374873327423585) (-1.153310592527621 -0.06812031346842051 -1.817492567374974) (0.9690047419566599 10.47923562788479 -2.135802620155096) (-0.004276907165631751 -0.002547688847634709 -0.0003351598813795247) (0.3833607766711371 -1.181709024701819 -30.15964393495522) (0.1877153090622548 -0.3323655999811039 -1.533970730283585) (0.1573279560456828 -0.12192034839739 -0.02608534885956064) (-3.009054501082057 0.407248910230064 -4.717090129665451) (0.03560087703188611 0.1394559034459443 0.08357019206114714) (-1.08500536357037 -4.288362760096494 -1.266778297394329) (-0.4716027660425028 -2.22832450485496 -1.20964373798666) (2.441891478913099 -0.8023292963099093 30.89183428732316) (-0.09244305012851078 0.2116776990071482 -0.1809036739635425) (2.618070495179798 -1.936460539695809 -1.146043035160059) (1.885037135486427 -1.951628181493157 0.3229253579105227) (3.566714308012408 -0.7414739061832072 -0.6496109504739571) (-4.699159016220216 -4.440560104114892 2.724901161397069) (0.09147131074928128 0.1450139885747231 -0.02866822624869724) (-1.621063456104587 1.460911691720316 -2.373556656514058) (0.4569408459340311 -0.05213717125152335 0.2317024302332313) (0.1744107249778751 0.2061676240595563 0.0134554658510062) (5.335929536521079 -12.25970519080613 8.944576386683632) (0.04994941752633156 -0.09963750387105225 0.1713752238608083) (0.6613086827178931 -1.483784159946314 -1.154323949772225) (-3.80318764750481 8.463591296527337 1.999839257000267) (-0.066654258700937 0.2773337864236662 -0.1370441210907108) (0.1078808948526789 0.03467506421662373 0.05181998024279671) (-0.2333756973228699 -0.03317038356027846 0.04937048464666934) (-1.564015783959292 -0.359602390839119 -0.07760322146089269) (1.203675930294031 2.269105694095933 -4.435681506709815) (-0.3955469611020236 0.1419276306572228 -1.248799484565165) (-0.05346720704700283 -0.07711702767604428 0.01643418228053097) (0.05180230812385252 -0.0485390155306222 0.1242780849354984) (-1.848935194115169 -8.59244184327269 10.43972422342942) (-0.3323790351609464 0.01103658821146453 0.02811943987441843) (1.189580587276682 0.5357965857804285 -5.400044342700265) (-0.1709572186788503 -0.3029598302129607 -0.2663365186929036) (-0.08462626631264775 0.5761565776660709 -1.185449962662966) (0.1534852986024185 0.03916047740586918 -0.1393779182753337) (0.2006134852669458 0.7672926664644963 -2.313860575079407) (0.04064278470200158 -0.006939336653920268 -0.05847910423322776) (-2.093437853865535 -36.5246173181773 2.647333462668129) (1.045962858904243 0.519854870534795 -1.251830622216773) (0.5919147032052862 -0.2340398833178949 -0.9700783527305787) (0.1363697798044436 0.3414344297433224 -0.2587772335755003) (0.2473022592310464 -0.5157831336207429 0.1702157478527983) (0.2814603841585885 0.045753887125747 -0.6021146461104091) (-0.1624535690258738 -0.1505063733993658 0.4554468944136009) (-0.03305566991128916 -0.06316132968660601 0.01588273630986912) (-0.8414541357792777 -2.750180181474788 -6.351449084700999) (1.384874890168933 0.3349852308616852 1.27074676343053) (0.4767006476808572 0.01281554381815766 0.06012976243588147) (0.1751748567643877 0.2519981656846577 -0.1454393238765035) (-1.811749112699681 -3.431226509908384 12.97507318824689) (-0.01881054085476633 -0.03681829819335633 0.05498172878297317) (0.8600651493011061 -0.5245426282960702 0.4732532914160882) (0.1695560110726132 -0.2020571304364802 -0.2094690781199687) (2.697789551881726 13.02914425707382 -8.979596433749913) (-1.653715839227917 1.417511057549894 -1.851123904030005) (0.4849659169093737 -0.2135539419211034 -0.1202549139012052) (-0.4479295077591305 -6.213390561583465 -0.9528057141103213) (-0.215120973766776 0.01402063101951564 -0.0866411588383381) (-1.464298280504516 -2.807082816468411 0.9420324569831724) (-0.5666669318483371 -1.888448568103809 1.696795124837795) (0.09614716828068962 0.3037448587070277 0.00728632770584197) (-0.5604377689243137 -3.382588414269474 -2.239897016686224) (-0.7904240735678461 -1.638812749952274 2.540694281881393) (1.762524633912308 -3.464489019598443 -1.725828964610115) (-0.03386130731367045 0.02813344918213193 -0.02737954671297559) (0.05116228740229982 -0.1742672271909902 -0.2874592926662171) (1.213755959802468 2.725529270661013 0.1136446840200575) (0.3359617260558319 1.105572864911364 -3.048515661320083) (-2.467973238598995 -0.8402055768415461 -36.09491490479187) (3.388937605831218 2.671653078860432 -5.283550045556097) (-0.07289736520858991 -0.0008088858223618918 -0.01906621908881672) (0.03314913130248297 -0.02423202955007494 -0.01495172309949975) (-0.6672405167639097 0.3837372343687209 -0.5514112300642344) (0.07111419931904191 0.1305241686671904 -0.02106437664803554) (1.00841853415646 0.386761893596283 -0.1113784575770358) (2.457004192725083 5.153022779442749 7.247902234974668) (-1.101494133274121 14.85587003303527 0.5458726544607205) (-0.5136165020190311 -0.3070019633841936 0.3845983198886406) (-0.8024311792227269 -12.50795722452196 0.8512077750207673) (-0.7273716385603297 -0.4246950435361021 0.07252027485022192) (0.01848028755135207 1.45994116251056 0.9220025729040441) (0.4913344195709841 0.2707007980613353 0.1172807863022826) (-2.600795949534808 12.78943430906267 0.7092277243495506) (-1.380454167718572 1.271686371251315 -4.344087832982108) (0.1240345608256929 6.557520428409664 -2.587497659578549) (0.169302839549359 0.05157912894195882 -0.2427099764751768) (4.201115286176982 10.38709751593565 5.636812710870932) (0.5498344588497301 0.1528520686488671 -0.1519985723370507) (-0.1422005565975521 -0.05981567774506497 -0.01903648027304091) (1.010946626959482 0.8270300305744437 -0.7670690458353944) (-0.4143165100837728 1.059655637921038 -0.4353022852004528) (-1.610055419176047 0.6605497373170133 -1.055961613465989) (3.793945302952048 -0.7150764753071688 -6.378988520685735) (1.19556264464981 -0.6800678845736799 -0.7446720926580072) (-0.1224848556947813 4.005894635419933 -1.21679432640175) (3.187031175208749 43.11359406173048 -3.272208401305924) (-0.3396443783632569 0.03709317276867576 -0.3384996683001169) (-6.057524709179159 -28.58835537251375 4.258211744017476) (-0.4341481095340842 -0.04820754579433202 0.1439149023593227) (0.3739987950130914 0.09808132017805385 0.2042747750767321) (-0.8580765450459875 0.49334674386999 0.6349354539616833) (0.02881052111294777 0.001006474528430196 -0.1738167025473264) (0.01310993273918267 -0.002777717565071818 0.001138541814905971) (0.6715499150466822 0.4270197527838842 -0.2394441709599912) (-1.312755391979664 1.22018148766649 -0.6689904093946364) (0.01321895815448405 0.01765891463271218 -4.552995976033287) (0.3030143459139565 0.006213499110162592 -0.218693481863912) (0.00555517487821137 -0.01266934810647164 -0.01130595864734749) (1.163806679396103 -0.3089042528582363 0.238150134664373) (-0.03041201903342658 0.006295793336735581 -0.01182959429889749) (-0.2801691350204766 -0.01653794769891624 -0.08573362395777478) (0.01841655083682651 0.03537170397039275 0.03599810811671716) (0.3904446519129482 -5.53885890217979 -0.1553507165498251) (0.8973425284887578 -45.81288006527014 -6.593078080336447) (-0.2471568014667223 -0.9905260931496191 -0.01954597725470492) (0.01380194232383156 0.007952093526268061 0.02894257851551228) (-0.01798818661780306 -0.005131004107715668 0.01507162826316735) (0.2032569935583181 -0.8477378160662374 -0.1740397932947743) (0.4176239801498102 -2.793380497833772 -2.968638976743136) (0.5864985123674302 -2.448390451332779 -3.112712064793153) (0.009051788633901152 -0.769385952152384 -0.1815796712359654) (-1.027233952369231 -1.978852469333099 2.695441705434005) (-5.494474754639787 -0.8573072908506205 6.345257057600856) (1.459290001173148 -1.392647466660753 0.6657907271255493) (-0.01499703534686203 0.001683536204038352 -0.01639626030117729) (-0.1539688615766399 -0.1266647148405969 -0.2117603078453774) (0.419186826656723 0.09802018585312433 -0.1235448550859633) (0.03498980481907098 0.006360556809490829 -0.01999477356733131) (0.1132087224423643 0.1832132612500288 0.1147775898344364) (-0.2749389721148561 0.004750202704841985 0.156610441099856) (2.537633062962051 5.927116009516307 0.4708030167060355) (0.02481106573943127 -0.04053864023978422 0.008143459149384634) (0.08854428248757154 -0.08940836115608548 0.2271181047222499) (-0.1273518088406124 0.1897998584583318 -0.452493155161284) (-2.608306884215972 19.09753754994118 -2.45973122183167) (0.1349130187902565 -0.1064894768053114 -0.05899050586740094) (0.6018913814183036 0.2498605520489012 -0.543806070273482) (-0.07520597405788725 -0.03882152966815227 0.02827406814931828) (1.346041066574453 1.949829694457837 2.592910636113248) (0.03965236816927565 -0.2888530482722849 -0.9072631662448745) (0.01695485629751224 -0.7523600982739781 -0.05602819554882088) (0.04852810699023195 -0.1010683560398337 0.0450727363147459) (-0.03892480882691733 0.0934258192204632 -0.0788952597643976) (0.1636524871757217 -0.3220038893403353 -0.09874566525449005) (-0.06794243418460738 -0.03026490467744696 -0.08992798743400295) (0.1778114728594846 0.1552766368690043 0.02652243114296013) (1.310906574072949 2.181124249995587 -0.7263911139913271) (-0.02487347952276639 -0.09276001787219201 0.003192683915506954) (0.07456259365329818 -0.03870741008937321 0.04348779620396449) (-0.6696613848763153 -0.1600692110540205 -0.4595744460374021) (-0.03261073250784402 0.009136342502036432 -0.04031660525588796) (-0.5421451820779927 -0.1808415206020758 -0.04665214122753425) (0.05741740222584318 0.02204891027402185 -0.04105008057251176) (-0.1425362448017855 0.01119238551125685 -0.008830076504009179) (0.2644279824810557 -0.2597575315284242 0.2221901992720367) (0.03042438683419608 -0.002758912989217245 0.005339976808092077) (-0.0002808754252709707 -0.04522749090006674 0.002970759310956216) (-0.08015309714314696 -0.007378388565145548 0.00350120166919015) (0.00976908405416764 0.01971342712588823 0.007643161157508005) (0.367691047855255 -0.04290929258442895 0.4270683835311293) (0.0168709209163952 -0.004341944338320096 -0.001257628025468131) (-0.3930629143170477 0.2765960859647922 -0.07371884570656997) (-0.0246107390111515 0.008956273641072068 -0.007431572263804097) (1.1502854766138 -1.024121165002704 1.010711299955412) (-2.120888736100369 -0.7840183382669064 -0.8208836189141631) (-0.01907506324486741 -0.02330862762327145 -0.008310339147158959) (-2.271770195536868 -0.6214024486210794 -1.150654141349859) (0.01631297715449803 0.5752769657689443 -0.2717294267087451) (-0.2874009285170307 0.1826417333493693 -0.2589498542733962) (5.836800822990703 0.6893303569888118 2.086517364982404) (-0.1179967300680337 -0.03128754292255439 -0.03390567349594965) (-0.1704572700579405 -0.04958948115065311 0.07315091470861321) (0.8416517583562875 0.2539935527642344 0.5727117114589544) (3.618610511570388 2.535849672644523 -2.002835759815858) (-0.5686215504189336 -0.629288503830556 0.11136961525838) (-1.296750791051508 1.904508539200647 0.9742010709188627) (3.50895004645802 -0.382067755055712 1.01094744013665) (2.225021110690523 27.23707392373594 3.480547993130469) (-0.6565108878340326 -1.043276576099818 -0.7391380818081391) (-0.0366513223580002 -0.158530430751206 -0.2472187412149996) (0.1438147059936893 0.006383589088150786 -0.1032685324516734) (0.04788252393473311 0.02974261939150379 0.02325106990082976) (0.8267195941720084 0.1909420321148438 -0.8524163815464743) (-0.3111019782187044 -0.05520795417614005 -11.18844438816237) (0.005394868080056028 0.01867682197408764 0.03674142214504814) (-0.01368042460774088 0.01659657876959733 -0.05597152593213088) (0.2229306748118249 0.4751201742695103 0.6330824914081988) (0.01907568718251025 0.9842429250825586 -25.93512133650835) (-0.03857048379729222 2.075021658220495 -0.8134459635760196) (0.05814599955289984 0.03793609881331964 -0.02469848122357052) (0.02963423354902747 -0.1123996720692948 -0.1599563025313691) (3.035347638434478 46.42779954045235 -2.929433399303441) (0.2769274374277716 0.009707823625968573 -0.01413092097536985) (-0.06631585364639862 -0.1657773596988717 0.05790494332478009) (-0.1898032795703654 0.01238333981648534 0.1068394975791559) (1.357638799126868 1.353637064808603 -2.556487182272433) (0.4425691686267268 7.437555852187391 1.144298274486445) (0.5716103089462817 0.09374756076443053 -0.1334717519474738) (5.021214649605866 -8.418855479550244 22.85063434783603) (0.414034015071594 1.484977623334765 -4.608264034554591) (-0.6747786212369267 1.862870298984697 -6.462222464758947) (-0.1929896319364436 -0.9420738899689195 0.03759306041796315) (0.5094270226015779 0.04376359233366707 -1.198451202086351) (-0.267754527789089 -0.120034535455258 -0.1671873940525291) (-0.7140875224134704 -32.01828269167542 -4.119851165463823) (0.5692389763587495 -0.5057912749250644 -0.5546809352508216) (0.1457555283519275 2.088097439997694 0.1182830566632724) (-0.1471519482929879 -6.135613291475295 1.872288961708203) (2.995599471823531 38.01238329359533 -4.292978960006799) (1.572472307519663 2.531350815426678 -1.410039159801476) (-1.230449388830357 -10.89901206835347 2.167797555785885) (5.872421361710855 3.312325371530488 -3.114286376784818) (0.0791838980197197 0.01901730402292511 -0.1641946336568652) (-0.6089322768106786 -35.82339530562979 1.704085498741294) (0.6913906903792775 0.2652881891434825 -0.1075761156887397) (-0.1047386868583017 -0.02574551302459897 0.2105066401573703) (-0.7465423197573658 -0.7933942726656779 -1.590419308010352) (-2.006353699647085 -15.1779771207744 -7.407394332733058) (1.296987999646905 -2.647126595582122 -6.290978822795862) (-0.06339696151231899 -0.02584190068688399 0.03289813771718357) (0.008694306186509293 -0.02052845908775746 -0.04226442163631739) (-0.9756654192585617 -0.2152855466849881 -0.3809247931277507) (0.01165926056061284 0.01261867307274552 -0.01978565628489486) (0.03792342410535424 0.02395452051134654 0.01606697684942025) (0.004758941646716299 -0.01251011625022999 -0.01071185630420895) (-0.0719831745726783 0.01830985237647131 -0.03530924656449087) (0.1532501593709017 0.09268847825243982 0.002608397716563661) (0.07695537296831054 -0.07181111598864071 -0.03907237628088516) (-0.05554530461176033 4.35577197350108e-05 -0.01437496883152565) (-0.02307177326690721 0.02153700993789578 -0.01087653991719156) (-0.812068543878834 -0.7736752746945039 -17.68079898740608) (1.163549005684844 3.094483743642153 -3.184482336973137) (-0.03680517121820214 0.01348453377786825 0.01351221880680809) (-0.1305875819815336 -0.03998255619892611 0.1662318845358292) (0.04485431871506036 -0.9828984407600109 -10.44188758429844) (0.01472029872126501 0.0540550356435302 0.0960768746402362) (-0.04158777702538279 0.0168301905075872 0.02009067989782342) (0.01316247928026635 0.008871798326367674 0.02280166496482175) (0.3847851576905 -0.119735689720962 -0.04339562479766102) (-0.0658292763643025 -0.1019360381109278 -0.01472184121224865) (0.759863275635257 -32.1941162683208 4.918421207210952) (-1.370876808223909 -2.036353935495848 -8.200867828582357) (-2.762513271380021 0.7048620866844089 -21.17516342279037) (-0.0608079903676812 9.433583747784878 2.146087349243296) (4.309403245998978 -1.897905036549955 -2.004889150017824) (0.05519969965548481 -29.94889145802707 -2.522976004307861) (-1.306738902502707 -3.33476500145324 -25.77977993980137) (-1.762863876851748 2.273007005838792 -4.864456207171556) (0.8464602410207286 -0.7268560773123127 -4.633001278109553) (-0.0234372995314015 0.2748853422285389 -1.068105603024836) (0.2069182973716571 0.294424067675947 0.04031994543904011) (-6.683111591488236 0.3420228777573218 -5.934289522919055) (2.676367587033351 0.8726196695767623 -4.592385239836113) (-2.529604124246221 -3.045617339850547 -26.82849156837346) (-0.0804582446538791 -0.7773350743960575 -0.112152517041996) (4.33915056023747 0.9939302702386942 -4.243226249059954) (0.4091976239873162 -0.3005911108683458 -0.516011162264411) (-0.4203407349562333 2.099704386029678 -0.4548424863675357) (0.006793491519830608 -0.02770637845277141 0.008675753656344046) (10.11217647632304 -6.386216544049605 -37.98928360289044) (-1.610323686873812 -1.033619385294833 -0.8293369836491397) (1.11029669594125 0.4205812107426779 -0.1481278952554816) (1.426500921857142 9.002670510672948 -1.420991574787662) (0.1404358829086332 -0.2502224133130064 -0.2253823209958341) (0.67020717294678 -0.1620022336606037 -1.745542524276512) (1.344870814095215 4.661749058663064 -1.666359020946163) (0.2231497854097985 0.002014382857647892 0.05727960568422012) (0.8987327215158685 4.684178921261464 3.393499298658724) (1.964047104398531 -0.537903971177258 -4.117194514133947) (-0.457868489701913 -0.08741604391996655 -0.06430822179718616) (0.3948130121002286 0.2870831466196163 -0.06247897783583709) (-0.02947870108944305 0.02269567026552782 -0.04151235873515303) (2.140839241254385 8.948341069309755 2.150359387355955) (-0.09384473993064346 4.816654822222314 0.1116262304524768) (1.565905435358021 -7.688692144710618 -3.604501418531328) (-7.931282695977446 -1.2227139099454 -5.778666767031384) (-0.02157784518149479 0.01897903518471977 0.06076356286278296) (0.00104641847198763 -0.03211548230687912 0.02835998930526064) (-1.458308716406959 -1.866192368188463 1.56441227686504) (0.749800237821302 -3.449456530038527 2.053814919984537) (-0.2947567142120096 0.7996636527745686 -2.776297676201908) (-0.1777664019859785 0.04212372772287017 0.001280377616931432) (-0.2042409438222956 0.05334255732999618 0.003767692549680093) (0.03159731566021468 -0.0274727742298824 -0.0111037519545115) (-0.667972793095672 1.437634708376216 -0.2052213868773298) (-5.97006960244559 -1.861748883010933 -27.79145261947621) (-0.1400357441514738 14.06632424547705 0.0837046661346908) (0.7787394629542126 2.159195007478734 0.06729434369435261) (2.289572233667534 0.01224241607056631 4.847939293463573) (-5.628883532077955 4.748859708149171 3.894009912497881) (5.209710550293025 2.966568459191869 -1.715304573165005) (1.254300832177947 -2.09288203094107 0.1014845921857999) (0.8057149259780606 3.090168457822544 0.1284897952607352) (-4.090194010918009 2.073820248202382 -2.252392637499833) (-0.414404397574988 -3.016015839987825 1.407494594752122) (3.087979628297534 4.246397786742094 -0.7571090752349288) (-3.215811959420861 2.792395376989904 -6.100597274619873) (0.2445656540767149 4.244512318777954 -0.7376248760432998) (0.1587460822000852 0.05326261758481761 -0.06217431143986386) (0.03708092304253588 -0.004098296521953983 0.01784607483572909) (-0.001991996429599847 -0.0001214454455747289 -0.002838132446202858) (-0.03183070113187507 -0.01599934099704002 -0.07127205925185809) (-0.01425148412564009 0.009651842096179227 -5.570263028741656) (-0.001761271695341338 -0.03537305660083885 0.04700771208271762) (0.1792701851911086 0.1171543194431921 0.8341744941283445) (0.1097427096416932 0.2071836451826645 -0.2059427087226749) (1.130386790998967 -3.799425647480783 -2.916080985960783) (0.09527480178375015 -0.07448713605861949 0.06996363775050801) (-0.0155267259807117 -0.1463491720812974 -0.429843246241269) (-0.01737126385731165 0.05120840006040275 -0.1376965403718911) (-0.02585019748512228 0.01401881596344242 0.03527946024401359) (-0.008366362530843101 0.007018628738693258 0.005165776917471297) (0.02713025778883943 0.01810635843060513 -0.02385209733431014) (0.04119393779069991 0.04060535680023287 0.1022942230324121) (-2.763310820258881 11.48995744846372 -0.5624315621281211) (-0.7510074656525154 2.986808306119137 -4.183529627982546) (-1.225239348815313 -1.761176338295845 -2.311373844440465) (4.690640558751531 2.575085719470953 -3.819434099445754) (-0.01405191327939696 -0.01336268801911381 -0.006669733047602348) (1.418703642013511 -1.347722222811089 -2.588194499077476) (-0.4215695762846154 1.03087380368952 0.2337686881702859) (0.05023759251391263 -0.04817768501889449 -0.0816811062349045) (4.255933865322161 32.05935890913206 2.458418869836529) (-0.06318312841920481 0.09757017145927677 -0.002689351584191202) (0.5607739145827311 0.3566216252979937 1.207298090328894) (0.1458679186548367 0.03146518803983654 -0.1680470137174035) (-0.1315637055881413 1.15598595750451 0.518790924257051) (0.144432355585436 -0.04339709521970204 -0.05998138225955255) (-0.07042409977580938 0.02797159124328268 0.05380565848158778) (-0.1799123413171022 0.02052055153498443 0.1752335791101751) (-0.08261996679655702 -0.1313354326206221 0.09158092174085651) (0.003952976123374904 0.05800036894126063 -0.1256629079016625) (-0.5551450167495688 -0.2545636362093496 0.8324793779596549) (10.54018571443132 -5.709233064824367 0.4465282624676599) (-0.005262111371078994 -0.00147248342445435 0.007649152576676107) (-0.04170067469822574 0.009659152985732132 0.05052054909321509) (0.05816266321273179 -0.02260915312127712 0.05492963515905874) (0.5898624328052815 -0.1955770821490351 -0.06583172851620164) (0.0014309230689853 7.006564253478472e-05 0.003078690907135983) (0.304539808142154 0.1967644002898059 0.2230871353952457) (0.06559619067982343 0.03496282449395385 0.05149892710461035) (0.04559760605475111 -0.1859957558612015 0.05963406370126256) (0.5834594106073757 -1.399148304458775 -1.04429246670363) (6.545564695259373 -1.639967861695609 -2.204435462188128) (3.762701029999577 -0.7286457769424357 -1.860987091397917) (0.06919233065816444 -0.01970036900091043 0.003040254668955841) (2.394762708058533 0.911931903787879 0.3549897804471736) (2.813034845264332 0.1113889944952456 0.9915544274231335) (-4.605016793629438 -4.019759941948863 -0.806953562982536) (-0.2065680987486375 -0.05885958251384402 0.1549366316122336) (-0.2842342656939299 -0.1496738166032441 0.2213232722503417) (-0.09623305591234319 -0.7261461942332144 0.3916245256671207) (-1.371825926772913 2.243521090009396 1.101379946642854) (0.8306936915076043 0.153440874135353 -0.1437628250791513) (-0.008094826919684101 0.002833930959806658 -0.008921468390225677) (-1.152397667387708 0.7504932614684456 0.2978456059639417) (-0.4663676423316906 -0.5846949629685985 0.1828740224685138) (0.0320193577724468 -0.02849352821647853 0.09527875344583604) (-0.001236190984972695 -0.03985444091358158 0.07454853802161437) (0.1196025605776962 0.00279505865696439 -0.02890173702451679) (-0.2654232674474687 -0.04017002974615112 -0.02058666061680048) (-0.1241227512134518 -0.04121268809290125 -8.339678687352917) (-0.2175629661510664 0.1610224558934547 0.4323960200383603) (-0.8329109347376724 -0.1029408393097689 -0.115013467963322) (1.410403975328895 1.257184818339895 0.6806203804776861) (-0.1401444787050445 -3.619959509960948 -7.140247654473911) (0.01036307812067024 0.005133888422410302 0.003410589449159524) (-0.003417677411314865 0.006645383416961789 -0.01487884740089618) (0.04961969644303933 -0.04148210116087116 0.009373988092139107) (0.1979215152546997 0.1722020626652707 0.04842421257290883) (-0.007694754619757374 0.009574559820463475 0.01955442109180685) (-0.04067011208050472 -0.01436657038125178 -0.0776247702336271) (-0.01469294130594513 0.02935600336691877 -0.02389442238932279) (0.2002996707717668 0.07399572728742251 -5.515630402756782) (-0.01017774473736994 0.0381895704827902 0.002850229894957624) (-0.001113923929145574 0.001315942179734183 0.0008415885140272551) (-0.0001014270528916855 0.002113473950521048 0.003962010179587955) (-4.823565131771502 -2.231382806445723 -1.023893671743802) (0.0007549673047784582 0.007777724034883536 -0.03016974935970537) (-0.04200738242453777 0.07696993954794892 0.00525403365442656) (-0.01547876931923225 -0.0029239453843923 -0.001132456395704855) (-0.005428888307461052 0.01517592661179924 -0.01442052188318655) (-0.01253782621883986 -0.08226614614275717 -5.264868355729382) (4.492799264590831 0.3119053577739583 -0.4203451455458597) (-0.7748698189228843 -2.771546667625549 -4.329962675140884) (0.02729016828185029 0.02763501204278329 -0.002053156374832263) (-0.01871789360761664 0.008224382763529107 -0.02324354341223549) (0.01435987945541318 0.02762796867129717 0.02816258754024335) (-0.2534171272879754 0.07328126085327748 -0.00474945384755379) (0.0566681690204844 0.0118423969897139 -0.02928059298517158) (-0.01207451176412904 0.005375064684705873 0.001584948090154506) (0.04637137547202963 -0.6327985704137788 0.656117414849275) (-7.74700906550424 -6.578773791547783 -45.03155909334109) (0.004078824912048824 -0.0263467519133743 0.0211135247064216) (3.818079783451684 -0.08610574728083814 -0.1527322059471314) (0.7658854382263794 -0.8730817289789067 -0.6443801690850884) (-0.3353074014540964 -0.2067030613217654 0.3218405166856625) (0.05882883148745137 -0.005088926295633038 0.01721127716538423) (0.09162874815795186 -0.03666895018507834 -0.02188592348615504) (-0.7295445904190943 -1.472084897189463 -0.2453187916471641) (5.64472351620603 30.10573454571509 -24.48698388160733) (-3.2785633110954 6.420206653835637 -2.8000906524844) (-1.406230914257528 0.04515273126731545 0.1446748178956938) (-0.8498098880078943 0.2523671420332441 -0.09635216433088378) (0.04306669408566184 -0.04739695574454345 -0.003630349515515611) (0.02355202915595255 -0.07649435746731578 0.05415962486744522) (-0.007517479104165015 0.006063481532042702 -0.002119068254248957) (-0.01541772986393928 0.02767892927088988 -0.01942712468625594) (-0.0335483236049931 0.006314793732580435 0.001987881053531313) (0.01528994429600624 -0.0293169324039001 0.01025984187836524) (-2.220493018308889 0.6880236499910158 0.06085328717225502) (-0.007961780876994685 -0.02199906919265051 0.009953344830386186) (-0.01969469235668657 0.0009588399864344892 -0.06316491973639535) (0.08020677966714379 -0.03301522132021906 -0.0006454166059379068) (-0.04221278665658587 -0.009493592590140598 -0.1092165616793104) (-1.458844920667834 3.212535780231803 -2.846495424866976) (0.2209347106888564 0.4764462407307033 0.2747493500345917) (0.2953733460262704 0.1395095057757942 0.06554799191716493) (0.08411860562558525 0.0159598217441355 -0.05506847778204572) (-0.07562556450529631 0.1674421376621371 0.02070775714327999) (-0.0201870629394106 -0.03502875224391852 0.1489566676750022) (0.2443682283779475 -0.01285671726407582 0.04158202096357144) (-0.004630564736965128 -0.005560175509914429 -0.0266662586513666) (9.922554234831505 9.697110937581776 2.823135385114476) (-1.655577417831829 -2.869723211020121 0.5536485112903198) (-1.054152267198745 -1.201084734446468 -0.05845997938019543) (1.123256093572722 9.305001968426783 -0.4402735806462261) (-0.003534110931994149 -0.02980653170515652 0.01170435730763579) (0.05954419110630832 0.4681544309016943 -0.2624130033327151) (-1.019867623819141 10.44465968121127 2.516545384378922) (0.2762020288201544 -0.2620707039411798 -0.02240132780480167) (-0.1018320457742136 6.884523191437242 -0.9753568115810949) (0.4602356378151039 -0.03833316242381224 -0.1504706920983253) (-0.127836726976798 -0.04620744080566982 -0.01593339503300398) (0.02314683099387527 0.01068228614242128 -0.1485205701682237) (0.05215851092096273 0.06586193966955167 -0.2074757070427032) (0.5804318384849115 -0.07092244321916893 0.4662534333496161) (-0.1878075810093672 32.72300130896726 4.588995837682031) (-0.1421701366590621 -0.04598361375152168 0.1076428794277223) (-0.6912893587750388 3.10614871453374 -1.03259158613979) (-0.09796696374986419 0.02155821997251373 -0.02163439670760874) (0.09013282050204767 -0.005579722946142646 -0.1277830189726652) (-0.7849826915853145 0.04535547442664256 0.01157258804458677) (-0.07931199904229408 -0.061048900782432 0.02783465610849067) (0.3761665295097745 -0.5213804066338068 -0.04781446375839967) (5.086648504040911 -5.467639041533938 13.93424211860258) (-0.07010566907350901 0.6933833522151134 -1.69823558403733) (-8.274310308480795 -7.054465350785081 -12.91764596604604) (0.02617421988001049 0.06146964500427773 0.1002784734835656) (-0.009131054611466259 0.0007078186330138504 0.008472686482299027) (0.02144058319600646 0.04794080964846512 0.07121142215897189) (0.2982091126593254 6.093902135218449 -3.203569758568938) (-0.003769697236933342 0.002140943619302109 -0.004455085778848587) (0.0960398842265744 -0.04098413051106423 0.001960049970805448) (-0.9470129038120072 -3.091670806444297 -3.769779807095317) (-0.02730224474498971 -0.03144452860830284 0.07805712619715513) (0.04747377092783163 -0.1960387903183922 -0.7489509939150314) (1.495775538413584 14.14650249829327 -5.500828719569491) (-15.06037625131302 -6.121440279789073 -47.51782515138243) (-0.1350994087448374 0.1111710636486862 -0.2344794979353731) (0.3938394888743131 -1.331110261208194 -1.389175057767607) (-0.07374695784370823 0.01678086062086133 0.008909309105421322) (-0.2646784168856689 7.639447719591633 -4.422589165611285) (-0.138533639789261 -0.2034961452845877 -0.1404415881467539) (-0.08156900189179957 -0.01724142441417828 -0.008496024295821483) (-0.3955948254100138 -0.399728971722531 -0.005668761640242104) (-0.2537614037449392 -0.08728534718962222 0.2249358629348338) (0.7717584994050711 0.003475319027267901 -0.2693466651786925) (0.7693447538005151 -0.8732262374019368 -0.3299225936304346) (-5.077168942915347 -37.93142611997779 -5.572952033383867) (0.6900392532816444 -0.6203960950743921 -0.7367427989563109) (4.201813865079148 1.083788643480657 0.2660931202289688) (0.1480533838797176 -1.736968979109414 -0.3565007382101372) (0.1096548664607699 0.01530389961305459 0.08909133975259644) (0.1422442254825402 -0.07067804555912519 -0.05544940263966704) (-0.1092151540473791 0.001393191638747725 0.0228703062075177) (-3.843031474726551 2.867215122573124 -16.29895955169759) (-0.2313537660145181 -0.1249645433240612 0.4952898822195829) (-0.3227952611780313 1.035726795238371 -0.5853616148162679) (-0.1244069986928001 0.03574792306014705 0.07546484115974457) (-0.1384822083196107 0.6198098558013789 0.6873873607090232) (-0.3956793350304837 0.0284736146949938 -0.2041885181339928) (-3.393780355592348 2.599087414727499 -2.074713363382537) (-0.3690238579930051 -0.1576011575006765 -0.1107020058994867) (-2.499622385412307 2.580032729667332 2.416877830386553) (-0.01000811636028314 -0.05582469625321549 0.01001294148832962) (0.08796807222376656 0.01018806475643273 -0.02510812494201625) (-0.03609439149639813 -0.05819632240691731 -0.06172153783355187) (0.4647000557207404 0.05891869187286988 0.1418740623035534) (-0.04042036251683775 0.03150941436636269 0.06033825898916712) (-0.04032055899047443 0.03530554768240064 -0.01434535093666582) (-0.03651800701539414 0.0869990906517841 -0.05129178004824833) (0.03192034673665131 0.02969843236313238 8.823221272486381e-05) (-0.007616663871990088 -0.02070067599294908 0.001644008320441468) (0.002019935501400943 -0.004713482973557091 -0.001484637148415736) (-0.00982240677584432 0.009658411011811602 0.01420529561814886) (-0.2727967310167642 0.303284610889886 -0.05638850481530523) (0.1262561487378765 0.06730170376827824 -0.1552439786445569) (0.3332222985167405 -0.09684489174804091 0.2553075838241765) (0.4186889319103795 -1.470207013164794 -0.1578478218742768) (0.08756794743202087 0.08977862670559382 0.02284688075839619) (-1.602434356488198 0.8029910857605858 -2.676093336574129) (0.008170350848521163 0.1210640903852933 -0.1630319481005792) (0.3554895100177516 0.264407660661499 0.09705024214925435) (0.01717294830895156 -0.0007394914993313021 -0.006121696020923526) (0.02135740468262316 0.01092156307972904 0.01540817067319776) (0.4190706041473982 0.5469050033540293 -0.3291849902697457) (-0.003873621851303572 -0.01088206386962691 -0.01248644842855282) (0.4019057442751184 -0.2252536733022028 0.1670907093021783) (0.2021781373557463 -0.4320545803799152 -0.1047577802609249) (-0.1796387698369064 -1.73241230152271 -0.1773662510588381) (-3.511283934843207 -84.55892489802673 -13.34857124037227) (0.02034790766557913 0.03615552375749863 -0.1192725109798012) (0.2638218382431655 -0.02444166624849249 0.03228667084772065) (0.8009440845458278 1.170762915013214 0.5079604213175055) (0.3326230003345418 0.08367953897783814 -0.1843349175003844) (0.07093853871621729 -0.005786424400396424 0.01384729472542687) (-0.5823985585541765 4.429863596413635 -1.932307654628795) (0.2798586621952468 1.331894275572931 -0.3629649318152801) (0.7523050689867041 -0.5031501892251775 -1.238783418341925) (-0.07041304786547276 -0.03136594055216507 -0.5221232185531542) (0.1350840907173241 0.01964621574831146 0.07816400395370207) (0.05945792796000175 0.005831746431792913 -0.04699991748654346) (2.939901934108364 -0.02197188286584351 -0.7600144130933673) (-0.2332372959773904 -0.8629959556536322 -1.827391855941853) (0.04882130052542209 -0.09260077797821378 0.001201554151417067) (-0.6876597968254543 -0.5816268135298669 0.4468873158996905) (0.02371974596635994 0.04213810544286798 -0.004341990050135261) (0.3686824467379653 0.1616177890406509 0.2392544280902351) (0.1654828287513834 -0.2784797716012999 0.1098093663475612) (1.575338892018366 34.61784661526804 -8.302828610048854) (-0.1021459268645305 0.2225035262944752 -0.05191395087216936) (-0.1686510527910269 -0.2015531313977948 0.07828156776185252) (-0.1185027705374008 -0.06335879030241148 -0.02677604574551436) (-5.598058774751282 4.275172496587394 -4.911612805563032) (-0.226511989896036 -0.2195509237292319 -0.4151224877495265) (2.80664984533223 30.73023315937134 -3.92659401989749) (0.80132489990216 0.2961709655826817 -0.1766600262064754) (-0.1402498357437065 -3.557722759038182 -0.7526147730155113) (-0.02741622088186964 -0.06197765905620224 0.02961139934886566) (-0.01315029087842309 -0.09504862154774979 0.08307688694831024) (0.05992836162766815 0.05087934187653893 0.1076471638377449) (-0.05215071491567448 -0.04812183525454369 -0.01948988287978902) (0.07803455167704196 -0.06587372056446361 -0.01854914554740628) (-0.05042700678104285 -0.0218890643012967 -0.03194343308063823) (-0.09951276144861704 -0.001077878999253244 0.002907160349467211) (5.781594471960657 72.59468769150773 -14.80759482348984) (0.3744672317360084 -0.5360473701417595 -0.03091184869545154) (-6.962899396078662 -8.254251329788641 -7.329440792540434) (7.568853121778837 -16.31599316095086 -15.02049309112839) (-3.1192465564736 -2.261523116490789 -3.330792633601849) (-2.195784949356359 -9.298045604004281 -3.190821892314506) (-0.09402254596342458 -0.06960662450950046 0.09004404217399026) (0.3970742435310148 -0.5980736949026271 -0.9061418636075529) (1.401730237776388 -8.052489627637449 3.673361022601947) (-2.096579954971929 -3.918834182144695 2.710692707184485) (-7.153268072794127 -4.879973695574458 -42.20757749735873) (-0.5546763202703859 67.25671637059013 6.199215421094654) (-0.5018801158866673 0.02843852951509729 -0.4543829061030301) (-4.245349459615709 2.166305241247347 -4.876422210520156) (0.7676732733311264 1.924194655376314 -2.738366555124426) (-0.2688995129824281 -0.463585300813929 -0.3974862459335507) (0.8775435705278052 -0.8122103730489777 0.08360452374407093) (0.5561986899538741 0.6035938371826387 -0.3303250237566301) (-1.724042921526849 0.3905438561748296 -0.4564880804938009) (-11.72321995771129 -7.172904165799929 -11.06901761653809) (-1.413353694154114 2.168410300803019 -2.852705698964355) (-8.631995688097142 0.2035441476519417 -2.711151297845639) (-0.3016722606380552 0.03307761205499232 -0.1055335446791421) (-0.3117871605873268 3.266821058546772 0.9963876123138089) (-0.08774714999140194 0.01285949136685291 -0.005982647117733891) (-0.4563466713090794 47.82890227468471 -4.858442962781435) (-0.1004694045764831 -0.1657060144449163 0.1034074710527206) (-0.4083338482576749 0.1007172157025486 -0.1569182308946752) (0.3510372512016788 -1.059724824590173 -0.7873261447221859) (0.05835438200012082 -0.06750065645548882 -0.1753990538166475) (0.03663514455270574 -0.01460307110497309 0.01322231782549088) (-1.568489565146437 0.9813156600600912 -1.026190563419086) (-2.007875154274093 -37.92558219854572 2.615925990623109) (2.203524829799091 6.891011359768248 -0.9232486773014621) (-7.887983091949424 -13.48884663885717 -41.19851436820925) (-0.1099615579183913 -0.114311633827915 0.1234309244242537) (0.07240405002611855 -0.0006535802191511321 -0.0009421551245314234) (-0.3816177316293152 -76.70431865911682 14.66826035267573) (0.120357877100485 0.3242084040040493 -0.09744294487990628) (0.0197044743901722 0.1668575672793504 0.05180561568790104) (0.002246937160972531 0.009739086384260548 -0.01425932779610142) (0.2405301876109693 -0.2954067570019253 -0.04441684723126693) (0.05105000240788005 -2.485728332956035 -0.7500218655558534) (0.7757029989599242 -6.866086850445279 -3.080970490195753) (0.1630056772577835 2.261589414505231 -6.967688302923287) (0.2342475484027745 2.116999312809833 -1.401624701033167) (-2.310100727751125 9.773380041311574 -4.744382745916119) (-1.108643552822006 1.030280027417908 -2.148195013182147) (-0.1502297083733196 6.287827322852064 -0.8004758259358281) (-0.01375667600420699 1.404773669780524 -0.3087527621372353) (0.703807100817977 -0.09940940443138133 0.2338187434843476) (-0.4119303216502732 7.098195731226754 -0.5929308359807833) (-1.143682726338293 -20.43702737578347 -51.87693881683627) (5.985669004675014 38.61197146499381 0.1616321163473806) (0.6465763425812915 4.599423055856281 -3.80371771874491) (0.7672927390062139 0.6803103007620839 -0.4350430602773263) (-0.025884213658553 -0.008394309084240709 0.01683343173326165) (0.1477964951834938 -0.02329712718947102 -0.002196764238432589) (-0.04400731042638214 0.123223079517301 0.02084253621474973) (-0.01610664129290339 -0.02771593891214942 -0.08032600956872413) (0.3950630209856135 0.3106759225352041 -0.4003093917047078) (0.03461342791504149 -0.01868920175614119 0.0923535707052299) (-0.5322719304323751 0.2112120628805989 0.115227030694472) (0.6219839742819757 -0.02132165925983757 0.2800444732531293) (-0.2109316667430927 -0.08605670504482649 -0.267733424297308) (0.01729827295460101 1.114454478330516 -1.36320962532432) (0.7242563442239635 -0.191184408461838 -0.7394827713420168) (3.2186892596344 -3.944425738467676 -2.40868598810463) (-5.012780356996185 -3.159292395155426 -3.34717650997374) (-0.4805173463725834 -31.49593815952397 2.273072376024247) (-15.14800183900697 50.39375847594984 -0.7466330155905618) (0.190247739933894 -3.845644346854011 -4.635529296518833) (-1.847748187375059 9.152462130840192 -9.120751086555371) (0.03429865916238824 -0.01277613414957997 -0.07539535091741383) (1.556457592004016 -5.268468515005183 -10.8083317781914) (4.764814464723697 2.982958006621434 -42.48905243670587) (-0.04671544873294756 0.02287888644218804 -0.0280972660288249) (-0.9679349903620238 -0.2610049934550395 -0.05477104223649094) (6.16458930965848 1.163646828253933 3.799079062973522) (1.261336659078854 2.139872464954499 -1.450627410224035) (0.2440595474564935 0.0386664558427596 0.3600518897894465) (1.141738891626606 11.01060291150692 8.165347594268038) (-0.1990226494396127 -0.03236085716787304 0.0561679502774387) (-0.3599831259682078 -0.27158507344314 0.5218013107053885) (-0.04604054111620598 -0.07729257841368856 0.02716740460046246) (0.1471008050814756 -0.04130883324773001 0.04747384548150832) (-0.1505328985287698 0.2102518394897267 -0.1495377470862858) (-0.1795467633480519 -0.04248186348969901 -0.08254507642192974) (0.3116207188064747 0.1582844847306455 0.0007006909166108986) (-0.1204722776197541 -0.002111684919449766 -0.0452147748241012) (0.1853793000785799 -0.5493925567145177 -0.2205818480835541) (-0.6318326453422816 51.44489056921567 -7.110843954911277) (-0.5829785017771117 0.4698791789762982 -0.6353982570317198) (-0.5635340265292221 -0.1479305148862314 -0.6383268064993461) (0.1887309204919498 0.2929461008033346 0.04938682541254746) (-0.2225403984085927 32.56771411261446 0.811971528935548) (-0.4693913381246835 -0.8214863099125483 -3.906195935211256) (-0.1237839678016189 0.02286194571280428 -0.1828767014796316) (-0.6274941774775326 0.4238759549917483 -0.01451558500033057) (-1.234233520558385 3.376409507904325 -0.8722892360199533) (-0.6284344162432425 -0.06075478857270781 -0.1705293344169663) (0.07492329043515591 0.05988239437622259 0.1067017694662964) (0.2898489557998721 -0.2125608522551942 0.064434836570192) (1.551702989421517 0.3025564248571586 0.7102361573192784) (-0.03790487852825131 -9.804584847396693 -38.52777419613449) (-0.4623583686602368 0.8572322873297522 -0.4330634064252409) (-7.539997393170568 0.4845910571715647 2.463145562000792) (4.206034911634961 -0.5899205852178273 -2.792173145792091) (2.333130885753619 -38.78798348140611 -0.5270144490412516) (-1.360538323016305 2.059419927537935 0.1422980167756551) (-0.2005536957497019 -0.4185294926050195 0.06800909009045733) (0.1913068286395051 -0.1180692950996982 0.4888287307037972) (0.09231352137095426 0.0146569046270142 -0.0256572213015118) (-0.6648643081641674 -0.8663570284237266 1.149804499479782) (-0.02543597914992796 0.04072611766275777 -0.1085209693613627) (0.02362453277010476 0.0006068969409489099 -0.01779805428461237) (-1.188334704263129 -0.5123388176989934 0.9645946710419895) (1.417636815077862 0.09671511039748351 0.1151028954365934) (-0.2283163619340802 -0.01782058588406585 -0.2890682439077151) (0.09007374005635152 0.05451476453898928 0.0128013604717221) (-0.2773773474998291 0.1782525370929051 -0.1230491877040549) (0.3057080565272426 0.06688246074191363 -0.1564233045843739) (-0.6347746703036875 -0.2511303180527391 -0.1641525571270934) (-0.4989720592357156 0.8721636640345478 -0.7643082094928397) (0.4320989424198409 -6.070563642252242 -1.774144537744996) (-3.264181498186461 -1.08014724079343 0.2263773055546077) (-0.05307653471453429 -0.05743437682457687 0.007871648846016925) (0.008241195896903267 0.002757911749638716 0.00742034941709406) (-0.006683682336259777 -0.04803412114406866 -0.01643460626785826) (0.06201775502101098 -0.9598162153036266 -0.5600829467771471) (0.04660923348444182 0.3883138029789053 0.1819869532480451) (0.145699758518301 0.7466233600656351 -0.02467390615762664) (-0.3244506087076431 -0.4175897298913072 -0.5230045184982285) (0.03537901946544811 -0.008200137877018784 0.05302831252280842) (-3.417614550240959 -10.06302860818478 -2.730371658644704) (0.006154065622574716 -0.03944134172769338 -0.01722929891697057) (-0.002552579504874972 -0.1590674008203241 -7.950139881327712) (-0.07590738820845323 0.01404689549972739 -0.04388814888801475) (0.05120510524034597 -0.1308806531357696 -0.01920834692353466) (0.2142612453311586 0.1791131743789237 -0.01094095924656495) (-3.883939845601557 3.01924466944878 -8.498695584809635) (4.329628377432487 3.397538816197692 -28.06608221700242) (0.2151850100745136 -0.1236066255733799 -0.1738196806550358) (0.3141568529976305 0.261042697639427 0.2131868777795088) (-0.0702245954133939 -0.1044045812140746 0.1663563796453931) (0.2145626630950531 -0.3816183789954019 -0.1067369046150186) (-9.105143944843192 -10.12327717099839 3.588164970719469) (-2.470715837754451 -0.003232313955373933 -0.9548891899772673) (0.3313964171953043 -0.1465572987509152 -0.07278798268858669) (-0.1262926310127391 0.05665727535196659 0.05913910695005198) (3.515538677126544 -10.48683981709084 -8.782390954204724) (0.02088309495721294 0.05223841936301185 -0.6335654533277247) (0.8764471835675978 0.2791280637280501 -0.4216078697093293) (-0.4778067055731077 0.4568656716200691 -0.008859459576865042) (-0.03820571322488077 -0.01909893909730823 -0.02771892031546243) (2.623306353255403 2.924664404739736 -2.879099249107582) (0.3828484264294069 0.05507947062375332 0.06809773067398316) (-0.3044859986339885 0.05673450918572841 -0.08853643299628444) (0.1713653773807181 -0.961499621293378 -0.4899687903194729) (1.871004341938393 -0.4143776039794521 -0.4868793927992832) (0.04546853288440193 0.08579320423975853 0.1463698214409504) (-0.001974947222266391 0.05154856035132135 0.02812037089509653) (0.1433795708326669 -0.1018991114993952 -0.08544621029755081) (0.1365623866511223 0.05194114506234818 0.07310045276642577) (0.4602502215341152 0.2119488810315454 -0.2444745546209774) (-0.8957159832765766 -0.5062337394648769 -0.1663299468623435) (-0.01087537667645844 -0.01109059045529509 0.2333234471354163) (0.1624120494895612 0.06538837311322594 0.03727014514175936) (1.026383266180982 0.2104329659768576 0.247214798927623) (0.08766080216673788 0.09768587865338185 -0.06769554436179558) (-0.01682715822277123 0.007122193659342717 -0.005113328746736433) (7.12534261063388 -7.684672665626876 -4.154815800537848) (-0.9022018248837902 -4.977019309863064 0.4975713765463768) (2.24591768788702 -3.839908101579271 0.452446663392329) (2.321247644634907 31.09664091306438 -7.510748020520977) (1.292967305350325 5.086991927131483 -3.887421535030621) (-0.1663498445171631 -0.04196906094444885 0.01108346377512826) (-0.3014024180144966 0.1692574866637459 -0.5602680987278678) (0.5337538644818237 8.558756901678304 -1.377459665769095) (-0.4726518800749842 -0.3489299601333223 0.1266953000550269) (3.469015324935147 -1.382013780795202 -2.113662567645492) (-0.984402184448502 1.10990761297366 0.2584464295896947) (-0.1522392387440522 0.7748965071357954 0.149069160415911) (0.1952611067452146 -0.09955084691028168 -0.2525095366501882) (0.2600462956246277 0.3649606377060713 0.4134771735719783) (-1.036944976992097 -0.3164940699422326 0.3526483418395445) (0.8433183652232561 0.05441561152186858 0.004718714061524104) (3.031598362247143 4.843783807233319 3.754667577694677) (-1.087099326521126 0.773707378248909 -0.5598070188837769) (0.430000956688737 -0.07402606887059349 0.128484957137061) (0.1810230779628294 -4.921768552946533 -0.8133456030890772) (0.5397031704227975 -0.8919539092004534 -0.1227919769239095) (0.02946724297637389 0.01001538975527749 0.01244926018683728) (-2.249722190599037 -1.130642519253569 -4.141698692039008) (-2.407402704962267 1.241039987360903 -0.9161688074981177) (-0.9479411196413137 0.6941962740766194 1.257046570807398) (1.433362302390794 -1.391627767874127 -2.427654791674394) (-2.146460072952417 -0.9451178277429231 -3.346518815614629) (0.06834293450494427 -0.1902795776926461 0.06398352461861824) (0.9732065537823068 1.110675148880977 -0.6832379632826294) (0.468707051193612 0.1440433204007073 -0.09489557351085497) (-0.2236427919337814 -0.04310734186206896 -0.003996861435376593) (-0.1274397980249543 0.1743590258239537 0.2041911934378395) (-0.008699011625320135 1.643758086062531 -1.928649633134063) (-1.751751535772485 -2.638055553681284 -3.389219840102942) (0.3273394141886105 -1.417183174218254 -2.053965041798874) (-0.006632472209427736 -0.07440263187024955 -0.04198860780179001) (0.2346925933967998 -0.09210854388711243 0.01879259455101261) (0.7373397792909664 4.965901117755109 -1.518991808617105) (-0.7495071282933901 -0.2032688395836026 0.247658069282383) (-0.9910689456962032 -2.147914619385519 0.8026762598315308) (0.08963933033766694 0.06335124980593826 0.02200712497236318) (0.781579590685523 -0.737861694411714 -0.5817744319160633) (-0.3067368317449108 0.4024209456052939 -0.003896017335573515) (1.336909042156536 2.071577635122943 -0.8206842801414974) (-0.01646561193796304 0.04535414708385773 -0.02342215098936699) (0.3597655246541998 0.05043244240462619 -0.9820906251602883) (-2.389884652424973 8.168913080219728 -5.228520694553692) (0.08481742307512956 0.0528542466242842 0.0532041833026925) (-1.469866087391474 0.009538450206989596 -0.7837907094558132) (-0.002465549382949045 -0.04350627737813515 0.03320141045198519) (-0.04164723949305336 -0.003217972022508443 -5.731671146024311e-05) (-0.03992020282978704 0.009345359938802818 -0.03919954143424873) (0.918616340667084 0.0005062432253602018 -0.5303955630050359) (-0.04161677762289295 -0.06877332912163185 0.006292575285863772) (-1.152505293050308 -0.135214835693085 0.5277372037982639) (-0.1114855449158065 -0.02613356241692453 0.03319574563279106) (-0.04863516475086529 -0.004892180258467608 0.01946343461301597) (-0.2138858900410591 0.02483437869700035 0.07183296685763903) (-0.2591018972330796 0.3617752051278328 -0.2549612170642435) (-2.748290261652237 -1.507042294724478 -3.04189125933111) (0.08254387616404629 -0.8074675988509723 -0.232513904541693) (0.0505409266530524 -0.002387168406661552 -0.0008152892808445319) (-0.05044937132473838 -0.01583177960924411 -0.001399775945560858) (-0.06000719552269835 0.03116919497106963 -0.03215333191428829) (-1.075057781897268 6.014149713041538 -4.450787357669206) (-0.6244160142507159 0.2452776916262571 0.02954602143850676) (-6.08291724948985 -4.778947978759152 -5.769901468961702) (-0.03081851232636076 0.08508652838642097 0.01241365300684229) (-0.001421618612375321 -0.0006089267924903688 0.0006704641046553148) (1.511574999253861 1.144277487852656 -0.07589861213005392) (1.820773530189852 0.39703750191384 1.100885006576288) (-2.03451419890654 -7.532013269977704 -8.786160067101356) (-0.1393566658586307 1.64185376656722 0.6294641420454381) (-1.851077260853065 0.3412022134269673 1.350303023110031) (-1.157372050613378 -0.04716419176665926 0.6853209124368862) (-0.1216907806297829 -0.300621259291916 -0.2301701060356901) (0.7378749061730051 1.286323324046632 2.715390241374628) (0.5014255426338439 0.4340083328363152 0.008667457627898778) (0.1784803900033259 0.03057823987477814 -0.07592669393383643) (0.05907497078666755 -0.06684735906873768 0.09312687587509097) (-4.93088877354154 -5.434801318790646 -6.237161678349066) (-1.657043477262134 -0.05699978215152679 -0.01507415592343675) (-0.07900135092353811 -1.27778822295183 -4.728710187667229) (0.1595389941692499 -0.3967638695752291 -0.171312970594954) (0.6085360892855418 -0.5268102336607227 -1.004942434002615) (0.7918613854128072 -0.3223122753062423 -0.3531631334014689) (1.176400139254337 -51.18922571637251 -4.748968144570548) (3.653196753689532 -9.081451624678627 -4.260104013450993) (0.8206456081973457 -6.281286890493878 -0.7055726038594619) (2.433819450770663 15.18261099292109 -5.798746733225382) (-0.00011326882551407 -0.03190793741049872 -0.01907660777431218) (1.761711035931037 -0.911234883732395 -6.592655976051171) (-0.4272435329776954 -0.491254380928155 0.3549304478574865) (6.490824913061772 0.4336014185058789 -4.390992039834682) (0.7389966436100781 -0.9941314905103849 -0.3786745364255981) (0.06013060950636867 0.5189884967446261 -0.3531935887220637) (0.1316914814697288 -0.03593365055894576 -0.007806247582630689) (-0.1577025207736975 0.1359792188016587 -0.04651584418917706) (0.04462161249872504 -0.01757032320030481 0.01243466152125795) (0.5132284257651799 -0.02215028410227537 0.2511315063782147) (-0.108487051543885 -0.03438293218565886 -0.0487978789923651) (1.017995990631846 -0.9648156628386064 -12.29050236237991) (-0.08491532551873367 0.01847990310779549 0.1323617171901094) (0.01637895837202269 0.009254650913966544 -0.05470986972702238) (1.412125260038038 -2.325766978719479 -0.905405448488827) (-0.2265862180913874 -0.8079947089635243 -0.004692600934033328) (-0.1923350652606792 0.2024279406107689 0.009787256103223105) (-0.1584325917766274 -6.567021105659435 -1.460525796416452) (0.06942538911766533 0.1961155282648103 0.9837229280759261) (-2.263727303496424 0.8396529549852461 -0.7412442720570724) (0.04332442700237396 0.03366526568316502 0.03803350232791477) (2.822628142779015 0.2054379378754924 0.549698693622694) (-2.157388787938293 1.193756927458258 2.648324527656402) (0.03092836698912737 0.02031106243406492 0.001408552856350865) (0.004953869128306936 -0.03427108661704018 0.002847353192945143) (0.1961614062204183 0.188932862410007 -0.2684749799675795) (0.1178943895759265 0.02842349281962147 -0.02201289817507791) (-0.2075877016365093 -0.1308158162162702 0.232726622613201) (0.006458417433769638 -0.02568402818568808 -0.0340991826325238) (0.002855075995303862 -0.009080689206688758 0.004984752751293427) (-0.0396347671209254 0.0283965192647378 0.06179190280068117) (-0.05936476025164925 -0.07378093479411993 -0.04370908521287317) (-0.1136951432722549 0.02491567522380517 -0.07925797449360192) (-0.2658650417092699 0.08614926237697088 0.1354166306241966) (0.0949339075267655 0.01669527621389196 -0.03590244414247658) (0.02622815066394182 -0.05772350070491121 -0.07364076944865434) (-0.1684677723379704 -0.02406816854197347 -0.1583888286606389) (0.05500587327365851 0.0077675613229258 0.009290916493863535) (0.009459653909605088 -0.02041976711577347 -0.02931662515858065) (0.2203243086218336 0.08355401683426553 0.3492412692436263) (-0.02394244196298867 -79.65284180705288 -0.5909915743019878) (0.110176379194253 -0.06146409208298957 0.004290778464993824) (-0.01244738677835898 -0.01115076331012336 -0.01204050939024764) (-0.02596909008623439 0.00508738748261928 -0.07064134910476015) (0.1430306345961153 0.007965660940098783 -0.07928221097161743) (-0.1496661961329119 -0.2590060607569017 0.1816007964319043) (-0.3578070697201085 0.6677607568781894 0.9588672315854039) (-0.9646753315385881 -0.3795176646369591 -0.7795173141713329) (0.2050750337927269 0.1640921752901606 -0.1887691087750079) (-1.041257381174551 -0.7302181159592838 -2.16309848741164) (0.1744171943725574 -0.05660483289354663 -0.1226936176183492) (0.2918180232218193 0.03807211530961471 -0.02925568576730075) (-0.2859572906420987 -0.0004471480776041814 -0.07351296149583823) (0.0691803041540944 -0.06160874731638588 -0.05975904038318733) (0.6928519036536506 0.02924244316987934 0.4097170097342941) (0.07742576207021512 0.1113341655660933 0.008206536519462987) (0.5823019307182705 0.008776407330384817 0.2585529472394054) (-0.143943106671801 -0.3414020019009353 -0.1309630518987182) (-1.36544392677478 1.235745577567324 0.545430055966355) (-14.6329853735823 14.11909211431303 1.046874245076924) (-0.6268695681715487 0.2505213253165559 -0.3482902600839963) (-0.1131035317297978 0.6008397643442436 -0.6843969113067017) (-0.2764402551130837 -0.05993986037630229 -0.1833515907431679) (0.4334876926161865 0.8929030736623871 0.7575648404244629) (0.02990720178924387 0.07823101889857535 -0.1096655210293285) (21.26166553629852 -5.575039912456277 -9.607540828242955) (0.3157647943013897 -0.5012682159327474 0.5791609781650902) (-0.9020799267515025 0.7968945728434772 1.854460221405416) (0.115740897999225 0.08097902915628763 0.004501539141842897) (0.2009954913849284 0.2806128797937902 0.2328675004749053) (-0.1364594721653807 0.03106294571169482 0.007734411675201384) (0.4111914672568616 0.4102023151264954 -0.4422484789812233) (1.166062770673102 -0.3785126193712025 -0.290989347836335) (-0.0402370550670656 0.5010728288646157 0.154408048602322) (6.887006186865644 -0.9313926676170732 2.282403627436155) (0.3809697678686109 -0.3331413496160517 -0.03908072601458899) (0.6923437342696673 -0.4755016330102709 0.3117260242994731) (-0.04895711395614624 -0.01174229973624558 0.01242162223004188) (-3.636250284334364 88.94117962594993 -5.106330929514329) (-0.3639424025586465 0.8120051552033218 0.222069380598771) (-1.036426523985512 0.6502282256842198 -2.915627102008484) (-0.3207166619818778 0.2684847658740652 0.08405863091626187) (0.03222328513739352 0.9520970616417118 0.8277401828553217) (0.005746061976871296 0.01430892452336562 -0.006844789436623377) (0.08003019812249398 0.1404210259385874 -0.4003228772070746) (-0.02378127781239424 0.01653380105431935 -0.03337894797912343) (-1.54387019878172 0.8134396896503243 0.7647316894651538) (-0.3626777105268691 -0.07721711156101432 -0.1122390669885078) (-0.002136968068646924 0.03553085486397509 0.02250040604062814) (1.086456577873141 0.215535844891618 0.6266097279813352) (-0.2172235484438925 0.003553044341316383 -0.1359342859817846) (-0.417867612100183 0.07901267253958943 0.287182090246302) (-6.211159407002545 -0.05196658236532814 -26.12073877788147) (-0.5265171202270971 1.363570540471752 -1.875370157502212) (0.04854920921884079 0.009773074302044578 0.02413450731682503) (0.03231536904031838 0.03558668530299603 0.1083336864488952) (0.07310649193559982 -0.002794535300142224 -0.001366208515890982) (-0.05935801820691526 0.02405969786530224 -0.0741169695553963) (0.1700472686916835 -0.05671839035075425 0.1470177315608585) (-0.02488509168200455 0.04199200728437699 -0.02240455512323871) (0.1721441906510521 -0.02254624810465322 -0.02027221096092845) (-6.398776619375742 -7.507614298803175 -4.106972910575323) (0.2281133136205853 2.307121110516051 -0.1496168040122774) (0.6672215108178161 0.3888164856834807 -0.8583032089325392) (3.600218661435645 17.17820361593816 -4.258228944530093) (0.5388497671299413 -0.007080984212814979 0.1498696867954898) (-0.05731728563672552 0.0389276419925087 -0.01394401594115745) (-0.1057060016212917 0.003487438347590033 -0.03153169235832372) (0.02033344478644813 0.03486870840881937 0.05084571310567718) (-0.08360668371294136 -0.1755776785513105 -0.03536552209618601) (-0.167189847326678 0.006984422710930683 -0.0574075018857714) (0.3278653386025559 0.05358596554955199 0.06292234799106118) (0.08137511406306396 0.03135717340461957 -0.05004937926907665) (0.9632419302434375 -7.054123435048533 -4.867811573570568) (0.01977870134199461 0.001767059994189871 0.209707479216151) (0.1965550203324255 0.0006740562499625707 0.03772360115762981) (1.299314807507316 0.774051754114734 -0.7441509530308648) (0.06775124538207664 0.1814387750532231 0.031320294903118) (-0.5471011057591637 -0.1099206951340062 -0.2139247835907826) (-0.6660255575097801 -0.2870370363103788 -0.1208368072835617) (4.166154683846647 3.075854961494591 -4.777496009137725) (1.446952991542386 6.659955764528729 -1.306408074629443) (0.1564468355955 0.3976433997894932 0.6202369262092917) (5.800247051173369 5.997599916079897 -2.191522567728949) (-0.1775860630383213 -0.2999145303979789 -0.5800277181705797) (0.07504268286104755 1.322951863260906 -0.1955111274699475) (-17.83298222644991 -53.60801446690262 -11.34869645597941) (0.2531749213087876 0.06612465914322738 -0.1931224876460379) (-0.01138730277594122 0.01411335482874456 0.01014252588936347) (0.4047386379099352 -0.268590999136651 0.1979863929962382) (0.08926919820838675 0.01639727969095377 0.2349829841576715) (0.124870198150472 -0.1518770878247519 -0.3818228454120035) (0.3470454830661833 -0.0768269815007858 0.01266563784282536) (0.005665400956560068 0.03019553360773331 -0.03718342012515932) (-0.5211759672587637 -0.375221638428276 0.9047810719588819) (-3.123183868802967 7.336824683240024 -6.621928143160408) (1.414583749323906 1.634171601736633 1.527455495894221) (-0.009043599336467732 0.02534113652268354 -0.02386312289824325) (-0.001939711414114501 0.001944534240181186 -0.0006110380416176394) (-0.001681481527377574 -0.001871430657700884 0.001444983099248008) (0.4700356674038878 -0.07142670544192642 -0.355571063689353) (-0.002477526784439141 -0.0001761510845328012 -0.005298339980489714) (0.2775701910117144 -0.03313113061153177 0.1740899537202537) (-0.2532947869353124 -0.1380959916906762 -0.3410706727964913) (0.3779436694961292 0.3363079288281723 -0.1592126050826331) (-1.790248394671266 -1.489612232524943 -2.92614559513846) (-0.374178930161579 0.3868410403398386 0.03480702121972831) (-4.141967120964164 -0.1546620834581627 1.502287881046863) (1.195406175487683 -0.509818735638514 -0.2610401628337601) (-5.139597041032593 -5.287061374783416 -1.511777451895737) (-0.7669012559242728 -1.628519334998015 0.8836057977741769) (-0.1704952149477693 0.001666678417779344 0.01065628777611596) (1.027633364981408 -0.3830575048831261 -0.2804390792156838) (-0.4736724013467872 -0.3491896224333405 0.3015438019197037) (1.046728548230046 0.1828197564954296 0.6086596787316194) (0.005961261955086089 0.1673494554236802 -0.0822553720983589) (0.04946220884808701 0.03448745926876826 0.01818638843344141) (-0.3989227634658006 -0.2966341546910621 -2.356500497041389) (-2.030346217658643 -4.493486767927503 -0.8551785017204814) (3.813378476779027 -58.73074323050076 -8.434668315130095) (-0.2755201687035836 0.04436810810667693 -4.06243365214062) (-0.009301205871079594 0.02098823707994645 -0.0177600427539533) (5.646107391886135 1.134502928910432 1.186304490169514) (-0.3570932443860309 0.009445588519771037 -0.4087611893662343) (-1.41745559839252 0.6815848374697139 1.978727305062699) (-0.2563280422971087 -0.1573387677747112 0.2572961276496962) (-0.2950277513861127 0.8907595293517906 0.4723583551311689) (-0.0367685595039132 -0.008072023141663363 -0.05035020191800386) (2.350164952896618 0.2401550182700325 0.6478967338392216) (-0.7527765869607477 1.239156597050767 0.6988079289257045) (0.1028432131463164 0.9389062941424376 0.8228633096929739) (-3.642233946906061 0.01929351450860706 -41.32316226349228) (1.687480879778536 5.673969289020301 -2.129256151031908) (4.687943888729074 -68.00294999827528 -4.580087346204405) (0.2805493380086903 2.304113087536593 0.7877947663310708) (-35.07774340298485 14.86187303858447 7.188510323461086) (0.02446531085589462 -0.06095444256750816 0.04490644379556527) (0.1320296822232565 -0.1679831883382723 0.1730262108671994) (0.02986469908001733 -0.05406751032353692 0.00587118121039141) (0.002350920488417618 0.0221014948348186 0.06035822205821866) (0.9683035457868342 1.518561335389126 -3.78202414999833) (0.03174529328497752 -0.02174237779495871 -0.03401080563689318) (-3.124031430661907 8.683921891043479 0.7228463038957638) (-0.04911109170670525 -7.422639201263058 -33.95577790644347) (-0.6439570336596327 -7.9310775031358 -2.589682327410398) (-0.5189972375158786 0.6260403303040719 -0.5998412453454668) (3.309945274699261 -9.284797346292516 4.006164807178931) (-0.4240771436763642 -1.47805281716225 -1.487968051839738) (-0.3895689270203216 0.5501458822451304 -0.2847013707636358) (-0.3087584952300819 0.07803644990686248 -0.1168943094105021) (-0.1643346486125083 -0.3364428267095103 -0.3453343480662881) (-0.4509457901026935 0.1650806559531191 0.915129303937038) (1.092058331857865 -0.2700695397520631 -0.6542102615095378) (0.1824439141510441 -0.01177030559316428 0.05529850486710527) (-0.5181012078990581 -0.9893960755014454 -1.055534266899044) (0.09522326560870692 0.121791869208653 -0.07154653331140653) (0.4887749420398627 -0.1307508105205242 0.2242134132244456) (1.167811147529216 1.32996497386585 -0.06507788280281313) (0.5309780012731247 7.146409415827819 3.570730623818392) (12.08942475024108 -6.098659913741503 -2.831774374753401) (2.798402196382716 -1.251608083885419 -1.823892661238374) (1.192759700864594 -1.674432338272892 0.7900131347896793) (0.2706342000668355 -0.2779965221986155 0.207169270696957) (0.7573833262219711 0.3418611312914552 0.4452471875760092) (-0.07303270484277211 -0.3259713178505659 -0.2114301100494638) (0.05976822818302867 -0.005793565594259372 0.02950864670813245) (-0.8661362065554694 -0.8742854116604533 -0.6313897000428595) (0.2809317902158094 -0.6629032153648557 0.4444096002858601) (-4.117504727777655 0.9635664265555225 2.993897611568344) (-0.03963230159197832 -0.0963252750692085 -0.04171812481632291) (1.625743145676731 1.688043541958459 -1.741496284173116) (-2.564740750765647 2.522700526786585 -0.5983705484795427) (0.01818204224462558 -0.3238910690248085 0.5648435821266516) (-0.006754570853133909 0.09700637321073813 -0.1117872503408381) (-1.252419258433223 -0.6009799333153492 -1.245192721344365) (2.21248072120062 1.113183478695705 2.701375251637046) (0.03645428528481834 -0.1126971809135412 -0.03794457689364793) (-0.5433430613679394 -0.1594006810559932 0.01897958602568764) (-0.4723055540499812 0.2873818579233322 0.582149236876948) (-0.1389758327475855 -0.440183510517521 -0.01861050524033159) (-0.1532611725447307 0.06418545769167172 -0.002652293976989364) (0.08907806544540139 -0.06800710651946854 -0.02992589658788352) (-0.02394303794500873 0.01235100013701128 -0.0361607265718737) (0.1114911741849588 0.004577275551230164 -0.02269100044193831) (0.1214994338845977 -0.02906322762571963 0.06511105992835364) (5.836793146119149 12.01064483772229 2.129473174933298) (-2.733566640423198 -1.990058555596821 -1.350355284919368) (0.01701214010550001 0.01064365793358051 0.009949835114043203) (-0.0376297875050755 0.002363419133413628 -0.0002691696235692072) (-0.003562463967682715 0.0005020244705364538 -0.002459070920037762) (-0.04544738717718921 0.0162142142964023 -0.09540431875166305) (0.04768625405568244 -0.04017669954685043 0.02112916021348475) (0.0007034922335518116 0.03406026039161521 -0.01730657281711073) (0.04012313604418882 0.0001343233690423926 0.008680048032970344) (0.005747849569460685 0.009884084848720408 -0.01780915859320045) (-0.07327531136578813 -0.09557171124939484 0.0723237249552838) (0.01217145233305568 0.005096292817478794 -0.01851692365718452) (-0.02216073517714073 -0.03400507533668302 -0.1058177189055962) (0.0002044961812757221 -0.01892474538720853 -0.01515636718914999) (0.001677450159477982 0.009532270747602396 -0.004626960269815371) (-0.05930690444600335 0.02850720578045955 -0.02099543695302798) (0.04168517148621922 -0.0552662019825913 -0.01346380430864266) (-0.09224841748722193 9.258057855957014e-05 0.06164599986548068) (0.05523383063576852 -0.08094336292772034 0.01606613921479001) (0.1513190204559643 0.5772171723415538 -18.16917067662403) (0.01512685804227545 0.5669151992251718 -0.3988900864483499) (-0.5875787928256879 -2.470461826461568 -2.376750675862604) (-0.4934195889581055 -0.2315217583287162 0.4178948619283135) (0.01256459310673327 0.2471950177893241 -0.2334040856576305) (0.01176127510140745 -0.1233395872174387 -18.59610833324643) (-0.6749924184541873 1.188337063961393 -0.3838326907810334) (0.6649383739134381 -0.1622786266045207 -0.08447030280297757) (0.2459044784029045 -0.0412759333920686 0.08354849838103873) (-0.3637556561564103 -0.2397532667216384 -0.03661950495291013) (0.2951445843547199 0.2315427493038991 -0.3254469926252425) (0.4337469540666233 0.887206829639293 -4.282243705383729) (-0.9237972209530451 3.086489656712199 -7.898563782996005) (-1.874232560700202 -2.615358940985227 -8.351244101261795) (0.06355978317558075 -0.09808338566375131 -0.1529563825844081) (0.05639249111896866 1.024605325745028 0.6525343737888388) (1.57682097288865 -0.5685383803830459 -8.275537987469271) (-7.402154030626217 -1.641933075351655 -2.70608475324742) (0.09020404784306096 0.0007157120644281437 -5.48160115089798) (-0.02764070536044117 -0.05401158380612548 -5.014842575857374) (0.902407480269805 0.1553524607509079 -0.001827863418845554) (-0.4065485812607751 -0.8428871233355117 -0.3324403407409946) (-0.07507695466781578 0.05724912278623946 0.03169900279665476) (-0.1987833559739672 0.05243665548326111 0.01353022190464755) (-0.7077001101682473 -1.213603839387661 -0.4855527743862101) (0.01188801855470049 -0.1728504819369283 -0.02054644615593988) (-1.286586971851561 -0.9293299486828472 -3.083619979831214) (17.81797713281982 -5.593425134000621 -0.9797014473755008) (-0.3599331740466926 0.3857916911153292 -0.07726201560097075) (2.626943115898265 -4.152550139183134 -2.114260092362406) (0.0628253749511487 0.02719211679341921 0.2474412921884414) (-10.65345740161334 -18.93435074468852 -46.8274430999171) (4.351775775598846 -4.666969490359941 -4.378210942721815) (-1.187431499305112 0.2885801609403778 -0.3028711678041279) (-9.332634116791287 5.483683759604324 2.902481903552391) (2.461967077764847 6.46382558159177 -7.027142414929755) (0.5855788315941226 2.088357853402134 0.4697379902171514) (0.03249958341632314 0.1605601344595046 -0.1125093240882869) (0.489144652515303 -0.5288934133478618 0.2597446180299123) (0.424388764564154 0.8685467364533216 0.2551033374090472) (-1.627537219951935 53.82167319132363 -1.697853492147042) (0.9154304625077789 -0.1868814277269891 -0.7936735408754356) (0.1218773363619359 -0.04188808228344741 0.02596890195706439) (3.105783224173961 -0.8631189428628085 -0.2868530235531759) (0.7782115153360216 -4.849967705373278 0.4272069847331975) (2.249517538812617 -0.9501811033889092 -1.134563749350018) (2.523090262434505 1.624475485942358 -1.765319858972662) (-0.02402451860158811 -0.08067078445278097 -3.551118072836313) (0.7804639784736075 -1.055637319632554 -3.693052298148062) (-0.2239112769451185 0.1484758421326355 -0.3131452390584689) (1.199921199155498 -0.09267725376885977 -0.5018104568519318) (-2.697101101196612 -74.00128741142247 -4.866703078898958) (-0.07088967462027476 0.08176511811512263 0.02448315717986273) (0.01555053737419261 -0.006095489189866802 0.006337562628222599) (-0.01319802738503431 -0.008252162294338564 -0.003204248717525994) (1.499057849244338 0.7105608616265234 0.9428602657749336) (-0.1109390119635282 -0.006715596474258418 0.1046908542199293) (0.1491187390203164 0.02486565813246638 -1.589271649839821) (-1.425700570754258 -5.912403007889677 -1.655448672555119) (-0.1880992618591198 -3.912837371780792 1.955497292066987) (-0.05116838864214281 0.01869114802184273 -0.01323391232381785) (1.03151075113326 0.3881271268208513 0.2565457982928929) (-0.42826585091768 -0.3991752293378944 0.8544852529837986) (0.01953083477949794 -0.0413082140269637 0.001161411208877527) (0.03801630579665456 0.01566180103010835 -0.03367551051948325) (0.1206486984684321 -0.05926771546821329 -0.0483624096827181) (0.03604167642365623 -0.1985978166625799 -0.09727581046578902) (0.1219543755830504 0.01826598394712177 -0.04978957851235766) (-0.06353228266287204 -0.009053793071279449 -0.03111313638673884) (-0.7361316197710734 -3.267281186201302 1.222714791258323) (2.435000840374776 44.7603978910123 1.219891787960092) (-1.569264622054243 -10.91084739479104 0.5866526858348405) (3.607371522787055 -49.13251820039374 9.338116760638675) (1.295405150158347 0.9369084723727772 -0.1629916373761618) (-0.7909096033771364 1.481092613000143 1.366563974225443) (0.05962462838987261 -0.006666895058019331 -0.07824553028246181) (0.3745098138759009 1.79401433756605 -1.06074834821139) (0.4218605563501907 -0.34208629466546 0.7572827286433147) (0.2579283808590853 -0.6630602061676949 0.6825757764068099) (1.187409564443992 2.135791107906168 1.975001915980642) (-0.04832283616870148 0.01006299064596955 0.04943956815600826) (0.3112668241389306 -2.384666598821012 0.8776212267572079) (-0.4287908080206461 -2.798813093042002 -0.6043360162064086) (-8.289605971697618 -8.789725135254605 -27.03035077063826) (0.01107720256749984 -0.009901022146096141 -0.006469567586357835) (3.40334983041686 1.332895852644835 -0.3394325439751991) (-0.5381479462949578 -2.163028788492033 0.5338768485670251) (0.01832795262170661 -0.1194492561504178 -0.2219100205633195) (-9.360584646233605 -8.458558139257971 -6.05644168741482) (0.124077746330056 0.04963705743399427 0.1240496555073241) (3.300493625616351 -2.312347697118021 -0.6871876416180878) (0.298032924529602 -0.4295731380303965 -0.1288379177543044) (0.09497428388628193 0.01267999136192889 0.000151723672842205) (-0.1159157594829799 0.1942302857123593 -0.3618006925806322) (0.4305685531576908 1.090049766311414 0.2262483457296482) (0.5837606924508151 -0.1820751807666808 0.2018039404747447) (0.4520463154186541 -0.1606364329296554 -0.5816607825230282) (-4.525180592462154 -6.196585694200041 -1.934323512254269) (-2.874590344831112 -13.71399439790236 -3.636994675991223) (0.523120597735186 -0.1736712894888287 -0.5636649727319986) (-0.3142321397769801 0.03178837304233179 -0.2519950633254056) (-1.342821070194789 -0.4730213721472335 0.3093144545469941) (0.3276921344114433 -0.01096687177160571 -0.2365483082823235) (2.520306060082568 -41.77953682380147 -6.015034759962992) (-15.58463394093754 6.418618553641233 -0.8870247498635745) (-0.4047397261051269 0.1274805027639741 0.2246001894252103) (-1.181304156430239 -17.30912943663415 -3.426728846269919) (1.326671118169477 7.967367053043463 -1.157041536198912) (-0.6364807022134771 -1.042267456682566 -24.57061678991349) (-0.178184711610151 3.438163221452805 0.1266632476118941) (0.759365326837705 -0.1486857035348306 -0.3329641085400494) (1.667426473122059 -1.702626056088015 1.401620701227833) (1.672120960706392 1.007996724906067 -1.890315008268877) (1.84264412305591 -0.1028001071954689 -2.714342028594935) (1.046566246989668 0.07240361107028323 -0.2195114611239232) (-2.773132526658897 -3.807450593341222 1.360021461610008) (0.9309707831813359 0.1305014699604215 -0.1009633913235204) (-0.7039991002364892 0.6823246756509356 -21.2919908281201) (0.2603899591726396 0.9664758560422806 -9.635053162432394) (-2.010771974246235 -3.158660770071315 0.9632207345104694) (-0.003639146184240327 -0.04566547530480487 -0.05911485881417633) (0.1288802538349567 -0.01850767617674393 -0.8187765877021695) (-0.1353139899843204 0.02984184367171672 0.1194269864332064) (-0.08159738815259165 -0.06759329000485911 -0.02346748733296165) (-11.1347903530165 8.772725547250756 -9.797905692717604) (-0.4165078732825805 -2.613373139955127 -2.93615941308998) (2.736414453136582 -2.278341024020063 -2.530235516959872) (-5.210348581463471 1.311200418625732 -2.81493679950861) (-1.098536884234288 -0.5315152104261237 -4.341713475548469) (0.1978464333196626 -3.896771485782596 -23.65312451081903) (-0.142794940826069 0.1861515460921929 -0.1576801567958102) (-0.3080572645961503 -0.1622920948199584 0.7727549531523275) (-0.01062146327003328 0.006534559648624162 -0.005752186361730039) (-0.005591267416213287 -0.004670628676040903 0.001751175246033987) (0.07008954558573441 0.1611137542354384 -0.09887447798280236) (-0.1975043683168208 0.1514047786440201 0.1713696257591595) (-0.7452020576249407 -0.9653584354722611 -0.4424822119499054) (0.03204354101187441 0.02007383598102773 -0.08360867282257933) (-0.3141021758055572 -0.08586205455029182 0.01938833043567577) (0.1104581471347016 0.09388435006026372 -0.1081558867644862) (-0.01810678773127072 0.46571445075877 0.1645926902582039) (-1.035758828556622 0.5354212932305522 1.26524061577624) (3.417600987345114 2.192693798025561 -2.108877737621246) (-0.4452552227413233 -0.5333269409995731 -0.2173997629041333) (-0.6010529288778712 -5.889129508468095 1.377806506770487) (-0.05093775511654892 0.0533510996601249 -0.02368951316905433) (-0.6800742254776798 -0.642003847135401 1.463935033845331) (-1.275604810609269 4.034453125008385 0.8692922942373332) (-0.05564392921267292 0.04619064939181482 -0.02308297624785718) (7.089383237238502 -1.101137871427188 -1.836598763468468) (-0.3668487693955279 -0.09066224235018171 0.0383280515942328) (1.908011417582331 -3.503927331175032 -0.6402683785044877) (-0.1871057459180594 -0.2268783276036941 0.0123070941482088) (-2.315046314731467 0.3610812790307976 0.0070345718457277) (-0.3409280603141502 0.02688485263515009 -0.163065764806345) (0.2041997857722627 0.2531814981530635 0.01425136084317782) (-6.820699195756703 -4.020500248773778 1.743909024478166) (2.891857853831104 0.4513919948057491 -1.855908098230865) (14.79581046338795 7.767393227877191 -12.1794110136028) (-0.1364471334379991 -0.1630783897133941 -0.05661153053076574) (0.518058450889445 -1.590492134729757 -0.8131999061383774) (-0.05219420729344694 0.05510510451303584 -0.09425839401129223) (-2.467756605772767 -6.813415037349239 9.828092279939966) (0.4752841760396338 0.9193684765750881 -1.027841244248012) (-1.771544100252148 -2.873178401347831 -2.43210409993207) (-0.2266276405388928 0.06405381580360724 0.1710746440656021) (3.288131001523524 -0.8658297492264421 -1.437875849211829) (1.699003636384465 19.71762161301033 1.897842881292467) (-5.341405709920872 2.863482086919068 4.264191580037007) (2.965909312599513 1.372583533924266 7.880327822963553) (-2.229046598110705 -5.485096335583152 -6.918712037504839) (-14.31425059863378 0.6560564783263763 8.694776654528656) (0.06450049340137376 0.4839538315849533 -0.2912386727979156) (12.08092222872693 -7.11973796591343 -1.786887180687342) (-1.150270132036782 -0.29497159477068 -3.129793267656088) (0.2015513332408999 0.1377626475414979 -0.2113882900013827) (-0.1676677864195841 -0.08819550783617314 1.006054044562794) (0.02068462360307464 0.01016303321495449 -3.180497128390034) (0.001748359375343792 0.03105672800748322 -5.444725560934401) (-0.02668642194679891 -0.1211831960063687 -5.514507192227265) (0.131259905813401 0.420463021516188 -0.2169230853516143) (-0.02370397956862404 0.03625956436618304 -0.0263972223241281) (0.0195457038891542 0.01392208502690007 0.009682902055728589) (0.08940449719093635 0.2118895157229884 -5.55932008757346) (-0.01660181329112943 -0.1138802816780798 -5.608385368192313) (-0.1935643874682954 0.02475105406422498 -5.382124912488026) (0.04861112250653578 0.09124399817082847 -0.1663727827054957) (0.1075547832661512 0.1390167064527089 -8.224801397847465) (4.874769846157046 -8.38226329149569 -21.38166864280035) (12.38488246728641 3.424158680915155 2.104630521624304) (21.62281007778493 -0.206683786157092 -18.84294949636779) (11.14095143798847 -12.25179258635745 5.713450379250149) (-30.18143006589495 4.020925818759194 36.24748122261651) (3.049034588095047 -8.67820778481758 -3.451412900195629) (19.23209128572513 13.64017118252943 12.33265258672888) (2.646420833620362 15.85639839167562 -6.88903377608987) (0.01118128311272456 -0.05524935625448447 -4.171866856654111) (-9.64381859644012 11.441109818872 -34.40976721333845) (-0.004894659612681007 0.001689990206323844 -0.006360264360866534) (-1.500293670160348 -1.493126458933034 -1.624244455595516) (-12.88455382923584 5.448260635406093 -47.5042301511503) (-10.55597669464817 6.683420803915764 -9.129387842759208) (0.8785187320107455 13.7833307578806 -3.123425249688735) (0.008713184728841892 -0.003009828209423834 0.004718767750583678) (-0.383955902349051 0.2259229791461713 0.01190081642333121) (12.36608583592955 7.828988046589892 -8.441357219041542) (0.003922107329486069 0.003217652203024466 -0.03590805487634824) (-0.04707284777819795 -0.04668531100269303 -4.880521961683627) (0.03773194973376454 0.009799113974035156 -0.02995905803451809) (-0.0003887529273513977 0.001261865216219861 0.00286456069751646) (-0.02102140604225675 -0.002575726353319656 -0.00865353345432201) (-0.001356408674198504 1.344907609427391e-05 0.001818950480472947) (-0.2054444350987724 0.01094342104322567 -0.1060360299663819) (0.03262821901774764 -0.030968745524923 -0.01771915998676993) (0.02761528233293859 -0.008218383283257639 -0.04969999739848616) (0.007946364694399348 0.004548223654630238 0.003183745143462808) (-0.08804640854044252 0.03839862697215533 -0.1620322732589319) (0.001462069229587543 0.02296857279268871 -0.002711163575990195) (-0.1459390296785497 -0.1200155579535158 0.05968238934647378) (0.1638778617017423 -0.2537049758475721 -0.1772394090079946) (2.71025942703835 -1.887060220151078 -0.3682659633541013) (-4.304483931037637 2.242119058286796 -3.352326671174095) (-1.657816335805925 4.26724099381221 -0.4677754627285197) (-1.210345667439144 37.26914702541153 1.394028606239163) (0.1627578931292413 12.72647042172479 0.7807764289958595) (-4.669571171435131 2.275095941441111 1.604449639841834) (-0.01696570640334173 0.0490524090776822 -5.233161345390056) (-8.947038541889139 -0.3561068321085478 -2.320988168477836) (-0.9884798662367278 -0.5238127770281651 0.5969827547389345) (-0.8235854130829228 0.8618734813146811 0.8034785088814792) (-0.1167593428820305 0.007974050674864737 -0.1305237572994933) (-1.501670522483436 -14.87505790044217 -1.158641595564782) (0.01160099254168169 -0.02327468244482786 -5.231879953061886) (0.2443967067202997 -0.0004494337190220077 -0.03692882763647274) (-0.3515131531792119 -0.2935169325406091 -0.005139865757549891) (-0.5195834576909611 -0.163345153078714 -0.03149499974670378) (-0.003121059082541386 -0.04511188247955514 -0.1016026581183994) (0.4492085224656659 -0.1818353603536121 -0.5830890687421846) (1.146389584432573 0.1300189750562243 0.3363335320198248) (0.007035167730227144 -0.01023396724320901 -0.02983852372984287) (0.2620273126751682 -0.05657693996843838 0.03725453020386622) (1.717189352429987 0.2149630788860878 -14.61792828102588) (-0.004490342453304753 1.69990870915535e-05 -0.01631979595496288) (-0.9542471355137063 -0.7269723868610215 -1.491253011279707) (-0.003827721617492993 -0.01821825299365961 0.00704550706139008) (-0.0002566118016215525 0.05896002713752751 -0.03623455544507334) (-0.1366383066339548 -0.07305924043273967 0.04931940242594605) (0.002936626174902304 -0.03032286631835414 0.04009282177383829) (-0.5624609643563528 -0.1344125600787561 1.717340555754912) (-0.2933751174557303 -0.06495004321813219 0.1969704044894778) (-0.1896653240478218 -0.03776605831562941 0.09103228705737361) (1.374172466886671 0.3313669013603173 -0.9039821572881652) (-3.92846493344272 0.8762028399721457 -32.69890671506372) (-0.583024855114875 0.5278510408820575 -0.0755333649366154) (0.8519453141704839 0.3524869672200051 0.08358327282132208) (0.0468849073000543 0.1221020826468854 0.07041332699240049) (0.1434862400964831 -0.01529938961200444 -0.002009579936245603) (0.03985164693617409 -0.02043491857987377 0.002756926167961382) (0.2010016898859419 -0.4610740226815098 0.4034710509974019) (0.5964048526929374 0.273322515283129 -0.1450219776361885) (-0.2388345892662591 -0.1152339819686361 0.0475758222776743) (0.1217391546657201 0.001937389912629397 0.04291934683837074) (0.1577399439337322 0.07056633032040716 -0.042061715858789) (-0.1067832583705438 -0.009364869657332704 0.1212562573019626) (-0.09456266513680846 0.02628164315358881 -0.0138429115224153) (-0.1002312439454475 -0.005586398633621252 -0.02717011650387325) (-0.03983235879182243 -0.01406742001051727 0.01433192505971563) (-0.201414843781905 0.07107590377528868 0.01355219599212681) (-0.003048245786450908 -0.00320076223922365 -0.0009415630505072014) (0.1154608189477575 -0.951705578508512 1.010229760944987) (-1.650625819767071 2.253718901276338 -3.685022256333978) (0.04010998198585998 0.3084424167910856 -0.02583525254311049) (-0.1189810916223497 0.001984980829351696 -0.07351664596551216) (-0.3713050599042418 -0.03138905383677665 -0.04517712428336344) (-4.398094263429003 1.062008693724821 -2.273189519929263) (1.217062305476527 -2.758383918009629 -1.762858848515723) (-7.813700013369486 -0.09043342176073565 2.008298026674077) (-0.2890909088976731 0.6508112043861545 2.299604888275261) (-1.700219795270897 -5.299302275081185 -0.5267219293076848) (-0.3281353747236192 -0.2318129206686004 0.0476869360611867) (0.03597332370869157 0.006342851786792475 -0.1233297136682505) (7.310990808681003 -0.4514012825427317 -3.273449675224085) (0.03523332216132481 0.007207844638925367 -0.02870296800144913) (0.4020261959966536 -0.6393214973472442 -1.452066525407017) (-19.24462230000823 0.9717244041640019 14.91803586069441) (0.07172564212618388 0.118412831420326 0.02898832246699996) (0.1382620012984261 0.2163664312338354 0.01568544154123133) (-8.357808580050374 3.590242593547323 -1.765117365226526) (1.437373625669569 1.234989383739169 0.2310177561100115) (-15.24415049936958 5.173139454174185 18.96257736078483) (3.507507493513185 0.9071615670812138 -4.971985845901552) (1.978500603736357 17.25791445497037 -5.390165650906226) (4.269214797917155 1.450983179165846 -0.8004164700542562) (0.4621769741469769 1.278113560720302 1.963139025317971) (-0.2036379946499231 0.08075147162737223 -0.541695800563339) (0.9320975436455456 3.386525871029544 -2.152133182018432) (-1.443460326927856 1.055464685628011 -2.448451515782158) (-0.909649280170962 0.1034450753232358 1.096758830553868) (0.07931957628091464 -0.2574855704339243 0.1938350434220544) (0.7796981764212427 -0.9621920110218495 0.6960958356223309) (-0.496361172520325 -0.1051909698153983 -0.05171705641037671) (0.06016449291199029 -0.1039827041389815 0.09948035935960296) (-2.845676763074035 -0.5667330489847291 -2.634735810240973) (1.199732902589339 0.5934988428841601 -1.334566246150169) (5.445126593674754 3.175896444151419 -33.93090037599949) (7.10289890994324 0.983277691395853 1.550873649965567) (-0.7504042154532569 -0.4683988559325771 -2.354672803731269) (-0.6175361181002841 -7.276206897932701 -29.88649501536686) (-3.462534603146191 -2.98154266489887 -8.443529004255709) (-0.8600730697156487 1.012714307912033 0.5635467751799988) (9.074849160342856 5.17397595666815 -30.03649970252607) (-0.312986079294252 -3.921159561615107 6.303971526745741) (-8.68433813972694 -11.53370149429182 -4.306893787504572) (-0.5737162181997179 110.5843494566681 -4.018570226406246) (0.507266952375249 0.7183153668560328 -0.3295835151509929) (1.074965229060853 1.330241501414384 -0.6443369936247114) (-0.643635287896732 3.339725255617363 3.068569450190462) (3.136930732236344 1.272121079742094 1.373438616497793) (0.1854273007827689 1.10066536242116 -0.3233808820668612) (0.2133904694722269 -0.02605714466327687 -0.08947629402598818) (-9.267190691861369 3.978118830865149 1.892642844737841) (-4.380633393241951 37.63086955771798 -25.90193233224522) (0.4879940099035245 -0.4139745439388536 -37.30929197514273) (1.885000384357379 41.34744029916485 -6.732364398751169) (-0.9854524929084938 -0.6984653128645384 -2.099752186234456) (-3.741927686490393 6.520016947249291 14.40147892953238) (1.940075304552218 -1.153892212550235 -0.2657718617700514) (-4.674374631825772 0.1931646050367377 -1.473722435839357) (-0.2366364275864868 -0.3108610335292585 -0.08234415128918814) (0.3595054263836141 0.6161555377502188 0.1311217754030213) (-0.1161480798410106 -0.4804461818391083 -0.582213276762608) (0.02554665528081897 0.1921635466002274 -0.1210261773606809) (0.4738981739009505 0.1305811497778969 0.3210707320341609) (-0.1146705220247231 0.08102978750095674 0.1082175123127788) (1.181568666091502 1.963859737087893 0.08907270092296765) (2.930466945480017 -0.7733284619766271 0.0257210151982822) (1.668622374294261 0.02948590960857245 -2.320729605820059) (0.2408819819094321 4.85969180708692 -4.168982869077216) (0.1098920566645351 0.325829827713006 -0.1386821006662189) (0.451665504060946 -2.174472749319143 -0.7829063789543058) (-2.951780733466094 1.184958833112675 -1.747189729660192) (0.3972012884467564 0.3039868537145233 -0.5554083653474111) (0.3218315692709596 7.68502498956891 -1.52262522172134) (-4.365441765957963 1.134687530641735 0.3070849272059486) (-0.6224696099093345 -0.4705752478285094 -1.047536998688998) (-1.369899811966414 1.089789222116696 0.3677412184226959) (1.441729288550917 0.1806280838904765 -0.3803883860609649) (-5.232477171434906 -2.371449054395339 -4.394461624022525) (1.286871279844166 -2.05519780740229 -5.073454491828495) (-9.552942575546311 -16.80212834417687 7.909332270911609) (-2.818273914043577 -5.017995393818518 -0.01519408644753339) (3.264063130690414 -48.03024097780877 7.860953170655782) (0.9123496821008444 -1.057975535746934 -0.2254399819291776) (-0.7913514927628932 32.38576951685828 1.139152669457189) (-0.06537401702961393 54.87389131995099 -15.04972919482467) (1.355701687573228 -16.42766392727919 -1.471651068628817) (5.977456998358139 -3.341346391769846 -4.43864308326177) (3.172450733441592 -1.918061450860882 3.055692344248309) (0.4868279668933304 0.5330851784033586 0.1775140462978947) (2.087983775434145 -1.015287330282047 -2.682410253629326) (-7.837545261537752 -0.7121594173987781 -5.181235353542143) (0.6121784222555214 -0.08365315289736196 -0.03044900423290001) (15.46805386655325 73.80642918594651 -5.397990616816104) (-0.3848467785389939 -0.9810749730460264 0.7246977796438852) (1.779318508227467 1.090518509530114 -0.6871178627173572) (-1.378272534827609 0.0459148586477531 -0.286749202784124) (-0.01781755326193962 0.03894111023880378 -4.801287120332955) (0.01559228010889232 -0.04545244119256756 -4.730404139271847) (0.05299297067592194 0.01285894253408263 -0.04083673440896162) (1.635773175890802 -4.114701432734327 -48.33789693134805) (-0.2209041707093377 -3.860854254931277 -9.034681175600934) (0.6961144980355105 0.2653384918060923 -0.2796030452159392) (-3.603169847997239 0.3121270823982627 -1.063858293335895) (0.1643219398165308 -0.06959450711120593 -4.599897306515182) (-0.05537740862690402 0.008305910556641798 -0.05914932434702052) (-0.1022496561820054 0.0788837306553048 0.07843213892354367) (-0.07675728992377229 -0.0357120028626649 -5.318993551992309) (-0.5258679033541764 -0.2808067847980195 -0.1768120589148327) (-0.2115321012844637 0.1625075990561989 -0.7304014703591483) (-4.556884439132596 4.236783833719159 -52.38298751766765) (-1.889183157593265 5.875308556117527 -43.05910317559994) (-8.581744861082928 3.673057938251329 -40.99734821780612) (1.264230006253492 -0.009876085441010846 -0.09640544648576227) (-6.01404531361112 -5.923509044426985 -1.584174899207169) (-0.06841215511761718 -0.09079212835384264 0.1285867425247137) (-0.01019215603237412 0.02116509917600145 -5.645782317100108) (0.2951417737179475 -0.2806516628663319 -0.3485857194650652) (-1.254170239723013 1.018527135299455 -0.51357912932094) (-1.802907207165052 0.3339125714108624 -1.766624346889012) (-1.903519038692996 0.6710360396447034 0.5425198878612907) (-0.0230439470917964 -0.01933715118367572 -5.630064932606444) (0.1237115345672888 0.06685668016392864 -0.02913693701556926) (0.02707494955772891 -0.03525497381620662 -0.02292934544806905) (-4.566658057430465 8.388895382391835 -53.82022425534588) (0.1621981409320967 0.0262259461985349 -0.1357969627676677) (0.5608404257435702 -2.810469829640009 -6.482719493605882) (-0.2887888697161373 0.2658867891831896 -0.4369836960474353) (-2.287805048720006 -1.916681929799985 -2.080925160609303) (-2.089488580226073 -4.297578420849195 -4.203544617831479) (4.238326513603146 2.648230411171664 -50.68543046213691) (-0.05469118135156992 -0.2331700411649039 -0.03715172159722017) (-0.01332502632594093 -0.05672707318227124 -5.135709168891827) (0.00333701921032741 -0.003431347729175871 0.001427898022281123) (0.01712885385531858 -0.009873620035680885 -4.404499501774361) (0.003418631513340237 0.0001367921486197287 -4.390194323718128) (-0.007422358833721716 -0.007073855885994539 -0.1113147678300103) (1.64440077338897 2.351334806038158 -27.07016864434168) (-0.002667945345010804 -0.0002543361852672607 -0.001785462295180566) (-0.03482091173349122 0.1515072106556485 0.007274755525567264) (-0.1901001204935342 0.1750059508604657 -0.3567844702254864) (0.006194585886974697 -0.01354489497601356 -5.499795562930104) (-0.003968673595494875 0.0216725865105041 -0.01189713984652094) (-0.01089531768473731 0.05924321527792316 -0.03371877073364589) (0.0110498625320612 0.1334566268174989 -7.299179637369938) (0.06880484349666874 0.1590470546216356 0.1112949201231202) (-0.009959671470702845 0.04639085544544 -0.03514426304598882) (-0.02524734837213533 -0.01001827433338736 -0.07845681320412631) (-0.01005345526216436 -0.01706591434495151 -6.722998599964089) (-0.003074190765445666 -0.0004639753832545003 -0.008007360557246962) (0.6304300749995925 -0.3389127281818089 -0.1158466161581951) (-1.328559423122714 -2.887979769614015 -2.685906354072132) (1.577156585186481 -0.5596659226547311 -5.566320648986199) (-0.05152492208244411 -0.04255744874423724 -4.715348671020061) (-0.001878448501977169 -0.005012705363605527 -0.01486952242940565) (0.02006680486428696 0.01586501855674131 -5.018493099920786) (-0.1696081235410092 -0.1721414230022938 0.1905979988471931) (-0.07688459129948266 -0.3021837197548882 0.2980106071690481) (-4.019642033217925 2.392151263337801 -6.023443050541646) (-0.002955617313233056 -0.001469734877542014 -0.01598906002989644) (0.3572558308181059 0.4691873119931304 0.2116116790422009) (0.7571383027064991 -3.008532448179427 -8.330705042595048) (-2.021099601113426 0.8226734504515407 -13.2120439307023) (0.02196911458392703 -7.097259690233308 0.9802368793787455) (0.01922712588234943 0.06616146382195343 0.009625410669566552) (-0.003047389680428464 -0.0009102636353362113 0.0003355733246923697) (0.02917543008874375 0.1115130311340873 -0.1037489271623098) (-0.01033050296023317 -0.02554474683886999 -0.01117019125568272) (0.005137069505364977 -0.003130254397590891 0.001462451378002018) (-0.4348262957278303 -0.3360864434694754 0.2745447050167228) (-0.1400746348502114 3.213310095253419 -31.6989704651141) (-0.5399962374738307 0.419867151024571 -28.8994855483015) (0.02414397475395397 -0.0009928073450231169 -0.01434841392379258) (-0.002072458705367959 -0.01634559166712512 -5.337709431571196) (-0.003294306495087244 0.001884222929725239 -0.04097330831744139) (0.01110618178651104 -0.002461542661958556 -0.001065200187741184) (0.02372103338020301 -0.03191252934795745 0.02847607009052521) (0.1007451478253855 0.2697445412832293 0.02689309434938949) (-1.600207664599793 -1.634133242174106 -1.595076881948569) (-0.002938718230708505 0.004645110032534315 -0.003666117860274572) (-0.003369756948499681 -0.005652597640110266 0.003803570475062489) (0.001966710119572332 -6.325244866760402e-05 -0.00345381722534005) (-0.002464336997057229 -0.003944871936872403 -0.002876804118058196) (0.009690867841431154 0.0008199314115589292 -0.006731890518361108) (1.513183741090492 -2.304259190503058 -36.51967135559058) (0.03836879466366579 -0.02350469081304114 -0.03060424979581678) (6.206012808510218 -8.312212496866319 -34.97935879182786) (8.985052548806868e-06 -0.01518255243403059 -0.05812520104705816) (3.12716785775407 6.256651909289896 -29.65446777434017) (-0.00611858429050351 0.01410096735117883 -0.007541598282860164) (0.005070414739268151 0.003352367696803094 -0.00473208074516765) (-0.08792410956050054 -0.06053972027665322 -0.4616353406400189) (-0.007291882127428531 0.03757621757012358 -0.01881771242568213) (-0.007470269437147643 0.01037442265525739 -3.555905416768234) (0.01774496922380864 -0.002394704513272398 0.00159756704770903) (0.005896446215496495 -0.003059491415424067 -0.0002492525461257264) (0.007300776328705046 -0.006975755258018463 0.02616221441809046) (0.01149056617885419 -0.0001253902041503541 -0.01111390456519583) (1.496958868050259 -1.395900643071862 -11.72983716474335) (0.03993635359863666 -0.1131793828464098 -4.667003476599959) (-0.005698359162908206 0.004266599516115569 -0.00990960646650378) (-0.002272710950883645 0.001282522880906094 0.0002899159723555686) (0.003173471752422342 0.01382061722866942 -0.001059446943764579) (0.02854476577363018 0.0470131315923732 -5.891089239216493) (-0.04509653025230162 -0.05358114034115951 -0.008519831170823014) (-0.005093517203262329 0.04125355654220702 -0.07437443627145354) (0.002014558029635148 -0.02242454299835214 -5.130677892728065) (-0.005936298752386982 -0.04272515067106934 -0.004223505436712868) (5.530844746975483e-05 0.006856221474165028 0.008685751903999062) (-0.0903450147970538 0.2687146751241896 -8.43749810551334) (-0.0001214621054638487 -0.001132050844905476 0.003029207609470785) (1.05119456534327 3.175380869864397 -2.149036232952455) (0.5429988210262717 0.3382652206801681 -0.03296334375845695) (0.00745705035358184 0.001073015709870057 0.009281100316594518) (0.001306268464714921 -0.01027804308284791 -0.002332263299603461) (1.650710245883882 2.510365110178231 -1.85355002991279) (0.001381111120663231 0.00128874858696919 0.005730767786980322) (0.02561475165973734 0.007425031034108169 -0.0331065657807316) (0.002666480772756992 0.0037534026234175 0.005002525114601713) (0.05143918835634217 0.04622732443394593 -0.07442485179129446) (0.05718976589297669 0.02165055696896492 0.006131689139516196) (0.003163360815959175 0.006350018715743902 -0.0009057749883378269) (0.01658776583502998 0.04312893601150401 -0.005337252184049564) (-0.5310994821444763 0.2884079693594338 0.3227518985658982) (0.2810946035973275 -0.1116419000924864 -5.474783872213505) (1.732959387260538 1.110118873688974 -0.4911181258592825) (-0.02766356317875726 0.0393459312921447 -0.04910074293560038) (-0.2035514766749396 0.1115988222661458 0.03555666611776953) (0.08577693809062839 0.03855259157774823 -6.719779220119138) (0.03291325684574865 -0.03078999624753625 -0.01521493121026104) (0.05968864689826122 0.04165005238457328 -0.1348565205850171) (-0.1899155444277415 0.1534341123747973 -0.3238573936900379) (0.2941678587980835 -0.3608309415934624 -6.141144004216795) (0.5008374694165519 0.008073487045712258 -7.980087018795917) (0.0002928383282939616 -0.008428412459288638 -4.483314077287137) (-0.6713235021331321 -0.4293856522112443 -0.1280128416986763) (1.038999113934928 0.09520264191988217 -0.09094310877611607) (-0.01972828649160749 0.007293371466430868 0.00895630547278542) (0.4927371104540289 0.1412360608721094 0.02426386347869908) (-0.1057514076621464 0.3703987238574905 0.9040324027277876) (-2.363680844948859 4.045227377263363 -4.549747861652804) (-0.0529185471301985 -2.583749960138975 -1.806428778479261) (0.2844933578570485 0.1402727883032741 1.080535347502534) (2.15925086382793 -0.1235377798644463 -3.473434221984685) (2.238297471066481 0.7722921079086573 0.0572965440876505) (1.588796491095301 2.15806934777021 -3.070563330163222) (0.005920400286109144 0.001922563084620512 0.003661911046849979) (0.0004249069470836355 -0.01259627966719714 -0.00491933103289084) (2.242097488331146 2.096703952965873 -26.12100819067158) (0.3397352876115065 2.233776048266456 -5.507263020457144) (-0.004924069507086425 -0.001936195515649701 -0.003832364756050801) (-5.369123066681837 -1.466669260950157 -1.95930763686636) (-1.973142903893908 0.9215050677637624 1.357237740577064) (0.0092835905266914 -0.01761716235807758 -0.09065616542538274) (0.2983117634488021 0.5384909842836793 -0.194538353322314) (0.2868904254433923 0.1554278981045464 -0.2925380152012831) (-3.925715328051106 -1.409435149915173 -4.767083682586941) (-2.327266381670934 2.066659821245179 -18.69684069139219) (0.4668400175327195 -0.1726474140628213 -0.3328187095896289) (-1.053453538256852 -1.192532195767939 -0.6172662061277652) (0.005823398372067259 0.003838967655554491 0.002372301567226435) (-0.7758091623189276 0.06599291212338809 -2.68978248957179) (0.01324537232180639 -0.01177784120893904 0.0005008752585510729) (0.04968016377292193 0.03391957552975877 -3.975239963882114) (-0.01037645971358761 -0.003451750248915442 -0.0007590150657396158) (-0.5702196087571771 0.1574616699692372 0.04833228453287009) (-0.01295373305486161 -0.1906306242995528 -6.418105160859269) (-0.001126406948468481 0.2750580381962955 -0.003957678367425339) (-0.02302911491403674 0.4033201517710033 -8.099846267960892) (0.08421977200069151 -0.1048413011335741 -7.6065945330205) (-0.02954020857326929 -0.03363439689625452 0.03373395212914575) (1.815846373132639 0.886887337241808 1.331950899295472) (0.8000445757317367 0.2760534305454396 -2.333507001902881) (0.5599782636129799 0.4598511143708515 -1.301688231521821) (-0.03419554234879252 -0.782732366520938 -0.4414881234906933) (0.1202222028257376 0.1690791428686495 0.2579811089344482) (-0.005916767901789024 -0.008161795194894962 -0.01055118712650269) (-0.03581064329553804 0.07983979236362243 -0.05083095857863615) (-0.8507528921065061 -0.081710562910164 -16.35307780194066) (-0.003883901743911644 0.001045473404643002 -0.004408831804988) (-0.0007537611101681367 0.01276030087751952 -4.860489762689223) (-0.02413135845563621 -0.01353840403725105 -0.02698265578968805) (-0.03188347138539009 0.003818314211641151 0.02048029561760629) (0.001235130763281394 0.0007669908083176031 -0.0008726827246451474) (-0.009471609343914304 0.06413212427850885 -5.097225961626829) (0.3995833066519458 -0.01690608397648686 -12.76511239586898) (0.6787771694345435 0.2935932309040663 -0.152778438775885) (-3.293446191237389e-05 0.001593096664277353 -0.0001659261258253371) (0.01586142659851543 -0.009366027102671455 -5.837488768674716) (-0.1080220189097694 -0.01514668194903128 0.05198242339365303) (0.2956585023379998 0.7405220717720469 -0.1279838334237506) (-0.4694362365069456 0.9329193959387485 -0.2019783107682508) (-1.397071414807228 1.621109834839927 0.8063342951888351) (0.0644939542675349 0.02401199694531722 0.04350277572995219) (-0.09377764896332602 0.4485225605727624 -0.3880834581553065) (-0.006663224376550772 -0.06574616150082185 -0.05401252755749715) (0.00710517040828796 0.01558685521245469 -5.522908816220777) (-0.8588264200784972 2.099376662791254 -1.198582253294238) (1.287689442538985 -3.627886908180479 -4.593762176518763) (-1.279961960110162 -0.4979405731581876 -5.17229149265005) (-6.262445688733104 -0.6535827391061693 -4.957478403953766) (1.37319953571486 -5.29452197734856 0.1972835507394676) (-0.02308936205686654 -0.1691964236132377 -0.0523639270168776) (0.2568141501880504 0.004470872225403655 0.02611827760679786) (-0.8514553193559167 0.5967102760139386 -0.07179098821637626) (-0.01647795798291747 -0.3229048184709386 -0.2566993107530447) (0.01423570938392017 -0.01461882770747484 -0.008464101479242248) (0.03097117399160328 0.01692624316713629 0.007097606867638837) (0.1380636364248865 0.007327864497559001 -5.899428964601788) (0.00523293745703955 -0.001785679588828813 0.002790685740590637) (0.000241303412201293 -0.0002412059431911815 0.000700816748129179) (-0.1900211811231177 0.09742963478004142 -0.05975260871498694) (-0.1985457835914326 -0.006320470908965266 -0.04372054415744012) (-0.01969523989230625 -0.006145000389876386 0.02079148124618315) (-0.1401621049722255 0.2293125602510127 0.4404792017803068) (-0.03375536725582236 -0.031173320004697 -0.09860695175063769) (3.625543483553388 -1.381871071915696 -4.180321396079365) (0.04609671911961352 0.1646664365299703 0.5074123344457686) (0.01092144337437664 0.00586745097377149 0.03931780598681353) (-3.998149403404033 -0.3761119635976234 -3.145808167180487) (-7.368809566922217 1.715037147599788 -30.00450778105037) (0.02434485594996512 0.0007379957877957019 -0.002909228206622767) (0.8045400427778306 4.836400085545783 -11.24610766674345) (-1.253382943501448 2.221759340618831 -8.025697671469759) (-3.361145714332861 5.771293994363884 -8.385404256850109) (0.4990506415681298 1.875053964246545 -8.108289507075595) (0.1303722002205271 -0.1217505498070929 -0.03340793635722676) (0.1184397220917794 -0.1508666641702937 -0.4630967507916384) (1.466440624155525 -0.2803203599221087 -1.209894165173423) (-0.4987751137333752 -0.1251678000847547 -0.6153938272336686) (1.271254167154973 4.40444375912482 2.423573829581754) (-7.488852577205888 -2.396777122161431 -1.790179033062175) (3.463232051437108 -4.27511877044062 2.616380153076155) (0.1028399156937865 -0.06728935941140486 -0.6103875443386385) (-0.3041510454848433 0.3673728241861366 -0.361702625363521) (-2.224092922799709 -1.321109941841945 -20.67093065161319) (2.692483592513399 -1.22933264011587 0.7744352703225286) (3.436213185908901 1.671946532364379 -2.516473612160572) (-0.07458086330387846 0.01304247070400561 0.09213750126095585) (-0.1907740136545735 -0.5410952963395342 -0.5328250737890954) (0.2956462472219998 0.9302373932537866 -10.59035810324609) (0.03166485126340845 -0.1218904235008678 -0.3300634345924207) (-5.93892366770061 7.255217256509174 -37.4005879941666) (-2.608497393587421 3.705252326762165 2.226229433223134) (-2.358218868827305 0.994499678401044 -1.566662464019782) (-3.432671188011901 6.416755423004513 0.8263235379433371) (-2.906161379102603 -8.170566891110781 -10.81558147850221) (-0.2273998061513318 5.54171494098829 -27.38743580201716) (-2.873259707643609 -1.824812697868055 0.2390136134619173) (0.729707854409992 0.2268836076278733 0.1451157658261046) (3.842088338801646 2.296571916374749 -1.396178164610103) (-0.001347022307010532 -0.0007379086546007177 -0.001626111298994661) (0.1841400399561976 -0.3242516947690662 -0.003779758228641225) (0.0983084639414385 -0.4228551265258439 0.4454081790452493) (0.007390945065542251 0.004886394209043579 0.004435896122862722) (-2.478931045216892 0.6241975772745352 -0.117931751589007) (-0.5571045553536336 0.1738126808919399 -2.280489583197714) (0.2691966963607353 -0.01275156104322911 -0.757146595147943) (-3.674600064250354 1.356926557304997 -4.492553825147583) (-0.5932763804157102 0.8963683726105574 -1.523124080328187) (-1.198974580616022 -1.817203910537904 -27.26260667996389) (-2.336832886201247 -12.37650885060441 -0.4460452938502507) (-1.221491852209124 -1.055184564039018 -27.86275639567605) (-0.3642610672659621 0.5771168262702079 -0.6360334171240352) (-0.2256333258642127 -0.2039000414957883 -0.4018764155859541) (-1.069355091231797 -37.0828045335249 -5.797005769340281) (3.480612069365308 -4.270764485022609 -4.237533849192891) (4.666188349068553 -8.158295185724151 5.563996569493406) (0.87721239281911 8.388502741208752 -3.40920655097645) (-0.287925511428909 3.288356657304574 -3.390570168287269) (-1.673990173998332 -3.001831111372002 2.785259531093838) (-0.002517668533081684 -0.04574266505724426 0.01586487701665901) (7.804440579100184 3.497420984597173 1.235735410769099) (2.584261365609665 5.276013269968354 -0.2380977384957292) (-0.1868038236697538 0.08984876467657382 0.0447314783679493) (2.171238652229514 -4.548638419297243 0.7661879678521385) (1.495565228551329 -1.035772363570828 -0.7134170085096413) (0.1654483058574129 -0.01607381886664497 -0.1143709573942565) (0.2291814364031693 1.662363655627403 1.90705066697341) (-2.591022276558462 -11.70856731543549 -6.349936447741082) (-0.2360288650727165 -1.111390025135209 -19.82911080849823) (-4.419499669430445 -12.52189797972469 -7.052243302122723) (-2.499598698359721 10.92408806419866 -0.2853520309189619) (1.598784303968695 0.7482647904335122 1.04737742229221) (3.677425470665334 3.804965304992416 -4.566556731305232) (-0.8157792681986492 -0.1837180433177631 -0.4275421565833833) (-1.762750899550503 9.401992034951814 4.587766986774789) (2.101151780008559 -2.049864629973349 -44.27925499685779) (3.525520791901491 -10.74621646961972 -6.531478026800701) (-0.2062801652786158 0.8713226594823689 -0.7624032109990979) (7.759385920047869 36.38672683337319 4.951893024865539) (-2.424741960675328 -3.486779425925405 -3.601396004949412) (2.224744048495924 -1.616928622775248 1.237489905531765) (0.7730848999484727 -0.3636037710730075 -1.220965471034375) (-0.5800637444864996 7.54607496248576 13.16184588634735) (-0.6897623152576926 3.728777093069199 -0.1126612294503574) (1.149814808993546 5.249207742342165 -1.995272909181776) (0.02189959789788246 0.01426531559178686 -0.06861111973098205) (2.593574711823753 -0.809014486794601 -6.012247548026871) (-0.02504000789004314 -0.06409015449261514 -5.156394928677858) (-3.544515338412662 -5.282889265875097 -2.484699312859354) (-1.606429896775732 34.55620661762527 -1.549319277750979) (2.5089424566786 7.921970471463982 -0.6498410906970803) (-0.3267498052072264 -1.663734249303094 -4.696398743567144) (27.38847602565869 15.71574160113128 -15.49566021049352) (16.29735410950108 79.87920536919695 -40.51243165680692) (1.329649494735627 -10.22592369792517 -1.986751288495835) (8.639131688759766 3.997383107082469 1.057404043113634) (1.216125124879557 1.225389952182438 0.3226574435181593) (-1.533745995607069 -77.43891235482371 -2.656516592524909) (-1.642008893564463 -14.92802719817867 6.257952411827362) (-0.01828135705205456 -0.01455644920088349 0.06619762733294729) (0.02965538102420135 -0.04266389814115634 0.02058317418692948) (-2.774362609229069 6.408313831067477 -3.713751059186987) (3.458273719880201 3.830937945769739 -3.031674360318977) (0.005741003674019812 -0.000307026796220728 -7.061063247843972) (-1.405103960034422 5.252683592807843 0.8483637840894926) (-6.202989069638524 3.659757296823754 -1.455299352787633) (3.240092223784148 0.6018274676809425 3.831788452346394) (-0.05619366681233921 -0.3072253964719744 -0.5470919826317754) (-0.9264464608848528 -11.4971729579158 3.986478141891632) (-0.2373245013314605 -0.6696130846409432 0.1800413100641364) (2.065823595776562 1.182575205299115 1.481883720554006) (-2.545374845680299 7.711845945306726 10.95688186922751) (-0.4994738178102745 -0.1141911488556838 0.5836668698415142) (-1.973969934037543 4.775885806495892 0.2794873033179333) (0.192705044679117 11.30299006347703 -2.892852087406177) (-2.54899598310072 -3.892199672215682 36.40924355455002) (0.0200864332360382 -2.10120437306735 -3.613241937535888) (0.163746275567775 -3.427963030699336 -0.1583379606514819) (2.946035792519184 7.650279391725138 -0.9174294679167949) (-2.240640819107631 -32.68735824613951 6.73680591846119) (-0.8506921798106255 5.826124129122734 -8.013092301140365) (-2.410091579661979 -1.606861220621788 1.248383822013193) (-0.3077525372882041 -4.351651491679399 1.432411461185654) (0.3673091519219609 -1.129301727872981 1.139909739556949) (-0.3488280937792618 2.395975729763493 -0.9461684467055365) (-0.1702553069448198 6.148152398676269 -0.1081935810080883) (3.858895157924159 -2.181884512080451 2.589241330643719) (1.088696300942607 -0.7576766977536509 -0.04201916618946866) (8.400457865504045 27.46439592325504 -40.02397595609563) (0.2079255492918331 -0.02796933073607463 0.002853963497568071) (-1.498500883029994 -6.087228027260503 6.271607467702624) (0.09739044248743695 -0.1388858168928656 0.07740631633642153) (-0.009701690144470301 0.001627446402212858 -0.02415912569095608) (-0.6556290901845951 7.382365504114293 1.848621201647455) (-0.1690169329580852 -0.6509826383176891 -0.1041668392304375) (-2.367604038805645 -3.75984419629117 2.641677455833037) (-0.0644943769669175 -0.03440412241066269 0.04165700860067818) (1.735117915038079 0.5782690769514396 -0.6771691792580679) (1.102587571403261 25.70420367432411 -2.447585636718676) (-1.290217332223236 -2.682995790915506 0.6785481931013448) (-1.562087858198701 11.9644811812666 -8.381664844945874) (0.154819313526846 -0.1088598665413553 -0.01616964885649762) (-0.0714042164116644 0.127580555705805 -0.1084627423057381) (-0.06058558519719856 3.067183613407599 3.051033131645378) (4.186248396610218 0.4838440946916975 6.61673471055665) (5.280060202748546 3.136098979042976 -0.04535583302095958) (-1.015741959171113 -8.337328534806359 5.368013407374565) (0.8422542904814496 10.16401200539774 -1.808493511461211) (2.788571659618738 1.730652818711319 0.3516431390361622) (1.028332402174426 8.178441598522859 -1.898938536556703) (-0.07400513803362735 -34.72601009643982 -1.668567096040126) (0.9103498963764702 -2.200232195287424 2.070429309785071) (-2.430421077692278 -4.263769318353988 -7.906080823264444) (-3.304350269397999 -39.54741447956652 2.510926234280477) (-0.4021826193479671 -11.42013461802179 4.645641459964266) (4.215493710335299 9.835824986536984 0.4006696626436259) (0.0404117811362813 14.32381053539783 -8.437311964848293) (0.1815282781542644 -0.005873906016986868 0.04603895722104767) (1.610362835109481 5.897853043327181 0.4039745767858951) (2.260679325666601 3.344848700694135 6.086684590657821) (-0.5202936367502807 -0.09450904346274874 -0.05709049430532821) (10.14806749843511 -0.6726988892614392 -17.67820829739199) (0.5910764656380648 0.1456769212232112 0.2186340292046179) (0.368637663332918 0.1921489792842002 -0.1812418173849769) (-0.06147962572358801 0.09995930301569383 0.02619157076511572) (0.003379064938409893 -0.6877261659787366 -4.721947172932391) (-0.5761332026551511 46.76260946996755 -5.943605053547667) (3.168587546782446 9.005992090827235 1.905767064535957) (4.737117450676142 -0.8857724891153104 -2.468184010887453) (-2.049158157357701 -3.263510027867406 5.920887299584484) (-0.3140017079118503 1.801959026871627 1.293257227678314) (1.752549497376007 -50.69636366317926 -3.416772119052605) (-7.401712063090987 63.33544892501025 -3.089112056638896) (0.07234457703714622 0.006939892206924238 -0.08026025354417624) (0.7003553546907977 3.564650765380088 -2.009154478247629) (2.313196154754514 -7.48935379255362 -3.19311728625306) (-0.1801235746795682 -7.772739018296323 0.4004071098605293) (3.44179935004431 11.47896123790177 2.312302193915991) (4.190268117882952 -60.93744261723086 8.543157581695183) (0.5320464596922558 -52.6316203674732 -0.3823715253166489) (0.2429071326010627 -0.04881594718530688 -0.1094248393382158) (-0.1436918015068059 -60.58210310581454 -1.875685618117996) (6.512344323580504 44.78616705762268 -9.765365616619938) (-1.51274152448082 -3.565963088237299 -8.628250396485781) (1.774708001040988 -5.624466053334896 1.121117389315916) (-3.761088062302322 3.420220521683214 -5.124543971572808) (-3.882955778064043 -4.182161756923739 -0.5729168493368247) (0.1725864091899513 1.157563891194736 -3.805869856955806) (0.427837934474383 5.769192608018024 1.703155036982558) (0.0493517165282816 7.961628088381262 -6.814185983169962) (2.488975234406901 8.082201069783324 2.360792673377844) (-0.2928390657834114 4.227194784341077 -1.421143302753289) (5.115468795173022 -1.281652984321248 -7.43288404275943) (0.2529632651119121 -1.185514934028888 -6.429661854168201) (-0.01931766033482518 0.8242417328954158 -0.5009600733649824) (0.6807557498061521 -39.60688504705694 -6.23366780203602) (-1.149787779476956 -2.839976385350564 2.779657944317654) (-5.318026440646273 -4.005150529247843 1.755323824537427) (-0.4369031619905559 -8.783197832795974 1.664470420329077) (4.118855503369195 0.2906599012112534 -1.716721348792112) (-4.548013222290021 -1.162962250683306 -2.74167153033009) (2.685850524976353 6.348881696369714 2.342539366849695) (-1.422861463156106 0.2632688680749875 0.6003538734682367) (-0.6167736730030129 -0.8595228555830822 0.1095256635755355) (-13.32022446729121 2.631740319081594 9.188805003095295) (-2.896533813586895 1.410464853291083 -3.252495269053007) (-0.2209079561223706 1.396684358721152 1.544651527350308) (1.49788944221849 2.680383595976795 5.334699285707092) (5.929888503927715 -62.71018818321987 -0.6219073484941415) (-0.9169707445978561 9.664795419105772 6.354236274534512) (0.9805043410550003 -2.04906366471589 -2.539054712292531) (0.03917834880465143 -0.1780873427638767 -0.1264169554938899) (0.9296923790846563 -0.42381080955987 -0.6958759529621645) (-0.7358193037710885 -17.79688296818293 0.09334403785230122) (-1.719859263843788 -0.8806306999765674 -3.401142721113027) (-0.5953861653105528 0.3814202245908159 -4.620281660330297) (-0.8833395191879214 1.445209423289137 -0.2730735152371866) (0.03003870196839464 45.15986437922469 -6.663675894446921) (0.04856464652373636 -0.005772848268387427 -0.07998148682509268) (-0.06881705622934878 0.0511793835947458 -0.03227428477298177) (-1.909521425367391 -4.299803457434627 -1.152587604316617) (0.1080519911768972 0.4441565900088192 -0.2392940371301834) (-0.1502284488247325 0.2857499514486526 0.08691508190104169) (0.1333675065768715 -0.1573760004598549 0.3035417127734322) (-0.1363618244175858 -0.1285451603584548 -0.05288241672393393) (0.004401285385053412 -0.02565012155776003 -0.04159741132370606) (-0.00159102478152584 -0.08628167275226245 -0.04702833113518519) (0.9216729954462894 -1.422615467696562 -3.758522745900121) (-2.753229251562031 10.48992356940643 7.37062208433682) (-0.06960680964738608 -4.119624814156632 1.395759591970286) (2.243740440086225 -9.190119903675484 1.225209815496725) (-0.8961624548867166 -0.3875079327948415 -0.2764888262201406) (0.1654834126291891 12.09708023311705 2.285266490403428) (-1.517710492165728 -4.949902926360114 -0.6598048416158069) (0.5415576864600592 -5.646563490363238 -10.611776428122) (0.1566039983724183 -9.65962634900397 -16.46676606282434) (-1.671933385585914 -80.40632481574229 -8.462178637446547) (-0.08511260833699037 -0.08746513016052726 0.05386599593367783) (-3.847563175587019 -1.503477233565697 -4.221617591174508) (-0.1502689722680903 0.1900413368703456 -0.08384269119217999) (-0.06618521717605985 -0.04988695887615956 -0.02647091400842729) (0.5848158062531171 38.98341485280929 2.422228672316124) (5.275347514188696 -2.234548065879725 -2.491492402481038) (-0.2940116958707556 -0.1653735029941331 -0.06425771809357722) (-0.4693429309136176 -1.103402913114415 -0.2894784778485017) (1.781866531694235 -31.0361892320087 -0.6346460320493528) (0.4469872700272003 0.1016200380351523 -0.03411981016154951) (-0.127722294479698 -0.3873811563627587 -0.2097360713679859) (1.759035891966882 0.1682677101162511 -3.553498642202921) (-0.06783551087997175 0.01514395990775608 -6.610102928058049) (-0.3009855033925189 -0.6628679931090172 -1.981521029723537) (-3.616589597243411 -9.415178891881272 -4.089501322791614) (-4.721506485228675 -0.08748659903293721 4.784967251388808) (0.2179580473364544 0.7325093811684205 -1.996821867539812) (-0.3259361656817084 4.788702997395369 -5.859090638262831) (1.65342977654575 -6.777011236300631 -10.08988925794778) (-0.205028615012097 -0.01610196756531835 0.0514642955330265) (0.5982926650329161 -0.1369542798183111 -0.07420331341418565) (1.086084129730834 -0.6194487765914569 -0.5705112937389085) (-1.760987740859484 1.483824762256584 -6.159516427711225) (0.9710106008112569 -1.719196289347581 -0.5263841481738919) (1.914973133928056 -8.582227172327885 1.603490505546949) (0.4241245191596335 -52.70057569107518 -8.483559220224187) (2.370322495538463 -6.387609694131991 -2.270309683184397) (-1.855593036224457 11.89326146548322 2.950978994257613) (2.181005454807955 -7.881895961316587 -0.3633236727433549) (0.4750569776536959 -11.43981478783845 -1.199867075718092) (-3.109388769508506 -11.42915090459727 0.1159386907846229) (-0.6553890524708686 6.395965555587189 1.993205489753925) (-0.01549201371956217 0.02201128161825239 -0.0323962642286612) (-1.003730209000317 -33.14165760823178 0.3923158663263111) (-0.06733043334990062 -0.02985430485823452 0.03547851315991339) (1.806833071628597 41.51623566168053 -5.322372426517108) (0.5664222009073339 -10.92693661100417 1.377968425958792) (0.05023270032454302 -0.01143577075292549 0.02309084208440891) (-0.2725152575898429 -0.07553591393894199 -0.1412160116818507) (-0.621277204583001 -0.3007002660295729 -0.2596320409344584) (-0.2658478459000008 -0.1421545033614845 0.1216274740495007) (-0.2755429000030342 -0.1667409175549373 -0.9628804962681639) (-1.880975837840128 -0.01243236667779027 0.02244376571482304) (-7.760375568446761 2.794051266386337 2.874976410948656) (-0.5845189728967799 2.765477710979736 -0.6763597583493874) (0.4896752477276349 0.02290843166468781 0.1164721955810757) (-0.07399806442430512 0.8699878242877459 -0.408734087118596) (-2.079973475796486 4.921232530803668 -3.974653571406876) (0.1321492912272158 -0.1452804722139863 0.0480858749672551) (1.247345908852743 -10.7759970458785 2.778316905835493) (0.1185175268364584 -10.74764535002618 -1.597872213782254) (0.7069856403345807 1.751859407395148 -0.4765192746165675) (0.82267559471075 6.211285755301651 4.331517806509858) (0.2855350757850428 30.78202305051533 -1.04914128577718) (0.09433552678663748 -0.545748927873118 0.2719308015657682) (-0.09882341180161547 -6.325248663479347 -1.465547200849632) (0.02335602466164589 -0.0392955275933744 -0.4947690966600866) (1.414917428359067 -33.51467374612479 -6.503616658220682) (0.03699986870931318 2.216560151747177 3.132582945293859) (-4.898672105995929 -0.5667813923127589 -2.099432537132053) (0.4072759320766391 -0.8785718632808369 -0.3474506799905669) (0.1403292175408812 -0.03329778300020068 0.09300176377898263) (-0.1086905599463547 -0.04668240871081294 0.01156747119718191) (0.2884145185709014 0.06298244858517796 -0.5434213144866429) (0.09195554398612728 0.2165462651427264 -0.5762808535574454) (0.2772326902366305 -0.08219565014250378 -0.7055366472395741) (0.00097892164444269 0.002499094934468151 -0.01017017770947302) (0.1212235921258969 0.07890332251912843 -0.3183921643475414) (0.09776967721647242 -0.03864711503598507 0.01939680114020413) (-0.0478328075773063 0.0151348720818503 0.003985096886978881) (0.01428143467334321 -0.006756812857858244 -0.03865966578568066) (-0.02956130950655819 0.02490828135628315 -0.04839967551684878) (0.06105337039289519 0.009169429427248696 -0.0440734845093542) (0.1483302582402524 -0.01424310139320488 -0.07234767004376907) (0.01260019019792284 -0.005722063409172141 -0.007399649201278722) (0.01228241012060555 -0.001770934706004907 0.002559382730429988) (-0.02800457098413618 -0.00556022887720066 -0.01558255587597744) (0.03013982353825796 -0.003844570703798181 -0.008982818052989082) (0.0307342046160604 -0.03059000375032432 0.008627241539296683) (0.8004360581372376 -5.1801926819194 -6.71712623554029) (-1.149620578054692 -0.1972042801809955 -0.1087125741919281) (-2.689039218822967 0.9832438363772056 -30.06443334303023) (0.1116023756571234 -0.09281326183483327 -0.06844627732945649) (0.06142176739309782 -0.6493383325016464 0.2590019641337154) (0.1648783497363741 -0.1510102830365015 -0.1322457232494831) (-0.06977857493051491 -0.1497674268379305 -0.08377924542395801) (-0.006638336116202943 0.080865217782337 0.01366301589888243) (-0.02225100503362639 -0.03338150008864173 -0.03571450342469824) (-0.1074109906696864 -0.005762764205885611 -0.009086632630284072) (-0.1151579370615138 -0.02342514980186056 0.03253479694508349) (0.007264421856004224 0.02374126116666752 -0.01511694248335986) (0.01507535656900565 0.008995926552976867 0.01840366763180284) (-0.01441504073798042 0.006934416727515378 -0.0100397009905606) (-0.04983219866541913 0.006366860063161233 -0.02637527602889923) (0.1426957396010137 0.03442374306608786 -0.2033181071661487) (0.1186963058020647 -0.3655517847819225 0.09039975502977399) (0.03190282855011763 -0.008024117685767473 -0.02603638289254594) (-0.5136026969527901 0.2593800364599599 -0.8222734105487015) (4.931223065492074 -6.40843269375419 -1.743002571364128) (0.02329935310718547 0.004573195691903724 -5.608163961160305) (2.864923326451714 -3.895328344125359 -3.265312547527945) (0.6532524477786278 -2.222569469809702 -1.005483740948972) (-0.8022277098215349 0.2632672502905219 -0.118078766002744) (0.003220172701748359 0.0005730763427090407 -0.001096326309016787) (-0.1879268957462648 0.0952801253252044 -0.06245056017650021) (-0.02917890185792433 0.000187882237421385 -0.002405907731147973) (0.08240917818663351 -14.20596251072276 2.337859355854221) (-0.8555939137141931 -3.855592166054919 4.23722012461198) (0.04323106693286682 0.06668666565977804 0.001335226452332104) (0.06216345670334937 0.2632927063676793 0.2117053731368644) (0.1148551521598728 -0.01014215772968357 -5.498060140976635) (-0.01271309467240857 -0.008553772347918523 0.01429648804345885) (-1.823732897991455 -6.002178899076608 1.850258911607858) (0.1643443788655397 0.6071862716517228 0.06628507302297787) (-1.063246126381761 -1.545531999421435 0.6760519972674712) (-0.09967186845030696 -2.708605251436549 -0.5076333762317098) (-0.01179335229574124 -0.6951234772080502 -1.025079349051036) (1.465959184969549 -1.520233301301669 0.8168108925272575) (-3.34934042198054 -8.804992574000922 -6.065750095775317) (-0.1131977233704219 -2.685332739015286 -3.975797738034309) (-0.6105329750429497 -0.1585091661831454 -0.1157873000452778) (-1.163615599701771 -3.625296685708983 0.9208021420370101) (1.821191995910559 2.514964564105068 -29.37682941169916) (1.20334194099755 1.479301940057274 1.26556262778474) (0.04759711231592536 0.08783719105860346 0.0646379300657362) (2.890819397638022 0.6550178171414514 0.1755013696301599) (2.763252761162755 -0.0579160510225053 1.716622166459487) (0.5371008248168599 -0.07084237391027431 -0.09488819340103569) (2.272229524935348 -11.88088671073676 -1.24367530859358) (-0.0836019850331242 -0.20336222459576 -0.1781084591789527) (-2.444366923050256 -33.77916778521229 -4.937464202057335) (0.00292287009669785 0.0008762530303210672 0.002227218143042361) (-0.518424706482067 -30.49153488578509 5.854936053721724) (0.7142328403214857 -0.2075648451699996 -0.1502906590243832) (-1.012701246024973 -0.4250321603337414 0.3447641257707899) (3.396543265541264 -6.411196359442838 6.602594188147478) (-0.2653470830874189 -16.00132878201939 -2.989731350326667) (-0.002119765339382157 0.002732578445638372 -0.004112699240136648) (-0.04608315527822988 0.08577413900530945 -6.972884787247539) (-0.1468953558000776 -0.259353725402127 -0.09919737319905148) (0.06205477230901357 0.5275082051933924 0.706943699297609) (0.6706266263094893 1.045849206632346 -2.620236401368068) (-0.0132030599372362 -0.02344221897165425 -0.02527164879474796) (5.467674480261591 4.0852643304458 -3.063902043575931) (-10.98675096429837 3.676807984469447 -15.76418984230618) (10.94566738862966 92.189126592327 0.278861615370729) (0.182970290816197 0.009421230654073708 0.001923151883738894) (-0.1125072874362237 0.00858741915971444 -0.03176514125493828) (0.3816632004606859 0.2860929300284176 0.9492798155772705) (-0.00348666860185793 -0.003984593326344068 -0.01258466812419673) (0.02304596220757163 0.008391282098998695 0.00421955895248856) (-0.01432077532461574 -0.005695572476647798 -0.0143082536545382) (-0.01385393252746386 0.001096954523045219 -0.01853280934297471) (-0.05436639833356684 -0.002784114589614467 -0.03371148527274553) (-0.02151866512003145 0.003601889323386732 -0.009898405623429612) (-0.8335552892621872 0.3760985423802949 -0.3825065396921554) (0.3758269357938351 0.1913057047161831 -4.795112756300965) (5.766002954330397 3.944323064446792 -0.1569741058866565) (-0.0257005916188362 0.01624570889882575 -0.0009621501021535501) (-0.7236855457894187 -0.1401930647741143 3.166391161042312) (-0.3985923913224064 0.3698230530009182 -20.53960010538404) (-2.95974518865648 0.6970292109372322 0.1395532557686561) (2.960567471231093 6.927973324057267 -1.575532519814616) (0.3621375109255119 6.669917977041655 6.940932591953326) (0.8445031345386368 4.837674224405445 -5.179665140786845) (-0.6787006927497915 1.61106728003621 1.578848308797253) (-0.5287079214898269 1.878766228585531 0.1864617854378932) (0.2018467737656862 0.6636517537644068 0.2433554855972865) (0.02039617533374199 0.003864294665272694 -0.003554958794292074) (0.05275884014429243 -0.1745312873841371 0.1998911602217429) (-0.0576431248774068 0.09805970897016025 -0.11399423628145) (-0.02023401783792237 -0.1131340085442629 0.04456283524104078) (-2.374782479804861 1.506201545864828 -4.175339749022758) (-0.04666870436632523 0.6393207418115178 0.07805169825037925) (-0.7752027386699163 -0.1949482854225924 -0.05811100191916513) (-0.03378263020818292 0.2609134969193501 -0.09979387726402739) (0.3629406911673752 -0.07415392333474691 -0.9497825262581368) (-3.24224270471787 -7.487647509414684 -9.468516445824724) (1.708722474530401 0.2780636896645052 -29.75794486262046) (-3.651783887967272 1.010367155555984 -5.350188844821108) (0.005043808098376066 -0.004752999567653584 -0.01217992728703561) (-0.01993171874530724 -0.04835182993843521 -3.981762535607923) (0.01785202677807798 0.02699994109551162 -0.05784483913510061) (2.662100253271281 -0.4368238790872696 -1.409053814055601) (0.01274046895425815 0.00414283166146269 -0.002887522365502852) (0.9064259852688903 -2.157092833960834 -4.803725245378335) (1.56971360028553 1.943010227370384 0.152872731630086) (-0.5190561769023928 6.017533544768805 -0.6408274855505256) (0.451741388067265 1.332576947335017 -2.0725666768865) (-0.4847467058529634 -1.658024556255879 -4.140756862809701) (-2.462880259943562 -2.686216320006618 -7.021533478378478) (-1.379519439783274 1.975781522461083 -33.27836380589335) (3.54078639764142 -0.9102251325640464 -32.76988968361359) (0.1020687535352167 -3.255859117725393 -3.572880417939075) (-2.218938240052826 -1.392532902418147 -2.759892383061851) (-1.992282174941178 -5.992863214057508 -5.109972344140683) (-0.6213682910112859 -3.485951960064299 -0.6326452204213671) (1.436535462241507 0.5137385730403405 -5.296942243180738) (1.887810577769023 1.903233856897353 -8.7100042340765) (-0.6115328885204524 0.02853534243679437 -1.258753113599832) (-0.01794377494881847 0.03955077818297444 -4.221727388306928) (-0.0173462719683761 0.02796413708780439 -0.001166859635791912) (0.0009005201489825903 -0.001814949472424199 0.0001432715509268098) (-3.036355845621365 8.93423596112294 -1.107284864695569) (-0.7099185138486395 -3.976615224605884 -10.1826199229108) (0.02267726095246168 0.01094593433765327 -0.01472191657235362) (0.7767530372273108 -0.996660374266699 3.173205095254322) (0.2342953274358794 -1.212964622045315 -0.1512953469532645) (0.02090763077736862 0.8959749074708968 0.4455213803294185) (-2.536448489972968 -4.732272891309049 -3.832610402686237) (0.2347349349993353 -0.8034023708469724 -4.449663480931696) (4.356542735680714 2.453615564459297 -27.80303172564349) (2.618716645597855 -3.956458376430878 -6.206490213293624) (-0.3015453465291324 -0.05465883040029991 0.3395598146675551) (-1.447652441227549 -0.06226842018848661 1.333196651393886) (-1.312150008447029 0.08416551914304995 0.2360569426793032) (-0.2875005412586201 -0.192089907504916 -0.1354557928496889) (-0.1323473573060951 -0.1709783263676461 -0.2385954185003466) (2.178870822563217 0.04613230186241853 -1.40590971250457) (0.9115698759298295 -0.7041650221501312 0.430391336489868) (8.845494503334525 -1.293986850663764 -1.789676869866365) (4.271248113372626 0.1610033364121109 -2.968116395651386) (-0.1920306446696383 -0.08310433482428126 -0.06713230899482656) (3.059054387919558 1.073366204911847 -1.766155249847853) (2.916658801642996 -1.710801724307345 0.08211905624199911) (2.171181604768322 0.8227777719427679 -2.452607222539423) (1.911499718243633 -4.495027298189919 0.9444437737550918) (-2.651353916977812 -27.26818974997268 -7.307863305657847) (-2.500019404831304 -10.74692394309591 -5.697758466451458) (0.1597041013456203 0.005324671226753397 0.4369763101598146) (1.14975481343201 0.4614734290494749 0.1788954345111926) (-0.09412741446192885 -0.2518019015006802 0.1039035947842612) (0.20059845913448 0.1355276312693995 -0.01602229629879116) (-0.1563066571133064 0.2156104029147896 0.03464016107784422) (0.4391299459485538 -7.727331377079223 -3.441023936925157) (-1.521088506693732 -3.617790044513943 -1.016761667555943) (-2.824886252478939 -10.38334924852039 -1.791506501842737) (0.4522953278852607 -5.075208791605519 -0.746270329924505) (2.091768402050075 -6.728508360794887 -2.794504196167212) (0.9048734590444342 0.2261166657250354 -1.144256673220903) (0.4768085883224549 -0.1448762556599492 -0.4566774291805751) (-0.3716077074979518 -2.211809644710668 -0.5667225642021948) (1.119821255227139 -2.457781973631104 -1.817942482678329) (-0.00194720041084416 0.1826488515345048 -0.0969669585155403) (0.2059176903968006 -0.2612136151127994 -0.2471936828674478) (0.01613966473438739 -0.002236465605630806 -0.0004762996534024567) (0.01752061064925502 -0.01217581202566616 0.0128949999667459) (-0.007881658943779398 0.003590834928267224 -0.005523506284652313) (0.004986920860657669 -0.02608509023667962 -0.01249025501816817) (0.03933500206626193 0.05759324907813303 0.03426700262990307) (0.0006668274151954692 0.0139231673386497 -5.494444307842984) (-0.2598566176114419 0.03474399827252455 0.08931178568781797) (-2.619966134381818 -3.404288379440563 -29.01922852742716) (-2.533479731262039 0.9767513449955607 -2.312589163128341) (0.08955559209470876 0.03075936203715982 0.03954814179743913) (0.003469785273891828 0.01000112772632381 -0.03523056289071701) (0.01288012260891209 -0.001658942284960238 -0.01646945926528712) (0.01952478651109467 -0.04503189399792052 -4.245078451125483) (7.224282817684638 2.043820043315994 -5.92643767222634) (-6.542305892100155 -2.219785293238144 0.278091030117825) (-1.256974990096395 -7.343161324039265 -2.47983339939023) (1.469534282723371 3.713171389402597 -1.47277665272824) (0.954329540120106 0.4414119384099562 -0.5290668054584373) (-0.8170704809561915 7.680521823450592 -0.3720766703943565) (0.5590695611425782 -0.5858807008577765 -0.7281574830302681) (0.007645460888768853 -0.07011887147956813 -0.0366115715946361) (-1.882054985584251 -0.8821742810420211 -0.8788637872287264) (0.139791472102158 -0.3786550269891821 -6.532210982870474) (-0.00258305650812365 0.03415747276865471 -0.03522805500685273) (0.02767095949475304 -0.03870493161377282 0.04714133918250851) (0.711316892395001 -2.727677593076044 1.320077871323884) (0.5391845600946984 2.61729397231297 -2.689974752394797) (0.6968816524574178 -0.5088889315072697 -0.3747045833437919) (-0.03752287502380829 0.007894725470658994 0.03179724127557591) (-0.0641080311576277 0.07192657804978016 -0.04099261860410007) (0.05321468840776416 0.09352908345029648 -0.09804670830741014) (-0.009772961538036936 0.005296778701612113 0.01233935125204343) (2.15128688869008 7.432090464839414 -29.77399887369395) (-0.1753398836419029 -0.08942549223519934 -0.002818715719185516) (0.8266088260123838 0.2628187912284433 -4.397425140137893) (0.4254434281161541 0.05056516974344516 -0.2275896975453) (3.958724528765633 5.24447736362338 -3.57425409124754) (4.269863914446116 2.091933926838966 -1.925728075031062) (-3.346976338638291 -5.850945633426632 -8.074529275265744) (1.400367689014878 -72.12112081796045 -11.13816390043047) (13.25082916976682 4.876685512098863 -6.807111348664733) (-3.59847452250255 -0.4961086685764265 -2.656729384439427) (15.9179323043049 -16.58671351184074 -8.78023512254037) (-3.217484039181966 -1.563660242821435 -4.298123895546738) (-1.648927451612566 -6.835118771614315 -3.311218343039103) (-3.006343182959208 -7.037745242062031 0.07415976506030877) (-0.01021150613503703 0.003872184665600663 0.001563302963089309) (-0.003142405821606867 0.02554564924711152 0.0175738876955259) (-3.068454601176346 14.86389171093128 -3.975813302494744) (0.04959861116786606 0.01064251829147582 0.007530750955546372) (0.01075906674875878 -0.006913639940385475 0.0007900414683073035) (0.2208363276066521 0.06813557174656718 -0.0534754282877385) (-0.06611622247028781 -0.4406769801314813 0.2903418448718281) (0.05976924934699695 0.04466994890422947 0.04727901821097718) (-0.05348011176541193 0.2192188121332846 0.08780920880781042) (0.1834926432922029 -0.2391784784508934 -6.473959552985844) (0.0772165322761858 0.08355273725822851 0.030917354027178) (0.01174417665152727 0.01006761279976185 -6.03226395961507) (0.7991570889385768 -0.07621219446520616 -2.103174697679516) (1.197668071396814 -1.278848972307958 -1.077960231123674) (-8.326299323388184 6.264399502052171 4.342136756708708) (-0.08019810304601033 -0.07743471363453075 0.09681260050492804) (0.03280859872967744 -0.0589211485282642 -0.0915156274015451) (0.6324018839481296 1.674439187824389 -0.4932675119067668) (0.1226544632116444 -0.2757494329494731 0.06509169047433663) (0.34064002115306 -0.451083901606628 -2.185436167671401) (2.958127458757301 0.1246114391102901 -1.968143752227345) (0.0782053901460958 -0.1898386544163353 -0.1080354849079978) (-0.004083235928625637 0.0004651307352856958 0.001332256307462029) (-0.1643353137522992 -0.3799179724931224 -0.7304181293119028) (-0.001136429474960358 0.005102535234234508 -0.0108817009081552) (-1.673541224989409 0.4667947833417192 -1.124894277830592) (2.199443093057205 -1.362452841144933 -45.58371306940589) (-0.8073131417326302 1.503179268628522 -4.781876928253106) (2.090452788758032 -2.521678462447837 -6.763346395744085) (0.01780797617272357 -0.02831747690979879 -0.05608330786720416) (-0.2132424086883324 15.08203983519352 -3.800716894918403) (0.2000387703366835 0.543439285077072 -0.8259905496325515) (0.6543876144290761 -0.1281658066143074 -0.07993674840913206) (-0.511384741110991 0.4928856002629406 0.7447243882860466) (-0.002591313910183698 0.0004766704755930233 -0.00317153464245174) (-0.02595608076630647 -0.03222588767618799 -0.02745619004680857) (-0.05545995532908648 0.01278996590870402 0.04320331203414743) (-0.006069431951251637 -0.01442660287207535 -0.04572639901788474) (0.01012382710862973 0.001623038399208174 0.004465773700388483) (-0.2407693744079482 0.5831963675029954 -0.1310929655114778) (0.009974946168702261 -0.001370903879221747 -4.706456371819534) (-0.01153628998587966 0.02082970129998538 -0.03524888918518543) (0.04580663690731654 0.001756611838478738 -0.009189976832990575) (0.01469937356436766 0.2782165527065058 -0.1267051239210287) (-0.02897521940135708 -0.02032041411760897 -4.461380355318862) (-0.4271177285156373 -0.01040805420364643 -1.128337768089154) (-0.001432696024046661 -0.00415690331411623 0.001703235776415715) (0.01612026498213688 0.3459929937881574 -0.5793373874540279) (-0.01190598930547404 0.001062369770946949 0.0146814145024098) (0.006699389297429685 -0.02694237218190614 -0.06348799081180323) (0.03004147061918897 -0.03450639858164511 -0.0436603014369763) (-0.8391994302266643 0.4419454286618578 -0.201364568781665) (-0.005506639347157242 -0.001750638824120059 -0.0009776202367049102) (-0.0003335045026130241 0.001564992064004976 -0.006211275910986618) (-0.01347887113191112 0.004408113813100098 -0.01300538145319404) (0.01432569131681208 -0.01406568290706099 -6.429650447695571) (0.01055144835207508 -0.0002480245783401253 -0.003189197888065156) (1.836383732871542 1.195962789238907 -42.8954186553821) (-0.6302674423794598 -0.4638520709694636 0.100175139828586) (0.9170502425083268 -6.453621836911569 -2.103737695851396) (-1.219190384726798 0.2365078768980458 -1.78307033483551) (-0.9892855478580184 -0.07823604680157488 0.4634885016186507) (0.4839254461210367 0.3269401542485386 -0.1837574725985491) (0.08445556348776091 -0.06122030381100172 0.04698533198595461) (-0.130998639925355 -0.04168298913336993 0.08363093713924964) (-0.1851684213487429 -0.1184838841026041 -0.05651258203580398) (-0.03080351196144876 -0.1115598902590426 -0.03071571758433591) (-0.06269492445537055 -0.2050574444040517 0.05688938936185527) (-0.07018101309405697 0.005590444021278604 0.02028501135929738) (1.192597949832318 0.4598690275627177 0.4412084727439562) (0.4057320727865781 1.893370922553995 -0.4770128661186823) (2.131328285465877e-05 0.01474184749721739 -0.03705245289714339) (0.02295357452535777 -0.1712143391360474 -5.537068802131476) (0.01314058644520249 -0.07486029428106322 -0.04152843768964533) (-0.02840667620253912 -0.01038921212911659 -0.008843652320772243) (-0.6604589754293946 -0.2065156067546308 -6.026871786309007) (0.1779748946143007 -1.101916012657823 1.080817863491458) (-0.07531235480753873 0.007676587160967233 -0.01471755120762914) (-0.06749497661128778 -0.1848574190047569 -0.2638305960971334) (-0.3763567748717143 -0.3081535369843514 -0.6653937203510281) (-0.3145839469683481 -0.2302660980947737 -0.07673683680428811) (0.3609831696158898 -0.8478224684467939 0.7002203746438087) (0.2733276194062113 -0.1486237033429265 0.2628369051954369) (0.002423674661175448 0.01247483794124563 0.003592617882818014) (-7.329272700422496 -0.8483963921105206 5.384793600054144) (2.867926536777855 2.210692512321858 0.9613781052146311) (0.06960997787116527 0.01683964276254699 -0.06675986888007444) (-0.1921514010710278 0.5295729343830515 -0.7388886989903105) (-0.1054399428456894 -4.876507893957415 -5.612850440658757) (-4.621141488643003 -8.703436555874051 -38.54695580118871) (-0.2736952741843041 0.6333517499473639 -0.5032984136188628) (-0.8575896403477246 -14.04137371959698 -0.844648591206563) (-2.182233746248491 -2.583194642984346 -2.484293172994501) (-2.863375866078356 -0.3694034449904028 -0.1842797633426762) (-1.944538030508412 3.504125251534732 -2.042841051094709) (-0.4672409038326993 -3.625652454736929 -3.445959609798095) (-0.456496853243057 2.209677050783367 -1.314545061962659) (-0.178447378737252 -0.04995415175511714 -0.02008468562213245) (0.01323546877007099 0.003341550565341197 -0.007181022981990604) (0.0008881077349122586 0.01778163919856427 -0.01286743389147614) (0.04105204014958414 -0.05160455028936767 -5.111868149808553) (0.01795115264254683 -0.01113756682845624 -0.008212535335118936) (-1.10558026773697 -3.932619061508459 -4.424498211418591) (-0.4923765836607877 1.490589258987379 -3.820632142297126) (3.844148241331348 37.19097969463017 7.881443034193505) (3.089186686755692 -0.2410328353843953 -1.656730983617398) (0.1033034842103936 -1.686693754075478 0.8446049915732137) (-1.260048921076665 0.4325960858199599 0.1706415717932221) (0.7474890650559651 -1.86217600969725 -4.32612956672504) (0.585654629560771 -14.25729093114072 -1.475353911848803) (-2.031844408196752 -2.506249522130787 -2.966662511360828) (-9.080068554328447 -4.196150417392817 1.207256463392656) (0.3375704710598297 -0.08683641810428155 0.4819271922889542) (-2.04088322644638 -12.28927551845407 -2.764660503478841) (0.04146059407690586 0.06752924780186649 -0.1524342192704991) (-0.1249106145250553 -0.04401090924124944 -0.3645608828511739) (-0.005488025808774841 -0.001870510727880019 0.002064508453634869) (0.01072614702643062 -0.005443442358147572 -0.001331212776232543) (-0.5199211304249097 4.381478131019004 -3.726482215257816) (0.3563234563493839 2.76079404299428 -0.7596598185055154) (0.3505564465920149 5.089258109579847 -1.713544289124305) (0.1117512591356532 -0.2717186098450316 0.1088041836528613) (-0.1057547994020378 0.1114150533957961 0.08393907493444838) (-0.1503415650660072 1.302851784772386 -1.309060851721354) (1.392496140312261 1.541995800833592 -2.98797435794) (-0.09941125773518943 0.1893746118719699 0.003808030438863241) (0.01157387450186593 -0.03604011675082987 0.03582516300385476) (-0.009975317229951569 0.03235940923056202 0.2533132015571328) (0.1141259788577044 0.02384650128062525 0.01224186113150724) (-0.2152319271044039 1.881816867315955 -3.370452722358309) (-0.007086865304877427 0.2758845237044727 -0.08232325167269078) (-0.07970368870792671 0.05595962803411059 0.009534511354683074) (-0.1756466226831372 -0.3943288038907128 -1.11259759639321) (0.02150386296003024 -0.01031136508038813 -0.003685615899059176) (-4.252475110050597 7.548863542200821 -4.188730486762619) (0.1512446843568827 2.890480231601971 -2.892664768001127) (-0.003341008171047896 -0.00162716488830646 0.002228092232067116) (0.1991221001132789 0.04208975239561333 -0.02461983548620886) (0.01348518685909053 0.01119323262817359 0.003128739872209699) (-0.1622839798912934 -0.04450932467839418 -0.0831236190997858) (0.5095819118172659 0.1783852958032081 -0.007201210441396239) (0.03355628903181266 -0.1246894385768798 0.1560303600989857) (-0.0272511311364561 -0.01350566298827192 0.01605669933631512) (0.05758636306952474 0.1270613617419228 -0.7386188387787974) (0.004656447019376673 -0.0189320863271785 -0.02202483493064963) (-1.174617110979532 0.1416657119050449 -0.1238810666038488) (-0.06830396212685091 0.04743893412173508 -0.04195514281729953) (0.1352844589900115 3.120731793381226 -24.5642287241915) (-0.6929267765819778 -0.1790312525328457 0.1058926871829631) (0.009099561412927552 -0.01823579757351097 -0.04842245056871017) (0.5591639237841243 3.090023899656754 -1.664971396047881) (-0.1091420088990638 0.02889194563381333 -0.09003784643931449) (-0.05661888988883666 -0.006747890626312925 0.01541102888155482) (-1.785534972093153 11.69439049456036 4.527439116792129) (-0.9468454220375484 -10.83682681220595 -4.901553574353184) (-3.383811242434647 1.701559056539193 0.3944351510636741) (-0.04003607749780943 -0.006554085514120126 -0.01059281385102654) (0.8779904206768483 -2.960450818895729 -2.451978903927793) (1.306316483809331 4.437772063084625 2.685407735597562) (-0.6874108593413741 0.5045243921508076 -0.4756326489259912) (-0.002026141069246645 -0.00135839654808701 -0.006564035464167035) (0.43138530199557 0.06252768953797319 -0.08357396075561366) (-0.1842878871706203 0.3808897142335331 -1.634624785403184) (0.01624419354532488 -0.007661214767026544 -0.001618046348847989) (-1.299051703220254 1.020309638900788 -0.6592900312492042) (3.669218379545301 6.093659344780536 -2.148625264386992) (0.06928772295147366 -0.008776526563060605 0.09428770554497722) (0.3358725329970658 -0.07409617772987261 0.06169971790905635) (0.3925119168780499 0.02112621887031376 -0.09757753687408161) (-0.1936437604241984 -0.02184017659772429 0.087497329128732) (-0.01553057944052535 -0.02706687351854366 -0.01037204516505478) (0.02151094661765611 -0.01058086484277225 -4.936226364383323) (0.8953765306738143 0.5903559247771629 -0.5722488372707232) (-1.145584755396869 0.2764229637787082 -7.959952276344068) (-0.02965436839507252 2.400984747576545 -34.63697710981103) (1.514354638208549 -6.983390611205429 -1.183849435490229) (-3.061170368938403 -1.071665423392614 -6.71776375982491) (0.1145081115153376 -1.954158482907946 -7.032398665613186) (-0.3784865121629837 1.896875981981433 -6.728004870564964) (-3.555802700734725 4.261660943712013 -2.4387985748004) (-0.3479341371233386 9.946138671462183 -0.2351152944065817) (-3.56204252209531 10.21850055129901 -0.1469083071105304) (-3.979459232797491 3.930799367651704 4.594788211839724) (5.665216081385831 31.62841628007706 -2.00267036988705) (-1.92105732845455 5.148606708098304 2.265891603348011) (-0.009786007086184823 3.636293124341493 -7.286645903870085) (-0.01127536855809537 -0.006000909563070148 -0.004430213587341837) (-0.2022918899252836 5.746685562396974 2.612796887186679) (-0.005956948042352982 -0.002827042267745781 0.006629893941667406) (-1.014480973934745 1.266986936498343 -0.900918407632633) (-1.020211132783382 0.2861273493283082 -0.9458453043253823) (-0.07477926833898081 0.4920802073273116 -1.705890407159157) (0.9085387994485279 -1.169800272997666 -25.35759633649679) (-0.8469562006379303 -0.346048336661585 0.3170848540639229) (-2.321128359905186 9.100995881833912 -10.42040354414914) (-2.005408065686828 -0.2810715030600631 -0.5520870975592452) (8.197517809451565 0.03247204866328102 -6.276139886578429) (4.153409890332227 4.501395687607468 -5.078259373755208) (-1.133963570252327 2.023629482862978 -1.282680176040259) (-0.3037862786625198 5.527071216551219 -3.085634976412836) (0.001524038928110709 0.01273705025741567 0.00466870045027137) (-4.260588755541916 7.655016222549007 1.409163815356388) (-1.304147604655981 45.18916827392441 3.731446944993929) (8.271020907724898 -1.766340992759404 -13.44916236386778) (6.645452809978041 6.173911646647307 -8.108749731613493) (-7.584872180387759 -7.918418912817899 -1.305559699651045) (-1.530706051254686 0.6709676301429472 -2.529894966422154) (-0.6525485206865604 0.3581881192222347 -0.4423166273111337) (-7.610083001958972 -2.924662051318765 -1.514821045081553) (0.01354954303469036 2.504522387067612 -2.392082566272561) (-0.06634965306938118 0.07610036428158895 -0.06767375976067259) (0.004900265339381025 0.001854474882972165 0.007059036416098433) (-0.001146395582764711 5.458864486456057e-05 -0.01266934398183442) (0.09077954736839559 0.08541131805886626 -6.676797350590448) (-0.05732107119115878 0.01472448790131549 -0.01184806886328605) (-1.695148976959952 1.398720891778998 0.5626952471801971) (1.884948548656163 -2.391880883495304 -0.7949610513309571) (-1.958257138710386 7.544344802828325 -5.220492034377711) (-0.03975237011590582 2.621014668128597 -7.254060047344969) (-2.268264476177206 0.007979970778787426 -22.37419775001458) (-0.0181326228414925 0.01289956769549017 -0.0003765926150657972) (0.8565585871428922 1.644178869457558 0.2005549608005321) (-1.045333825780381 2.524000675855481 -2.700737731166506) (0.004494116909614865 -0.03488153169032129 -0.005352063406397944) (1.744582986071834 3.140776422197088 -1.202298264009147) (-0.02264967671007063 -0.002705349411066441 0.005597608509493968) (0.01892752707793361 0.008481557345168103 0.002237918588984272) (0.004813452956247178 -0.002790111260130305 -0.04439635712464829) (-0.2278273536360011 0.03010823628880852 0.0532449609952283) (-1.617842979099476 3.309909876777851 -0.3207009477652029) (-0.09043278908642979 0.006300168253412682 -0.000101258213310056) (1.003664693973357 -0.5069044920890743 -2.096980827196795) (-6.429690248631863 -3.1268214209136 -2.120336112883615) (0.004971243179712292 -0.001386088239162486 0.008887236959430325) (0.02304880018833404 0.02044130245135281 -0.02819195823304349) (-0.5062364941113221 -0.5891879008791502 -0.3270192916515288) (0.02563987804361997 0.02025231574976442 -0.002255155791919975) (0.04817883175988147 -0.01204508203866835 0.02253513086046862) (0.009598158096030127 0.009505819802200874 -0.0037511590192277) (0.01892677395114317 0.2468931636958719 -0.1434710067437864) (0.02702243396073848 0.008233785620215085 -0.005465207902075345) (0.4816441122581727 0.4631717530450951 -0.187129696059186) (0.2898212542299708 -0.1201552411853156 0.06059874343027707) (6.519998031952223 3.980812157664597 -7.101862646438294) (-0.2063151320357789 -0.03681184861759923 -0.0337424142662008) (-0.5143710116767491 2.197368538855768 0.1053199470542252) (-1.455483142389816 -0.1627308144179003 0.2036579717153812) (0.1105181002901882 -0.001787066398239123 -0.02849666012107933) (-1.859604288458175 -0.616273575181578 -1.263065898891182) (-0.5154488477692519 -4.180733166562224 0.9649917344957079) (-0.2685687677845763 0.7466531577432169 -0.2544401061229283) (-0.1438448620962184 0.01026789146925255 0.02078686220654298) (-0.008575399981058142 0.007939777620722033 -0.0367061782175739) (0.3132899398594501 3.098536966052486 -0.4089727548791126) (-0.01973118783690981 -0.01322677599056376 0.005423176884944039) (0.1478677945133985 -0.1235901740050499 0.9915230589295854) (-0.01647501765022169 0.01439053304410901 -0.02144919741614002) (0.09880563766204187 -0.01104892649786692 -0.002324394395059638) (0.007708473330451417 -0.029262018146862 -0.02341073416337534) (0.01103191640706577 -0.08990552092713136 0.1295233511372665) (-0.03942857387090029 0.03454192275457955 -0.02751571245690677) (13.18590456746187 0.63059273466212 1.553118698377733) (0.05542344425629504 0.03569239476517672 -0.02833436837142667) (-0.402801370103076 0.4213357397334065 -14.34368486922799) (0.3731554159151886 0.1365209799592893 0.02637238846885838) (-0.548145406313024 0.9341787235154416 -0.2896868607524224) (-0.1360305190740336 -0.5494684433985594 1.337040397559263) (0.1543486557429922 -0.1570078395061011 -0.9755761007709232) (-0.01763621381908954 0.01369526050554446 0.005442591588060075) (-0.7417346939665365 -0.3759567331970889 1.845317521901327) (-0.06560475552563112 0.0131502217619245 -0.02774517592440456) (-0.971971628357075 0.4985077245676378 0.2435858094482294) (-0.00027921234677046 0.001800763784082641 -0.00190479770681869) (1.402559809759706 4.746241880053671 -0.6314788967754237) (-0.1326502127710765 0.1324568644705666 -0.2289018152791661) (-0.5090095847451687 -0.08904287119517906 0.3664809515096905) (-0.1331668761131996 -0.006469213567550638 -5.370694509257895) (-0.0154527213612366 -0.005555116791132308 0.04281747256056095) (-0.2605243763793632 -0.02818816996555439 -0.05077761377943729) (0.01172759897505863 0.01983610247593173 -0.03345263454513695) (0.01393245720284494 -0.1122759504481078 0.01898436072611868) (-0.1967759395327545 0.2623015998373706 -0.2057796700410905) (0.1097218074970864 0.02325680900385888 -0.02607255892476176) (-1.732160485816481 2.709580659201471 -3.702677852859782) (0.1205143679827545 6.080537121204002 -2.430377894648321) (-0.1834260069305845 -0.04247570582957311 0.1435982829775236) (-0.04992765047107034 -0.1190749771383457 0.05583293186213463) (-2.353744923121017 6.623604634855132 1.769798376840606) (-0.2688215629517561 -0.07497743654296254 0.3561635887870837) (-0.04543253200716124 0.01712434747891767 -0.04716951834685415) (-0.01190665784833091 0.0337547712996814 -0.008721621504384401) (0.01369810390294294 -0.03322502927347462 -0.005557102862564629) (0.05444519955615697 -0.01943722584202683 -0.0565494097683104) (0.7061619512349973 -0.2942503237443442 -19.44826953437284) (0.006694699055046961 -0.002723597203465584 0.00128350085436239) (-0.0004168144607197173 -0.02372791922518755 -0.004171282240316418) (0.4759710342529209 -0.9648607958129671 -2.824401804261445) (0.06973055782954879 0.01523115220934579 0.03992683553696661) (-0.01848670879911879 -0.01903486269305647 -0.006665416269830594) (-0.006611867383939346 0.05430507632872408 0.1227004247508406) (-1.413702869172181 -8.226126988901294 1.300999853568752) (0.09024262915561998 -0.07133118936517578 -0.03859528126182359) (-0.03517759136809615 -0.00345835357703539 0.00563308951028205) (1.976685635323687 -3.767050472346445 -1.230586186479737) (-0.8491825538685107 -2.342468620541306 -1.631902673283701) (-2.870130731199857 -2.51134942902415 -1.474991560139842) (2.437085660199231 1.51732142546268 3.677561305398783) (4.540989160634316 -0.8999657510140152 -0.6462346894673464) (-0.05490650058909776 0.1265045709594945 0.07998158429074828) (0.2499110583551373 0.004992735006153382 -0.2341952679982224) (0.1792397439038635 0.6563549446673596 0.7542783409114504) (1.746285431308757 -1.502434707935486 -1.598772659045717) (1.023345259828523 0.08293163906739109 -0.1705044144120675) (-2.501064699184935 0.3791154864920336 -3.830483886481605) (-0.83111016965343 -0.2023015633782516 -0.01559201576153568) (0.301096597120917 -0.005920106341818027 -0.01202720419219555) (3.196803591506554 0.1062550035340186 0.9026199136140136) (0.1032453386153219 0.02285099981588834 -0.1366932113426401) (-0.02520820604553363 0.02316342143268307 0.03521375774186691) (-0.3887718437025545 -0.199661141153857 -0.0324847588411072) (-3.360625275770301 -37.17940882032282 1.395299740466344) (0.4318554554434387 -7.234143078697685 -1.534738310345039) (-1.384598224772801 -3.473710624865737 0.673012215636255) (-1.686168264680416 2.301523297863656 -0.4580965854893706) (0.0460628130023111 -0.02983596806888384 0.0701223635572697) (-0.5061683220877682 -68.0790763686791 -0.6045107731430477) (0.07511222000986353 -0.01154482712982482 -0.02883817164310255) (-0.08077051285827698 0.012401260975186 -0.02193909217613273) (0.8656657091607831 -0.01998137990971005 -16.84936212104291) (0.03809820071574279 0.03036231964858775 -0.02301751994036633) (-0.0571337618196028 -0.05930574574607809 -0.1437845283803284) (-0.4273730115619622 -0.3757126712617886 -0.4873654458962695) (0.0006327595559770288 0.01142486991810974 -0.007423014061652787) (0.04929819065600602 0.008935413603011959 0.02867648410190984) (0.005916320260376842 -0.004571562232000458 -0.004010026175232955) (-0.8733938360400466 0.2142642241622351 0.08717892418171846) (-0.002659834662246043 0.01631972700674728 -0.02192196314856133) (-0.03299730133583735 0.05217736206187464 0.004168050694693861) (-3.754343018389186 -0.915252323506212 0.6852472163920822) (-0.1465631376062773 -0.1999369150112645 -0.3363169396499192) (-7.486925947506203 -0.4573575290255896 -5.550883945660628) (0.6544569699218603 1.775904175487687 -3.143491675977527) (0.2615841242378671 0.2554602178974453 0.3327156020442846) (0.3271437145966728 -0.290824421611893 0.1269391787191549) (0.003632062911016171 -0.1121408350746989 -0.3965020039765662) (0.4985148488804926 9.636425006471262 -2.574396823202657) (0.6965850707179329 0.4697568617721872 -2.105240487096967) (-0.2302318606128607 0.3037395740772966 -0.2170748931001306) (-0.01264937445169591 -0.04834789337395552 0.02822318498999081) (-0.167129175630803 0.04293845119816248 -0.3777083993756691) (0.661212018749488 0.4110871943386782 0.02939821541908726) (1.263824437645534 1.463925825546255 -0.4781151143998115) (-0.5943544031769447 0.02688753344564476 0.4554707273980338) (0.3859311803780132 -0.6518508444672855 -0.5458426049268938) (-0.01646173088025371 0.4305598212443251 0.7805927931186034) (8.168232311642795 49.2594403882131 5.489392922224726) (-1.975174026558735 7.095268930785936 -5.423583222608061) (-0.006864905491427436 0.00689980207012183 0.005816181133797917) (0.01741948687349357 -0.007855137164946218 0.00275486266445687) (0.4404216359359902 0.06841036291526348 -1.574948259847422) (-1.569005875831762 -8.577635419909337 -2.290448519094844) (1.379561193952851 5.423956706552403 -0.4998977677857366) (8.592990136561049 4.539367595695844 -1.321270621743591) (1.830718050189873 5.876328622293434 -35.08207897459535) (0.4379599729169674 -0.03023303670512512 0.06356724479546315) (0.0310205884002078 0.007914257204497975 -0.005244901303933063) (-0.08078877278071514 -0.01377873415901571 -0.03323381159354205) (0.07050323474141651 0.2048987174527756 -0.1406315347525454) (-0.03159021076569542 -0.06562175117589562 -0.05456598587686237) (-0.5777128875075362 0.06252374865660484 -0.7549212435935426) (-0.8892008735728528 -0.2334811101192065 0.3820004694474792) (-0.0158212192352555 -0.003508022074101758 -0.002439679145356306) (6.870302039436783 -4.412575252928182 -5.740861273407391) (0.4454979666097598 0.3655173754177908 0.1451043470804478) (0.2752210201177741 5.083737955040613 0.06727077184645069) (-0.01333601888884978 -0.04961162238046134 -0.02323373946193542) (1.063816287355241 0.2035305641670468 0.6216255347508172) (0.01670062153737517 0.305701742008064 0.4220192203200422) (0.2336310973803543 0.2639596132816731 -0.2681583000450837) (-1.121989471120637 0.6487881609653077 -0.641078195253345) (4.890147907635822 3.217404464601968 -4.799082839884548) (-4.435998137284172 48.49069587266088 8.977491025944623) (-0.0933414703218778 -0.01116078115627697 0.02991845263870648) (-0.8802583492331151 -0.3569308097794832 0.359297312729343) (0.3975768040035574 -0.662646110901167 -2.418494634767277) (-0.1478738110138483 -0.09684654454634374 -0.00111666032400683) (0.3542836969171952 -0.02020998000315261 0.1592190449678675) (-0.02859768807437285 0.02473283546371392 0.02250847058621733) (3.044819784921709 -1.695124894752071 -4.937515676123774) (-4.775393660786272 53.07923566639352 1.482935645615138) (-0.3665037028599665 0.6168976131304834 -1.491621295014215) (-0.4556197150621359 -0.1646636327066398 0.001783904504459206) (-0.0529114446058762 -0.03080229170514114 0.03786077385636245) (0.06286486098990848 -0.9511334976049299 -0.254453228393157) (-0.4329182315638829 5.413828387864631 0.93544131789926) (-6.427231880902607 -5.755363886673625 4.1577260504977) (1.803831283672127 6.453704311694109 -0.1335435177203401) (1.504333593898049 -3.255165543253475 -1.878287414671674) (0.06656881870967535 -8.964240661371287 -5.972296922447399) (-0.3921701430813069 -8.869703157394012 -0.8504224347046681) (0.6520187512050337 3.193854349209445 -0.6396917352161239) (-0.5233872790753215 -3.281599287447253 -0.1456274049792867) (0.8034740530978119 -44.7086467445837 -7.742266494720216) (-0.9137380484678146 9.988895701541143 -21.25268699826223) (0.1213098951616589 -0.6093396665829267 -0.08891098968260264) (0.74937371485472 0.2122323994379993 -2.419049435948955) (0.5131479771325708 -0.576522169403471 -1.487237183007419) (-2.196238903254705 4.620955384599363 -5.190497673607991) (1.057162958033825 8.786950084586461 4.911347241494799) (2.14988646641434 3.425989281228697 -1.378279798885759) (-1.27113047956156 0.474735784237131 -2.883926289267176) (0.2726979682950716 -0.7481769160806835 -1.123959466980504) (-0.04017555728059052 -0.7565080525812259 0.2513914608662666) (-0.4365995682776253 -0.005702051581985779 0.6443211631602175) (-0.1846102057088764 0.2974194200360267 0.1535589587288566) (0.07526733317500989 -0.05285512960124461 -0.004732474056933646) (-0.06134626732970359 -0.0224372435590096 -0.04104018585148479) (0.0477893158931984 0.00647354696605335 -0.003183131689052628) (-0.5668498455266084 0.2356975488287825 0.09995326834838841) (0.6953118569205134 0.4568106588027045 0.2168450365325022) (0.3229945499527592 -0.3375659492855678 -0.1450026337931788) (0.2204930405588367 0.7489779427882681 -20.17337515161832) (0.0006429590486381723 0.01923346757099959 0.03435850980928117) (-0.100506411234056 -0.8812174601772136 -1.024767911259298) (-0.1095009049420373 0.4980529448195859 -0.4615132349906793) (0.1705995450389209 -1.24171647509041 0.1459387434148141) (-0.4225035963584308 -0.09384362216788808 -0.3488089495273954) (-0.2911625571675744 -0.2760178086459052 -0.1637642771351224) (-1.107477147776412 -0.1863302531178718 -1.046800668253103) (1.458300894439079 0.08788901227369897 -0.095476501030336) (0.1660138648857739 0.04844767463648959 -0.2096110615035361) (5.689252938786966 4.330777630222777 2.067379937568814) (-0.2045314309334833 -0.006888094977100467 -0.1610633263335709) (-0.6297201654505405 1.973860687753894 1.750740572568863) (0.435798188562934 0.179880642419008 -0.5039540733521977) (0.5038310088280054 -0.358567703329434 -0.1469730914728204) (-0.4606889678989161 -0.1605421741661634 0.1012858039496961) (-0.01591216268119924 0.002177363407210539 -0.01448199164740388) (-0.2083987182798003 0.2264501496532653 -0.3214482150505165) (0.8217535745316279 -1.059876437474824 -0.4863224388548903) (-0.8480107742750902 -0.4047045422148211 0.05215971876761499) (0.0398414452511414 -0.01086304238318609 0.02339579503456221) (0.06447837070874719 0.01334628099978641 -0.02503127675984414) (0.07073847075371614 0.1246160929419941 -0.01043655623793303) (0.2872609603254841 -0.07176074728111033 0.01705108682153262) (-0.1146996306327115 -0.6164575234340934 0.2504948829855477) (2.473584964493392 -1.293575282262668 1.03016014877082) (-0.5167300178955824 -0.3599905849945245 0.3801075457285351) (0.09775407764511163 0.06471198816305178 -0.04406801499205294) (-0.51588304654187 0.2937131541003057 0.3858414404576044) (0.2031998997712949 -0.01034217951250998 0.1328792375373658) (0.5503889732187062 0.08189875705786806 0.06747200493119407) (-1.124881819537861 0.1762995430624906 -0.009233077482228624) (3.099066730053092 -33.54345204397075 -7.340585382406013) (6.081041424236501 -1.185300897384574 16.0561894542065) (1.681688117776868 52.26971315956584 7.666902229787591) (-0.05190161726242648 -40.06022452658945 -4.514825998315121) (-0.07588665182800847 -0.4040766761971852 0.4742975417167325) (-2.755098841727027 -0.27112443782123 0.5557439828471641) (1.992021399364491 0.294816505773086 -0.985779264570414) (-0.1948283280925577 0.1974915690671036 0.0567203219285928) (3.255517953918075 -1.03841507342513 0.423137396094038) (0.7295422185773695 6.145730259116777 -0.1599416579727327) (0.1711138577967057 0.2018454415428333 -0.02350364844530925) (0.002289631031627808 0.007285755733809549 -0.01706037722724667) (-0.07999984755619806 -0.02441461230566577 -0.03827273469971636) (-0.1998435085955656 0.084998142181967 -0.2772113425904332) (-0.00751988293677874 0.01134240423573097 0.01798605871305389) (0.1190427197287631 0.2774420751911403 -0.1164373066265531) (-0.06403092799054214 -0.02836214635348991 0.242023760906602) (0.2885105337407858 0.01458633183428244 0.2281701272865469) (2.804217831426749 10.74206185942102 -10.63887187798568) (-0.07105415442006188 -0.1426202818183925 -0.09543096035792513) (1.854214043943396 -3.911262757532979 0.7657962046223459) (-0.9424888961262715 -0.2075913217892082 -0.7294862234413485) (1.232075328269112 2.092073459620609 2.982411506507914) (-0.05574353379911066 0.01651494893861484 0.03912992300857602) (3.222363108465905 3.087011141653256 -0.5841862550391481) (0.01173140403018972 -0.006493971836288673 -0.008079521000150266) (-0.02718397827675016 0.1033241688979667 -0.2453135213151074) (-0.0671068130171936 -0.06897142958119787 -0.2253444022353551) (-0.3321222158499635 -0.1526156984311175 0.2047851574703257) (-0.3320673808684877 -0.5353341694938176 -0.05525875016724707) (-0.01330348566702985 -0.05872165344293505 -0.005634733172976455) (-0.2516000903101355 1.807136491540189 -1.3054403344684) (-0.02168483522089836 0.04428374954259698 -0.08515503018191189) (2.974187955651812 -4.220692775263901 -2.644125796165202) (-0.7222941680981535 0.06404357164660709 -0.2454324913578923) (0.4116844063549466 0.4316954113555764 -0.6841069237431604) (2.873944570038748 -10.14771904749008 -16.6929409574001) (0.08896748264940074 -5.37958384402023 4.326101935493747) (0.8749482498370076 2.8212352051757 -2.82404649253849) (-2.215799460900482 -3.387918654207449 0.9323268585465764) (0.4360479005339971 4.213045429354715 -23.34211675704056) (-5.12981949554165 -8.274678294475578 -0.9316989966188038) (-0.7639998622464172 -38.55243137061453 -0.1172081573491006) (1.660507498094927 17.54712874833811 -6.329724275589352) (2.069176329040731 -1.247953193008708 -1.994302306360661) (0.1687502084442112 -0.1141034892668538 -0.1352842071295739) (1.342497897630072 0.6627316767733962 0.7497184057484776) (-0.4647605785430017 -2.860427129864338 0.167140618357809) (-9.25438275776758 -40.55160240322011 2.00969905663472) (-0.1488292618248166 -4.503372464998336 -2.768252120771878) (-2.994158892238663 -0.8952988596660709 -2.764454690679464) (-0.08505580078640096 0.003015355486994019 0.0008494016002684318) (0.8626139056414234 -2.648841001955517 -0.6576683692474625) (-0.01311563254279781 0.0084544191923593 0.001943243816846914) (0.8850527369176515 0.345370103293843 -1.77288273355693) (2.486194297119146 -2.314753522955545 -3.973669634425353) (-3.781306333691028 2.10546544795532 -3.130321314493228) (1.294428461977761 -37.87561372853884 -4.783583343312726) (-0.5076169877738451 -0.1528346267057894 -0.3594000277824441) (2.165989660983469 -0.7591936954546968 -0.08341061257169158) (-0.3507468412674082 3.569738987948755 1.159817303849163) (5.94202206796705 5.699941163583089 1.64807243507695) (-1.471322409815476 -1.424150942629354 -0.04327120011524488) (1.693732503587121 0.2771164505810668 -1.687750100490611) (-0.56423870883784 -3.477397177563283 4.852793274224694) (-0.2872466494305937 -6.343404678702377 1.209751916336494) (-0.1893258883032658 -0.2377146617405438 -0.01619943853582167) (-0.03920488059071454 -0.0183032825503865 -0.08697971286893594) (0.2416377394926186 -0.1628605652180712 -2.323760671322521) (0.08581475755359236 1.080810226362196 -3.238742102698656) (1.14785003264687 -31.42274616391607 -1.646492396667396) (-0.6558433193419673 -1.45880067742223 4.375107381556007) (1.089618225751321 -0.9600885122914983 -0.4218617281775387) (1.07793768984891 -39.57046931474457 2.209798291146698) (-2.662172277253037 -13.20129017339162 -9.804483818136941) (0.2533535818869116 0.07636032808828097 -0.08823158140878949) (0.8192638431804173 0.9770140735795028 -0.2119550913966582) (-2.661728724894795 1.164642479203712 -34.32708298678238) (-0.06635462490723393 0.9931074519577903 -0.6656396319036986) (-0.107182895562747 -33.64614473437621 -1.709731390843267) (6.238496509582773 37.53989894821243 -6.027341016346517) (-0.3586673930644535 -7.441256818581748 -2.119901567337325) (-0.1039346609167195 -0.1043479082674924 0.01937206346888405) (-0.4962515539794909 2.30274601246892 0.5870444954038878) (22.80051353079291 26.96615982360228 -67.15443930212582) (0.8183209997299861 1.754189449305315 0.6563184912548825) (0.1931421923304425 -0.001471228704093696 -0.01710178568323637) (-0.04349409471611165 0.07333360539387429 0.04504156342519511) (-0.2812509133339429 0.193538705929499 -0.1868317522497339) (-0.1413543823366267 0.04661106040638781 -0.08375345604020198) (-0.1045805681630921 -0.04197514086660936 0.04901973633542103) (0.006203026891668836 -0.2311892887420977 -0.03296572243389997) (-0.07500208486590945 0.01781754953810585 0.009224562710796752) (0.01609442384853154 0.006962263216953483 0.01389436273160822) (0.04353394036268418 -0.01657818610257868 -0.01280653358047279) (-0.1298825811463472 -0.1085172260611605 -0.01947073877090934) (-0.2756101010050057 0.02668799813023568 0.01973558435025434) (-0.2372825941793292 0.07707371345868769 -0.05817220278856068) (-0.09049308580190225 -0.05759483473365898 0.06274052329300706) (-0.08141790016210237 0.1094865328911344 -0.1796890366370036) (-0.3384519387126336 -0.6436724745790109 -1.131827792562793) (0.1062995395800733 0.01901603643177398 0.1033373605499967) (-0.0004606495885329451 0.1521249314998954 0.3882666528051771) (0.4572116412049366 0.2495515119380135 -1.68041743583663) (0.1553294651474632 0.01692622190997913 0.03966676040719491) (-0.0287299674318981 0.02320490006085801 -0.006241073794869011) (-0.2900740156626763 0.1910128025456374 0.02983880783185857) (0.0324629692346589 0.00882611134768904 0.009836990238781023) (0.1004512218318225 -0.09143285463698189 -0.05778602202631622) (0.4237787328063452 1.032012006546862 -1.095890858763418) (-6.195694309515152 -1.133426982534058 -0.9984105773490936) (1.060169159462735 -1.350178119313085 0.4493379515443974) (0.2338573300307412 -1.646122262192871 -27.28336392611365) (-0.002592123621214261 -0.006441182591798658 0.002070841180364798) (0.1681261937975376 0.1485183684560964 -0.04654532134761644) (0.2099049620434685 0.2643029881636336 -0.01569768151412179) (-0.06464683837281292 -0.00942341386196539 -0.01901624594547837) (-0.3200596817341987 0.1380376378969267 0.03231147444644222) (-0.0135626027559447 -0.01106865001610001 -0.005662635055983082) (0.02343827869152948 -0.0007298396219123423 -0.2611890889666845) (0.06067798704730459 -0.09586354922714252 -0.1377283661373457) (-0.09184714537946853 0.03089267165706281 -0.04286343772025986) (0.03081543669419456 -0.05439570452736901 -0.002224318797979489) (0.07960225861241749 -0.07104399686203486 0.0593132720931169) (0.1322884552014044 0.00605853823871194 -0.03017209042829591) (0.03520920274618287 0.1958799467181165 -0.1623919402944029) (0.07099179341245639 -0.01458144379589527 0.02827559900308441) (0.2155082671039471 0.2613822517198134 0.05497205655843569) (-0.2658370129457418 -0.1201001395726565 0.2721175806950407) (-1.807369508103964 0.5506190991169149 -6.846945165537786) (4.689408431278344 2.050493342554231 0.4542847360295146) (-4.641748201342212 1.765672802067004 0.1794659120844836) (10.05871380697086 8.816877619865854 -0.3015767000944785) (-2.336657744764845 7.172209075865517 -2.848841368713575) (-0.272729399708032 -0.284971646638657 -0.9689572559039308) (0.02729763525765152 -0.02470188795657348 0.03362969127054714) (15.89810054133972 3.656388072498681 -12.697541726132) (-5.764123815930036 9.83931351119435 -4.382058325550688) (0.08919099405184185 -0.002282139295187318 -0.04710594628554186) (-0.07359976233595977 -0.03447837629608804 0.007394993262074717) (0.007141925673761308 0.002317262156372722 0.04243498325585432) (0.3669710749924542 0.1944474979932128 -0.04090015476015769) (0.02415604681317246 -0.111326054093522 0.01975960267951064) (4.436916837373839 -9.536573734972738 4.175119588660715) (0.01410589129395845 0.3574627528530522 0.2173655251559792) (-0.5979753819285565 0.5543652781434545 1.654658392524482) (-0.002163421531241355 0.1919461009884479 -0.2641796054250685) (0.09431780772539922 -20.01800076933214 1.453078889160326) (-2.175816670834177 10.19330379618526 -5.054095446691568) (0.1745393811277232 0.2804427225657923 -0.1449038795899114) (-1.090870566415466 0.4264240467954571 -1.2366572200919) (2.329573858273789 36.39584015914613 -1.153994214404466) (3.283679112426665 -4.500909059734379 -10.89065272803204) (-0.1898390670025394 -0.6065272884423157 -0.2772841441184989) (-0.5869145885815377 -0.1554257935562668 -0.02289532880939625) (0.9337000968823608 -0.5593177203873871 0.1304030641294514) (-2.1244566565203 3.405655969766885 1.314536457872182) (-1.17395274734487 3.939383027449274 -4.054257345747138) (0.5419537791077796 2.645840160388232 -2.232509602218045) (-0.0978373243093158 8.510550120295843 -10.87108343602119) (4.202322882427719 0.03308553313627882 -4.723807405387149) (0.7993189398268655 9.850665732931557 0.8183947578182633) (0.1063667467278293 0.08416771259793436 -0.1058373993365306) (-0.9979904574932879 -0.5829575926897775 -0.653947244010915) (3.119906989878824 -15.69225559313585 1.828454734638846) (-4.471826517930666 1.985260667866503 0.5816807346467782) (0.3263367756367822 1.057442109370894 -1.331465963392954) (-0.1667723917113059 0.04097589272542565 -0.227239181226695) (1.435840186249132 -0.2901854280385422 -0.4303940578572621) (0.05217977215823055 0.1557169527766581 -0.0985992193921009) (-1.803913210118504 0.2641333373752632 -0.2290795981611888) (1.401538641752484 6.434935808971989 0.6016115405260399) (3.298159434589197 4.206072873203716 1.447710925581471) (0.07548443777677492 -0.1004990154013845 0.5661035836967121) (0.2036607230828497 59.18354679322906 -0.397373815689678) (1.783044523433504 31.17275628344757 4.904992658152038) (0.3010592056149619 5.008445793242974 1.10339661123581) (-0.1673500492544719 -0.04582266868484178 0.2467313960061509) (0.9106893533443745 -1.194280143962814 -0.8480229670043617) (-0.05565598859521268 0.1909689437663181 -0.2446183114265549) (0.5061608889426097 2.149707394536149 -0.897506734085452) (-0.1284092009680872 -0.003571338742259379 -0.05365466551601504) (-0.2921611230769771 0.1100462800378056 -0.6343199876120242) (0.0005309494314521988 0.02998872890879943 0.02757093521367641) (-0.2600100545955764 0.6508922570334978 -11.35986082401986) (-0.02180718875029001 0.01745961889463469 0.01266412438076156) (0.01757821079744443 -0.3388432546269696 -0.02364661032158784) (-0.4164412064430329 -0.4236343669818486 -0.2069570181195431) (-0.02641351463763784 -0.005598321367948327 0.006627805978241384) (1.533143851990142 4.762720070497937 -9.720372077652261) (-0.3797488251919029 1.145225649919398 -1.257855253371293) (-0.2300197492389678 0.01677926591445295 -0.004805996367127918) (-0.2799583763820622 36.91056684780622 -3.038291412278177) (-0.1678171880147744 -0.03663766445074906 -0.4478172909826525) (-0.4450351517579162 1.861644581871446 -1.166419685283212) (0.02229684353185976 0.02215030241669358 -0.03382840724343913) (0.130466019606896 0.171512172601107 -0.1429657784909154) (0.05260678523534944 -0.1196419518096931 -0.1251918821689463) (-0.5648110640783238 -7.288182870286592 0.5241286077453235) (-0.1792619631017635 0.373208432731532 -0.1389164603277434) (0.04599596662382069 0.009982458905175297 0.003065208644454216) (-2.44544355939602 43.51000543654202 -11.76259891775524) (0.09812196620543359 -1.225227913955867 -0.1601047019163657) (0.2042628825186748 7.254032691790339 -1.692875952429143) (0.0787893747682108 -0.01863716574354734 0.03539930406019198) (-1.116742430576854 0.05471338526015029 0.8881149546779146) (0.9869193706761716 -0.5970888645387312 -0.8955817606057204) (-0.3858116432413161 0.2615656664249942 -0.5557439550831326) (0.5586370766366592 0.4655156832986766 -0.2001630096084851) (0.9607366559217941 1.390249678820241 -1.365714451720041) (0.3330909476219581 -0.3603728507946916 -0.4822959635760224) (1.928936653488866 3.179817849903551 3.247047035874739) (-0.6152474342542078 -0.6971923784088723 -0.6403817878264439) (0.0002659777284537554 -0.004849920401185901 0.002384509383785132) (0.2514677809251121 0.1137029569980453 0.09614032925261058) (3.808881622979258 -5.722405653595263 0.462020865621275) (-1.72879873014597 -1.148857412693154 0.3180961916754085) (-0.08563335652315007 0.09548487460565656 -0.02845757052339687) (0.3217305540371435 -0.08690681034085507 0.4490461451501249) (8.16066307877766 -6.853450715398388 -9.591590394694524) (0.1470678447284099 0.05460505858966422 -0.09074961691168042) (-0.1643938229969124 0.01054116362810359 -0.2312383501389346) (-0.006299228902492071 0.7210847486589427 -2.731159772392712) (-0.02733754272343107 -0.5195048207217449 -0.2256791779366207) (-1.907339741272161 1.617987900920141 -1.789676999840457) (0.509917767161763 -0.1030274508996984 -0.1582136981887469) (-0.4049010892510308 1.047985287239072 0.2765494333004823) (0.2526267549336206 -37.49546302382907 8.610603975762599) (-0.345270375674688 -3.767374553786991 0.7933693444092285) (0.810478224848068 6.282694050194763 0.3478903810736144) (1.977679033767991 2.04568160941692 -5.176406292550453) (0.7052883955936339 13.62310098674362 -6.057924270880608) (0.07363342319719332 0.03006214334070188 0.02963031590890914) (5.616187277989532 4.025023346474161 -9.626552687585404) (-1.068135582831131 0.06201379685543651 -2.801917574944862) (4.252933136148807 2.944986621689104 -5.930466819221852) (-0.6920825786293356 0.6014789150201771 -1.571530899961599) (0.09455672346706158 -0.01965306363028977 0.03840799822592378) (3.46555043031941 0.1947113940094455 -4.768115401525516) (-0.01513673646180829 -0.004195049936571235 0.03495040577704775) (0.4684937985998611 0.2198603588345674 0.06100301348325288) (-0.1988353838648394 0.1175757343551081 -0.5078708110413452) (0.1057321319883783 0.07889053392548065 -0.07050384095868593) (0.1446073911971269 0.1102471068266707 0.1695712886655902) (1.269386557655768 0.5600711994304526 -0.4425191088445316) (0.01627429953571786 -0.08157778837779975 -5.349174750491091) (-0.1520584074991493 0.1204794011725924 -0.1561822786688055) (-0.47913081206978 1.023740376649093 -2.93953759144662) (0.7692015611856831 -4.645798415547079 -3.986497002627041) (-0.005639072736696501 0.007636036926879995 -0.007242337174310288) (0.7832051851985072 -2.136174679140184 -1.86968039442794) (0.2469524064009673 0.1475756037561262 -0.1706772300334232) (-0.2305494872135815 2.57308333315752 1.394040496687063) (0.7530161371489026 -3.760116499525806 -1.659057841085514) (0.01287129630931438 -0.3570157475586909 -2.21768116089764) (0.2390913251000543 -1.01068595346813 -27.94060655768174) (-2.223870579533017 2.018758101873115 -0.07119268689903134) (1.501999174400134 6.064256549679309 -0.5292553884855954) (0.2842710386015023 -4.232950279602889 -0.6962773776499569) (-0.2929084764736666 8.529909188834294 -5.088861760978066) (4.683801983430847 -6.176342224837531 2.232434555267022) (-2.051353433761387 -12.8718016531446 1.727463713671701) (1.044968002259361 1.917184265854255 -0.3402022496453896) (-1.574682153245395 -11.73778261804372 6.242065167424744) (0.5525601895387139 -0.5090369792608589 -1.350737829394014) (0.6151020149895439 -0.411497468153505 -0.3151986949826367) (-2.007058576085995 0.3942622051445862 -9.084389716398587) (-1.016083560304773 10.50950420128977 -0.2237572682430435) (-0.1335081434352052 -0.340496240533731 -0.1462473837844668) (-4.548319745368625 -43.47362050591393 -5.967989272385291) (-0.04573441079563717 -0.2988052932068542 -0.03482472606813692) (-0.3455154739477637 -0.173705781452386 -0.08117769406424179) (-1.175238378800484 -1.041146001474754 2.133722012385468) (-0.0119670174782862 -0.01200216100108163 -0.0004484588369231234) (-0.09620967914042229 0.01095448536472137 -0.03583419513403389) (0.4872643540455073 -0.4813876190615972 -0.2252571447620442) (0.02450258369215141 -0.01669856017439785 0.02958846342684271) (-0.5243962806585276 0.4810612111600123 -1.235867904355886) (0.1573750809631889 -0.01931789291735373 0.02164480690790669) (-4.878258182539097 6.66586570293655 -7.494388660507769) (-0.04592387900836953 0.001781268587128289 0.01782059653159717) (-0.2119326383071054 10.73535349910578 -0.1614973625543932) (-3.020910690352563 -31.15301132090456 3.268595829775345) (-0.41142291396894 10.5280391863663 5.24862255726872) (1.384885751844844 2.58304820174794 -31.08603611023159) (-0.1174461096295072 0.4248791861264988 0.5842396641824075) (-0.5572790691344609 2.163926030746799 -1.261473519382014) (-0.8353276867131811 -42.89219805605492 7.368910026806081) (-0.4161300194759177 0.2409675078268819 0.603628044102242) (0.1402598405726014 2.212524220065799 1.342872065173463) (0.2975611603855477 6.955060917130917 -0.4873090776467696) (-0.02506684674381585 -0.03808999709011267 0.01516034748212997) (-0.4360774156433123 7.190012097169528 -0.3119470249896059) (0.6516832644660226 0.2961828674198245 -0.3137971906880083) (-2.329101514548089 13.94880892153185 3.909523139463884) (1.513085260335092 -9.163531965792451 -2.052646029751425) (-0.3548494598319468 0.004267009155493644 -0.1070920268817791) (-4.936321918728432 7.075370865201684 -2.007383173347245) (3.280729049773712 5.496399666819736 -8.908232941719485) (0.08579114283296277 -0.02906973404840907 0.03024362596720197) (-0.2321833984669527 0.2144973837782582 -0.1407220081474064) (0.07410065483203099 1.818447921278583 1.27547581464225) (-0.4720430437948873 1.582840618124979 -0.4152445020607186) (-1.991292920453904 0.1245893750827532 -3.079077996925466) (0.1479398683809647 0.04716787689314809 0.3363521992534997) (-0.1203712178401851 -0.02107013884427709 -0.05066729850630575) (0.6505896435666216 4.031384911883532 -3.177001886460899) (1.31377145469145 -28.58056115387094 6.177112054353535) (0.7709636844685643 0.5196873946079126 -2.764128263009023) (-0.03342768190961896 0.01195760409079992 0.02057604005862952) (0.08903866922813011 -0.9251540826461658 0.5664233015896603) (3.409065756944635 -0.6566718569908701 -6.017329615040869) (-0.7187340940788896 -1.10600655383377 3.823794502191162) (2.133750525318582 0.4309555254487259 -4.102301897388885) (-0.2360012386481985 0.02745785419662514 -0.2069385072854862) (3.439550527069428 -3.745091670798749 -1.128036517330028) (3.452590642795276 1.768212010900714 -2.5875864435149) (-0.4747558395629747 11.57426538019232 0.508076937187929) (0.09057543466402357 -0.2692726063863056 -0.1132387437859933) (3.280100000453695 -3.202595278465287 0.8870757518624461) (1.765508984550505 2.322087685237116 -2.663186897041147) (-0.9266922782204259 -2.892646621392136 -2.612329956307377) (-1.421738400239933 0.5234009147467972 -24.40639566712472) (-0.7014626080906641 -0.4586299625177769 -0.6080758598942957) (4.623794835463325 9.5077579766625 3.324181933543393) (0.5157437678430097 0.5864283487240629 -0.5790132804118054) (-0.1470420521889124 0.9526302319319742 -0.1347316141529785) (-0.008380558447336078 0.1731493143985592 -0.09548894111130651) (0.7487143369725054 49.80912073835378 -11.83470701755737) (-0.02943777079614928 0.0003534855701581949 -0.001271866204367036) (-0.4223316840520593 -0.2657994962431717 -1.301755692552054) (-0.5762422391142448 -0.1965776727536461 -1.835436427114533) (-2.152967543302305 -0.5217452037619592 -2.256387529796835) (-2.248366339654834 -0.03602466770573329 -3.906239106921823) (4.195229846178473 3.264880473611539 -4.651378926783167) (-1.018805628473541 -4.348309325518444 -1.883809738009829) (-0.001176783432585187 -0.01518862392869608 -0.02146088947548233) (1.198039286787563 1.051174166216702 0.3924701565195216) (0.1314792340487865 0.7249219957856553 -2.01707899370907) (0.5016614092575831 -1.720376956565498 -3.436214893998011) (-0.06446879116947193 -0.02786038862640554 -0.01030926900961363) (-0.1290573902616464 -0.01946645635022873 -0.0417452513206407) (-0.5373836972920782 0.1455530622208951 -0.151656094284967) (0.01058338124142117 0.001663515701355416 -0.004888627885944038) (0.03754457311327285 -0.0002895749741839374 -0.008008748625102053) (-0.002473716459500898 0.00164459130327693 -0.01064745879076342) (-0.02200443538120591 -0.0137174153303494 0.002382681606271454) (-0.3787992532783995 0.07083506366399862 0.1467666061739292) (-0.6542087806245657 -0.1739180928184474 -0.1740954714310832) (-0.002740484601291131 0.009358289405476571 -0.0005396309839134318) (-0.008131274872799174 0.01013346267225937 -0.004671088003007898) (-0.01628178547559631 0.002373450181540642 0.01138846413906322) (0.01072462508977931 0.005697695710243507 -0.007345650859890779) (-0.000719906093439548 0.03435020265807799 -0.02373674483790037) (-0.005941640146835953 0.001548343765769711 -0.0009676271962324907) (-0.102323421598296 -0.0173690102391892 -0.01003859208140979) (-0.04066404007403498 0.03626591596898612 -0.1905780223803555) (0.04188284053886188 0.03558737530544009 0.09457278288258422) (-0.2163295195571723 0.6545547411352343 -0.2604148764480674) (0.01171084922439304 0.03660501066392052 0.02157503772347693) (-0.01770054959676592 0.003877603348854649 -0.1325816571163178) (0.03587241455383418 -0.0156899434119813 0.0181258077165412) (0.4608082089450011 -0.09890352611210783 -1.544788025178147) (-0.9489051903625179 -0.0467517156984989 -0.1722777628718772) (0.1069039166721028 -0.1466652423108947 -0.03884494270046188) (-0.08168946160576901 -0.2614011625269436 0.4811340345698786) (0.08085847487414996 -0.08519872116067577 0.1670798773882837) (-0.2430149086775012 0.1262953722865214 0.3641136223952954) (-1.808275008721298 -1.810723831255741 -2.868726725953899) (0.1147067778556989 -0.05054521039661811 -0.1079065855769416) (-0.4416647403856578 -4.06083974584489 1.181809451176506) (-1.239918871782482 -8.750507459359042 -0.8506374115641691) (-0.02268015401422109 -0.1964987822778845 -0.07960149320994309) (-1.521272571878473 -1.147010941007506 0.7465814247869302) (0.1723975371332587 -0.3193247677494676 -0.8039067610953896) (1.65029632288256 -1.093190123619663 -2.771581926257737) (-0.8310952338993624 -0.5018659412114661 -0.4369539894149195) (1.666089514254258 -3.67053951752853 -1.119829326292295) (0.03152949297419839 0.01103855419855486 0.005059307843875354) (-1.312981605518719 -4.342081053682949 -3.857571899059148) (-1.148273581535184 -0.5039609936832781 -5.54858439095276) (1.027480141414344 3.309350462801826 1.176748092133415) (0.5646617611634722 -0.1441195486016248 -0.2516928912247944) (-1.580579620414947 -29.66281736112034 2.049279746053423) (-3.089596655328446 -11.82276340314125 -7.387405287922321) (0.3422426893478813 -16.34707830799923 -2.492506574371334) (-0.06085399194334182 0.06405332739783449 -0.0778548061136573) (1.027351378781392 -1.39657799610647 -1.26503495843129) (-1.334048883484924 -11.79830816540677 2.588704656418952) (0.05627171085390516 -0.02333449143055267 0.0003509296612163107) (0.305134493225596 4.822332811223966 11.62961769978629) (0.03891055586253148 -0.03656430795184267 0.05491998845177529) (-0.4001675992009552 0.6264121144092556 -0.6447299942590495) (0.04389069272287782 -0.08341616604146423 0.08415888646602326) (0.7434049892177278 0.5329425714136375 0.4114357981702352) (-0.06017664047112523 0.005173262020446871 -0.04416359629705434) (0.03209408204471448 0.8578222280563322 -0.7890007602231355) (1.343553594247402 -6.408326399943837 -8.288723674078742) (0.348778797431832 2.689306544785387 -0.6607629341999177) (0.0094367983152794 0.00421951021627729 0.05693557966822665) (-0.7775261011027308 0.5594827340583096 0.4572341357506163) (-0.3696935922411232 -0.5254172594026442 0.07674728892264318) (-0.4703415163786415 1.844452042443399 0.6525031012951337) (0.0510537836603813 -0.1120110289554631 -0.1889641932530631) (0.004491479515014484 -0.004368298423305979 0.003570245734298077) (-0.3336153269749328 0.3607246572940573 -0.3151337667392518) (0.1116797448568027 -0.2166519913484165 -5.49076539491283) (-0.005086050712352076 -0.001410963743301531 -0.007110841644496298) (0.002824375417139537 0.003249023599397646 -0.001986913738189116) (0.04678597779576804 -0.6154432516648384 -0.1027209248439502) (0.03554221712774909 -0.02722045169223075 0.0005087217645582068) (-0.02313532627307358 0.05426415150371841 -0.07092072213198758) (0.05939347161154862 -0.2858225559484723 -0.4001800426293317) (0.1091649363665426 0.1184628030907471 0.125626557606706) (0.003173747780356173 0.1547488268205252 -0.1760658872433145) (-0.05416800523009017 0.06223198279652663 -0.01002653688887893) (0.3645607656475226 -0.1060773982515295 -0.03678835918696949) (1.754425085092504 0.813502490344455 0.1170219720195781) (1.210568710476922 -31.9212074779313 -4.572965236218405) (2.531537598791898 9.783486995002654 1.751683863838666) (0.9424783938158448 0.2940928334301068 -3.711464931817355) (-0.4892394836101044 0.3595304833180657 0.6061646803993987) (-0.02229378391462306 -0.1147090476270681 0.03322100788586296) (-0.08208255331067528 -0.07696252228374403 -0.05873160369348814) (1.043386189759705 -4.35575772057823 -0.7107428079663868) (-0.7249189869264511 -0.7760318474769938 -0.5101780977523784) (-1.940381755309875 -2.445168082368235 3.9067517059707) (-1.980632850040432 -33.38447904295562 -5.567864308509709) (3.278949330927526 42.61961870828743 -0.5471848080165441) (-0.04020823767807873 -0.005242497608103552 -0.05573560902599985) (-1.033439583144224 -2.113018842479007 2.401464686293313) (-1.037856184812501 0.9114585069842138 0.1959344436422512) (-1.114895706125488 7.134604177801128 0.1230035068978199) (0.0167465041060524 -0.0227171911744041 0.02158747308354976) (0.009626740762691134 0.01000357141536257 -0.03632500487615795) (0.0218262078653971 0.003776537175109899 -0.02603941534273881) (0.05294544180615565 -0.01534844140056914 0.004594862976307099) (0.2051595051269119 -0.05886388569939009 -0.1446910032363315) (0.02233803885792595 -0.01693439925084025 -0.07369723413919167) (0.06403163052083266 -0.01018743923197046 -0.003018670379336763) (1.129130161003258 -0.3619381363958364 -1.990922208492596) (0.00694066673065406 -0.01330312490883299 -0.006513824846315307) (0.5548301923926592 4.404283728022165 -6.226536379266278) (0.07435824111746361 2.327180125469943 0.5419240975290296) (0.005219875064889232 -0.03811849029992706 -0.3525362745789454) (0.01561788488660878 0.0008843143368834918 -0.006833810150922198) (-1.700658953153037 1.568850356754786 0.1265398625193283) (-0.01887661416625543 -0.007091825233741945 0.01070907556477338) (0.8553824380236036 0.02286142312994432 -0.4760556480411995) (1.620615687492203 3.548450526228188 -1.901961455506802) (0.2076411055422521 0.1013716518443991 1.82791928752562) (2.753992398234657 12.9430788505228 -1.040593043844035) (0.006758766661942968 0.02162157721584619 0.007682458899526902) (9.527833524668244 57.56948940941516 -3.418514501634628) (-0.01374322496299624 -0.06551324982405687 0.1659486778299803) (-0.6183993132970942 28.74054510724654 2.394206011356887) (1.693998140783898 -2.400541116003882 -2.165076774222957) (0.216052861496616 -0.6439721998621976 -0.01972265740493646) (-1.038449722211707 -8.69848592733976 -3.860411175451843) (0.3645764424136305 0.5491250734188446 0.05162036646095138) (-0.09879424353559342 0.0241540871227287 0.02770684167581644) (1.909697676246835 -6.083893118208442 1.301293929061677) (5.033210400416682 5.815554516187192 -3.532163092781968) (-3.711742743407151 4.949370121108448 5.520289717198985) (0.3183534390143802 0.3816996851596403 0.5410224624645857) (-0.03598832159912858 0.06215476526550221 -0.1366245105589389) (-0.1873877000624184 0.974582371213275 1.160032504775357) (0.6866768957703862 0.1596861971254938 0.3983893889990544) (-0.3917677585818603 2.964137290253412 -0.3297233875868767) (-2.328152483310081 11.21876666446754 5.852103211263382) (2.569225550039349 3.442877264123992 -5.6085171589788) (1.782384035077699 5.635963137103799 1.045977023196588) (-4.023330948378199 2.406747498282534 -7.428669677670139) (-0.008313218463961046 -0.009677622277630074 0.00189802011969069) (-0.6522809975284228 -1.907067744738943 -4.736668482737269) (-0.1088543544393409 0.2327346679613594 -0.1463254653451687) (-0.02385684106775156 0.008511463538483184 -0.001032198793612458) (0.1230908568674761 0.08018351577330995 -0.03135597589226122) (0.04779107477508055 -0.01266273266214684 -0.07423844366969978) (-0.3882275154618617 9.936092647954903 2.705392791905635) (-0.2429207905483968 0.04395956248356009 0.04711236093121465) (0.1402503108124353 -0.3531831949392752 -0.7420068139732175) (-0.4841833338421857 -0.4546407066393505 -2.159652252613317) (1.302430320013894 -0.3615356859643472 -31.8517224225089) (1.802702334912307 -1.140989313578484 -2.912080423008837) (0.3046689835756518 -0.9232710412355872 -2.47927927421494) (-0.09197993658837959 0.002748610425882134 -0.09782598437625477) (-0.0327648428059638 0.01791280870357578 -0.01661841027524041) (0.4781474234686143 0.133972760841084 -1.127973471066879) (-0.2999571892531427 0.6387102518595136 -0.3400825369817269) (-0.362768059392806 -0.1491895370063049 -0.03087600588961574) (0.1729688860107555 0.1709885507373371 -0.2779461258553214) (0.1287216175854698 0.0371253074441315 0.01148710719500434) (-0.282911318910116 0.1804164704134365 -0.05712731853494529) (0.3659795008639531 -0.6453801569089104 0.00205477391477929) (-2.412948067184672 -1.956258794178247 -2.625173186128143) (0.2759002307537428 -0.1484274133061533 -0.1576099705117629) (-1.882216851016382 -2.601470621704564 -1.393613195295588) (-0.4291241607346412 1.012712209049798 1.734135951203098) (-0.3139047921366721 -2.92613984442483 -0.2042502641374414) (0.459303361931834 -9.694639825814978 8.942786475176462) (-0.8186863684429941 -0.2148725220544506 -1.932001107310232) (2.902620911088063 -6.20918098934691 3.627891697069904) (1.026887764187103 6.433562906201187 1.175595376913757) (0.009493045239997722 2.420146367604053 -2.646643309083041) (-1.265939397134361 2.179767973809088 -0.995568584993541) (-0.3963126873595059 6.058622826231973 2.640740100943901) (0.4141650943891884 1.395392604239718 0.9635859565073974) (-0.752016293725792 0.9654135019363046 -0.01632568663327224) (-1.107930808334153 -1.009830612612665 -1.83450448123936) (-2.009745414162598 7.381315956160691 -0.01561842444111794) (0.4638389502580023 10.55128582700865 0.870885806286985) (1.100327988538444 -0.3914664930926005 0.08410694472866131) (0.1537357872947258 -1.406160438188751 -1.973882318530312) (0.2645582882117822 -0.3646611662820863 -0.8529628092056235) (0.721125300013899 3.241550204133004 0.7660344947891872) (-0.8874450791283648 0.6704218087619438 -5.484717745891748) (0.03589561155295096 -2.116045119409629 3.475732745752835) (0.4624168831453952 -1.500307105980322 0.04547869451483895) (-0.0820525441269442 0.02552578765676837 0.03634710488819752) (-2.418614631267583 -0.3834637221563979 -0.365259598062305) (-1.989090483767528 -4.373358340282541 -33.55336227367494) (0.5794695950599106 1.355998511488466 -0.4267203539372885) (0.3426082628219775 -0.9766307982828022 -0.1286822593017743) (1.880120276540506 -14.21154491993879 6.268211889639913) (-0.2782431769964508 13.4376855610558 0.8472298747808253) (-0.3826028006251855 -4.472521644576177 3.4207850802549) (-0.6410245824526958 -6.392897049620435 -1.132636669574967) (0.0489664162499216 3.840371348527248 1.195313485757843) (1.527658082907465 -11.66161065424638 1.737682427999104) (1.697994565123884 3.897953747121691 -5.901543210530741) (0.7676540694624197 0.0235415391542253 0.2968804599312548) (0.693013572424603 0.6886547697373548 -0.1165465237975337) (0.8153359951913527 0.7194180730178359 0.687641610011236) (-0.3521079129643249 0.4607160776238291 -1.119711859294987) (-0.01559046213765712 -0.02097857905808455 -0.02725020387518974) (-0.5564328096761529 1.730991139824135 -5.179853579838157) (2.82768255321601 2.65148895023754 0.3199190265393923) (1.208366074440367 7.034504614065891 -5.447835629287963) (2.46971297650963 2.331692749243978 0.4456764032442158) (-0.380315110370109 0.7977493852404098 -2.3258426217932) (6.582979074704621 -2.905556732428439 -6.366477277623733) (-0.02344025101181188 -0.0308101319619398 -0.03555075097000991) (-1.298348308871984 -0.6126728054167402 -0.7737822257091261) (0.887383439907513 9.219676074370852 -0.2536079089967422) (-5.885467886719582 3.465675378080197 -5.482609164903248) (-0.3601138891910802 0.09696779836424917 0.1248316405274302) (0.02764339499438828 3.197621000624731 -3.106771825794254) (1.808015266401849 -30.90987342033683 10.28065195127299) (0.5222124277954345 11.86678800466848 2.873566307248894) (0.3385836598764169 -14.82429026846362 -1.009258562995777) (-1.644696465820167 -0.1045492747421435 -1.982694425952384) (1.028160218905969 -5.115111096290956 -1.08494599432236) (0.4820270101429609 -5.645503257651407 -0.7995046505994022) (2.285483479001306 8.150000523058317 0.6634920656634008) (0.07299040217614719 -0.4242652321190395 -13.84562142907051) (-0.3163039929056363 10.61568970215747 2.109053536986682) (0.1332157901005667 0.01086625153785781 0.7198304059243507) (-3.229575112578771 0.3582771164309334 1.414096574200008) (0.001710552155075151 0.1651494495892153 -0.4439802538405793) (0.3553395212319332 0.4386892088781111 -0.2772942203128781) (-0.01681867972668788 -0.1364874828486825 0.186718296401392) (-0.2204375725638025 -0.4368531996097816 0.09891932843097588) (0.1744441348856068 0.02856232709529308 -0.02645272014620107) (1.230049261314687 0.1789017196534941 -1.436244697189228) (-0.06517243387028436 0.02219073674197834 0.131689508008583) (-0.06559229596209942 0.01731150536893202 0.004169534936903014) (0.03787862282164815 0.002279712226956894 0.08453236056438054) (-0.01773496338589498 -0.09174710809468167 -0.01931087416674318) (-2.681684665744539 -4.782965658297462 -2.397217543997641) (0.4170873479481821 -0.2965334733574273 0.4576529002083094) (-0.08035529225385618 -1.019513102319661 -4.891173003421504) (-3.066912209088183 1.30931599885192 -0.7097598310431731) (-6.066366200781312 5.400916260921448 3.621625842587967) (-2.39054800501623 1.599964753166812 -2.134025912808605) (3.016765305044948 5.114371665919568 -3.97129749264778) (-0.9782299483918716 -7.307801934591129 2.620342083456745) (1.621169640307002 1.621424948805828 -3.836984854549073) (-0.2461625228335706 -0.5488577132911243 -2.731525215931239) (-0.3271552623360802 -0.3727585343161017 -0.5997803982512442) (3.611194564538562 -2.558770810677812 -4.113150413535426) (-1.103615085608768 1.361177231524944 -1.892741763129545) (0.06623398362044122 0.04344667138498114 0.03616983493696812) (0.2335079454124154 -0.3654862673824402 0.4705198337077605) (-0.1071324635919298 0.04972075362836845 -0.09672777300465893) (0.02559310488363495 0.01044351889510103 -0.01390868068218821) (0.04013445426064177 -0.006903132093783811 0.02417703223659062) (-0.003796660481936904 -0.02180707418670874 0.02343667673212018) (-0.08934123740459435 0.001746284964878095 0.03305884136312191) (-0.2893911824281759 0.08047593867665559 0.2047238535521343) (0.06471700990647375 0.04287491583610267 -0.1379152973808817) (-0.2393604417516735 -0.01005387617799355 -0.163184823313383) (-0.02346741971576387 -0.00368640047796639 0.05136572481701442) (-0.01418438717066095 -0.007609202273336737 -0.00463987187352548) (-0.5056594527354736 -0.5237766121069358 -0.5357136056940418) (0.006019171774512317 0.01203493886627514 -8.206432626852243) (-0.2210627894481156 0.009342918780306249 0.2333582986434344) (0.723240745242412 3.866371359765004 0.6187287351889549) (1.606574005042451 1.799334439884029 1.883087978079659) (-1.352477882740229 0.9130795346152032 -0.1237139574840056) (-2.701186489052698 2.929705870307041 3.802990612093082) (-1.166758854347534 1.143316853589542 -0.6620445748842807) (0.1680534106398811 -0.156319870456844 -0.1618597348218523) (0.3661393614965836 -0.2249447619613128 -0.6505262505643775) (0.1435734497290018 -0.04386126220685599 -0.06079647817218744) (0.1144161023431849 0.1080468600244285 -0.634922249994788) (-0.2245005348192587 0.2079540547642242 0.007759075418419134) (0.07244291593023365 0.04876391201855168 -0.01298067464183335) (-0.1764462784569707 -0.06107811842094105 0.07833977879405034) (-0.05257749836840792 -0.008998238884922828 -0.01487642322914341) (-1.191992832792975 -0.425060611820169 -1.100924210170743) (-1.541477024433347 5.436935700937977 1.265066774746624) (-0.197539146589199 -0.0300299674624884 -0.1243867468408075) (-0.1166176670364781 0.009950001994958511 0.06030591041476331) (-0.02793958874685561 -0.0109127273190002 0.01761023198531234) (-0.1644374109226656 1.902518967096113 0.3924066660921307) (0.03156076657460536 0.008732906353542708 -0.04437207539501462) (0.759037639834593 0.9205386950583772 3.558436931993032) (0.01498332764406647 -0.02185761563699997 -0.05656163445152637) (0.2932263046452921 -0.7573729244204913 1.444722055123359) (0.09356424559315565 -0.1341722323734936 -0.1866463798814012) (1.23092695930447 0.6216684135766726 -0.4402290427581983) (0.22861925961448 0.2606303142535494 -0.06630356716722785) (0.2525220083850232 0.1259569910168662 0.01433697202361941) (-0.1400774240740132 -5.392802346743422 1.570054020506704) (-0.1803180090803816 0.6111665443105105 -0.3057933630059183) (0.007502065809079118 -0.004288993395162804 -0.003481795472210102) (-3.007075329912746 -3.0361350087075 2.493967001043657) (0.02922354685755513 -0.01364066959922591 0.01023781611757193) (-0.03420096711852775 -0.09041560418474612 -5.227448147421088) (-0.4009917629432243 0.06432935281761895 0.0194187422837758) (0.01074039661124332 -0.01079691527725574 -6.641102043938873) (-0.7332909937588957 -1.437034281545504 -31.75942709873043) (-0.003419340971327451 0.0002086553932452721 0.006780300453721287) (-0.004366795240497559 -0.001571629498415052 -0.0003602559253691283) (-0.09756900030863956 0.04221085554178316 -0.01001894108755898) (4.599063459906267 -3.774990949728088 0.8812277991764235) (-0.002784247635808565 0.001107931732710951 0.005883827319723454) (-0.008543121353846292 0.0102310869626118 -0.002445795223992437) (0.001268455217673999 0.002872918333200351 9.23412105225483e-05) (-0.01656228781614229 0.02669292982508066 -0.001627744190419472) (-0.01038655072997954 -0.01723881111462767 -0.02087999433142708) (-0.01170182454087984 0.001621091610786395 -0.00877146860499569) (0.01789308492514402 -0.008308514380843859 -4.690032230739794) (0.005555500383184303 -0.007959405682868678 -0.0201949978499365) (-0.0005304602968635099 0.003081476881416166 0.008285670792052453) (0.05697052074535854 0.00508973632069556 -0.0002689898955864087) (0.003078893875602488 -0.001397559226769285 -0.001703365069531951) (-0.0009065791903643738 0.0002079243876141369 -0.003662088670539387) (0.1163920191842368 -0.04553008034298099 -0.06538289683466905) (0.05460547081711122 -0.007858731815885856 0.003943428363215519) (-0.1074018861595586 0.09057400476735838 -0.08376142911538229) (0.04391186237347319 -0.1308651545125698 0.05598950871807777) (-0.00356951338627845 -0.02717577165616288 0.02654056231990957) (0.03559630787348522 0.03137169776382071 -0.04831821376439811) (0.44740358776714 1.142536146022706 -1.306955521023521) (8.785721109498567 -2.20716033750774 -9.401847479710053) (-2.688470223031924 0.3411457934512877 -1.131672596614071) (0.2054390945166369 0.02383107888125211 -0.03843340998498443) (-0.05414031145813655 0.03369242080913703 -0.07353277654706179) (-0.2079603830840308 -0.8024305113512462 0.5366565138640573) (-0.2783503098457219 0.1015595611756053 0.9349631906046267) (0.08017786816368686 0.02351841697441678 -0.07242645159811617) (-0.152067152880197 -0.3804499296928557 0.07453968987613664) (0.1125754085042633 -0.07875830478207402 0.2296172747428076) (-1.17641823991159 1.460690517756829 -6.166295623677446) (0.1635688119945071 -0.009571562495529123 0.01692801136547426) (-0.03916770234186563 -0.05945409158781603 0.1252948127152122) (0.02569093962122385 -0.05281243000950845 -0.001465672010681339) (-6.083553896874103 2.593048151439974 -8.765556321403007) (0.2179907326006382 -3.43968196093057 -0.5713372105702523) (-1.084170676367984 0.03007128990016317 3.180604926239645) (2.466189700753353 1.407513102809767 -3.8125704233681) (0.1766457128015154 0.404332703765925 -11.38891014122488) (-0.1840831462912509 -0.2308760764684695 -0.2548240427178975) (0.2131810784372737 -0.3892098261498586 -8.780550295102572) (5.294114080659943 -0.4269699285239969 -33.10263139701125) (-2.42041463181909 0.1000747497938375 -5.768075548155403) (1.254298723812332 2.542423718388055 -1.362013018605402) (0.6400289715470967 10.99550570780143 -1.723407321390799) (-0.2329035253289626 -0.3531955387830242 -0.5474167321751102) (-0.6194947479308908 0.3378709806530427 -9.161090219057721) (-0.7719657643386559 0.030242365988148 -9.247399509586034) (0.3161445482403188 -0.365264218995989 -0.3255037780865059) (0.4697605074002986 1.022851212608853 -20.3148483256637) (-0.4081089523644363 0.6043722525074522 -0.7238834893124911) (2.655357706195169 3.25419464727666 1.840874809697211) (-0.2860919319152144 -0.715278164707251 -2.252169104241586) (-0.07036391755563552 0.02248054013050201 0.07442659235989653) (-0.02250867709265116 0.020684939886986 0.0188182136397075) (0.01946258604241301 0.7999748442743289 -1.453379703581765) (0.1365889773362062 0.01750549532107493 -0.09639091669838641) (1.57830724892141 -0.09612322024849101 -6.669530718822751) (-0.2483305131312502 -0.4138503741019354 0.142397313317139) (-0.3372981431963505 0.3385886001822427 0.05108756113230967) (-0.5115375842001679 0.2467532395976335 -0.3442638130121603) (0.08369829778081005 -0.318807217369503 0.01370668360404185) (1.04046413089315 1.110795558202547 -31.03324476252346) (0.06796980130901847 0.1848544880429615 0.2536466885872284) (0.2452902004540481 0.1136315730030819 -0.1737876991971274) (1.051841375101343 -0.08151812077485932 -0.09465495267083757) (-0.1171114481862975 -0.08298297760782133 0.05495758146575591) (-0.01807303182630066 0.007067047149551304 -0.05826674590526791) (-0.003675524251280808 0.2893249391699236 -0.6174173231701702) (0.01547531883739618 -0.1949748737791498 -9.850931194001813) (0.01441563785913062 -0.03659882347247133 -0.01968128841039361) (-0.2178857460490059 -0.08635457110646066 -0.05021586558540955) (-0.02423250626220002 0.01282081390755523 -0.021420257193051) (-0.0489602711072576 0.02212790375232594 0.01176997318365726) (2.032506936190181 0.5780157607358634 -2.944375333075162) (2.934871798179722 3.927828471241006 -7.723625883144297) (2.47329400280491 3.518254488822697 -36.76756503287735) (-7.816993865839505 5.235986523971239 6.177500715082665) (-0.001671922640768503 0.0008665980727244268 -0.006576085613770054) (0.0320136900819074 0.1353532043567158 -6.044686665755345) (0.07851077685984573 -0.08033646637311839 -0.00872477121207176) (-0.1246081521407989 0.3101788321955979 -0.200374517947152) (0.09320212390374016 0.04856930230187682 -0.1447803270882612) (-3.527568379416122 4.78604715100678 -39.52794395323811) (1.403273829578096 -1.069631506978414 -4.688768918337428) (-0.2683355428329121 2.156606383422174 -2.777813349786955) (-1.339518043449826 -1.270594997760173 -4.213856875869792) (-2.624215735492583 -1.587235832856131 0.1650817242017852) (2.730301592440337 0.9793962436188784 -1.63774357327669) (2.337028089093582 1.09095557526857 -2.232655135575887) (-8.650648752404635 1.180997598433413 -26.50096752260084) (1.08361984697838 -2.245821321091605 -2.135244377848117) (-4.490475015530532 3.454759344093531 -26.99079503495719) (-0.08197953467313518 0.004711130988841738 -6.841020402296968) (0.05285361759799391 -0.03040478506195616 -0.04228471306984553) (-0.007797611849809134 0.01195250472501821 -4.458681250442607) (0.5470190466609925 0.9402190985727863 -0.373877117399198) (0.7306819520732515 -0.1437424200379093 0.09211140213461905) (-0.009504798747613187 0.009894374143901815 0.01075367438111229) (0.02098766768717854 0.006600521357400092 0.001483904039422215) (0.0179491634946659 -0.005054582009291467 -0.0162609190899035) (-0.2798372582480448 -0.1771866751310755 -0.03101826121662589) (0.1438550003552663 -0.0485380832997171 -0.1727446028667194) (1.307922488302337 0.01817649066147409 0.08455855123009304) (0.5884529321595581 -0.169267862724788 0.6180725938388152) (-0.2938120624543936 0.2549184100856201 -0.7431686230421233) (0.01052760434305563 0.06740535815641449 -4.492964235168075) (-0.03030714750226791 0.007831416314425381 0.005536282584988169) (-0.1660028896852464 -0.03364927615710485 -4.890930268118493) (-0.04527199227579667 0.01175030590000335 -4.911806829227955) (-0.04835788064709869 -0.05659858553460566 -7.353807150730521) (-0.2604495329381096 -1.666605324166718 -0.2356404723029047) (-0.004699681170085471 0.07647080720769073 -5.68220253412392) (-1.461948616983558 -0.9271030937183193 -1.239288452661965) (-0.02379978809945888 -0.08282008511379238 -0.1579822881012606) (-0.01974037204590998 -0.12330179606844 -5.14520666299533) (0.02356068028167394 -0.06743484738996298 -5.033618538846317) (0.06627606922854713 -0.0354579695449255 -4.562677454275486) (4.183479916487783 0.1382340847622862 -12.62326364261721) (-0.01528211508780388 0.01377672131163115 0.04148990002394743) (-6.850686916742083 -1.552171220444885 -52.86074451592414) (-5.305619923331978 -3.45797246417979 -49.20332975328072) (1.169276787811665 -1.727107081230084 -45.17179264945042) (0.01158558833384615 8.601315752320218e-05 0.01890052468420668) (-0.02395112679409768 -0.08987715668654235 -4.803047397530347) (0.007121497463302835 0.04440708144603433 -0.01902909118459934) (-0.06111176410161472 0.07552379272384895 -0.0813971971178138) (0.03550748506636955 0.03925274295196828 -0.07175267272202204) (0.05256652015165881 -0.01328363191245935 -6.083344977526433) (-0.0515352749203782 0.1015532273016783 -6.111426928983766) (-0.5634297116053517 0.207907595795204 -3.267920132800636) (0.06683187107411975 -0.007131673140810979 -0.6302833876180948) (-0.003752790140152513 -0.01057166703709671 -0.004196587291700086) (0.02009698799771713 -0.02168991532010661 -0.01223907269891161) (-0.01302281017720874 0.0369007218108135 -0.03589106182892885) (-0.04532408428835531 -0.008656839777803595 -5.158308063129086) (-3.332370460786239 -3.502361571413407 -2.648362826263343) (0.1217067434032128 0.02852955741897339 0.192276683043489) (-0.02445507735813484 0.03054412047924095 -0.06753310561298889) (0.5811322467234711 0.227457186801714 -5.254531306763835) (-0.05085552413146333 0.4984051627867218 0.1844565211085578) (-0.02110958508363434 0.03296268007725036 -5.330288046726192) (0.006820096712234523 0.003876762323633622 -0.002889982204476735) (-0.02327075955014002 0.02010300341528789 -0.05712753182923733) (-0.002212227358640157 -0.03937927333443547 -0.04153177771346174) (0.08313227095767754 -0.06966896524183612 -0.07856613906954876) (-0.01938963000545654 -0.01353236687132793 0.000141232462512029) (-12.30409969961783 -10.37828804244764 -9.050605575245072) (0.07138012880050773 0.7905572834192209 -5.311720438065366) (10.90517642392163 -3.536765793486697 0.4985083720449293) (-6.43563013651159 1.327745387423937 -7.711463124823081) (30.66912065132824 3.463610287559318 -48.24021009445327) (14.47778057285787 -4.57422179872808 -41.63120627955343) (0.07449047625865554 -0.03104493981765159 -0.03552025216516097) (-0.002803061035975684 0.0004430723279745096 -5.517776223827083) (0.009289229297134948 -0.05398591415486868 -0.04691390882510017) (0.007218599985454637 -0.02920941468017324 -0.01029670296383145) (-0.03199034778081517 -0.02662756317684218 -4.853437187713373) (-8.875585223946088 5.019856806890903 -4.494924930043963) (-2.274280926065766 3.683343653835396 -48.73442650331637) (-0.0812289778658204 0.3816998083658318 -1.492560985150603) (15.05598593677787 5.453400678821618 -16.82151518572685) (-12.11165927047618 0.2277211590999437 7.442521505719021) (-0.8545105611771004 -0.08246812733359371 -0.02776731353836068) (0.1122676689496199 0.07617203456842794 0.1201265652922099) (0.1422315693102383 1.60616354596495 -1.985254939908469) (-1.298598482989023 0.03032308188761434 -3.188374382248518) (0.001096614976149511 0.0008379666865172221 -0.001976233190634056) (-0.04440875037736219 -0.03120452648196162 -0.01795401042973088) (-0.04329010831422826 -0.02739330516415137 0.02779369824326515) (-0.004528145252983827 0.01102307367825623 0.0119322061953452) (-0.02790445681969392 0.05527697843790416 -0.0004486987629436574) (0.009440825512008758 0.01143356903221074 0.04239578770391688) (-0.2937680213677893 10.54696625507743 -9.072239348100748) (-0.8628989911358389 0.8958775735202217 -0.9377861362487832) (-1.016396257257643 -40.42161452110385 -3.872142639619503) (-0.06730899202122473 0.07256310619040417 -0.01360152485308461) (0.02773561087955918 0.07127998318113683 -0.01216693821446604) (0.04521738520344076 0.08482585144849696 -0.008411458475583236) (-0.1286034661044675 -0.05827283276034817 -4.7159272128217) (-0.3166860825610421 0.207107733633272 0.2590797061356355) (-0.09924985973000763 0.07187887345163915 0.2066825505941924) (-0.04808894044880046 -0.03349036851943372 0.01322280940862166) (-0.005612042290351917 -0.06791596488028066 -0.03587609812560048) (-0.2184451700061145 -0.05490851633794158 0.2041947336532248) (-0.000741911705599012 0.00622834548330398 0.005399750103200313) (-0.3092796466414299 0.4786484092906522 -0.8167534634293729) (0.2080655648227633 -0.07341892493065515 0.03092758587128369) (-0.1322677913602804 0.1077295133505961 -0.04430413052026736) (-0.04931252238077133 0.08996840830217084 -0.1397381962671606) (-0.1015107750881963 0.009630535278640162 0.05566171963151892) (-0.01232804413126425 -0.001841690242581163 -0.00382636100442726) (1.487379252634505 1.163340023917357 -0.1456976265495699) (0.3819847723224911 0.004610873875274688 -0.231271560543797) (-0.7080643932403746 0.3652547847618937 -0.01780428822777722) (-0.01661624565735234 0.1211016564096431 -0.03144263725482767) (-0.5301264462571924 -0.1752274734622641 -0.2251641515886171) (0.1401547137990017 0.1095197091540519 0.03607184023801149) (0.4603754128204545 -0.2055512598396602 -0.1249551113408582) (-0.006248417407348347 0.003946105182182053 0.002915758290309135) (-0.09416241931615321 0.531895630271971 -0.6973997087745829) (0.6301538006805747 0.06025080727284816 -0.1557614645992601) (0.003221769018811984 -0.00283602145201679 0.01057266274927799) (-0.01568681829193534 -0.08553362620301597 -0.08693708392846483) (-1.381561314007681 -1.216501728940188 0.6456841009908652) (0.1412084282279665 -0.04215565084790152 0.04370251657853201) (-0.221912557779717 0.4491742388396414 0.7794225704028286) (0.2277620733675194 0.04436000835154515 -0.04831858332984507) (-0.02132125854104262 0.006290758259097278 -0.00728687679147828) (-0.09305374191802865 -0.009721962038461113 -0.05626319673640777) (-0.1719067281362769 -0.06377919327866054 -0.3031797934378175) (-0.6499991524364213 -1.578405000876563 -0.4506093881746598) (-0.107970695032722 -0.07504687937142462 0.02468754716465376) (-1.123716058768633 0.258065621733613 -0.3753978712500788) (-0.1382927896494504 -0.0597981979231925 0.05634448187577658) (0.002048208932964131 0.01364883444855861 0.01121539484552212) (-0.2149582105059191 0.3917580667718811 -0.1577605284289917) (0.008066121681449656 -1.481206857232119 -1.545711136622871) (-0.02384229447500434 -0.1169878661530161 0.06221475679308792) (0.1015932570639719 -0.09154606395946678 -0.1709470398904632) (0.1529252767827172 -0.05223751773983402 0.06524026345287896) (1.11227685566356 0.5635535862099624 -0.03453694705618281) (0.4246369013183547 -0.3662167878977597 0.02149240041313055) (-0.009505879688456681 -0.02244454742688851 0.04086682399598936) (0.02917252758767444 0.01704564114102275 -0.01398508407400976) (-0.5256491980310255 0.5821199558442073 -0.03956934027546755) (-0.04168329747394534 0.09952183681445827 0.1327851778117264) (0.3102611410659017 0.2054249245262961 -0.1959234871293896) (0.05802406698202908 -0.02921261402447176 -0.122255142841334) (-0.3862989553171493 -7.643379160480756 -2.001646318047825) (-0.2200861224047621 -0.62978068002897 -0.1800511547862239) (0.06382098156583897 0.2204595736066335 -0.003790537194917926) (4.666084924135336 49.57604214944924 5.87859006849372) (-0.7018906520249235 0.6684433081592575 -1.208166726555227) (0.1244850735506731 0.04075910286715095 0.331340037525823) (3.733509652906214 4.927364247261637 1.039578382814215) (0.03040634658450746 -0.09300106991035928 -0.1362042828721698) (1.628413434223976 0.08867511995905519 -1.056648498362422) (0.7322335303577486 -0.09926186149890881 -0.1784100116034282) (-2.877387164777228 -4.942783132590978 1.497593327726708) (-0.002180249461725819 0.002326714166794495 -0.006773453998199687) (0.1802033195550797 0.06847906457446416 -0.0132490898139336) (-10.05806575695311 -13.15744841706773 -4.288711959081752) (-10.53868425645814 -12.23469851854423 -0.8786647815067909) (-0.07158273424329401 -0.08763148978448057 0.1180603495265731) (2.693239254193279 -0.2711617827473159 -0.2947633114556176) (0.01257843565989633 0.05442042887562837 -0.04958918592112678) (0.0168771627802616 0.002420246801454501 0.02522241720434727) (0.4204760557098123 3.706786227817773 -2.730365305130634) (0.05882765564429754 -0.1393689659146103 -0.1666253289219798) (-0.5885737120470034 -0.06637725662881125 0.1672922988312863) (-0.3655946583848545 -0.3415689379155511 0.2750417354234289) (0.3441005190417652 -0.4203717907957494 -0.754320866700632) (-0.7517743043500267 -2.195404275996951 0.5618261109956222) (0.1798565303490599 26.78690120408634 5.390450841555595) (0.3701618147987894 0.2911874526895063 -0.02703237547295549) (-0.04516908848377136 -0.039851375920692 -0.02367014746528123) (-0.003303113911264602 0.0007742934847679191 0.004378251537089829) (-0.2212515409495619 0.03533473003330548 0.02580000726631763) (-0.4123205442905019 -0.07274517460171059 0.02342755926425619) (-0.00451416954699955 0.05081140700745426 -0.001031861156163518) (-0.05406821792443606 0.2838350985598674 -0.102508121967671) (0.1516963038919719 0.07938792659834924 -0.008868999854366569) (-0.0395503735849895 -0.03515256070824217 0.2908869714978124) (2.957516865514985 8.068581069562235 -3.644951704149967) (3.810668761298671 22.93873172500869 -36.32334724438007) (-0.296868202912244 0.02541947639096391 -0.3029190469180233) (0.08296540279048853 0.03724738319837523 0.003920663403073406) (-0.03229151530592363 -0.054624226522814 -0.06126518440967903) (0.1240440887038805 0.02253443189305702 0.08625216221863867) (-0.01305153112809158 0.03966075788178963 -0.06912916995778003) (0.1566076368646797 -0.001233771414905577 -0.02567898785081577) (0.06302072582244862 0.004436419301086281 0.01879990172480361) (0.07490007638948387 0.02613715614714003 0.01927624975723058) (-0.06894977637586053 0.008492144810084767 -0.001897030892207479) (-0.03644630703694002 -0.06689808984591993 -0.06562620061235197) (4.059308035546082 -22.99696995290899 -15.37312619793271) (8.560028676591521 6.092932371494953 -9.563378148073523) (-0.3198011204385421 -0.01658927621896334 -0.004628334984835385) (-4.466428253442108 10.67704965499504 -2.913424145289468) (1.396782021197422 5.277424402964476 -0.003995245212731813) (0.1019211488627079 -0.2982822199394156 -0.09304794909100417) (0.01399217839979013 0.0186206895814383 -0.009763961347413894) (-1.742893409732698 0.3428932218486522 -1.334209402486822) (-0.006645401714913896 -0.01698452117440654 0.009865767305135047) (-0.05398072625353939 0.004503565091267425 0.0107298221756949) (0.02291261203125253 0.003468625980111861 0.03238539273285553) (3.104308315692734 1.951591326343213 -0.2020782723769049) (0.7246755593227938 0.5307881588238054 -0.03630835502742942) (-0.189208895919891 -1.316202096370777 -0.2242426173757745) (-0.4064807277113931 -5.933035575647358 -1.007563154827123) (0.02781868722634731 0.2043773629783195 -0.06907417872906606) (-2.005879210881516 5.057882749958837 -5.825715627628759) (-0.1247339376778991 0.2352967769253553 -0.3532938646825249) (-0.3101222356511624 0.2570478901617891 0.3554662654070722) (-0.00952199583292114 -0.02156705790396956 0.01578183810398415) (0.0006168694671143116 -0.002211934533185203 0.07553519257390631) (0.1477543207254828 0.0004176424467930567 -0.1606898327084722) (-1.491154934518437 -37.97354256257934 2.183900714926304) (-0.5006986262541047 -0.7027789410946996 0.5272199012074872) (-1.162512918122629 4.031214591142975 -3.663565901579537) (0.03592481477758504 0.1266752236804689 0.1324664346054526) (0.1949676418938842 0.1567244682653837 0.09436363226731678) (-0.1882685046011012 -0.1359246117988322 0.002444083059435075) (-0.04505184060065058 0.005853736037229135 0.1799248651664853) (-0.7146196346839662 -0.3152262218653746 -0.4379290846407794) (-0.1200012175271499 -0.07756842136844033 -0.1043884392448904) (-0.01775999852584158 0.00636479546407767 -0.08282069908925288) (1.186029904718925 -1.359754733828249 -0.7649708438007327) (-0.03819940795826546 -0.08459181334605938 0.03340327336783971) (0.1811287916139929 0.1212914295300192 0.1509714851162067) (0.2611288874486372 0.09348269607088182 -0.2205900375235891) (-1.657691262490695 -0.5334960723396462 2.90279508804502) (1.312337541932139 0.7889924734959137 -0.02812662534772242) (-0.2965062293513406 0.1722130127484351 0.9506498001744175) (0.3103587217578819 0.4987040747935435 0.2527409231288425) (-0.5038805943703708 0.06386394892349602 -0.06914018447901078) (0.03210087973599671 -0.009969815019611812 -0.000276368024309602) (0.000372161445721074 -0.007743790579060939 -0.02878514398643233) (0.1050268202537413 0.09856080956438286 -0.09328921266067339) (0.3328424621085922 -0.02004061533575621 -0.5606757228904327) (1.06874821567455 0.6458696786738367 1.504892707601598) (0.1761008018969775 -0.7772067302386058 -1.566386448180471) (0.3637208035992536 -0.5266927020756289 0.3792046572505977) (0.1678345196808013 -0.128476347831886 -0.07995737160689238) (1.341269057275085 -0.5428411984759774 -0.1610534289811827) (6.018892204003326 2.959196767569834 -44.28782367695734) (0.007990371389950957 5.904936033921233 -7.314960506260034) (-0.4945587879032046 -7.989840325620744 8.209771914775533) (-1.417521409846774 0.6499648018417032 -2.85345732946886) (-0.2832786028994798 -0.3625910688667207 0.03224865271158332) (-3.802235178876829 -3.570305724847788 -3.372023624403332) (0.03289487111833787 -0.05127526264649253 0.05427407932864974) (-0.830156504631939 -0.7330864703964324 -0.009337417722117033) (0.04155147901336717 0.02556935414137857 0.02435811483394445) (-0.02368095000597975 0.06596032261969911 0.02881889200467419) (-0.05334801290414574 0.00305635317061427 -0.01930172362938909) (0.06492082468188876 -0.06918638336773648 0.08329263609915362) (0.04762769634305491 0.009147432372503556 -0.006410445181329393) (0.01089996309828395 0.01289387188805944 -0.0005026472938956996) (-0.03492831089125738 0.01844263321014568 -0.01188281754461636) (0.03787278438792748 -0.02439479025278781 0.0195384010013217) (0.3139978964214283 0.6403442099050144 -0.3086962582868935) (4.121940268284827 0.03574398993676708 -2.514515169585649) (-0.569303378830466 0.5072989187034188 0.1285624144287591) (0.121794903468783 -0.3477316817590814 0.3417494945234438) (0.02571451932818094 0.007921261748196295 0.001910928523993076) (1.841658308840254 9.288174769585479 1.871176573174243) (0.4126876596082752 10.17670396881408 -7.467868358658879) (1.894401469218854 9.396367835023034 -4.320301694535562) (1.752387657439302 -1.236027489612657 -0.1913450311860563) (-2.383212065723687 -9.341687273731909 -3.027409750039663) (1.294815482778382 1.109275137798583 0.01046876595423343) (2.529426554946182 -3.08121667779883 2.285847127816067) (-0.3408553310834939 -0.07208994804537078 -0.1079541943939017) (0.293607723245149 5.822268643407385 -0.002614063483311613) (1.484920415470972 0.3136135316059872 -0.5891603508285095) (0.1295359209546597 -0.03646211272034925 0.02912961762794149) (1.022485747415986 -0.03128180704305403 0.133648091354792) (1.178725730491644 -0.9698408810354326 -9.824597092074738) (-5.119024529826993 -10.68644458901164 1.79006052703272) (-0.4080312293505273 -1.935174000931901 0.2091277392314585) (-0.02072820491036416 0.04884368294559184 0.008759294140475793) (-0.01438865476175736 0.04494836198525136 0.02991712592716945) (-0.1152000361977772 0.1125715570839704 -0.329308462982127) (0.1415736758458437 0.1752461727846355 -0.4065528931761051) (-0.5286560339229093 3.130106662849265 0.5719341030676671) (-0.0656800769651386 5.424941812686201 0.5165159730708487) (-0.01933589894444637 0.01964014140885411 0.02823079103604638) (4.54097788229985 6.207955275964445 1.431318982632771) (-6.054461014207709 -7.47252643126579 -5.831692417036917) (-0.5792598422971917 0.1566063775918069 0.263546577209166) (0.1947001575981303 0.3654859045270712 -0.1752469392545564) (0.1713571288966307 0.04027543746008773 0.05915074714334972) (-0.4493480071060569 1.097102206282698 -1.367076185616055) (0.19365163046297 0.09584947891388419 0.08389186556151323) (-2.040095516359909 2.109742152367621 -2.439748915941819) (0.9975041693824309 0.2843489502414622 -0.39710378069721) (-0.06608910181630961 0.03574564401667423 -0.0308871592857525) (0.1490799375614294 0.009306960839849665 0.2484619232590175) (0.08404846974564659 -0.008603740065790951 0.06716873470567375) (0.6604246534800953 -0.1417239640866214 -0.90590371489975) (-0.3571672268964416 -0.2464203109575414 -0.1172793671619644) (-0.4382298483330769 0.0383134919838154 -0.3420892456035343) (-0.09337585374819515 0.01818654024889334 0.04314463663639912) (2.390182067146576 -0.1656532814296769 0.7761834625703981) (0.01114484216786005 0.1584467982627618 -0.1384342746945693) (0.08710599725765297 -0.05143907268684061 -0.112034297617268) (1.249974147934867 -2.174717514929054 -1.755553113119065) (0.9029715008146302 0.1712442726348202 -0.5168990921522184) (7.58293953524807 -0.6178664775697928 -8.756613026467127) (-0.2989798666150809 0.162792509196931 0.1043847379198619) (0.04331391180018291 -0.04915091848331563 0.09309241268798601) (1.262675281628907 2.447754367681223 0.03586887211038436) (-0.9036969996243939 -0.246896067771798 -0.6305357446261954) (-0.0261384541853219 -0.4213442845423896 -0.02631424256789308) (0.1697014243380455 -0.117099708452784 -0.1283421442821042) (-0.4235904723280349 0.8794351510869374 -0.6598815561461204) (0.04596361033583316 -0.02125738046055776 0.0003545268252458725) (-0.05040763700877938 -0.01789016806387202 -0.005375138916056028) (0.4057175122194051 -0.5772655082646735 0.2285025710238591) (-1.12037584899578 0.3865042591737652 -0.1045189664986635) (-0.1234165856807379 -0.04412978877190719 0.09609692813950005) (-0.3638326539879913 0.0004099731475358595 0.0151975646907868) (0.8038754915293101 -0.02086714272421739 0.2001422580046565) (-0.03088768021948862 0.2107052308744408 -0.2219894912908661) (2.760168082298533 1.01139191804105 0.3316454551606688) (1.231722892147253 0.8357541051956966 -0.6281211238857192) (-1.760225332485285 -0.592364381261494 -0.6121066074396248) (-0.03539985463572645 -0.1764958154852296 -0.03009475494308653) (-1.450308265587315 -0.1004494968292491 -1.292268947379839) (0.05738798246272105 0.01633240743277402 -0.00777862032436874) (-1.116825605128164 0.1227240245506542 0.08147867707048938) (-0.009737466153132979 -0.05823560759670453 0.02043758433619637) (-0.1182138790476392 -0.0007248839899402018 -0.3350169458175768) (0.3045411376654268 2.527247359918568 -1.264362457844644) (-0.1249054884499509 0.01319959944242311 -0.0349491950755513) (0.09685903126629994 -0.0411639718475254 0.1408226760148102) (0.3461920174963191 1.583827543676807 -1.354873737751613) (0.2139367765991448 0.03749762579995494 -0.004487772495828928) (0.2777207914678957 0.1148775107147816 0.02537665901511454) (0.04113604228873805 0.05719106391765724 -0.1030222446930567) (-0.07169489101104748 0.2036683629295463 0.1027649662359105) (0.2257318508097347 -0.3120872226156868 -0.8050513068668605) (-0.1491839382606364 -0.06503830303969149 0.003159072048251822) (0.07829166252865717 0.05942230420953102 0.1594882045339232) (1.792276179499251 7.304415068806982 0.4609539564460238) (-0.01672962347652755 -0.0532736716996739 0.001310178711547001) (-0.4174869578573874 0.01253051699149084 0.233442069170714) (-0.3661145998838498 -0.1495712646213685 -0.1704455127839322) (0.3095402366523853 29.55176121608682 -0.1481975708818032) (-0.1151899059825578 -0.2970158706533563 -0.1716507061801762) (0.3313851120115468 0.02456522771478007 -0.1417867093492545) (0.01058335460001295 -0.02804221174134966 0.04592996884563668) (-1.248332406541787 44.51082519440976 -2.016466725959666) (-0.1071102688948461 0.06598743644903962 -0.02029869868250085) (0.8020271623314758 2.15735017959325 -2.276764345244405) (4.432419785455958 5.054092219980975 -4.279665452349786) (-1.205272989835062 1.199729784510205 1.18442212144008) (-3.986570988432359 2.976819792271236 0.9339162740335921) (-1.539199877185385 0.4759138359574111 -2.831479172637132) (-0.3504047987474549 2.251849257687803 0.1636625386773472) (-1.30176326376154 2.888297560028048 0.9531475342077013) (1.914870012855532 8.507363787734068 -0.579518341079597) (0.2065207590637438 -0.3868922974853731 0.1011880972157104) (0.5608022055660025 0.3991668106374163 0.5310054906704876) (0.1906648781865841 -0.2051560896214985 0.1631840458993518) (-0.01367778987261692 0.04033363120403818 -0.03298591498233783) (0.06291297598556453 0.1023757606245849 0.01013149586628622) (0.05333415814857605 -0.05843758827199836 -5.89215650529554) (-0.05213508874145124 0.02599860998831287 0.004172002348956332) (-0.7325712959253512 2.095223878941263 2.426316874467346) (0.5831112809620917 -0.4092475739668841 0.1774723157234061) (0.08820081379453124 0.2606063741423512 -0.1749527839741526) (-0.5786788935331072 0.1118497589989176 0.01178789480425333) (-0.004454815348066108 -0.0002021979524233397 0.02779715234723848) (-0.07836880051017227 -0.1652423103530899 -0.07804875596253583) (-0.3436438838151207 -0.00844496193181438 -4.726480214434009) (-0.05124580148453419 0.1102635069435752 -7.106455607168785) (-0.2736964645665336 -0.0822474288931006 -0.340713613849279) (0.05636466879398856 -0.09430179909337932 -0.0058996609511478) (-0.02670525624959628 -0.0179333893925875 -0.0664007709538661) (0.04818572642157845 -0.06102421708901865 0.2012638175648655) (0.02230302730388263 0.004725886323546584 0.06759036731272984) (0.09308416586569908 -0.01654699449900796 0.05893717634639584) (-0.2666640354758939 0.1668868504598266 0.07816268869135093) (-0.04359808393808409 0.00773623722838505 -0.04246135182834844) (-0.01921126402099427 -2.095059755888911 -2.256231618853288) (-2.148959250866314 45.19878475036599 1.310620076357052) (0.4184069395947163 -1.015729148822822 -0.409094969158547) (-4.853665229367857 -8.55293847674494 3.487944607385034) (-2.222835067093848 -5.70363191809045 -0.4866240265136001) (0.5606156233014006 2.8522091400415 -4.776984905362547) (-3.20194328129242 -0.1657206293394133 -1.463108931680217) (-0.0285420013650226 -0.01374528887812804 -0.007031402711322958) (0.8192876634865758 0.03851503066159391 -0.77506605330282) (0.9609169491113899 -0.5095620343691074 -0.009523752769960571) (0.07419644443052384 0.2108434951425235 0.2045320772919307) (-2.227819393130357 -0.04455644682497045 -1.260726533059942) (0.1765827595007698 0.1431019694865334 -0.4240137973331515) (0.1968931565165053 0.0217258122122116 0.01045037903471432) (0.1918172987243552 -0.1031091203350555 -0.1232893526951248) (-3.334161004311241 -0.989049194657867 -13.28056413616146) (0.001644658655232088 0.001717868410650486 -0.00164470889820077) (-0.03949302876118655 0.02393922899208237 0.008757725085176634) (-0.1872226056731937 -0.6121758492232876 -0.6661542693805842) (0.2152008062615502 0.79062315704859 -0.5042023263512183) (-0.2075082180844875 0.3878198467104161 -0.3173567263483819) (9.78999946505858 -41.99251546780061 -10.34485750995123) (-0.01795282144115505 0.004911920152651076 0.005138572157534018) (0.002894641195318584 -0.2747390563868086 0.3364775375613906) (1.151303843838292 2.707431335908379 -0.3336479300826091) (2.961676087953693 -2.783634668916123 -1.60071068363434) (0.4346346521428531 -0.03259275798048285 -0.0761611596012728) (0.8985158277939669 -0.9791267555169664 -0.2524753510626426) (0.1727183679707427 -0.1391718529902341 0.01291167411393855) (3.682998690718458 -5.06488477934165 -1.258664680279092) (-0.09515105441329297 -0.05030958645312399 -0.04977740295318432) (0.01745040443036067 0.02816931231276186 0.07479315208686629) (-0.8717325710899311 -3.655245852199632 5.862938546761825) (8.075056371055201 11.98157347395643 -53.69124378271066) (0.3863542570102804 -0.1130591708882652 0.5844596284890895) (-0.2899910692052954 -1.625986722358404 0.2952090673902106) (-0.5972711796691808 -3.188555908100554 -7.190810582153764) (-0.1556681012141382 -8.543985501103744 2.488356672348072) (0.1433118677988835 0.1399793115913724 -0.0416302559858497) (-0.1039170711655643 -0.1468164614948917 -0.08422080414598118) (-0.2408331025952787 0.8435589379452471 -1.085401370349686) (4.681783645286847 -42.27337346981798 6.675636511221669) (-1.898265955320018 16.69389562639693 0.9370061022923103) (-4.716960310433253 -8.952372740948315 -0.5077157860240199) (-0.09813402294904414 0.01840422828952138 -0.0284552312162362) (1.647254724079104 31.89981490240279 -1.601956832195196) (-0.3288627144640999 -0.02032305742751057 0.1022659804506544) (0.08860122038835802 0.3618178524784624 -13.83950833576467) (0.3140485774489177 -0.7201365403236932 -14.117706849755) (-0.6534471231340906 -0.4096294665166345 -1.643379513781936) (0.07128834156107619 -0.03477138496710987 0.04185328376092299) (-2.419970693076151 5.818482773310526 -2.036742961694166) (0.06116348085221579 6.966517533429278 0.8640257580413918) (-2.746215810059987 4.332632684595811 8.671305958848265) (0.4522893250673458 41.09847858533455 1.691225584383719) (1.13863193980059 14.91338720616613 -6.454535874572437) (1.159469282100643 11.65202314932759 0.0439998702153054) (0.2850194800393073 0.09130537464953577 0.2586105224324848) (0.5689803713113968 0.3709329246291421 -0.002028056132924588) (0.2881080248730343 0.02942723804670913 -0.1739054179079536) (-0.08833355281905733 0.03091278291305524 -0.5945045657503711) (-0.4672249676172879 -0.09342114188895345 -0.3868959153432364) (-0.08597492055871275 0.1934924501166786 -0.2289208625881285) (1.289162294212063 3.80954553956879 -1.724507146496779) (-0.05291666906114911 0.02478809526811306 0.02068111512373192) (-0.08574057706940494 0.006972377858087457 0.0655079559721491) (-1.124180321320895 1.664411472759059 2.516554148892864) (-0.1984061854469409 0.217577128321736 0.03616399702756251) (0.1820379210396375 0.0261954749234828 0.1665023524887942) (-0.452927966653519 -0.2553267507917691 0.3565760767684087) (0.06170955705343274 -0.9927096107187715 0.3267517305741508) (0.03842914103768572 -0.0721404989411505 0.01893967105049686) (1.548273048908573 -2.237792889487973 1.328030138279216) (-3.856186830432035 -8.335894519895239 7.897287200262015) (0.02214402056392528 -5.463889420280506 3.974861257516983) (0.5743218942591981 0.9251522805234021 0.03401245002388087) (0.2160448609596966 2.264336581419491 0.1947354947436767) (0.09563811541314496 -0.3290115120011383 -0.08228227136671605) (-0.1806346632794839 -0.6118548982920331 0.5058093856594623) (1.175238363003859 -0.3399068746220797 -1.33083638905567) (0.1441749623563527 0.02889633933841618 0.1664787694119254) (0.3656559108425825 0.3003909100467471 -0.232044263477539) (1.012977534694826 3.648596259337308 -2.000685517217168) (0.4724447768225419 -0.1158007361867578 0.1651228818785458) (0.05832584767040622 0.05363947733598417 0.01590613986634639) (0.7150593552347129 0.1577465457551689 0.06895309781667854) (-0.1017469010797132 0.2672166378703796 0.1913421508473845) (0.0335524243199951 -0.0007016435970539951 -0.02356356746589093) (-0.02876445509448203 0.02611975043494063 -0.01010123132092864) (0.4380155991288934 -0.8508866724651495 0.3235738202572327) (0.07350021365249684 0.1354001895307217 -0.07646287981122774) (-0.01011488612180053 -0.005696477453488061 0.02007441776084951) (0.7447083019604919 0.1250152480641034 0.1390146418260158) (0.4379261203369008 -0.588158396578746 -0.6153181527216406) (-2.271779865552567 -0.5035745037845305 0.7065168375504374) (0.1292178753493901 -0.4753020683188703 -0.08463523313381094) (-0.5071517803373974 0.1993923495629989 0.5842929719036768) (0.5442262641827054 -0.0439180274914959 0.001778710365439924) (0.191724113478011 0.006227885069004211 -0.01565190369156969) (-0.05815131136956037 0.06229549262230715 0.0001252674533452521) (0.02119332275610682 -0.0025827707066168 -0.007464200783091924) (0.04183123182020054 0.01940688225022333 -0.01519075578169875) (0.003664071413963183 0.03165668263209769 0.0009311254782654829) (-0.1208795350563942 -0.1113792235003743 -0.006477960815071977) (0.08177136751319845 -0.0650707237096344 -0.05239177619535153) (0.06065640216934887 0.05227683281370542 -0.01381811228515884) (-1.961528811550248 0.1818949824993266 -1.584115898093613) (0.0934137809787218 0.04805221636530047 -0.04599931172469426) (0.1373971695932076 -0.03350339482226289 0.2734900654526112) (1.898352503467269 -12.97358407248888 -5.340687931065897) (-3.50945462275746 9.490751666391329 -56.11286758363141) (0.04687934813267305 -0.04793836807251406 0.002577332516623716) (-0.006552524023067584 0.007437992348450823 0.05062789545870455) (2.838815635746545 0.9335704505652347 0.5838242272975409) (0.02850203612160877 0.009038114546508012 0.009904740412389172) (0.03375010697901745 0.003275203353658556 0.0007000871522518069) (-0.03793941104458742 0.006119036845174605 0.05908567781636459) (-0.01386649213490501 -0.001766229644018178 0.010366720327004) (0.6059532732525914 0.18466298259273 0.03989081461345673) (-0.1107305700389538 -8.855695065749117 -7.150006315569904) (2.475503240579884 1.617068308128079 -1.702854157129406) (0.7229151740224797 0.4113389247141219 1.01786044839203) (0.4290844265173857 -0.1396737963049849 1.096899858746934) (-0.3131735622496549 0.1239535599190129 0.2536066036533579) (0.04975322656904213 -0.02305895337093659 0.05251211025153234) (-0.2137945934605509 -0.09608422912051487 -0.08584588290114074) (0.07682228764299184 -0.2858927229443067 -0.2425846961986017) (-1.584923466091218 -0.5594643143486926 -0.9583258199365483) (1.633574754776764 -4.164116075690467 -2.46613093837761) (0.1638464342375001 -0.4411657612844888 -0.2735073016661533) (-1.242950919421258 39.04597186617466 5.042802593693067) (-0.1950281462374057 0.4594161821292251 -0.329174329317455) (-1.129432066440104 0.659355998543804 -0.3927193395283248) (8.413783994674123 -6.395047111508267 -64.22398063710598) (-2.053119565399462 -9.095726632548471 -0.3347245711958214) (1.260655176460328 -0.7932268264144866 0.6391777031376946) (3.567359993636348 9.875855091839149 -2.409220860124539) (0.01722512251230895 -0.03979461699784802 0.0308137359440551) (-0.2895815852501096 -0.005296305347027103 0.07607930842111543) (-0.3027085417430961 -0.06443885681975989 0.1540476230327127) (-6.713026519535015 -36.83531971389684 -7.98323584214334) (-0.003783211557633226 -0.4031019221494739 -0.2806580743166596) (-4.5617849314728 -2.871998882135261 -2.301005550514953) (3.195978271445774 -49.81912232428498 1.793711971121771) (3.159410533904027 0.8885509382581671 2.028182611326517) (-2.498702075571552 0.4498961489736577 0.2975595661420213) (-0.4924374038319573 0.01895501379643161 0.3087672362888695) (0.05317162890273668 0.0006735216094539576 -0.02089826319031208) (0.1642373700324572 0.2005739629211977 0.4207772137797479) (-0.1166368142887163 -0.02972025237085278 0.01429038377334971) (0.03638638017884804 0.03386236810540605 -0.107860285276313) (0.3327802436198086 -0.05374985054231785 -0.3962691754024632) (4.04167711186686 -3.08714145366856 -2.628226906592277) (-1.269160662445226 0.8942647529375881 -0.4294275414087868) (2.103520404455171 4.698285924823412 3.573614310507464) (0.7787350550751982 -0.6591514618449225 -27.80411288896548) (1.907019032435672 2.986497002967062 1.475426491107147) (-0.009848561799488564 3.563944919384164 -0.8336536862086479) (1.64352319577413 -8.510827871430637 -1.810482433083753) (1.220945068231486 5.800816319984752 -5.001870448084243) (-0.1260688984099871 0.001466474077042933 0.1210557659051548) (0.01482952596563022 -0.1333343635567484 0.007564507359840635) (0.8785641739497293 0.05683654780524421 0.3019326803438332) (-2.021591246248032 72.97852335032901 -1.453481011126009) (0.4265172271607315 0.1665504354858517 0.1281786372028755) (0.1226712157693465 1.659628240745233 -1.364065715401594) (-0.1225311496323054 -0.2459669410697867 0.01088404169615349) (0.004212601313420185 0.004755115877309402 -0.006411453135451307) (-0.0116778928910513 -0.02689350405025118 0.02807503483844026) (0.7746920899511729 -0.6230726745606756 1.7871786437976) (-0.07071122467453134 0.02202020491697818 0.03472846839319247) (0.3785188988831436 -0.01632212583456271 -0.1265267542444428) (-0.3432781916730108 0.04375023657298003 -0.01748776574633256) (0.01172979168449727 0.04679369463968778 -0.02565255458665729) (-0.05175833004431989 -0.06337522687714285 -0.01873433980827503) (-0.2461626203792105 0.06246966123465111 -0.03233644323428012) (0.04400953268412398 -0.009774380640382349 0.01604702928938452) (-2.037918965141095 0.2012671585327357 -1.737510139866776) (0.06337388244974981 0.03767894632022421 -0.03456721377437794) (0.02645632015685614 0.09504819052307778 -0.2506414810744638) (3.674045415035665 -1.996647721329638 -1.472901260879715) (0.1205637653430308 0.02013867600110429 0.006773679318411715) (-0.1241651612066638 0.0275780595219136 0.02406155001860237) (-0.0198246032838716 -0.03429871967601403 -0.02279727450650031) (0.02503977649175353 -0.01167575699431247 0.03371682144677848) (-0.1401728203857956 0.2165333837097651 0.1510918577782273) (0.4306816547474616 0.001566228610561611 0.08583223731635196) (2.055891450834484 0.6454879033924943 0.2793199142987724) (2.426615247636562 -5.635036712789024 -5.202536253507051) (-0.276880646936195 0.07217411049059748 0.3584732229241284) (-1.119054323918913 -0.7710822535992483 -0.1150349528093344) (0.7545345235909876 -5.371499006354258 -5.939660676737637) (-12.17235809505049 -10.01824028690266 -9.706719566806076) (-0.1722475050280333 -0.00588880619426449 -0.1198177389093593) (-1.34139030279002 1.542319295920872 2.489950825946974) (-0.1846130412805066 -0.2905848995877957 0.1868526416876322) (-0.1746367862408797 -0.2087414188517285 -0.0003250859416009874) (1.72981551342678 -0.7963458571200198 0.005610390162436196) (-1.322084380382224 0.4424792413347282 -0.4043506915173623) (4.466997399317431 -55.67748369603977 5.363346460568547) (-0.5982655409170274 -0.2879951360913126 -0.02472321055371692) (0.1350496096772894 -0.3078333671217556 0.006820062787469033) (-1.805038930301628 49.6284380966059 -9.855157528030194) (3.095147600590066 -0.3055736696593487 -14.84234884441826) (1.251370099956407 1.330862468730388 -2.03410687447025) (0.1890019720454232 0.1569026721199568 0.1798051185282094) (0.8120141683366828 7.359301501209275 -3.527535812704391) (-0.3845800543225671 -0.08294455200378381 0.04499441326400265) (0.001053982661030724 0.0249953288676281 -0.01024970542852244) (-0.8764439199403014 0.1811271349307053 -0.8758041806172416) (-0.0336737036509413 0.0172451287648523 -0.02877625778856803) (-0.5498280680299299 -0.04194749741379841 -0.2113650231200374) (-0.626985588039814 -1.172769874428808 -3.548451869384729) (0.05396751384078972 0.147181360359486 0.06541450607687382) (-0.01043660437173304 0.1705414885618438 0.06253369097600057) (-8.492752435009805 -4.872606914919185 -4.034935980355276) (0.06979819392711502 0.07081661294647115 -0.01713752105051591) (0.1412051628364801 0.2045475546920696 -0.04673154378441651) (4.726759835809601 -45.94980885105461 -10.90246620937968) (-3.436519756034144 3.714259128729469 1.118321683767288) (2.221934869212441 6.271107736247128 -0.571944345615056) (-0.006503406804377138 -0.1327283902941713 0.08726727974565716) (0.09085273686568418 0.2745247046823367 0.6927142471297026) (0.2833974274272815 0.02697439222283152 -0.1064845593741507) (-0.2821787442904631 -0.09889889314466344 -0.0611223519266355) (-0.4095981427971233 0.01346907673945705 0.4052282224888385) (-0.6191360920521891 -0.5298634176010592 0.3427564612189898) (0.02199623060762107 0.02879530778983024 -0.5776487025336026) (-0.1884449545311682 0.3538027840436201 -0.005721280389054895) (-0.1253298094300951 -0.2815164563936687 -0.04310349734799641) (0.0840930363847097 -0.03917365015924443 0.09941247297059352) (1.790088740271503 0.3987447461604574 -0.09392909004007506) (-0.968960915041351 -0.5681087113390337 0.1095225003385856) (-0.2545230658171215 0.09657165326981243 -0.4176808729813387) (-0.01246945071399142 0.06233655462936039 -0.03650547404551133) (-0.05906166381663473 -0.06422177396500735 -0.01956189644371142) (-1.13694566508337 0.34236371547422 -1.22344760404434) (-2.493011265141174 -3.510809454094483 3.198537267112008) (-0.3131676356380275 0.5200984099050602 2.113301848070622) (1.373601181911035 0.05973391664308866 -0.3505615669358231) (-0.08225883517496327 -0.03621970842547097 0.01489455083595593) (-0.06188098717979939 -0.04618625511555549 0.007260096934978135) (0.04642951375501411 -0.01061266079779036 -0.01536286455854009) (0.03691982710914526 0.02686336829390429 -0.01879081980797657) (0.8709036769018503 -0.1439950134308996 0.5554962836891751) (-0.4233991055343879 -0.7281892955967219 0.4261261729548496) (-3.413029243130076 8.416199313470933 -4.381782438487693) (0.7165587597599117 -0.1117589562219671 -0.4195009998449601) (-0.7356243562988796 -0.144804712195244 0.4302676621799439) (-0.7895905598691058 -0.2791506622614315 -1.907528936119149) (1.735283407159764 0.4818325090858147 -1.661598671451628) (-0.1194908487134217 -0.01996544037982703 -0.158339589090493) (-0.3351246984188267 -0.2915618252975141 0.6398241416649535) (-14.57973893087045 -2.956152143776186 2.413912624055977) (-0.5458304241828099 -0.8523298970552783 -1.529761341234112) (-3.029204651787968 -0.4938375087828015 0.07207432179714787) (0.2527840506670225 -0.0926157642822673 -0.07869557119908219) (-0.08531979123663336 -0.1490468324338749 -0.00324901780861362) (0.2741539576273149 -0.1286957079629218 0.01081355010293333) (-1.472340966455731 1.460609886912125 0.2716015209079397) (0.2455104329156313 1.160496670313346 0.7028930212714701) (-0.6053702586848928 -0.7189200425419456 -0.08176437499768222) (0.0006338767068975668 0.05624029218398797 0.04884003126943248) (0.08511602775966248 0.3068403153071634 -0.2491329460410907) (-0.03119993404481304 0.1110221022596705 -0.005330989545345298) (0.7645366281482957 0.1996475791849452 -0.5513454967706714) (4.474357340211848 4.439879342427215 -5.643870517131728) (0.1958167853445356 1.286159553557249 1.658861145508952) (0.2754514362247746 -0.2145445481608331 0.1072110828216233) (0.1902560665033295 -0.1320578266280844 -0.05839647414169348) (0.01686438924004888 -0.01064990892682335 0.03301042161722603) (1.122437843014475 -0.5135363071564495 -0.03733840303435637) (-0.08077656264776331 -0.002777556942757371 0.04510512351283935) (11.47240399125291 25.80759751929185 -34.76123622662259) (0.1529606413358851 -0.3922834142324366 -0.8756162978434703) (0.3846421862994737 0.05645509180598512 0.2112985782159476) (0.2435853159731522 -0.2540627532106684 0.5423895069114454) (-0.009982916402135522 0.0113872337395417 -0.003742730120983379) (-0.1372711664977667 0.02793840486748858 -0.003707089783002768) (-0.09311134804673069 -0.045394189703542 -0.022728594116697) (-1.327137611160072 0.3497440763436577 -18.86914231250807) (0.1423139470060768 -0.04331803944180194 0.0918395902097015) (0.8704862502672005 0.2964195898168275 -0.5887628753975327) (0.007861340368156298 0.05343729666130223 -0.03075346417038878) (-0.3860242120539107 -0.8900708038364246 -19.43378576495982) (0.2670347341958491 0.007002172377945978 -0.06955293146419912) (-0.04828975379897349 0.004556977038712315 0.005118762299994306) (2.650181750572814 -63.49948764408728 4.570334343564141) (-0.4086828211890283 0.4306434188251289 0.3602494243296391) (3.219871994461413 -2.507315020322799 1.920943111460429) (1.077878725241996 0.3360387899109484 -0.4003422122817568) (0.1708514972620587 0.0928865862717662 -0.04451542837378282) (-0.1371126788853102 -0.1127441613757091 -0.2121807401171146) (-0.162142401336795 -0.3369437761349239 -0.4858272398505274) (-0.07056374997906917 0.02478531866621479 -0.05400604052998813) (0.4080899803902305 0.01118137724346288 -0.03505564792209877) (0.5856600303956512 -0.4395734722151737 -0.7305928540922978) (1.280794303964855 -0.6478726147538404 -0.5730293458155943) (0.1764871701928425 0.2204466206399794 0.1737823297482117) (-0.2307278190204613 0.4255715935642968 0.1190724915472482) (-0.3220700032073717 0.2278477812454416 -0.1604241387122908) (-0.1600549012417183 0.1003591989153338 0.3639778987085129) (-0.2799291552555268 0.4545063162164345 -0.8412832137621604) (-0.2048207984553689 0.1069309935627815 0.003885860835848028) (-0.1087791723562328 0.1279676078014671 -0.06167890043897003) (-0.6049269635229628 0.5023725802640897 -0.8460217946986859) (-0.6014624043936603 1.932711672890561 0.2691555939081136) (-22.57213509078335 -27.08953395975453 -23.38425306494509) (-0.2661751874366316 -0.1300653370255803 0.06528211720971124) (-5.28587445878464 -9.564553773392227 -50.07776387590608) (5.568735947849683 0.4929931770384428 1.360145047845826) (0.01064491973390999 0.2658371509845376 0.07455661463251326) (0.4191391273295201 0.06126317395128782 -0.02445370108298661) (0.02125604280462912 -0.02423571061821014 -0.05217550647347369) (0.01945196327808718 0.03042469358782905 0.002065209567570192) (0.04366766745132902 0.04872222537865346 0.0169624492403221) (0.09146838452132018 0.003764586277748885 0.02413144589475678) (0.08881973262849641 -0.08974875759586459 -0.0810774121662569) (0.07938420855004694 -0.08252060830890302 0.03290893661290514) (-0.2737193632198808 -0.01929304955613167 0.09120310630355682) (-0.3562065011615719 -0.0003196883418670887 -0.2488897389747255) (-0.2732385391109005 -0.01821335031294551 0.1325102145104322) (0.1383764543170192 0.0458455693683873 -0.05934925362112567) (0.2595833946464818 0.01160268190908367 -0.1824303087241032) (0.1704561878692647 0.005876672017283116 0.06166324244866053) (0.966634922202647 5.974312257085299 0.8810900610693093) (-2.720324849969509 0.6963734188911584 -1.052521465971881) (0.05086094692391896 3.574494756881287 -5.195771571779413) (-0.7851367009976751 0.1613243100331564 -0.4256736763747888) (-4.246023351319651 9.897579199080457 -9.811239932133784) (-0.03919747222102923 0.02209991500911126 -0.01618761788321466) (-0.2061318156773711 -0.1652052453794754 0.2139257640681874) (-0.2144922586315933 0.01962213646904468 0.07290811845702946) (0.5078188754663059 -0.02452159368102358 -0.1872242268046065) (-0.5401606361553928 -0.2782916768388054 0.6966009624470214) (1.683797990346813 1.231014187856 1.879157776445786) (-0.6212524550950885 0.8076999789478014 0.0409040857907228) (-1.091947996506658 -2.555035940915713 1.942709732807187) (1.179052964423714 0.4034059594802035 0.4769713186628717) (0.08378896490733276 0.1451392549746603 0.02942588220369678) (-10.18242434137096 -8.112537533941353 -4.723718758786185) (-0.5090079450806851 0.9702235116209492 1.647047883530505) (-0.1057178105644864 -0.01295625659403308 -0.004912714970400672) (0.618458321698671 -1.54559391195285 -1.062713959098011) (-0.4649775690069022 0.1690664027682403 -0.02538195307587372) (1.857068396487294 1.232993855565446 1.644325461260768) (0.1051442149077326 0.06482314118781241 -0.0294846327389805) (0.007897473780342446 0.04451463826430013 -0.03496821468359039) (-0.09936987253418716 0.01051528093986642 -0.01295421938159707) (0.01137575738617456 -0.03939650975113868 -0.030023332879535) (1.132872182656088 2.013276897014241 -0.2888448790059385) (-0.3085928569058224 -0.7234401644638304 0.274649758242151) (-0.007824196256167485 0.01647225102890553 0.0426183362468797) (0.1021016556999197 -0.01778000234841157 0.01301244468209398) (0.2323409990167322 0.4555786736464169 0.5128889369937443) (-0.2797443635241764 0.09781696733642692 0.6017704547026828) (0.006680209952079935 0.09039833295682478 0.0924609607823145) (2.466277281329645 -1.720569504858692 0.5146911410340923) (2.161320990980691 4.991411433636344 1.294100917602334) (0.4178746395536097 -0.1621705987432268 0.1478414615064743) (-0.3360437211856969 -0.2609363070076398 0.1068229612139864) (0.8744653520375213 2.273588426012489 -3.184921268248914) (-0.2454936214068744 -0.0651264393721933 -0.0769860604738821) (0.1907650390349798 0.02184165210686713 -0.1008934067324731) (-0.03878222587950628 0.07957335399058635 -0.09527914783966954) (-0.02193805488778502 0.01466173845213621 -0.002046372095242283) (-0.02148599077864816 0.07019041364158174 -6.620079586891437) (0.008624213993132054 0.1425846590043615 -0.02437358578945287) (-0.1007703754583532 -0.03746414169020124 0.002083619667805486) (0.03355984172847566 0.009570467953325137 -0.004986076833167003) (0.02208522929242476 -0.06599375710146176 -0.05979245180499367) (-0.09915827546383323 -0.1150325155821374 -0.0833957376881574) (-0.01800947933151893 -0.002322001955208037 -0.01954600412646949) (0.005733782145563269 -0.003119161074610005 0.0003015903076063788) (-0.01258246897602873 0.07247597742491914 -6.689537774954979) (1.699014115755279 1.119054175577563 -0.5628992923925998) (1.515862566015443 -0.3508719377642853 -1.356715406552773) (0.9740650841045174 -3.413043147063536 -0.316134747445677) (-41.73388323425495 -44.22438303202979 -36.93907495028249) (0.5446303061181372 -0.3493790847903689 -24.00438619255177) (1.328574478957204 -0.5731299747777191 0.8961752955502132) (-0.2063209268660811 -0.08170842075325166 0.2012937044910752) (0.08301704443905514 0.03501686051475418 -0.02468628370194997) (-0.7722732732093057 0.6583403368243526 0.07413599158507544) (0.0553994107323567 -0.0383770099065448 -0.003466575534326733) (3.741952201719673 -1.990087229162703 -3.661670330981851) (-3.908956091913548 -5.612417176805169 -42.22453789737973) (-1.376515477456942 4.500729486951561 1.979525348513482) (0.2257330443357011 -0.1004535126127726 -0.2405609480107685) (-0.03534123526545252 -0.04815207093448363 0.09870281335791564) (0.7085820181730187 -0.02443424918263415 -0.1971235769146135) (1.096312623999551 6.5334655001456 -1.777093068773914) (0.008534558911272361 0.1565996416488153 -1.027073395072498) (-1.617282395044182 1.394162969745263 -7.659187301136628) (0.3508918937600966 3.045617665974154 0.2972952980725189) (1.153766711029265 -0.3855313242075875 -0.6554902742098156) (0.08654635541286443 7.967335628716516 -1.011446549193601) (-0.5421500968970465 -0.264895695188384 0.4187085718227415) (-0.09305076949528882 -0.02514746548106598 0.03428473261519675) (-0.4070634295239188 -0.1207290486173118 0.3315635404283639) (0.3344219523079537 4.074521712916844 0.4317880116394067) (-1.611513304169518 37.00634230797662 -1.676637186625811) (-0.1522242924185977 -0.07434879286396734 0.02394133182039465) (2.082166062235079 1.105816990698425 -0.7815337116856149) (-0.5948100875276308 -0.1208899222884873 -1.224492913692718) (-0.07691051044164388 7.239732370696395 2.108313623479632) (-2.498267807142359 -3.12211705010353 -4.937459441832608) (-1.52242788471171 1.180577592599126 -0.6176365537514124) (-0.07744154885046586 -0.1232744721214393 -1.598103067321084) (0.0792429209896213 -0.09113753559249796 -0.1007503761274047) (0.07263037237897024 -0.1798771776269208 -0.2077777952344057) (0.4115527133759749 -0.3496469276282411 0.4220155843904509) (2.368074515351123 17.54650927726567 2.210298144048781) (0.8786876988787742 0.9376738177407236 0.8250211512697878) (19.86210149351685 23.14501456242337 -3.146043341000367) (1.238145715937002 0.3171474317359275 0.5930002324054534) (2.893757068807219 -37.1604748136689 5.05057206357896) (0.1242106658738229 -2.431564687843884 2.233208550741102) (-2.998257123355704 -3.632107387516416 5.399454663285143) (0.009036245501281199 0.064782043634652 -0.09161022385881003) (0.09953568277673969 0.4073581386489485 0.5748674731660565) (-0.08360586211211565 -0.01027494245526795 -0.00426628385020422) (-0.0204335916742584 -0.05571042861842723 0.03325849873490549) (0.8603380852081045 -0.4261583764388735 0.3735950375952962) (-0.0676891216243091 0.04180107133243426 0.06788752844334547) (0.15591554110585 -0.1408158577843965 0.05405502470623897) (-1.488017930539854 1.065610373358326 -2.203733780518371) (0.2074546416760833 -0.2673903566070073 -0.06108555632842946) (0.05329361484326206 -0.1524279947095463 -0.2539821745158424) (-14.88740865215582 4.238351933370046 3.9296414037361) (-0.1077521120205711 0.01470839581400049 -0.0416447303801191) (-0.5761038093103101 0.7982444828661891 -1.757672543981917) (0.2946657787665568 -0.3560932571499433 -0.3193060876178203) (-0.02552385241280388 -0.03278330028264347 -0.07523080094583827) (0.6001293344395717 0.7241489358996547 -0.3334233834320767) (0.1578433094160107 0.1205067753845492 0.4606907421382485) (-0.03059129668645183 0.04902985442869128 -0.05002814769308137) (-0.04929267605775068 -0.05721464456115781 -0.0428393210999249) (-0.01019441659100369 -3.521419685911892 0.3792514613275761) (-1.777661654597158 -4.550891238222323 3.163456052641238) (0.845498470868822 -0.6365697362064922 -0.8295603595204467) (3.314361245865837 -8.726627223331354 -2.417747320211192) (0.08683352932428914 0.1156139188421581 -0.08530093720170702) (-0.04927382205776889 -0.02079001039211285 0.06830257352284294) (-0.09236113321085185 0.005606010969929683 0.03988061935361709) (0.1504510447943333 -0.01580307426840066 -0.03649244509762122) (-0.02815982285894189 0.01146169129740883 0.07633271121748816) (0.6800648186560564 -0.1421520403478598 -0.7683186512414601) (0.1109908144955599 0.001065472756032075 0.1366565347620514) (-0.077428175764123 0.05743238195438666 0.01410041605044977) (-0.4348200033746495 2.008511275872197 -0.3792071641829753) (-0.1125870364575415 -0.9489328009326137 1.576902436581191) (-0.02402596748344621 0.1447040433814376 0.08401756188661594) (9.475237397997242 -3.578673066368054 -0.8440581325152552) (0.970883889037315 1.105597891428264 1.136329604500038) (0.8148574345398879 -0.05678437320009306 -0.4135340128742332) (-2.756880320228388 -8.031088643051399 -0.5868853646657729) (2.120195239107071 -4.77428957664656 -0.9938482537359343) (3.135652406691923 -0.4871908893957657 -0.7013468119046095) (0.03208874125589976 0.1048303156058699 0.08645395937684593) (-0.5833890299368349 -1.629367207211564 0.1675623687672374) (-0.8794278798996118 0.132564131500742 0.3391696575519407) (0.6295300267588243 -0.1122045759912362 -0.110485654715559) (0.7767696145107906 -1.217155892132655 -0.8498330907924208) (0.07862525312047658 0.2286078352517388 0.7120107081361644) (0.3122058918956133 -0.05010561760476337 -0.1166414794230446) (1.831881059602658 3.199943390508223 -0.3715536503617727) (-0.1529312125502055 0.01272585567501104 -0.05952164000982496) (0.8096352988863698 -0.2714030259974112 -0.02621105886747024) (0.30327012183568 -0.03655945854475989 0.02159926258627842) (-0.1947978609020325 0.03965299215754373 -0.0112773041633602) (-0.1091909462970215 7.796229806696518 1.341519595858701) (4.794263546371852 3.257861701603372 -2.064285318477248) (1.710317573702567 0.1194124978565512 -1.707500004961693) (1.72463884462748 -57.89609879042441 2.18038476349545) (-0.5474049105141731 0.747629638332729 0.3170657665460874) (-0.03546482705912836 -1.406560604876102 -4.673968335371057) (0.280035704688789 0.09836959619352076 -0.2221348054447293) (0.4973467329094842 0.2213193632365694 0.05670516269577219) (-0.6548760579621774 -2.880437389160956 -0.8470145721050559) (7.29839046493959 -5.964392066544955 -6.408679370197597) (2.340007053777148 1.480129554279292 -1.060171007326049) (-3.308559781327476 0.09683046988713473 -0.1874773872896385) (0.6997496591000122 0.3988883880616001 -0.3621961424997828) (-28.57207390544833 -29.09976041340262 0.4192763333012937) (0.7247190926243605 -0.4947734014874365 -0.7833145398574939) (3.975278782587406 2.419001414605037 -1.410528534695001) (0.2630280565109067 6.04971275039447 -0.9976712066360673) (1.450970105031565 2.350083807381619 1.701100706144204) (0.1881576437806654 -0.1297494372040073 -0.1142469521044436) (-7.806419434096735 5.28247432767999 1.157220712149101) (-1.850862313011546 0.2606878420684455 0.5978757507108151) (-0.8314659606528412 -0.1540126240799669 -0.2484383467212004) (-0.1528786866317748 0.3842272905608651 -0.4717680614925407) (-2.415457316748604 5.38890236178231 -4.633817116247367) (1.343463807758149 -2.141984629940539 -0.05574704312245413) (-1.30065737989861 1.474998708324244 1.218348077551442) (-0.8760930809977565 -3.624674918414345 -0.263674248812962) (1.376656745724242 0.2218726951566298 -0.331495513835368) (-1.99048517926056 -0.4865034907847856 -31.44033189110445) (-3.042489999433708 4.35424945853616 -7.763373959040566) (-0.7934990858064119 -4.472753502606123 -2.433171787635642) (-3.935094378091001 2.919439327491844 -2.088883148514946) (-5.670297003553893 -0.656017676523271 -2.128346075023034) (-2.795980861787604 -1.501480217565799 0.2222878440550502) (-3.192957154532805 8.042533732714329 -33.44920623662411) (-0.720714823602456 -1.41504387700078 -0.07711025963099064) (-0.07338512438979682 0.01154735835335312 0.04256475121892072) (0.6818048219261567 2.182255958835873 0.4664324603447403) (-9.527218543819359 -19.00203810787325 2.312010511977515) (-0.4376745527431117 -0.1891550442823089 0.2991071863165193) (-4.337343687204779 61.15211325171007 -9.829321428031809) (1.788561692206706 -0.7990142705365757 -1.322467117814747) (2.286842814468952 3.544111987590471 -0.2526597400106034) (-0.3125685920247647 -4.75951238432288 5.137693156636652) (0.7258719511257591 -1.568470999251994 -4.162408823861428) (3.601876408813861 4.058908757337077 2.109814068298823) (4.495669487958233 0.6588541552630081 -1.461132403092484) (2.938306438335281 2.610840869015297 -1.565835333157528) (0.7732308353306622 1.08626073288667 -2.417677381804756) (3.055535579037528 1.909619370490062 -0.6345157469840398) (0.3516954526655209 -0.09791667472703598 0.2330269179105414) (-2.293957583241587 0.6046300350660812 -27.24939567415338) (-3.329799154649073 -0.5483288863849882 0.1799515762042341) (-0.3812119372561615 55.06473221349022 9.656668562779114) (-17.81392771412984 16.15199902305495 -9.033234373726) (2.169704688436377 -2.783256493698003 -0.4795350055525766) (0.219626314394771 5.340967388178139 -6.102615716209912) (2.988198091607045 40.3545484412233 -10.21767775295116) (-2.263327154462038 -1.839110669889913 0.09737012290499303) (0.4578015493009537 0.370209012812827 0.5091671082892781) (0.9481235617751135 0.4590751536915145 1.607675696633075) (3.29351128791138 3.04933081469453 -0.332080099881906) (2.900085176561728 0.7614169528009597 -18.05358710378666) (0.09792460011211351 0.04486907968518571 -0.00198634303539684) (0.09302126978461989 -0.07605985168579536 -0.05140093785691573) (-0.009965397964738391 0.05073228694887782 0.009094422867047335) (0.08737720806586052 0.1331841758852913 -0.05622771983953795) (-0.1019411323348267 -0.06261131020329366 -0.03123453251013469) (0.04076741698240872 0.1009997621431136 0.03948358971758878) (0.437917439884725 0.2567683650902844 -0.5316048048532989) (0.9966323070166094 3.322818282017744 3.629560240449161) (1.891058978582242 -0.9157251461982833 0.2326721115908022) (-2.355957045167882 -1.563470509027759 0.2884333767187921) (-0.7744127305635393 -18.9624762569338 6.183122659372724) (-0.4189530292764541 0.08353182680256066 0.04839901349364598) (0.2306015895014206 -1.067102741902744 1.221133274558914) (-7.000296148664102 -22.09965980413752 2.706686922516496) (0.01184725103924937 -0.007479305619923314 0.0428554465635912) (0.1431154120543662 -0.02848808489566675 0.04238114933659515) (-0.1695562186447765 0.1291123812149094 -0.3245611358187241) (0.5224117767245968 -0.03559797752071112 0.4558862628245358) (0.3530566100202038 -0.0249195108538741 0.136504553621757) (-0.04179040284686816 0.1645351672900942 0.7919268542117825) (0.2099851670381807 0.5846940075548838 0.03405807838625274) (0.1895158382659236 0.2432524382784641 -0.61798408658409) (0.9652844556576442 0.03475322362802019 -0.00177176283256314) (0.03350444702029108 -0.009145355132337531 0.01559036044564594) (-0.2018924713966263 0.08591087835537785 -0.1984054423164867) (-3.297906559785982 -2.478018560220398 -0.6902570891235507) (0.03293023186018215 0.02308168152714473 0.03955281400613275) (0.0006550568146097974 -0.0406719645917681 0.04203654020671922) (0.09103843086269026 0.06311187482173536 -0.04163396824900797) (0.1055687309527519 -0.1642014910041496 -0.1966997480539578) (0.70387642783606 -0.2015043556273209 -0.2512439029026934) (0.05464120553880848 0.157795794636588 -0.1363934912533086) (0.6966881775460723 -0.1911894985976906 -0.7440705516524712) (0.4921973817011604 0.02139560008748381 0.2657866239484743) (-0.4143900404597552 0.2014053017491027 -0.455522315860421) (0.02486620873871525 -0.2848891817093137 0.4208510726996167) (-4.695293600391662 -0.179691467021956 -1.718703704878199) (1.449811998341029 -1.720840557550617 -1.836769234786439) (-1.0395396327763 -3.062088669218385 -1.722149351642352) (-0.0102692890236787 -0.0446938944801316 0.01434590847798684) (1.929669246671428 -0.5373414739715431 -1.123892292584212) (0.2627802348626317 1.503669106658836 0.03305181432043375) (-0.02068734541258502 -0.001895884667749179 0.05586149132684121) (0.2582629055593093 0.06179583064755982 -0.08401209131279871) (1.312826011693563 0.2403021030684232 2.58678897313572) (1.851154412189482 -2.166562279131536 -0.05820819104831654) (-0.3379233346872076 -3.452959243048281 -0.6241503405981748) (0.162333601730933 -3.749215636830936 0.5026242137566709) (-0.3724507334925794 -1.018113114965422 -0.0928127793688604) (-0.01465819895853518 0.2661488544244887 0.2415570026008337) (0.117498624967911 -0.01459866153879169 -0.1253646121204658) (-3.332302446763751 0.2057527489684962 -2.50622149493732) (-0.6251580031846178 -0.06195527063684956 -0.2142687440668906) (-0.07129672521587962 -0.365307478195702 0.3979748214745878) (0.586724894498083 1.09841498864735 -3.142997810298324) (0.1421391928324889 0.9326141687967243 -1.574741085002468) (-0.1762835067995809 0.1332709904890653 -3.06073271910989) (-1.063819289901553 -6.177995971166171 -1.234430914096014) (0.6150501123950377 -1.982622008328606 -3.752083834939772) (0.1861222785559845 -5.809122763318064 -1.355067846571513) (-0.2667796846967765 0.0609205352230781 0.1989408316127322) (-0.8020258491864547 0.02197644214134753 -0.7313018342655031) (-2.175615856489502 -0.378405523538578 -1.081277806933976) (-0.8891066287470707 1.171158897689572 -0.9272516023856715) (-1.784987271043861 -1.037170259241734 0.1566843002736142) (-3.318640438280019 2.969621618132659 -0.7881475302662456) (0.7330156137477679 0.5927129565620788 -1.002794614121872) (0.3581150478314397 -0.06948505121154358 -3.44594137042964) (0.3411437419669971 0.3950718422887185 -2.404042799719196) (-0.1053395261304206 -7.343809369259898 -5.255628148528298) (-1.445564829086758 9.934962234428728 -1.549281037253759) (1.397430405475589 -0.03242516200703272 0.4009608469482442) (0.216639675748622 0.3629078253279338 -0.1246351060205353) (0.7992192353106584 5.733565895008526 -3.017694147875163) (-2.678000999057183 -0.4312299733653165 -1.40848474028846) (13.56676384749622 0.9048272845435135 0.7626716412795528) (-12.60214035361043 0.7906128605694152 -5.120533974395086) (-1.832711381765747 -3.255300529397049 -1.584168312474499) (0.7641696934116109 -1.687300930269145 -2.750586986454652) (4.074470756487086 -0.1748792837256794 -1.744337247803013) (-0.1758100541549212 -0.09908109411225265 -0.04318516191537633) (0.003763011266185694 -0.0001705224009480898 0.003944921326112799) (0.1880081410479635 0.06155196836210143 -0.1762780479035804) (-0.5044417439312956 0.2093213694838258 -0.7459318746684243) (-0.6099236992593691 0.560693041969478 -2.261282420980076) (1.436841038727597 -0.6970403872736085 -1.001587402502714) (0.8541598660909332 -1.170968149772638 -3.281089780253526) (-0.6674786418143324 -0.4216489393881411 -26.8029538108879) (-0.3628053660249 0.2131680425316249 -1.824226706217112) (0.4415993538149003 0.1600598001108312 -0.5789802368913066) (0.001669522539194151 0.03520614693576603 -0.005527289369983753) (-1.284439688042309 -1.865823742260477 -0.4409143166199743) (0.4149357578839167 0.04588606476702883 -1.060912775647025) (-0.004710597344676234 -0.02895490513667579 -5.511124033768166) (0.006913568918479081 0.005582719643959804 0.00744943018321757) (-0.950494773063506 -0.9436252589609949 -2.073818295470839) (-0.00780175231258276 0.1492490508127913 -0.1131191872083209) (-0.3721212353747085 0.5858672398476525 -24.32906295424999) (-0.008377247924245899 0.05221076398608235 -0.03038815881355744) (-0.001127314045483151 -0.00328400308244376 0.003856851081613859) (0.003951367086712494 0.01812552893492423 -0.06054996609853053) (-0.004713180192379336 -7.257872791328098e-05 -0.0009361063382552733) (3.646411087984018 40.19911181031464 -9.85736550038285) (-3.734617048970619 11.79776601944273 -14.35183788861657) (0.09660126699989294 -0.638133251600036 0.1835522234498013) (0.005980920057150056 0.0213198023915902 -5.91053298002227) (4.249462641741254 -0.7045299275238419 0.3212384537640793) (0.001337535013452696 0.00622994083371151 0.005864269486736039) (-6.54534722387623 4.491669987540111 -8.653702860963733) (3.455557536491791 5.463614207223407 -39.09788176244105) (-1.557794333442096 -0.1093498001046327 0.5792337505204201) (0.1030160669949008 0.8964667351093389 -3.928603524828979) (0.1632426294867492 -0.2116647159142193 0.06456100137414331) (13.86744993905341 0.4920907935529574 1.549733319917335) (-6.362148518634615 -8.375434726031909 -7.598369999987415) (1.294815418676952 2.589412719656196 1.694524706939484) (-0.2457532168919808 -0.4443616118339462 0.07512458011490117) (1.351886652978747 -3.811014394877568 -9.36106359494377) (1.227286335628019 6.816584200808848 7.511873092428274) (-0.2005592427235071 -0.3453715602110397 0.3375131886131671) (-2.767957265802317 -1.698472914196328 -2.043620024377518) (0.4666195410899789 -42.67447996183348 -1.263223732128959) (1.643227771312939 48.25729187671699 -4.844801021545772) (0.4559510854012294 -42.53097168575611 -0.8198194155693269) (5.735404303915885 1.503999299541163 -2.118871966748931) (-0.717898052115985 -40.35582813331581 1.805023766509686) (-1.20111715949642 7.100342638353077 1.737577655638577) (-0.4541138469976056 4.059327075236059 -34.60251737978199) (0.290816231022356 0.1283666141357968 0.1918265160926776) (0.791329930958384 5.222621566713019 -8.355739683276799) (-1.819905926227916 -3.983963930893345 -6.282610283159367) (3.452628702040319 13.62097551386318 11.07542065281632) (-4.948794503007159 -19.73281547763782 -5.769854379517374) (-0.354693509038615 -1.480954962822716 -0.3412349508323599) (-1.063901437902345 -5.5601443867482 -40.10574372203018) (-0.8091680132659144 -5.522512170729188 -6.551323294546238) (-0.008261355893000793 0.03541437083038403 0.03476400179049186) (-1.939308985765269 -7.79556322956811 2.69926746122912) (0.6991397354993205 0.253268297385392 -0.7354613389455501) (0.04821696627243744 0.04113176234580956 -0.08617084270695204) (0.3683922255773419 -0.04739860140441141 -0.2860274011883734) (-4.653590438430061 61.83082022095552 0.06038009191928095) (1.032629226139364 -6.341474112006557 -4.867358078597956) (2.409325960486872 0.5148157685460246 -2.963913049944011) (1.537452686047984 0.3027132319522586 -1.311009571239635) (-0.159443370716236 -34.00869520183617 -3.539866351022122) (-1.575690003718538 -28.96897083630323 6.480093118323281) (-0.02125734177762018 0.006695954473889768 -0.004894035094098954) (0.001193308362123772 0.003126168090690971 -0.02110041652068562) (-0.03669430023938616 -0.06967491306280402 -0.06567208842641906) (0.8123704971195427 -0.1915326664847142 0.3593382804040106) (0.8727752727177024 -0.05322919433311907 0.1537435741517822) (0.1475809559227138 0.05731274166211764 -0.1721747046279414) (-0.5019631873351323 0.06287824423056568 -0.02018690763205166) (-0.3100998771836587 0.01052023878367902 0.2557557027685258) (-0.1126296676283544 -0.09980140050499137 0.3840188470036167) (-0.05449077767083955 0.03490557753005401 -0.08123134683519644) (-0.01410195543008747 0.001769320731262329 0.007457723688173758) (0.00308016810683895 0.0051738021479392 -0.00405441028549425) (-0.1773410051060733 0.2563539072562542 -0.1549034053893941) (0.4195847739261677 0.3890777314057969 0.1136523780278585) (-0.3548561034747379 -0.118440743932973 -0.002371093050754204) (-0.01901574095933332 -0.07220429159399804 0.02570726586363666) (0.1204249895275075 -0.08133637594815732 0.02635589222381469) (0.009231680331961541 0.01338707577656966 -0.02154394588592636) (0.2708631925642448 0.1741588586631798 -0.2212305591115895) (0.01010058638397896 -0.0184721918122751 -0.002671238737061869) (-0.2437747226005023 0.1250274519179264 -0.154009889662852) (0.0309949244734072 -0.02435376837900688 -0.06411589611257887) (0.05368833938933401 -0.004268496846040718 -0.001789569608061745) (-0.3084572708419682 -0.1431697833061794 0.1022387149261238) (-0.2688887054642246 -0.02079192832556258 -0.3851112821765434) (0.09557526675849018 0.06683290970644735 -7.932243869490277) (-0.4640930548202908 -0.2934411932419848 0.09346177106411024) (-0.09349499116572481 0.0873357214584812 0.1818205965268145) (0.02573598818615744 0.0354860591234936 -0.2151314543664597) (-0.4647714761269929 -38.74174911564925 -0.1175375982129098) (-0.2462667012978965 0.09831078259149131 0.5633892220188766) (0.2386131718353083 -0.01906350370887371 -0.4186004236317057) (0.4809283260827495 0.5561527308233654 -0.6699550141398468) (-0.008770130161556658 -0.1926211061107072 0.1719931023721215) (-0.6351251417304159 0.7159987068080127 -0.6740756332841298) (-0.03612154615043517 -0.04747907582376661 -0.03808159185450374) (-0.1007182805909033 3.028779321168541 -26.63157286362121) (-0.297761822612079 -1.238403320846356 1.18471572626088) (-4.577797357209179 -6.326284577515603 0.8365479322424259) (0.321897465763738 -2.101327420542189 0.02276330006186056) (-4.635716047887965 -7.598032242319233 -9.53833483208555) (-4.462863121902114 -4.811739319453701 -1.431765086240488) (-1.538577634817268 -1.35418354324768 0.1264378567943879) (-0.1831191431951381 1.014580790219855 -0.2595873397383963) (-6.282920206539986 -0.2512939145884188 0.6932450957246505) (0.144683859809055 -0.008664873677226209 -0.4657416702718886) (-3.774904294670934 2.471374904177635 0.6242544143049902) (-1.451471400186831 7.012165395178792 -1.68259624148122) (1.522267936282614 -10.9550555232561 -3.365452550034519) (3.775214103026192 -2.112701788314474 -2.288478075979939) (6.943194474165537 -110.3737826865701 15.41893691191717) (7.369661903002669 33.1042804229418 -13.70581062508876) (-4.985640177071628 -7.055765504089299 -1.431218681864555) (-0.1830538658121035 -0.1194372374219674 0.04338771279127793) (0.1051866831795698 -10.65376825116719 -5.794424960160707) (0.8068806349446946 -3.292711114210212 3.014823140606163) (1.897355710767767 -0.5404532067641539 -1.486723728470732) (4.030979906653456 2.961918268271809 -1.844113361201465) (3.439797661817854 -0.2981094396823001 -1.613916710416151) (-6.949355584924657 30.72640819607535 8.037064694908686) (-1.920354801016825 -7.213639552741189 0.7215181396886181) (0.02513071533762333 -0.1024469902209457 -0.008543281063222531) (3.83809158543646 -4.063891804818772 -6.849596702619191) (-2.068998876352104 -1.27415437724778 -1.531560843675341) (-0.4226009442339871 2.026306594954192 -43.60040292674407) (-7.01134035941563 71.61150464660565 6.283057448509253) (-3.395020860650233 19.37745318958678 -7.684926736945399) (6.1144495722726 75.53746878734879 12.99765992282905) (-1.686180349062369 -44.40970309337545 0.3683195790161223) (0.1913247715058748 4.680558661133177 -1.363767752884363) (0.2011468825691246 -2.277903517278991 -0.1933628913603893) (-1.260704425487429 2.035097802016311 -5.820187361553829) (-5.742281839111326 2.707576998145018 -2.32082451727843) (-1.038105560738273 -0.5014509987444046 -0.04892794567375987) (0.424029619067554 0.06197631614762435 -0.02673360233660969) (0.4669373026317444 -0.2167673876813914 -0.2076998240005611) (1.043048053697319 1.675361833235144 -2.105936336353168) (2.597838225473626 0.2114947125308398 -1.023672268507204) (0.07700398081798943 -1.757683880813542 -0.7561271621066435) (0.2237852729871804 0.1924343366483829 -0.2093248764557112) (0.3649058397130755 0.04675449946560162 -0.2129790179319137) (0.03533294500204495 -0.01476004444263072 0.06277633812176792) (0.6249104767902518 0.3621671768661848 -0.3349745428386582) (-0.5452237116576972 0.3218782057462884 0.01061181457848703) (-3.054170296481992 3.006406013674868 -13.76691471618946) (-2.36142161832842 29.66226806047093 -11.55448619558257) (-4.032896866511487 15.17167607016611 -12.22542693543843) (0.1682301058498201 -0.0593323511162739 0.05153428388788924) (0.2577057234422985 0.03343758235672808 0.07937039958124575) (2.929939924469161 1.003798343600133 -0.2077968175358562) (3.83191098607807 -2.073695410601808 1.371412026429025) (4.964608878101727 -3.264371449466128 0.7632237439253466) (1.099747118826147 -1.531668153695748 -1.227826914797595) (1.05901621897366 1.569490580047332 -49.94901340308899) (-0.8787703925807372 1.27321665374242 0.266022283279825) (-0.08997589062025466 -0.05490954195299236 -0.3411965872915768) (0.7732425792984097 1.286628522224467 0.8566701167250519) (-9.255823170654084 -0.4467721492727059 -30.53021658792939) (0.008623528018086635 -2.801087415095056 -25.83371510408336) (0.07691641448956835 -0.02135758436741291 0.002861064781932104) (0.1249337801919993 -0.2436810836470907 -0.9004913852126604) (0.02332259230776783 -0.0239843966243511 -0.01172087327635929) (0.08369702478500304 -0.1711345821546475 0.4224158425885371) (-0.664529252292833 -10.1162944432622 -2.917765179143659) (-0.09553238778866599 -0.2478950757027521 0.3454726471009409) (-0.08318790656928954 0.01713495660727527 -0.03760109756269851) (-0.4907611739577364 1.988352440945155 1.96127789953458) (-0.01999465163200263 0.0006966645578375104 -0.003449843341699201) (-0.2163724872446668 -0.1895341787120856 0.09880387416987949) (0.9569211881602417 -0.5233478414490456 -2.523451919591569) (0.04732008803904164 0.1218917693503416 0.06776287297696565) (3.280590494350116 0.860128604837798 0.9652340553827179) (3.662606255678209 0.2429473130633087 -1.240445401511842) (4.282705067230352 -107.4638952196292 -6.140323763916997) (-0.189903120030242 -0.1856333850902999 -0.1943732231304644) (-5.905037075718366 0.8021851205690353 -4.434292504740437) (0.7338917443336214 -6.58262769953833 -5.493282661624228) (-1.62800014884937 -4.523901902647708 1.22925823971946) (-0.06649728119166082 -0.07836148583735755 -0.08757035927793577) (-0.162280110135093 -0.1933413787311756 -0.3002327256774363) (-2.660625260294001 -31.38130079427642 -1.32083284689502) (-0.130158085497712 -0.07077089048785704 0.1309209553874861) (2.324796878269715 -55.03173825544822 5.719653498896898) (-2.871987983052816 -5.43633513961479 2.907369958060575) (1.815824907260399 -4.613390345285898 4.302473811570315) (-0.2707732306533526 -45.94916629315267 -1.059456344700834) (-3.635833231462667 -25.93047013226596 -1.964382284489257) (4.650199189992694 0.6233844185980462 1.57294073356984) (2.709286531049605 -0.9233468194214771 1.388000164436086) (2.572600862422431 0.6103916321137534 1.871350148258846) (2.460968507127192 0.5423903877724375 1.700151781021426) (0.2448557316575046 -10.25528258809445 -4.148637755384708) (-2.682872387673293 -0.3209838311594109 -3.394679069275262) (-4.439358746397147 2.147880344646666 -2.436277942499161) (-0.274810864342189 -10.21643975257765 5.932113898221321) (-1.975850252559164 -7.464299804529746 1.646440431635602) (4.204667346519657 2.171880122713988 -30.86098593479137) (1.136088623772042 -14.38195899563426 -4.951149427349211) (-2.49347514973337 -31.88300671096703 -6.21723776206986) (-1.126328982284188 1.09291331119274 1.142947706549088) (-1.094761137967096 -27.70355313862162 3.125336732450878) (-6.765575870363067 -4.394015646620433 3.760421527635725) (-0.6094614584025055 0.09817432297249756 -0.05784532465923792) (0.1999571758206684 -0.03628931904815427 -0.1239231823893717) (0.712117606051629 0.1604722312179218 0.4929293441130394) (0.6229107592594667 -0.4724753939705255 0.3841129235093631) (-0.1256345595247199 -0.2418263336358236 0.1888224733648024) (0.02660841205680177 0.02401038610593564 0.1076011508790683) (0.3163899823084092 -67.02169119164576 17.77251099598751) (4.393295257840676 -36.22438851057201 -6.232158560442929) (-0.2888646445824244 -32.31891341472519 5.150938346927402) (5.167636360337196 9.972696569189511 -6.225145721817571) (-3.5292745294323 48.13508145292516 -11.29252600200004) (0.07955800795244669 0.04751350687762035 -0.03080073295101635) (-1.52289800986727 8.247456144025879 -42.17093364003939) (1.636748505078024 16.03600609195733 -34.95106347474402) (5.087673285323879 7.587847398678057 -4.782779906148975) (0.005956924972973754 -0.00555597969229191 0.01691096237173306) (0.3596556184270947 8.189756568854929 -5.547220214200753) (0.252756053133592 0.1108336918657744 -0.03495249364189208) (-0.05371881706532111 -14.0992905961102 -4.143904475798461) (0.02619476054907225 -0.02579710984319415 0.03558932356653029) (-0.02822751660000468 0.0819302555717369 -0.08959861004502791) (-0.07266612718724995 -2.082359756808624 -2.93678733534586) (1.091654055936616 -0.9440130190817333 1.485740659163112) (0.008459825989660552 -3.675560828910479 0.08941881023059683) (-1.128094584896321 0.1561550615172526 -0.2651480297091181) (-1.818152052643196 -2.651819206407392 -3.499151328981077) (0.4289471593918087 -0.7999281708217234 -2.342959118849027) (1.659453909712615 -4.094525106674708 -7.444528818048889) (-2.691412440864011 -1.410582010240101 -1.989803840578587) (-3.179279417016188 0.2061652646789152 -2.571987162610112) (-0.09883925005938925 -0.04084886465121315 -0.0541594774560917) (-0.0007236345653943864 0.01326881026785946 0.005267678550037884) (-0.0330481034149659 0.03355345075164534 0.01362890993739666) (-0.08965472572775725 0.05056910133076649 0.1630869374220062) (-0.001925779749658378 -0.01368836294948386 -0.001356986557442473) (-3.185155540428965 -43.06230846906715 5.370478030610266) (-1.158353228961689 -12.25996750586916 0.8124305340255065) (-2.55000498345062 -6.749148781862361 -5.58867123457334) (-3.008056600720169 -34.83150175359029 -1.208865999906317) (-2.592753631102878 -9.663677615850824 -7.3789172718074) (1.387287263231889 -56.18478012541112 -10.9231244095631) (6.887682288699387 -6.567509622343024 5.595486140357575) (-2.589908949925887 8.879869539115468 5.46659770083904) (-1.870096305611018 -0.2264077527623334 -11.85716955026553) (-16.86730893512044 -18.08721428054244 2.712086463808574) (12.34302725664394 -48.08048196737472 10.75948820749099) (-16.28719807317841 -14.01994893006068 11.64174389248725) (1.764558928035055 -9.219880234243314 -5.498070286031552) (1.218258271711018 -2.322473469716082 -4.193964572042431) (4.148133443828319 -2.972775251316127 0.2650756829374941) (0.7155518987315719 9.361343994035082 -7.275931476879223) (0.009381733164144682 -0.02194711102626192 -0.04893457339675121) (0.2792232971516988 -39.71192111765994 -2.547521309974919) (-1.334928696470477 -1.905093986665497 -4.55974235603358) (-0.02708484203425807 -0.003343702143518095 -5.22968185924191) (0.0009858112428569187 0.02204623495498614 -0.01941488194203798) (-3.164895999611155 7.834333356511034 -1.423333523335582) (-0.001074431557073898 -0.01043193573683912 -0.05912636078620711) (0.3820793076110275 40.62201652235308 0.7990160731503615) (1.773145143260887 10.86712195470477 1.65366668948612) (1.072431778898978 -0.5421338592772225 -3.871968468978599) (-6.204968358682865 3.19894630704723 -1.591178176124606) (-0.009454107018463942 15.51063103333948 -3.975338154676173) (-1.966078543296076 29.12323195564718 0.8470971396612715) (6.522232291336742 37.56978558140423 5.553888737721087) (-9.058519657882037 39.45143261041654 -7.469937134103023) (2.034380853365231 6.997625084434499 6.528243913052818) (4.031935194535329 5.321149007654483 -0.1531267596471825) (-1.702797099909806 9.402355985611445 -4.332020320754984) (-2.758228940287503 13.07576423867052 -1.236502751792515) (-1.508686383360808 38.32675540626399 -5.936054599478815) (0.0004265397332628706 -1.358170265807355 -0.7924319879793023) (-0.1006919519544819 0.06350327888368296 -0.07028150045730086) (-1.35078810323626 2.508531310984808 2.423308266774995) (-0.006956910741153604 0.1445626382657899 -0.08374261903521514) (0.00394165210148767 0.01005534812568725 -0.007916863895789708) (-4.833862457760112 71.23697654518902 6.093075590420255) (1.027710315662292 9.772994677822192 -1.374172048442264) (0.006475213278905712 5.630047241519454 -3.055517476871442) (0.4377878400883884 -0.1054480726344506 -3.037375878303639) (-0.04429620811216549 2.212442218655744 -4.881605176102952) (-0.6032656458489053 35.47452733960612 -4.235772553436205) (1.344634949144207 -0.4934096449616596 -5.700603294753139) (0.3100208841953105 35.76276564005165 -5.569940355946478) (1.88779055055757 -3.661953010444165 -2.860235689034982) (3.601410540838441 -0.6194246804443584 -26.5112272601651) (0.207645394858103 -1.15713209531266 0.07512984487386304) (-0.2298341377144524 -0.5154368068477996 -0.8338558156653331) (3.297847519218758 8.247786467999104 -39.52926147589605) (1.066810256919007 0.8416862958125638 -11.17860722399255) (0.3719706141250465 -0.17678311577761 -1.172446728244989) (-0.1202793320395025 1.412493538992896 0.2174407441329302) (6.531040520818712 0.7944742498219322 0.6712135794532683) (0.5258001073855827 4.669630676001939 -0.9060740185674887) (2.169155417832921 14.25936868198263 4.397627549617775) (-6.53237358797031 8.446866217969927 5.909971044150171) (7.249042742442634 20.97077305701734 13.90463049919046) (-6.381225403670374 52.55398397644804 -20.6853538358456) (-8.333005755462583 55.43815835040915 9.278187790640409) (-1.829435878034818 52.7204909397528 -3.946697334245324) (-0.3728014575720964 48.20334091917348 7.424999604021291) (14.89062429775717 37.86315399405932 7.942980166989292) (10.77841680171308 46.10964218995737 -8.990437065112161) (-0.002387339778254713 0.005167507659023968 -0.001098134828466961) (-0.008675293295763654 -0.02951497589404797 -0.02438590372931642) (-0.001116930111502479 -0.0009830832283963756 -0.0001795539480938306) (0.03023818379175767 0.1224986327920028 -5.035061582573613) (0.01495098660497212 -0.03162732881634633 -0.04464675499008397) (-4.389317498997841 9.283734030029676 -4.550182637533989) (2.895521767835009 45.73717321352703 -2.703734967589444) (9.610427913510723 64.28944083493143 0.1734378361148528) (0.05421476878329499 -0.02626891848916588 -0.04148743430986552) (-6.364239018274661 93.59174883325193 -3.460646018935443) (0.09013666865951131 -0.0693319400929942 -4.88316266711386) (-0.02018833699992369 -0.002929136654985439 -4.4843648151746) (0.05508250739611222 -0.02816895493865939 0.03142672814558607) (-0.03686545059492878 -0.06264133922745264 0.01603477314790213) (2.033346889336178 -0.8246111098406967 19.48436812559002) (0.5464988529272734 -0.1636032200303472 -0.349540211320531) (-4.570646813448209e-05 0.009067622855645413 -0.01237489393427464) (-0.00373615608926706 -0.002961107036138322 -0.005493794495857221) (-0.0008826411883133131 0.0006120912304392998 -0.002051027843366914) (-0.1145122369667634 -0.1166677396309377 0.002734133144833617) (-0.01789724899214177 -0.01839895540125245 -5.223842292719033) (-0.001144700703796128 -0.0004742176204878111 -0.001080841739054804) (-0.001194194889757258 -0.002342044495541535 0.001202493212992603) (-0.1501596623036339 -0.2073009182387103 -4.802648205701168) (0.6689654125502665 -2.279737853169652 -1.965829766357675) (0.03196332196647535 -0.005978039658493377 0.002836499879804701) (0.03695392483859444 -0.0105885991939089 0.003351959397506248) (0.04615945457744506 0.01877969237541006 0.01985537868358115) (0.04041209984762929 0.01756969380157433 -0.01548666529015271) (0.004438757391496404 -0.01386918946549175 -0.002607937036464188) (-0.7039719320249146 -17.61324044181322 -6.494603064499997) (-0.06932193760803994 0.06996885035534307 0.006283406460144564) (5.537653800132151 -13.12172463491655 -2.543733856661464) (3.975319319619281 5.226437062849115 -5.823530621607352) (9.611035201750859 4.595606360830784 -10.51376966934026) (-7.279377315919473 -5.363327623116238 -5.51846499944098) (6.09955560518076 -3.316106438507657 -3.839037975506081) (0.03017616667106387 -0.1081500574644816 0.03342700853593236) (-1.188241538739214 15.11238611460264 -1.909797200793346) (0.1968375293115791 -0.0415621232602123 0.02310571878829084) (-7.574586662652815 -52.09513799115157 -3.175058980712445) (3.503042798685274 -9.584519444614696 -10.59271149707426) (-2.750863724819614 -8.659848363237668 -5.770521895895449) (-0.05430657987856025 -0.2447980347417179 0.2233287567766804) (4.077069780890509 -68.82471222854986 -9.905398305669609) (-3.702392917407701 -4.692114598341192 -6.945649733025848) (-0.2328063465701624 -2.558178952104639 -39.31075040746587) (6.308464538137583 7.02173746713403 -41.45717673312768) (0.06460703416640295 -0.2362626987393575 -0.02500206525517086) (5.863189168178557 -0.05916830903032433 -1.541587359615622) (-0.008894910915332954 -0.02040919652973125 0.0370485228347173) (0.1460002567074551 -0.0139347217967647 0.1121215876506078) (0.01389751546871897 -0.00481768585780124 -5.28964036370829) (-0.8541467342178992 3.654458050993673 -1.666087704959384) (0.5384848660348329 48.92995117334716 4.778777329908936) (1.641291934192708 14.77222072166418 22.30820810433076) (6.239613097497799 -11.649679362925 31.78169235764864) (12.83929278405498 -0.9098812630299493 41.15426752452408) (3.5570678203555 6.172457995832778 0.05364530617323471) (5.615818842488913 9.047820991239853 7.40976179596751) (-2.618393695286578 -12.54001190968105 9.824863357707663) (-1.493276209888765 3.822559867397643 -25.07683788482444) (-0.6263421550217818 6.295722410553352 -6.150729662270802) (2.577753880470985 15.00144575050512 -5.256640524866119) (-1.740523583890472 10.75121627549362 -12.35977275629531) (-3.758606052020582 -0.7446763001022183 -0.06868117032570842) (0.9638442194414011 -0.3843654977387091 1.118661179085947) (-1.729849109633339 -0.1766287950104583 0.04354789386979009) (-2.069814436615298 -16.95169349532514 0.3101046648735923) (-0.4991084996687813 0.5678543874221249 1.600861379401024) (0.03023333281548511 0.04343221959076239 -0.007332105904005279) (-0.933912028728801 0.1973867189242227 -11.39928915437358) (0.7580168760957889 -8.72046111258935 -1.303766049696354) (2.781200793592364 -13.75615279370694 -4.03512843239743) (-0.001212397810116062 -4.934020568068599 -5.11163620540274) (-0.9540567274123647 59.22549160293654 10.21091151969348) (-0.1093123660469597 -1.417838960209385 -0.4480841888820051) (0.09764433719815768 -3.004358660596769 1.308202583810963) (2.354432523977532 -1.161923242395416 0.8572759529067184) (0.3231533803303697 -0.05439070663155343 -7.413414181294689) (-0.07663478302730375 0.08474600940914112 5.335269228125397) (3.28440536575759 -2.83384187055963 -0.6052963342418907) (0.4355768854714001 -0.08994821743397013 -0.04137493782178166) (1.151974187922243 1.362411919945528 -0.2956318134854357) (3.847994374121643 5.238599272887901 1.449473714411852) (10.26254554998245 7.152325644085587 0.1404534667349502) (0.8356574678587512 -4.30603263194776 -2.125152450737666) (2.445293140782554 5.986810382057882 -7.647804802772079) (7.121645856858994 19.02186443480241 -66.86678118930983) (-10.05666110673718 -7.538185853488816 -66.48865889444852) (14.85924970304505 88.17227427099319 1.639195367233098) (6.132406025572307 25.23715290671202 -2.853181657094472) (10.94769663607266 -2.401581304979031 -20.47079731681315) (-0.1634427833107073 0.2938853969232098 -0.1592142841129416) (0.1410703658485093 -0.04218543864438463 -0.2541422453268954) (-0.02363027646699031 0.009000117594546275 0.1154538777343691) (-0.8457607268593947 -11.19882656621196 -1.156932339120429) (2.566924231017949 4.010960037557151 -3.670430836435266) (0.08196367523950912 0.02623382247350763 -0.1769537854722918) (0.008910241605587833 0.0001974688680689072 0.0008828575698614984) (0.3180293367692788 -0.7348460818907201 -21.88672280666926) (0.8132634614241857 -0.159381211535982 -20.42456322283313) (1.125179897565598 -0.8223848987184961 -20.94847079160122) (-0.001469245385468403 0.007207397687022628 -0.001152462340277741) (0.0108141997344062 -0.02545889821179968 -6.476513096102118) (0.03216946480315376 0.006247109307007268 0.005991766214200424) (-0.02511453441570652 -0.02649383152764142 -0.005531876674564161) (0.00130820248203197 0.02797564378339379 -0.0005363265403412493) (-5.496437515723494 -2.427741245864623 -26.98351107924515) (0.001720788748390642 -0.002009547890653193 -0.001069464453084335) (-0.005374412068899997 0.02104725274899288 -0.03305253312237322) (9.585487648879765 -7.187853652158973 -1.753915206448333) (0.04009146134828284 -0.01788718932862562 -0.02870983424142275) (-0.0009465395333413203 0.0003904073916232984 -0.0001560816127728112) (2.017508364434618 5.068335198305475 -0.4370859471701959) (-0.5946788196182029 0.7017624366709057 -0.5358799291030143) (0.001754329376508401 -0.08612452812838091 -4.77841573303255) (-0.002023688041070334 -0.06286854582545633 -3.959074957501827) (0.01737574581343222 -0.01679258103761575 -0.008103868277714425) (0.0532572046361723 0.02198730612717858 -4.301920426842147) (-1.142770191681081 -0.1761523297105763 -3.266633663817018) (3.395937330800798 1.162476947917708 -28.24037543380116) (1.835907698013291 -8.665603133920381 3.110839345582895) (0.2510778172105541 -1.059799007746893 0.2484011357286153) (-0.5521181702300976 -1.715067039118554 -28.57381871619188) (-1.111846101919361 2.199086323851759 -8.398032641315767) (0.4148080424952669 9.549779504238588 -3.393826401276226) (-0.003853807083042435 -1.599523770134051 -4.466512684923501) (1.044551619803399 -0.9439183555380337 -1.521393835068349) (1.207371113573502 2.541503509378486 -55.54640865626333) (3.418728332135765 -1.480617868644042 2.092724055298173) (4.398492129046059 -24.01208486848496 0.7912460753643784) (0.009399657297655028 0.0142926870694863 0.03333388973670142) (0.07425376138558076 -0.008572070601586644 0.007430609298504517) (-0.001679269890842839 0.01645688168467657 -7.033197602794055) (-0.004137251955752591 -0.002488296062957037 -0.01150338484532047) (0.009979876253557873 -0.03682455104760442 -0.03455126709234875) (-0.01834777747016067 0.0007142969070033367 0.01836382719541041) (-0.008158581981042412 0.01458017881395755 0.01915866116519799) (0.02902505487729405 -0.05587797046008698 0.01891144522361362) (-0.1160351543643596 -0.069603202872623 0.04704820010518122) (0.04683779033825577 0.001445526889997842 -0.03920017463483449) (-0.01459540651339341 -0.005234624806727562 0.0008562122311711529) (0.007892821932726482 0.03219114732470919 -0.01086113559524013) (-0.02493473561287156 -0.0302937650975572 -0.03437330040249793) (-0.03634763812252109 0.01572708600892302 -0.009334068240007258) (0.02682730767113395 -0.06567848806856219 -0.1303716468363221) (0.001956905103364752 -0.001315505320998311 0.003059608792294423) (-0.01572418606077024 0.2767568749645754 -7.318518089538144) (0.06117666707565234 -0.6792348394182899 -0.1412699955588475) (-1.459697928676349 -0.3310465807217134 1.234935866802098) (0.08863991985740483 -0.09529773930694956 -0.04711603554651669) (0.02158847438214963 -0.02692017261726967 -0.007845901582544876) (0.0001015798094309369 0.0137630679029266 -3.464298889600556) (-0.002698747379882486 0.002413330696528792 7.717853181188794e-05) (-0.04134532575076745 -0.02875995100448217 -0.09363313772962761) (0.001060216254037916 2.106211281592332e-05 -0.0004084664464895258) (-0.00501665349628815 -0.009295499576089328 -0.008563889353819415) (-0.0008116575094862561 -0.009258257436633622 0.0009726799529415414) (0.01487607717538592 0.01164707272652143 -0.01712442338942952) (-0.01075051923706344 0.01577319415356376 -3.989324890616652) (0.001125719292968353 -0.04489400479259688 -0.05454242022330265) (-0.009503556326169955 0.001897391473585503 -0.001209159043155242) (0.2818323239491222 0.1593752926402311 0.001026740174635325) (-0.04231893198290465 0.005598276613079671 -0.04733152532846447) (-0.04718301415328987 0.01608725835834202 -0.01605761287747865) (0.1450970468283301 -0.0373810355453553 0.02312439594166033) (1.654643107205364 -0.06347933766369596 -2.591972871825059) (-0.8846420669266952 -1.003762786038018 -7.154377629621701) (-2.705524712505179 -0.8176058742873523 -5.272026503804645) (0.1279278432391677 1.250586785469396 -2.772765344718711) (0.4401197915740848 -0.8675604670894508 -2.451892514428742) (0.3712811470551204 0.2535263959599385 -0.3047751910635097) (-0.0003689620762272368 -0.001522040348368959 0.001414888285065072) (-0.009826128002500181 -0.002542650920605042 0.002881371412740352) (-0.005942756364113306 0.004867303994342691 -0.02472187128846465) (-0.06377517450643248 0.01075891409493595 0.01078074907538869) (0.0535516035885765 -0.1347806430244962 -1.120110554281254) (-0.003725984495918398 -3.786119618470318e-05 0.00226147110099707) (0.363653211338695 0.1041847953409042 -0.5419477459735159) (-0.511859146863145 0.2067364118747144 -1.494773757837501) (-0.002621690235228893 0.01082484599694475 -0.01701173641538074) (0.5657020486409309 -0.06240016597737361 -0.3988893383927807) (-0.6592840248251927 0.2756164222707604 -0.5246288416247896) (0.3199710919771175 0.009147058067557362 -0.0938092390031727) (-0.3179453536645133 -0.4298525623016093 -4.894223839078181) (-0.007636207491680435 0.0167992872819359 -0.0213395338441666) (-0.05410298996093811 0.01837266806326433 -0.1667329967714909) (0.01474256101422221 -0.02346698874111593 0.02125431910752943) (-0.01553684046765536 0.01754910140258042 -0.01477490396315324) (9.512833647640564e-05 -0.02563465246303399 -0.01399473633188696) (-0.004640760041488407 0.004418990039519633 0.007195854748924881) (-0.0005615412723608531 0.001140408379190435 0.004128806013259773) (0.05796412359787319 -0.01108339838211981 0.01886884092754643) (-0.05542828694617011 0.493523941751969 -0.2434470698162014) (0.0269173507078789 0.07263332169249097 -0.003622714193243372) (0.005212716504318652 -0.003147744299512738 -0.02337384082302987) (0.01231064724126348 -0.0846534203374817 -5.422750336619228) (-0.01423527606661559 0.02840862389702948 -0.03569525926683617) (0.6229565982763687 -0.03255302583569641 -1.155642467946806) (-1.687329982955622 -0.143482278311184 -0.6291568956526485) (0.6379622203273606 0.3420638273925287 -0.5233297970488742) (1.989978101406586 0.03680258047423036 -6.756374866826345) (-1.476135351060395 0.1385232670303572 0.3497585143700149) (1.458840377946667 5.180978826064342 3.059184804730372) (-2.514666055383241 -9.445915641535544 -6.894151278978525) (0.3409485276301558 -0.01649829561630578 -0.3225048215144705) (6.156899780897042 -0.6271253082234605 -8.214995639338628) (1.168214529414179 0.4232991622276128 -2.594214950158011) (-2.959915201030309 -0.3516015234587442 -2.547076999078051) (0.229759846707954 0.01374211548602212 -0.01803083770141936) (0.2263425516101538 -0.120898707059595 -0.0650363997066694) (0.2097170806566014 -0.06395916140484477 -0.06837166098522163) (-0.1391210774701185 0.2093892288254252 -0.02167410396867876) (-1.352920624647725 0.8198059000300932 -6.170225831240485) (0.09346258429000616 0.06572449180707746 -0.6474738937125892) (-0.01937813775495018 -0.00256722636595216 -0.0001458319613862518) (-0.01852355504876738 -0.01861459742671431 -0.005801525721891257) (-0.3233199415223792 -0.09966878880033207 0.09816801418420804) (-0.2084609038807125 -0.08699428041541335 0.06265625346410839) (0.0009269338476370027 0.05347376862231461 0.000734371700086783) (-0.0006701861200360815 0.1274563366826863 -0.02113103052498111) (1.066856078805032 -2.753512592531358 -4.573520102535163) (-3.717323366416172 0.8239800696645545 -0.2830319277752794) (-0.5327552795280399 -0.1609484323211122 -0.9551627221404746) (1.163747279789102 0.005150534020036304 -0.1634484864902697) (1.492539743614167 -2.165868987468479 -1.816618326386007) (0.9781894189325763 -2.096021187548939 -3.755686763140075) (-1.699543519493267 -1.134003927527478 -7.189608070840319) (5.14943914723939 8.450644069728163 -3.106117314656354) (1.075357157762885 4.232879314807076 2.974723758899735) (1.573137115606117 5.289113158475629 1.682801898297984) (-0.4565788058728927 2.454220252205727 -1.576456386404689) (0.4191966193904502 8.075672569911395 0.3134227101324344) (0.2729289845821511 -0.3523782698856849 -0.3005903652322527) (-0.2978296742953381 0.1506151513704523 -0.1345684840858785) (0.03539874778333107 -0.0165496402283945 -0.3327562233925989) (-0.2149809957890631 -0.660113090902585 0.1145451719056093) (0.5906449842891758 0.5892815100200999 -1.395823870537849) (-0.3709953987087468 -0.09440257178893419 -0.07693368581173578) (-3.194919027996805 1.915242832958549 -0.7196797598570999) (0.7779205413378996 -1.366185548081053 -0.5465003599829611) (2.188630687946708 9.955888866092833 -0.1706031126867599) (0.561073909833965 11.41322109681875 1.982158814990533) (1.951765046674433 -3.499195969058762 0.516763417521626) (4.322898427689978 -57.40660142859543 -6.980115750870654) (-3.082601307001318 8.070991483290001 -2.386314373806048) (-0.8020611180863811 7.475851947506417 1.877690097194206) (0.09974384055317637 -3.567809068968471 -1.807144010965257) (0.008809095922722084 -0.006013774804742283 -0.01540403665077936) (-0.007409760795757475 -0.04467411309155558 -13.44188265466791) (0.7845976342328889 6.06543809563975 0.3292687869253352) (-3.617108323364664 -6.016368745493378 -4.800822498130795) (-3.476412388562068 -2.716549393122599 1.319286179954376) (-0.07189449663708428 -0.2385975920751589 0.01923304136322257) (-0.02854440334181267 0.04734462133189865 -0.2245676004055414) (-0.7434293019449743 -0.08199987117635402 0.2496241192072857) (-0.1218668272277903 4.43859722681851 -10.09271202399519) (-1.233993718746538 -1.927315492339193 -5.602616008968793) (1.343505496307463 0.5074667096902489 -1.448913035476147) (-0.5499618964903397 -8.085744128072413 -3.264858123546773) (-0.2114648453096311 -4.243285661198167 -2.912929726084408) (-1.499148586972531 -0.4116713130025698 -0.26820449672712) (0.09575598023878115 1.050973634590967 0.006766138872531136) (0.2130719696715783 0.5980523199515172 -22.64211583519938) (-0.05113824265118139 -0.005391683798742617 0.01178210389975711) (-0.1463200877630064 0.1501270206537817 0.01417254502515258) (0.009130654606616242 -0.001520183979082619 -0.01284511790568443) (-0.5371994177650152 -15.37168270045362 1.786240459310484) (-1.911524074635211 1.235555292944204 -4.220234906204211) (-1.736252321661465 -0.5155193579642083 -1.509029610504459) (0.9177448121620546 0.8120929427989191 -4.103364834563088) (-2.150580216046936 1.463561619470892 -6.68066762135885) (-1.059888605817864 0.5439652850435928 -2.806091125225478) (-1.444380381332043 1.14008445353231 -1.729074924908799) (0.01869773667346852 -2.49476744143016 0.3863252513452775) (0.557287732887822 -1.932907980717711 0.4277531820475819) (-0.5114655790021607 -22.84915064666514 -14.45976210112599) (-0.08147128172409634 -55.1454313295725 -7.416579415550729) (-18.52674065030546 6.740436157775592 -0.1390803507853258) (0.4997594248771881 10.29826266633333 0.3444785613905577) (-0.9834037163907473 3.309313978029112 0.3247150836196457) (0.07459783482876975 -0.2263991288807967 0.003301258371143673) (-3.399304654534024 2.54299773834023 -12.91048610846728) (1.312734753733168 -2.387566711186038 0.2371343208006339) (0.1606296946176683 0.475271173513716 0.158884737309432) (0.00469876451768126 0.04194136327100507 0.01838818717027839) (1.617483496469402 -49.23702632303227 11.58034343889529) (1.906122464820569 1.625316129714149 -1.790587414786418) (3.278563791399481 4.658540956866577 -5.522777857635154) (1.230536716667911 3.449791830183618 -6.987171988621721) (-0.7182561002857994 13.90100386198709 3.073512316993326) (-3.424989506021756 2.348374290656407 0.1711974969606944) (0.5305557292472336 7.30904890819479 -3.19429948753742) (1.055629036929949 4.557362907553648 -2.647304565305018) (-0.1480778389143843 -5.827466302615201 -5.822569756796697) (-0.004488853791308173 0.0528513781088957 -0.04633899434267329) (5.216036951302602 -50.43840621346939 -6.898168112887893) (0.1221517794640619 0.1389453169955738 -0.2239464606024566) (-0.353729954555937 1.245891116328295 -0.7502783561842123) (-1.569808625970952 -9.245643616972025 -3.54451664214756) (0.2880810056070204 0.02622541451667126 -0.1533557357711366) (1.466206970578567 2.420003600768148 0.1755451720012819) (3.81460386020647 5.343664633865501 -1.052168859779997) (-0.527038597985674 2.509058277238983 -4.662997887503721) (0.04375862210708556 1.444382339321426 0.6515548158047114) (-2.962376893635344 8.537060546460825 1.392651997039288) (0.900703160740485 1.306850387606858 -1.083458149581311) (-2.914575096433567 4.947209238010109 -8.314392272152768) (1.849322232250024 11.70481963621291 0.970007987739032) (0.1107314754496967 -1.086741526646389 0.5967968349410673) (-0.6639551205661034 -2.619533476543888 -10.1861042637333) (2.657046088647959 -5.287251658221978 -3.042593300801024) (-0.5889874984887545 3.621607410741843 -2.711917354945245) (-3.508991422303704 -10.84545725582333 7.137070017468049) (3.408173716812746 1.602234240359238 -2.159671559939226) (-0.4726301690433007 -30.12390585811552 2.252607522604325) (0.06322484824697205 7.488957407799761 -1.34150156821789) (-0.1685523116503482 -0.1409695499523474 -0.1113783058186648) (-0.4356266231757174 0.1203559234596134 -0.3249066971619599) (-0.2287661761950823 -0.2097154600595879 -0.109203018412165) (-0.3449511007475514 0.2184010671722628 0.1220523017079081) (2.157781938586768 1.561573006857646 -5.63667869810314) (0.6684490774503231 -4.118797372822366 -5.804461898314453) (0.1495897571899604 -29.46584207617509 -23.69238856820371) (-3.2746500743904 -3.423234096148529 -27.63685483980163) (1.916188672506115 -5.613682958456959 -35.84452374967018) (0.5635357301626581 0.3705199967690004 0.1185157904059852) (10.12360213086466 10.67660283530063 -43.87737899472717) (-0.4164196756169959 0.1739890295890737 0.3959982125251392) (1.342804851259257 4.781064468167884 0.6037203260517471) (-8.350950198597429 61.15118362298859 -0.6886264308366697) (-4.060665758618885 5.127068583194627 -55.97005026495493) (5.783480628637857 0.170761305246652 1.001556651966184) (0.7759194743731768 10.65434164086096 0.9155916766627386) (-0.7640747876084556 2.28451697857381 -1.379349938606916) (0.5567339832564595 8.704192740962739 6.009717431630856) (0.5811729644418924 -0.2077697609239758 -0.8918653184885479) (0.4961172940459755 -5.163765875478118 -4.856803572523949) (0.3492298191186869 0.01299298278572952 -0.6730143659472647) (2.334342303697709 6.563769322056247 2.856374603607416) (-4.232092096149542 10.54861857049812 -0.2166600185672503) (7.974686999602143 6.398147605163215 5.744816146364241) (3.628456727233611 14.62083241972531 3.761580045332798) (0.1656107111694535 0.1585785531382345 -5.659049139218054) (0.05083651483657927 -0.07523494367505607 -0.09269118468716007) (-0.00125938707918341 -0.002929303901014614 -0.01141634792705677) (-0.007986499852598545 -0.003578202017135174 0.01776497119449617) (0.01507889514015359 0.0196370479202429 -5.345814774787219) (-0.01664105752899411 -0.008804628964971951 -0.003825287275554736) (0.007608795058999468 -0.002698338961194158 -0.01557999455358947) (0.02651889801000017 0.01021537762992881 -0.005329113634398175) (0.009195343205105988 0.006028436460493695 -0.003566235027955987) (-0.02344989573910451 -0.04957726474854252 -0.05935741594066681) (-0.02639782450627227 0.0407727904744219 0.02040775998197616) (-0.001195689612065314 -0.00190859327958767 -0.00320347764269249) (0.7829979495476946 -4.428425734392513 1.437523482382066) (-4.426157903891033 45.7502570871055 -6.60016885045865) (0.270955263864905 8.588400304741954 -1.068211829965913) (-0.08452243657594199 -0.3383208371970248 0.1901385014367075) (0.2438335696816081 -34.6527041325364 -3.439619588797592) (-0.4534193910704337 0.2464192899536877 0.05315859535910747) (0.105561116371884 0.2493258143862144 -1.171403667382821) (-0.9045317690557308 5.454172223553694 -6.494902599749147) (0.2553390410037766 9.545054877259313 -0.2900437601021282) (-1.827942384303284 -50.43597026686935 -7.96846468654492) (-0.1229950769543378 10.05999697450136 1.26464423431395) (-0.3115771412139232 0.636501824874655 -7.091649669627449) (-1.597869820081009 -56.43929318041542 -5.046144228708974) (-0.03450670118677257 0.321785474350667 -0.08097855271019679) (0.6234341029156465 2.746025703178093 -3.295114119549748) (-0.4125629976535357 1.206381450316194 -0.2677261889096059) (-8.673749587366489 13.87633773937713 -0.4302189307873753) (1.013262584587313 -9.934229297539384 6.127692821650329) (-0.03078446808939199 -0.02198533586481059 0.01080407708929944) (0.3213852215225073 -4.982618543942142 -2.78550248075796) (0.6042791069696269 -55.71357101417627 -0.0670189801104864) (0.5465975065238873 9.776687287116497 5.779935063339573) (2.102089098819979 5.622951276464184 -1.255537140168399) (0.9424231276621778 -8.280325321088023 -0.646376660418044) (0.1712783640149644 -0.289501670781425 0.4172651394083732) (-5.345920040985447 -4.491108457116734 -0.09148351067679125) (0.3670135654931517 -60.05928756741202 10.54760724469089) (5.103940063298979 10.86403446304007 3.45883387418063) (8.257517997065698 -9.582522389755622 -3.492043383011299) (-0.3039692994557453 4.286691304319416 -4.054025207635231) (-3.442109840015576 9.808875790681208 -4.447067789442472) (0.4371258131836249 -0.4797518219334048 0.2889444135305926) (-3.734391068982934 -3.128676532134117 10.26719835048954) (-0.240299028718521 4.35855193403664 -0.6087031872947707) (2.871831572239533 4.22765889610979 -0.8772514633198716) (-0.1504691334896 1.61229522322113 2.287022608542552) (5.431557812196635 0.560257116356599 -27.08373061198409) (1.641440159383368 6.392435346799759 -41.57565343037203) (-1.308289912386817 34.08612602338165 -2.216762357604702) (5.848856193147065 41.47764837010816 6.981214824407933) (-2.792459265350395 8.837210414164703 2.762525923226171) (0.2183205410057367 -3.570101151118104 -2.337748182962667) (0.3006224500354977 -2.373691675480718 -2.170585231418865) (-1.153681219804987 2.267595978533234 -5.062938006705693) (0.4860149836930625 -1.209368028889007 0.06860213531859355) (-0.4379284505299202 -5.946442999413152 -2.548785713251017) (3.118951588155177 -11.68779684780366 -0.1341512451686736) (-0.9375120889566037 -32.0632387250279 3.29651233338088) (0.6787240429901924 -0.1402767293643101 -0.4245285467374815) (-4.502434647741103 13.40460652604048 1.340842202431924) (-0.1112453999476775 7.27035384564318 2.069251107946758) (2.920261903682484 0.4344158353691956 -0.2715879888845771) (0.003145592965256461 35.73225475023347 -1.054107022520611) (-3.889074550271022 8.877456849304926 0.4152099979616231) (0.9267066891548491 -12.68570965513444 0.2654905784409809) (-2.095728614970802 -73.37800110231005 -9.041948095915588) (0.7059570355725657 0.270765185177163 -0.6099103638259451) (2.714628173439023 0.8770177505734122 1.893430141201405) (-0.417213946240561 -3.759118763346295 0.4228848353266305) (-4.591090961286309 -86.44524414637428 0.8145550985116933) (-1.04172641699015 3.676085499745405 -2.334271677204279) (9.718514849907155 -0.797307273449146 1.873990287660892) (0.1082320441490132 0.2296861144012299 0.03238893948278798) (0.5725251074607842 8.053712310604141 -5.148517301778949) (0.02115270605691379 0.06579741156783858 0.1082884804650127) (-3.043728770634567 -0.7245560399319279 -1.697611425171657) (-0.4959884946602154 0.2988819260784389 0.2521366824364423) (-1.407497811640055 1.522780114020617 -28.29881562869581) (1.524439086103591 -4.480037947729053 -2.631110703034973) (0.3321620318215004 8.679665084338948 8.013473745314089) (0.7710191440584163 -6.148091930671595 0.4863217732240355) (-0.893686584075212 -0.1728089037418016 -0.8992990011433589) (2.356479180535053 3.871110618900951 1.424696479181006) (0.3859305384364135 0.1121132799268053 -0.93549879492498) (11.80655127002147 -21.43388625196297 8.411830774092891) (0.6775583984423551 -0.3747511246851438 0.7185658998988422) (-6.146838148906387 -14.76540263247239 5.372079024217917) (0.158033898683688 -9.155370451978932 -2.338998251911266) (0.7123807632557866 -0.02022761176842927 -1.135371395764498) (2.18522455558954 0.3961970045799592 -1.808572597788086) (-0.03765733780364192 0.5380513045655416 -0.3253123700952011) (-3.891892144840116 -5.512562014834504 -7.991520217204551) (-5.97977124384774 -40.88541169501904 -1.151879011228189) (3.042060437533388 -10.98185031841297 9.107718937126597) (2.825782487853007 33.95469162142722 0.01137642506432657) (-1.161330729773494 -53.67061252564996 -4.424971521393624) (-5.178920460283955 -3.906106788366162 -1.069690790427722) (-1.337067794273283 4.361290630144757 -4.24458214853922) (2.545591351275198 2.314683444281787 3.230018014785741) (6.033870820385191 9.093274837743945 -7.900984637875272) (-0.364842917973865 -1.591169855901519 -0.726605551044872) (-1.279846322390038 -6.312369590397783 -1.71903997223503) (-1.096219758990106 -2.76282753677803 -0.6736293114491614) (-0.08004998923718548 -0.009223606011173363 -0.2669340624072251) (-0.434193243064236 -3.166097737260769 -1.961553458013393) (-1.299062126228695 -2.365940317237349 7.138748118713629) (2.591694874323553 -4.118716219430679 -4.239176793056354) (0.7936589128961378 1.851933593230574 0.009747460779719858) (-0.2517219676020257 -0.2147079484244845 -1.129188367364925) (-0.4722829025396866 -5.258181950538049 -2.558000670555878) (1.577173673040442 -0.9778740541294058 0.8278865595273822) (-0.242793258315926 -8.160573264736636 -12.50435346339527) (0.4274243884413779 -1.111947154520311 0.1461362681870828) (0.8041126757086751 -5.582315544058554 -0.1903530089801005) (-33.89067932415643 -1.111451259177159 -54.48779310382883) (0.1494715418849542 -1.784076587627574 1.031401094969666) (-0.1712799673102512 -0.1555060398061432 -0.2394109547660905) (0.06026279583342131 -0.01653681909904578 -0.5005576747290529) (0.2149863594895768 0.04757984299788071 0.2068792864993944) (-0.3401492224294654 0.1740993271074676 0.04164717443082047) (-0.4699956994544291 0.008630628532640273 -0.01924909740703065) (-0.1249285921084079 -0.02175546618384627 0.2328869099946605) (0.02717875381490203 -0.02883154215475 0.06674153509878121) (-4.530467866643297 -10.92735614173458 0.6231357606423025) (-0.1893367693408818 -0.1634419721197751 -0.1025192310836904) (0.7380240534536784 31.89088404027806 -1.204430168211987) (-3.211630747188782 -4.374955063289439 1.49067565056225) (0.04442707580171551 -0.0513262380174664 0.02801095256608398) (0.7515590439185615 -3.055505688770991 -0.01218516174708029) (0.5722345282814085 -3.149394071642563 -0.3261752421754869) (1.997327340301127 65.40917572468585 -8.657906954630914) (0.02483816185477129 -0.1110330550806792 -0.01321424105642345) (0.1580128913483769 -8.394100355682648 -0.4850946344501824) (-0.08516864675602574 -0.5918147299874968 -0.01816889909879453) (3.04876194957219 -0.773329218220008 5.644000533570269) (1.664638992987546 -6.649904355618569 -1.99038544005378) (-1.272185054818974 -1.736189259001421 3.133120058076146) (-3.439064681082433 -1.554937287460024 0.3249451312903016) (-4.034324459125732 -15.33238928389348 14.68741925294354) (2.787227244485937 -1.594841835538254 -4.062279723568857) (-0.4841861468713287 -31.11609419777886 -1.750335643690939) (0.307563681349214 -6.210677973477554 1.66705529870363) (-1.362459417590627 0.0427257319212907 -6.103133058794385) (0.404625891500355 -1.2841588402204 -1.005472055881598) (2.77126389121956 -61.13017911981024 7.892124079577205) (-1.814640459640402 7.700749938662648 -1.991299449764801) (0.3255334197512412 -0.05173547862135595 -0.1345405905017913) (-0.4491796164055012 0.1809097626870783 0.2255373408602837) (-0.9039844087259588 -5.140636274303334 -2.160071541629622) (0.06177097464134684 -2.822126595756243 -2.554014995671916) (3.545119026300961 -1.174178377146793 -2.797003795427067) (0.4938858483911898 1.481124810826894 -1.562545766169865) (0.04294589042383677 -0.0548894152384834 -7.585264917762352) (0.3996980293130536 -3.228997889387716 1.100891377302457) (-0.9688202994845376 -1.334870194428016 3.434192635661656) (-1.042969338110536 -8.789562374728083 -0.005381015312557358) (-2.710819461113633 -8.480358810556897 -2.781576990909977) (-1.867726106169453 -1.374115480858258 1.805836729308699) (0.05814595763376057 0.01036314890232362 -0.01803931304235782) (-0.02082337765590029 0.03660232448641909 -0.01382509513275822) (-0.004481484971078399 -0.00250681955268145 -0.007198185704493263) (0.07774301566333887 0.01247320997706865 -0.008419674156518987) (0.005363408679236824 -0.05133320312152533 0.01397980073343731) (-0.1562815805494086 0.01930822281696485 -0.008271790754416468) (0.1222525897531771 -0.1289319922201502 -0.06127732566273771) (0.003802557470350701 0.06199868479563031 0.03529330372809598) (0.01321488783384867 -0.08698577663588469 -0.2623673739980656) (0.113741053685653 1.122723148449937 -0.5638812972958634) (1.121690373727873 1.192216076313964 0.5625473194961695) (-0.1338689536370147 4.104103245280267 1.062136022105944) (-0.049755283662443 0.07070870838373355 0.03491749814903668) (0.008608559513651415 0.006868151330976686 -0.01837076787375931) (0.0280191385057019 -0.006594349538805614 0.001673911658149307) (-0.03069427824079898 0.006666318352564071 -5.500898754750659) (-0.007228758570194222 0.01878467272415004 -0.01362684110185673) (-0.2310113014157897 0.2548263053991324 -0.1803573533139806) (0.02405900145189252 -0.001824737883477922 -0.003306224765932962) (-6.946288739178804e-05 0.002523097080492565 -0.002052188976599622) (0.06247320741579878 0.02911716328971787 0.02161265139007787) (0.004492216169757323 -0.001128998215830133 -0.002395839906202978) (-0.03371274633264006 0.006743039162705633 0.04995125842351782) (-0.004446074078794649 0.003371552911513778 0.004890311593542418) (-0.2945093106418212 -0.136910421814893 -11.57728713444311) (6.133579109557346 2.675864785347686 -4.520007350943946) (-0.004424350579382107 0.004536542657031262 -0.003413778751299241) (0.239133653208459 0.2288897871076866 -0.2492408427306123) (-0.576276733319438 -0.6021685475254785 -0.3501380866507289) (2.218734466963821 -0.308074673275242 -1.814262000994327) (0.8447286510588228 -0.6600461286512522 -4.221513409363935) (-0.04332524658472485 0.0105124091124891 0.008926257958660281) (-0.05005533747060088 0.04695121580127414 0.02877091265739684) (2.543573794988682 -3.203235643208341 0.1710305136216086) (0.1419149011969932 -1.22441324548932 -0.08783648505748801) (0.5211743177576086 -5.015066501002201 0.8924092878545261) (-0.05492219065801125 0.1143375252135455 -0.09159595687256214) (0.2783594280634119 -6.486553599994484 0.9035716428050753) (-0.005005106319796809 -0.009422644504809133 -0.02936634572928956) (-0.1099703906016274 0.05696841509836503 -0.002759283571211607) (0.07490894758488588 -0.03113422539243441 0.03153955117212742) (-0.06445390450404638 -0.008940611209580788 -0.07172494185008406) (0.4910468862939625 -0.4514514960820138 -0.8847528295452477) (0.3505384464888548 -0.0528068311134382 0.1899028642142552) (0.05973233649683835 -0.06907584214077539 -0.03382492095202089) (0.03079475069013155 0.01537120428319761 -0.033622796289147) (0.006053247312482264 -0.002297407268337694 0.02307543523505635) (0.3951206209535594 0.03319697156690637 -0.2183715979742037) (-0.02612790481134664 0.0137351768290942 0.003186143402172428) (0.3269500152923326 -0.1997279363578881 -0.0513754440726383) (-1.693647612517734 1.738679889108117 -2.534135413793142) (-2.520711775071072 2.915837011691504 -3.617699483075289) (0.008521029935745024 -0.02117644500389135 -4.882175844810972) (4.595591501072107 8.922153764488193 5.027961171748379) (-0.01775678514119516 -0.01006463043546021 -0.004808473518531964) (1.574103383164452 2.592421950088451 -1.448967865877068) (-0.1909622725473047 4.23881498840004 -7.265864681344302) (4.081262053033495 10.85670155039563 3.720523401183849) (0.4739763032606744 0.0569820558184202 -0.1807800346519051) (1.015196037364854 0.2608935831620023 -1.195252740100536) (3.627098710060845 -2.296326726778728 1.831701567833864) (0.01006342695906857 -0.02940878811292869 0.003855555319289087) (-0.09081701121691158 -0.05350144094091515 -0.008606583897703288) (-0.05955754652503212 0.232414891916994 -0.1298563858857374) (-0.05470500240834468 0.4377755137954048 0.1176555250445458) (-0.01641678195183031 -0.00708478150130042 -0.009194206866408417) (0.03747067562444557 0.06133383206461697 -5.046755100738523) (0.0167769338210388 -0.003761840517457135 0.008720123297258769) (0.09015054463951122 0.1146013144282898 -0.1544737486858204) (-0.01593674550798781 0.1566332403243142 -0.07063845317786258) (0.2741642017021694 -0.02581598252910306 -0.03735452705512839) (3.94567031571025 10.31789125014185 -5.179357874861466) (0.1513914390609231 9.182756610964482 6.678439507511476) (0.4809173772405543 2.99308806224039 2.039137801764392) (1.111684294399935 1.17765860085203 -1.220928132131963) (0.9078547168853578 -0.243610753632433 0.1242469995875318) (1.765201597286846 1.056597342244622 0.4447868027177888) (-0.02178322283053184 -0.03828085779891047 -5.040754174873686) (0.03501815795532624 0.09226289010281631 -0.3805809194128134) (0.797401927837301 -0.5696390110880289 -0.7133022177052977) (0.2940793261722023 -0.5558285928819768 -1.22908506569876) (0.004007230037811601 -0.0007624408988049112 0.0003262879155936163) (1.016461442636148 0.3629043581469748 -1.709366188892725) (-0.2324459783387769 -0.4100528556694224 0.2698091361405378) (0.5548187084329874 0.1222433518816216 -4.809427055502176) (0.06378610604237951 -0.008977826294808856 -5.224803255277763) (0.02945459779148252 0.008632229260526408 -0.01364830781367222) (-0.02828799180624647 0.0006925868713918495 -0.09251341300350201) (-0.006106615325859475 -0.009366043421391119 -0.002308191060741284) (-0.6004685226742472 0.1313176866702392 -0.3807108102113028) (-0.08227556392630955 -0.08035212307070275 -0.2065420831126649) (-0.1833640442269345 -0.2594312784186538 -0.09014157011672426) (-1.153975877335043 -1.005257695496506 -5.558102819841827) (-0.1390159310706109 1.678843982525795 -1.301848688613325) (-0.01156676170520366 0.002532000866648727 0.02551258892706883) (1.173499163331136 5.870766357617655 -3.702838055923278) (-1.107393010532225 12.23328287453284 3.300536934076343) (-0.04093775877050926 6.256791493605958 -1.159765502480141) (-0.9795514899248977 6.10757651901879 -4.474237441444198) (-0.5462483169616572 -0.06882888862554432 -0.1781476143504062) (0.5008902830198741 -1.18072441707207 -5.367565294844474) (1.356414447401952 -1.38080096859572 -4.371366095613436) (2.254914333372999 -3.407752969585881 -4.164091873045794) (3.867692494455149 1.826328065045874 -5.157306524816755) (-0.02695604615695024 -0.09189469126228288 0.1773124876917506) (0.1785217162567169 -0.2671193589835051 -0.3200152375496124) (0.4885439255328131 -9.533118120098283 -2.788027298173538) (0.9088717895100342 -11.62312894455588 1.104225657786973) (3.268651822543062 -7.86920949975847 2.485517919863565) (0.09969848598597413 0.04337776234265604 -0.0007907327053771427) (-0.03001315313268414 -0.03288434006291929 -0.01435866219645182) (-0.2072335410104623 0.713591772260073 0.3618563301075264) (-0.004745282696261932 -0.01581463659427879 -5.885080461873037) (-0.01258569639623119 -0.1341644717873482 -5.632985863973071) (0.0168349937541269 0.01489927060312894 -0.0160768370044962) (-0.04094074343906842 0.04360520523117609 0.02751008539631013) (-0.1279085620381996 0.5557038465106643 -0.5992800477447296) (-0.02292441252280164 0.02621498708260167 -0.01900267587025071) (0.8861340349607081 7.646477921583661 0.7874435655381964) (-0.001803727125622032 -0.1305876866311442 -0.1433689092306601) (0.001683451037422443 0.1666566742532452 -0.07938983096654517) (-0.002306792345247693 -0.01849964080182936 0.03008062736347221) (-0.06941510718888808 0.06390525036382501 -0.04987233507071157) (0.3010311452887486 0.1628240401052574 -8.558543868616862) (1.312198135484443 -0.2723840480660656 0.04198087097958655) (0.00244137107555637 -0.002896062278517217 -0.002275521560208161) (0.01158656402071169 0.02041982466666205 -0.02649644231005639) (0.3751433535958963 0.1901449214957099 -5.679592179690097) (-0.03667993292205663 0.003136803862566097 -0.09347633299786748) (0.158435344776553 -0.1569740935191043 -0.08917236753156033) (-0.04982325245127246 0.08425227697857351 -0.01343226001250043) (-0.01077693653397327 0.001930009105545426 -0.048757745072309) (0.7525991986060322 -2.259297079898972 -4.151656304477756) (-0.9639905053529259 -0.2376178335243999 0.4951380007074726) (3.226394555958322 8.942331808751788 -2.213060629652356) (-0.7570748879080951 0.5861371788749459 -5.891485979946063) (1.853214602488582 1.379842767237821 -3.166256461155519) (-0.3621131646232724 3.782047556448559 -1.331674819548917) (-0.05677094658321261 -0.0526838306857663 -5.234689812019259) (2.626059726909411 1.296082917147803 -1.010573335846086) (2.493128955137516 19.27635758826828 -5.285631249818987) (1.394902113159539 -0.3388230199362074 -1.064778727741443) (-0.001059354002209141 -0.006778761754787802 -0.01662019084862309) (0.02982289117655748 0.05559253490875364 -5.135125649008529) (2.192165987514494 -5.669591679689646 -3.864398894511869) (-0.219484247578964 3.597065613784591 -1.604536772646176) (0.1046154445610535 0.06142696152752218 -0.06067964994466993) (-0.01128479983993069 0.03802200964732431 -5.158016459232161) (-0.007842387035473389 0.001906742690940486 -0.004438892156510033) (1.677728506774653 9.907647831972547 -39.42063500269178) (-0.08013903896319571 2.879314808821013 -1.965247453582006) (-4.492427976199889 6.530439597145897 -5.168197553159809) (-0.396772329218093 -0.245778721711413 -5.929211308215153) (-0.4805074622392749 3.33981181896882 -6.575464324718009) (-18.56983808988727 6.656363792120542 -5.694815988397863) (1.120360295737828 3.027407087047137 -1.788727317802977) (0.2186097728392614 1.113876774711088 -1.877020928977553) (-3.646745825151632 1.50660892756186 -30.34719534184405) (-0.197027557166965 -0.2042714575910693 -0.1235661352916033) (-2.236108632834742 -5.425174913212206 -0.6549268075716379) (0.008869936903508707 0.0002039132657812807 -4.860006595358904) (0.001422731360322311 0.0009091987077441348 -0.001842880784467525) (-0.0009374071035864065 0.0009800256582317053 -6.98360965149456) (-0.01060955881672134 0.06507103803712373 -0.05107665466502186) (-0.03801217165869392 0.06119817918837728 -5.995755027477836) (0.5275637847410488 0.09514574663106594 -5.156828190056014) (-0.03088673630658097 0.04811760485406448 -5.059500475144653) (0.00174388195880743 0.0008826674927898 -0.0174326864086855) (-0.06441193834148679 -0.003252012596657925 -0.02004579110248469) (-3.279454009628211 -4.487849760233102 -2.418180649594159) (-0.5222601339404304 -12.29398410825502 -17.14007405085876) (4.119476432277435 -0.5831904355182284 -0.9508319236402198) (0.1642522127928476 -0.3282169803336408 -1.133462360121574) (0.2243197903314084 2.364397208463127 -3.427484766071065) (2.747614103680685 9.017379550780962 -1.292937218077108) (-0.9113052421808969 -1.446775334317735 -0.9974709159932418) (-0.8136210364806226 -0.9009367941503533 -0.8429916822560315) (-0.00765288726089914 -0.0001377310294246835 0.03418832611746329) (0.1705008736028186 0.149853868471175 -0.9303397853639529) (-0.04013503863963336 0.02401475043597272 -6.261473910885484) (0.003256369569054164 0.01096305866014937 0.02947431338445475) (0.01346256760866952 -0.0945042634242841 -6.304125533519028) (0.00344099561176997 -0.003614507005210133 -0.002567695580694931) (-0.2446487606148493 -1.551086472003466 -4.466826950940147) (4.209481829709233 6.251309490797921 -3.769358458525335) (-1.821305007375573 -0.8287304113026494 1.869201412878168) (-0.9420458977000277 -1.789628514430854 -1.382185326810694) (1.388597055574141 -7.751366409831244 -2.35845719715567) (2.037618206805325 18.08580805217165 2.112568257395903) (0.1767815291831197 -3.846171995552403 -2.125197847137936) (0.3581521771528344 0.2979247628455434 0.08817004655357746) (-1.006380362294229 -2.908615293402611 -4.617145419084058) (-2.66049400989455 2.610755635823882 1.73859110065612) (8.519817506577455 -1.991626508451218 3.003897105457212) (-0.1171283623812062 0.04574892127000383 -0.03818358166134327) (1.177687113213404 -0.8946791088435385 3.008282861226612) (0.05014384109113525 0.09388892221082253 -0.1165751165018054) (0.04699344287243794 0.005282363306263929 -0.008693409721627019) (-0.0885273372634411 -0.02990760596972043 0.01903771696136963) (0.008565819502526358 -0.02650020052923067 0.007546855781021564) (0.01997926609633885 0.00354088661834589 -4.562730783561343) (0.7678439883462329 0.2185230974341923 2.245992684874107) (0.003845138306677924 -0.1360820306473676 -0.003206719077981535) (0.3521032693965731 0.6859504110592206 -27.56260157815301) (-2.983351671925883 6.00620535239246 0.6380399501339631) (2.320929022551494 5.527403729686331 -9.816118571166321) (-3.267094814556574 -11.93459110428809 -3.80053104208583) (-1.122304426033408 0.6576038049919214 -4.163610092555674) (0.17702777428396 0.68523454186761 -18.76732507391139) (-0.8007820738144493 2.141060228333328 -26.5844550486355) (-0.1075155286858924 0.2003239789031993 -0.2784016331965442) (-0.9852612365305417 -4.434714431888641 -27.50338369256167) (-0.003803733254188272 -0.02403181205836732 0.03953760115084507) (0.2424419632045215 0.6584549649503484 -1.655314576330231) (-3.218090054389258 -3.127123057425747 -33.2940336796302) (-0.229574941488266 0.04035866944228042 -0.279328363459918) (-0.9391613514099988 0.1489505937427264 -0.9038834751913157) (0.3202041007554782 -1.388282297708357 -0.5749317342458273) (0.06328979018422548 0.005600568381766098 0.007929258280003768) (1.44772059111377 -1.171376338520867 -11.20888175859814) (-1.013462891825842 -0.6727209851716618 -21.7260598123741) (-0.03890037359001968 -0.002975375430200754 -0.0315491523300315) (1.490359812403162 0.2217562185319709 -2.100031345527697) (-0.1605851163816725 0.1630633571372832 0.1247504849884867) (-0.4808222377189768 2.636718564615746 -0.3868066226395231) (-1.129906987320331 1.235596679689241 -0.1338245693457447) (1.822754228732824 0.3774475358459077 -6.031864153765956) (0.5802245236993069 -0.8463267050401905 0.2287821753620796) (0.05146627347350145 -0.02348813147987295 0.004016500855139028) (0.00884020355096363 -0.03085470960196094 -0.01032120441132408) (-1.41305631748301 2.326012017634361 -1.257770532988771) (0.1068865784428042 -0.09396535315496779 0.0526160359711442) (0.02123022695641545 -0.03435043727054883 -0.03612900117369339) (-0.004061054100539536 -0.002001005153076308 -0.002528759140076188) (-0.01402787619021579 0.003204190516413522 0.01139087172313316) (0.01608290688787241 -0.1094023987295085 -6.628683499687525) (0.06587949999130893 -0.02940710078244579 -4.949453690849253) (0.01884119665148016 0.03355107046407678 0.03644258587978132) (0.07524944541812192 -0.03217010100235902 0.02725827983450477) (0.7385034743795801 -0.5723390795187646 -1.717581552940464) (-0.09165231125979666 0.1084095240132189 0.1761185120106163) (1.396991606594979 1.424813600056042 -0.2675237550352725) (0.2008956172938599 4.766836364526637 -2.908623744556374) (-1.653637886728696 -0.5403698339686545 -2.47245102992748) (0.1987914327995215 0.02523441896436084 -0.2471008953878109) (0.03093999733765172 0.02730036557928825 0.01253191143491316) (-0.00184544614342912 0.003924806243347912 0.004587547049482138) (-0.01974562534848231 0.01392801290903693 0.02460193269468804) (0.006352777718315198 -0.003692312682379739 -0.01429793691143926) (-0.02133160463263904 -0.09185616762282214 -0.05213400766177358) (-0.04641535394695751 0.04084640218555739 0.01153007951604543) (-0.6483477898557829 -1.223093568830079 -2.906472924769837) (0.1236587181514485 -0.0009406668149550129 -0.1389260825804045) (-0.1053529569256881 -0.0199489869992421 -0.02461210120736106) (-0.1184889117285016 0.03354773276989949 -0.02416758138089329) (-0.01718781000373102 -0.003340454062786506 -0.006298988549506218) (0.128506667095688 0.05463889258692411 0.005002866190517456) (0.2672978541304236 0.3308091949430298 -11.58593658099689) (0.04898413300845662 0.04683934104102294 0.1494334164761207) (-0.5628770775959715 -0.5067730553146992 -0.2058161376656799) (0.06960077708505465 0.05204363437887784 -0.1305436877054996) (-0.2365845621425628 0.2901014226032735 -0.4168404671704242) (-0.3416484990311159 0.1112182878262823 0.1787390602271426) (0.07873271805672991 -0.06105717448218163 -0.0532962544511061) (-0.148039135581675 -0.3385191675484467 -0.1147189323842258) (0.7334320670451799 -0.1499510099440076 -14.26555705573743) (-0.3488571713618305 0.448162251260902 -3.44054030075332) (0.04391181426408203 1.003215183953054 0.3785845733267565) (-0.05934624191299091 0.1729756528895942 0.001555332008500124) (-1.306730969555842 -2.727321342672928 -4.010280954435403) (0.001746358250224164 -0.001202436467234586 -0.005618543758927417) (-0.1424754243265081 -0.2506462154171278 0.07765301982202842) (-0.01756856926650773 -0.03493669041221342 -0.02010628128408237) (0.01167132026690072 -0.04722326545335694 -0.1896875719714698) (0.0300149803422681 0.004134654136204385 0.03385436600870313) (1.011266182337927 0.1299318194094644 0.8309586519827119) (-0.007667977888616305 -0.01273873642360654 0.02603043744119712) (-0.6698845061046703 0.05188322972566609 0.2207516113008701) (0.8074169371293175 -4.375946131304266 1.142708992546326) (0.03288628412480568 0.04127320954755617 0.01976051661292494) (0.03405645221560177 -0.001381165702640674 0.009235739439229514) (0.1004520141235116 0.04960147430490205 0.006815016382432836) (0.008627466482726673 0.007454474857730339 -0.00286428320229967) (0.109300154032016 -0.08141281295284061 0.02374930125181223) (-0.07331328183354972 -0.01112783628013319 -0.007234784475298394) (-0.003292653774911579 0.1267906690352641 0.1102291550997564) (16.80375795778196 26.86816060948763 -58.58776419482585) (0.008245860508211571 0.03267074599135183 0.03347824281359862) (0.01759870622505304 -0.001375954310472122 -0.006524572444211216) (-0.02029121143974346 -0.008928589172665558 0.01105650914149684) (0.006305502238996645 -0.004784935200532562 -0.004669395040107504) (0.2138626643400374 20.98706760410372 -10.78126565987023) (-1.48434771516976 0.9253367926296621 1.987779448532379) (0.04560640441751798 -0.09400278038428946 0.07168167977228773) (9.87271015720045 3.965044834843799 -40.0796603855967) (0.284965372918863 0.08667600526552997 0.01719878155769909) (-0.01672846973639787 0.136554839818354 -0.08123598520116579) (0.1962693461394838 4.71380753551057 1.670638530014591) (0.004875410863700322 0.02292267638967812 -0.02566288157390139) (-8.370287074743049e-05 -0.007675699600541556 -0.009000198656215565) (0.009666621007690876 -0.04400715770093137 0.02187341989899094) (0.3087131637832469 -0.1487949147999145 -0.563185568156287) (0.01399548695633746 -0.0008915283958636812 1.213544346211244e-05) (-0.925045360666824 0.03382941574463891 0.2446076906073) (-0.08178584180928249 0.04855583589202166 -0.005612715964873177) (0.02030468818577393 0.01726556825204613 0.02113954473659446) (-0.07886336184013878 0.4966653153105147 -0.1959476336001139) (-0.5991281458863295 -0.1520625449322773 -0.6589673789305353) (0.2255715694051737 0.006251923481383211 -0.4332422495000723) (-1.718161758165543 3.655193470062728 -3.759682501047533) (-2.626943653436591 9.485759544748619 -7.628305191585637) (-0.2561777526701187 4.464809508835495 2.852310152465204) (0.0210347449104118 40.20560243008858 -3.233291130737081) (0.01487410782327857 -0.00530750212036471 0.003421499945134196) (-0.008701580231879908 0.01999950718399043 0.00491978651227004) (1.944276106583102 -9.595129690968459 3.871552905063753) (0.117590273400091 -0.06908778662243925 0.1539913189683436) (0.0990549441514031 -0.1556825224478552 0.1354441446985914) (-0.01809327953966736 -0.20025548511484 0.1109048637060704) (-0.00595330630482524 0.04845788078838596 -5.266509955187364) (0.007882781902039063 0.1175849361428875 0.003912234881288981) (0.02517455432924015 0.02663020066314074 0.1410269337491456) (-0.2259593773357624 -0.01289416941048932 -0.0287431665640817) (0.01240227863176557 -0.06925646912735109 -11.64644290019855) (0.01449462524350809 0.01011995721595885 0.001029945612744169) (-0.04009145075538079 0.07789603876640117 0.04186536822873898) (0.5954139542871758 33.6455518957457 -3.306201845983516) (1.335726584925764 -47.77342965100642 1.62460469956226) (0.02235378096346661 0.001485713351071201 -0.02321996078014224) (0.2382324491966105 41.70530405228801 -3.866954096145006) (-0.1249697558149016 -0.337694126081186 -0.132395971629244) (0.3646063408227844 -0.2716306715586428 -0.1121373698247988) (-0.1361330256969787 -0.04824289321584817 0.03519897519658199) (-0.02837507815774384 0.01988673190000717 -0.02675788765614206) (-0.36593706428153 1.042325579150257 0.7754767899418326) (-0.01936757916707101 0.03936468613651745 -0.005610679081590103) (-0.07377746580566046 -0.01692908081096102 0.04854751433243269) (-0.008656167200270256 -0.003512220326515258 -0.005880019659230339) (0.006956472897429699 -0.002663771991084773 -0.001530685803477824) (-0.008217005017764656 -0.001676062418128631 0.01334771576851771) (0.0008475223744133491 0.003617564292318329 -0.002532469925999757) (0.0310483095863101 -0.0485264645672888 0.06225414294192781) (0.01750184538172577 -0.001723753560645311 0.04220746265251485) (2.840642054163624 -5.757187837265839 -0.4381087913040205) (0.2333149075906686 0.1456122796150332 -0.3369035301082009) (0.1633629905334099 -0.004241944270900386 0.04212198064692703) (0.0641666934524239 0.09248425783965369 0.03463839009763474) (1.338016280359935 0.8107797543562982 -0.531888888549184) (-0.1892929157688297 0.6069139099125082 -0.6909712441483135) (0.6584643775756354 2.645384728077445 6.743780701943969) (-1.029285678392857 -0.157898030566533 -1.955153844239847) (-0.005061276200758111 0.02732653976630154 -6.423521727265538) (-0.01336971406524013 -0.001743916923852581 0.0001913551527111374) (-0.01465384211248217 -0.02338101648031915 -0.146442881198857) (-0.0441316372869916 -0.09517969391386349 -6.407155215882847) (-0.005983263200868397 -0.03909277623222591 -0.03431285647384584) (-0.007471488670868934 -0.07145350878628383 -4.873951368646982) (-0.001266104082040509 -0.007538557838299572 -0.001198287636501675) (0.03931407759053759 -0.1383689551885225 0.07775155143603625) (0.1339316761652771 -0.1805537595979028 0.04693214208104089) (-0.02044700755459314 -0.01139047939555859 -0.008158728467263173) (-0.01961229482494177 0.05000313088177873 -0.1020128289205929) (0.03087013319750481 0.003856793592353649 0.003564705933965174) (0.02469063109042466 0.02917214130367321 0.0001168503985036025) (-0.3187127907598913 0.03530242994314703 -0.3342839883006354) (-0.01080571934401172 -0.002114583252524096 -0.008189064303902557) (0.08231692902848034 0.229705288548585 0.1365271153379507) (0.3240119774812795 1.312147958066985 -2.259747547187197) (4.319846012434768 8.451650690720832 -3.294244311841915) (-2.833219338878076 3.480793433789451 -5.616614153096174) (-1.38187986527225 1.678000924747266 -1.060418221117588) (1.273950880775374 2.520152936962492 2.065853632717899) (0.6160760908737555 3.909917895389777 -1.951406246004592) (-0.003819455184702049 0.01705147811119652 -0.01166879643906168) (0.262673595839238 -1.564101252791657 0.3495896358429221) (-6.768685832539666 7.974286307495822 -6.395063637061405) (6.684030138539383 -8.519579162109427 -8.129384171979986) (-1.465308512908253 -0.1449837395190162 -0.4179569331352536) (-0.1372976016638068 -2.736322176698505 -5.393673513242116) (0.007004564404105097 3.817759061017507e-05 0.0009550916058580659) (0.02625475275553878 0.001228256132790053 -6.245964445169502) (-4.188434484025693 3.786235418113253 -6.745046257539473) (1.627814817651245 -1.435357408377349 -6.370865470355239) (0.01761693048519281 0.01228400053371793 -5.368749918729019) (0.2084290412449478 0.1649865479446526 -0.2097486855825907) (-0.3688045653655387 -1.310143351115874 -35.64800025686814) (-0.5970568656013926 -0.1611120091073202 -1.105285348548339) (-2.248047325791403 2.229830225916369 -3.758003808641792) (-0.004165294726278777 -0.01361158980571462 -0.002956942874037873) (0.008833372044498886 -0.002497097735148434 -0.00378678353430049) (0.0006675198432326817 0.0513394294682161 -4.79093201462124) (0.07792774764417995 0.05822103453748878 -0.1454916567647604) (-0.8311974557491354 -0.2498402396983671 0.003799967505289353) (0.07431035312963544 0.04779231373934544 0.08594489645719998) (0.1328558755904131 -0.3642324970304637 0.2376891974281855) (0.1279961395793452 -2.302892321080734 -21.88935502139483) (0.07007289726735208 -0.03996489077758449 0.05912688446579548) (-0.06776574798644702 0.2648915325914125 -1.450318769324502) (0.9092270686130999 -0.02912759291297198 -0.3103882290017127) (0.07731086682921506 -1.646347200568353 0.5163475785702709) (-0.284855473207728 -0.01790406243648937 0.08583952696506361) (0.03024798394926288 -0.001647723893542022 0.03909309901758068) (-0.7728696017803325 0.03971642730196316 -0.4376876947116268) (-2.665656980228878 -2.488488151806649 -29.20058349871622) (0.01345202637258459 0.2983652613918125 -0.01835978214224782) (0.7138636958389766 -0.2965369751568576 0.04718345446859472) (0.5183327309977704 -0.1019977446361043 -0.5660653785928503) (-0.2535547267609988 -0.9755731651896404 0.0498950797677834) (0.5752919584349745 -0.8501412563144328 -27.62322590086104) (0.2353846861660088 0.3054944527400104 0.06196396571309695) (1.423695138303517 -1.060321826255803 -22.12610315217918) (-1.114948605000912 -0.3938872656920221 -2.389324537129432) (-1.253069451136235 -2.44157403640284 -14.49019449375198) (-0.1451517608113695 -5.003406713806712 -5.497332153490915) (0.298402927791126 -0.1495137516034924 0.07632271003710342) (-1.458717907950305 -0.6056893923526878 -1.040670087536028) (-0.9649601954931936 -0.8160775780774026 0.3905232391800344) (0.01888168242303737 0.001000722729706296 -0.01350601679565972) (-0.005818692591089865 -0.061168640223563 0.005220600468469061) (0.08314129004297556 0.01430039975511864 -0.01498659540019601) (-0.006821737320093401 -0.002838841520871199 0.03476508039592774) (0.02041571507315618 -0.06183135365057341 0.07426731467539972) (-0.08116217311353671 -0.07869930076746331 -0.06764833154301174) (-0.002176321105305079 -0.0009688518953413562 -0.005692416365899913) (-0.09490446006692957 0.1647124628023147 0.04576847171548346) (-0.6026558515358904 0.1443064922701766 0.3853868726089279) (0.0196430747530395 -0.0169055039933662 0.08261338858652964) (0.001028293614247972 -0.001326095979819208 -0.00252157683354336) (0.06848607990893085 0.08245188405036785 -0.5365347732384986) (-0.5638904817330957 1.304881379476158 -0.4653736169401701) (-0.02404144293052989 0.02595693207606502 -0.001334733575158856) (0.08561964584102644 -0.1616014095834342 -0.441158129990508) (-0.005162739175867548 0.01377818474731645 0.009702979353727978) (0.03383890877879018 0.02714673501632783 0.007080482733815204) (0.1051615431587417 0.01157495245867818 0.004143488427330286) (0.007113478704829805 -0.01217132779164334 -0.005143044310951481) (-0.321965883833608 -0.2167464730079084 0.1795241267541205) (0.8827876312121063 0.2883291987686635 0.324905969235598) (-0.382080815413795 0.6884117638305487 0.3554423543898607) (6.121932786909215 -0.4479910327554739 -35.52379891436753) (-6.931507732579433 -4.598044196235155 -4.57619477860235) (2.544621517577808 -1.564406261390965 -19.36297988228506) (-0.3026836940511047 -1.511727579657775 -0.8193398470022898) (8.146175257829539 -1.221905630897808 -3.422201514898611) (1.213121287838657 0.3666880979983494 0.203830286724177) (-0.0406301106004122 0.08479927722163566 -0.01884000658886006) (0.02562824752656386 -0.01935505098248038 -0.006672689122827086) (-0.2510505636326381 0.1459145598317363 -0.5545014026976139) (-0.1397476017042427 -0.1361903173930333 -0.4537212501983312) (0.0406174195771765 -0.03757712566367888 -0.003442288737194783) (0.04691501151534038 -0.03493538179529548 0.01585177760462758) (0.1520485055852157 0.1580638026559947 -0.1119679277393955) (-0.01030941169741837 0.015150120243112 0.08758607073920692) (-3.387234237910716 -0.2315532877762012 -7.464845041797851) (-0.1540510049092259 -0.3132224726523363 -1.23486669217418) (-3.714541260886714 10.48135465320652 -0.5706182543098786) (-1.123315866046205 2.18852367214171 1.909754161436783) (-0.1031161204311791 -0.07224682373019722 -0.008798791139951578) (-4.796937212225847 15.18063800028828 -0.2388892119536065) (0.07851467732007647 -0.2847839595964378 1.066526815131618) (0.698909038590296 0.07091107138498527 -0.6411863488419222) (-3.858248691600358 -5.468126904674774 -1.819843978240835) (0.9563503406587271 -0.5901948125195591 -0.06273608250132179) (-4.096983759937155 -6.375811925239559 -6.184784003687121) (0.161934060478534 -0.0595819584510051 -0.02572867032520382) (0.5413551135999072 -0.407459755128339 -0.4239530133680242) (1.020671901523439 0.4339130543807892 -0.1264177927009662) (-1.604061731957231 0.1725886602247919 0.6896248781247581) (0.2610612016355064 -0.214696833359502 0.5188897245838505) (0.1575179367625448 0.06279211144650459 0.05605750650713996) (-0.537075476849678 -0.3833842101682287 0.07556680561448809) (0.06148283918753619 0.04841141238066524 -0.001823883276667502) (0.009016846433879077 -0.02831258643647759 0.03079758248426433) (-0.2009925312083157 -0.1676405116174006 0.02758580664401794) (1.041566617512367 -1.737686709006209 -1.404780234670085) (1.016110675559266 0.6027152587551208 -2.477671072273018) (5.925655971265779 -0.4831887414816087 -2.52644588963426) (1.166981594248621 0.9253038454439808 -7.694102354035002) (-0.2467684276025871 0.2189242465499073 -0.1103504709344337) (2.92094692984223 -0.5714649483331338 -1.665157525587521) (0.3316035999804765 1.626385149500597 -8.101973009455007) (-2.856913758754155 3.4958600391961 -1.750529226759799) (-3.95197814348363 4.656696231721596 -10.06030401639027) (-1.851318440388333 2.274819101062077 -0.2480509573987594) (0.6105812045949242 0.09851328272587656 -0.9081528379594783) (5.419250860184936 -0.4868978565014039 -1.436408269212639) (-0.8774178261714358 -8.475320948313785 3.58048094054941) (4.86074360301321 -3.190517438937739 -1.120706375654374) (-0.7356778244748674 -0.04917685048814377 1.250101702607496) (-0.1285145279966765 0.1836686229501804 0.01207627731049377) (-0.0363653777004708 -0.01230620886388732 0.03940018800944776) (-1.544116668680409 -0.1476268974302211 0.09057299848614013) (-0.1612863683312692 -0.03161580040270843 0.001492501601761703) (4.272037270686507 6.683875722665299 -5.334900927026827) (-3.613707148090605 0.8975991329787528 -3.037825497964255) (0.1684014365830055 -87.70517533127895 -2.656563326851219) (0.1525045827782819 -4.240661934848635 2.500571220759672) (1.10204247217693 -7.879477318184581 2.619323976757219) (0.840182181042276 -1.054027364206494 0.2293598891655949) (-0.1354813696285294 -0.04241776227971603 0.04191113780401434) (-0.2030312706080381 0.02525063168714847 -0.04812487436223052) (-0.7036162370330159 0.9379614845976471 -1.638264983979954) (0.03470800239845691 0.01853883460369946 -0.02681835764479646) (1.757462875939579 0.9562265266673307 -0.8176523500414523) (-0.06058815357368206 -0.87596158116319 -1.411507252065077) (-1.353391923891631 -0.809832867222364 -3.055161863524953) (-3.659169408909204 -0.4968424568230221 -10.47416630151333) (-0.7978268207927233 -0.6535133276103094 -2.711901000711407) (-2.16094102775959 -1.161500463927732 -2.719530044378679) (0.7908546145664521 -15.01128079661343 0.1724112162006486) (-0.6540666900058778 -0.6205257243033164 -0.06019170663636692) (-0.1375682830966215 -0.08447615414128803 -0.007055794326558387) (-0.06114993353407992 0.03348389740391298 0.02346290223454248) (0.01392799603651911 6.683708162675064e-05 0.001876219935112021) (0.008481906615024282 0.008705795273447102 0.02014194414503794) (-0.03399202219035542 -0.04602865800547986 -6.538000584925571) (-1.141961609799124 -0.03078701011171658 -0.1781242101335546) (0.2125581584918785 -0.1306427882583265 -0.09533405369861939) (-0.2011278694706212 0.1553658723794885 -0.1106600301692221) (-2.961643677068103 0.2996733860224853 -0.8884942918194177) (-1.647653774247481 0.2196191016195405 -1.01821079346) (-0.07686608757446922 0.08818235062523175 0.08644566301998234) (-7.747088677505441 1.667119751731558 -0.4268226760735756) (0.09104483326205259 0.8477422929231293 -0.2320128538388897) (-0.2841049134894161 -0.04492087630187797 0.1529598180346255) (0.1358021443800858 0.3609068156050088 0.7742334318975521) (2.40324004355725 -3.342826791698197 -32.31496905437175) (-2.55480812520346 -0.5464580981260528 -6.979233792148839) (-5.864647338068865 0.2968958889909525 -2.212755137748969) (0.1472183079131862 -0.06680587516567575 -0.05703657824234845) (-2.073669986059468 -5.285880776570357 -28.25669311183468) (-0.06469311473020797 0.1889094770010171 0.02651973774344227) (-0.3047584631095679 -0.1408562091430766 0.3312002406364323) (-0.4488163844520379 0.1852185264363635 -0.01469569124157322) (1.538140948700539 -0.5245195016982627 0.7729881765790378) (1.168307123232441 0.8851356077023719 0.3990991409049308) (-0.04199113020467371 -0.0331043608123054 -0.004909628989768017) (0.1080611274713731 0.06247315621941787 -0.08587186640717351) (-0.2549294126944751 0.05608185192285944 -0.01111643510861736) (-0.5430174264317755 -4.8760696813036 -6.292652438407963) (-0.2300631572382514 -2.282484423472826 -26.39254826798487) (0.501297807689559 0.1974565443627988 -0.0436945248586505) (-0.006436176485449861 0.03090953078128951 0.00413435693499148) (0.7162303707713518 -1.799512759832953 1.158611187157846) (-4.080085488364869 -4.228380778034841 -4.134247467955371) (2.673682135695438 2.570759298919605 -2.692115432245448) (0.8090080450254014 1.438699090177504 -1.242540001522203) (-0.0001125509345521439 0.0009545404616098324 -0.002888156241986616) (-1.837843111604359 3.100975212758134 -1.372522063001283) (0.1935155906369808 -3.850087497804544 -2.327544395720062) (-0.01635135441845706 0.02750347843273626 0.006411108257018849) (-0.2111971466575824 0.1225361239706635 -0.2233864543307988) (0.1651209620867747 0.1346325689791804 0.1238450767482817) (0.4607384963262049 0.3916940615188624 0.7494561849350554) (0.4789805304514005 -0.1015162176610793 -0.01016842624136762) (0.5646314328958321 0.303994399564539 -0.04907496562132416) (-4.08624821099092 3.581787469141188 -1.383013582290005) (-0.1559528574603299 0.07785084825730093 -0.05134331478510969) (-0.2193506156574699 -0.1469974808996129 0.1608951098072287) (-0.779354698174582 0.7291164723830152 -25.85470690177794) (0.04748962177262067 -0.09868398892063097 0.04019411960199386) (0.01105155028344224 -0.07095702255527833 0.1093630975011115) (0.03469436129890317 0.01235132444011859 0.009287261624202363) (0.06878093607027171 0.06961952642019537 -0.02155042563194581) (0.01212708966047063 -0.08915553969053917 -1.292651200624489) (0.1893081202588651 -0.1591221321011749 -0.2126515197345359) (0.3825606461320556 -4.176676684673565 2.324402226161149) (1.41054795637932 37.70471993740345 6.472532526055916) (1.451085557830875 30.83610330943908 9.360832701283305) (-0.684197048500738 7.440635457223999 1.198550776819218) (-4.284052082482564 2.374742273549146 -3.252489069645073) (-0.8467776611769289 37.80607368546929 6.100897804419839) (-2.265897065544456 -0.3769882768440007 -1.758750234627431) (1.330487881476048 34.9407065112314 -8.305976115763292) (0.5414026231481437 4.8922996587448 -5.718133240800237) (3.617625278796621 40.01988926399549 0.9012217511224634) (-4.663298556063609 -15.14893761357159 -4.313577448648415) (0.2184106413748295 7.866851709013841 0.8714836460902708) (0.825443775434489 7.029938502982771 -2.263033422321985) (1.219024700460456 0.8190713939172773 0.4402363099769909) (-0.7953216496207204 0.7010146749590576 -0.2204583501860591) (-1.068957444386518 56.38874535634855 -7.330165252779464) (-1.229033813946931 -0.3818815716591797 0.04739625073125169) (0.0210727478884784 -0.0001823953196617469 -0.02400785130140394) (-0.02910297940458894 -0.05464369393599357 -0.013237243314714) (0.0324962379327564 -0.007975070121390459 -0.0004348714433295576) (0.2594770931930048 0.09249026715729874 0.02438592489976171) (-0.1443851914224312 -0.03419563073686914 -0.01030810316393884) (0.02098914152899176 -0.00768527704770054 0.02037392310465427) (0.0212048843184386 0.4026319887472768 -0.2681969539927518) (0.01931173147577477 -0.03919344855859595 -0.3885857866602431) (0.02721690591349007 0.02829247060917357 -7.187434252547341) (0.1252382359745101 -0.3674740265046321 -0.1899160083931739) (3.291786630788574 -60.34871157737928 -11.4180526347592) (1.845204383932376 -0.3821773325695733 0.9668185828342667) (-2.590616390958766 51.74758906975963 -8.858191400525916) (8.881157667191115 -1.666328882214881 -51.62837848083524) (-1.256938143978576 4.670494094628618 -1.431361848038506) (4.671570766438971 33.38594120946788 -5.730112510806687) (-0.02487105570887882 6.274145611252671 -23.61763720524182) (-0.5351931484947584 0.6332735297039256 -0.7675568029780185) (-0.7194054982858736 4.35282997024227 0.3753767270915479) (-0.0005869427129030451 -0.001863494099182096 -0.002119702273015229) (0.2821868679195776 0.003858201548172152 -0.4982980937414918) (-0.04237501083652086 -0.1715643722943749 -0.2603581213155195) (0.00877043464938727 -0.005574316395994408 -0.003057630573750659) (0.03449758873999517 0.02303406307497611 0.01246046643002865) (0.06979150048546411 -0.0155571871964404 -0.0230390227880462) (-0.07383443478709371 -0.1417479035143787 -0.1991537060065302) (-0.07934168828417859 -0.2711488920252888 0.2506759302761262) (0.01556317202325652 -0.00200689066132239 -0.003333575660710337) (-0.1541133326107077 0.02267610338724762 -0.004575261781410468) (0.963406508090225 0.4702427209970907 -2.072219932006729) (0.5054607962600972 -0.05886629343907488 -0.01836081470235873) (-1.636109692106831 -1.080408346401535 -3.717276896425955) (1.50093423786733 9.469250756465639 -3.855437363674769) (-0.4640220655343577 -2.894322036566781 -0.01052553250329757) (0.01128766260528135 -0.02300343446010044 -0.03880002081606083) (-1.901351025546985 -5.615964727785304 -7.980001540248812) (-0.2816576282005334 -38.64018954923637 10.07926062247718) (-0.7122920249677818 -0.9303394747240646 0.04723502440455224) (-0.9665643652794951 -2.232182703717433 -4.7604645357263) (0.2342846988183465 -0.2606218205466312 -0.7479523325704871) (-0.6293837573172354 0.5955486489126597 -0.5879002460217428) (-0.3050016506714965 -0.2808604128221291 0.1105862028449385) (1.975725132305244 -1.5152773076787 0.09191923572684013) (-2.840423757649259 -7.449172948994098 6.752283753544648) (-5.480072743072563 1.764033987942221 -0.7737152636101415) (-0.07433079425831954 -0.004058565662870137 -6.120987129091919) (1.395834494700556 -13.49710084419389 1.567480927519255) (3.443468726373358 -5.598742067846445 34.7270587922914) (-3.093246874717181 -5.333158067121233 -3.774924805944948) (-1.431812354685377 -0.667482328888382 -0.1165876793877902) (-0.4325878636199071 -0.08283060133876292 -0.1969665605593926) (-0.4440649567806967 1.776236374045995 0.0448471907515271) (-0.04858464758989114 -0.6274368580282293 -0.7031926181757524) (0.1367104980143296 0.006241965295468315 0.05175870144902137) (0.6116060186646537 -0.008577428344351573 -5.221277873113377) (-3.761463303910213 -6.12026742578191 1.890333270516448) (1.729175042753493 -1.535383528165619 -2.60816507169752) (0.03116050553952147 0.004295443343523058 -0.01121588420967042) (0.04151597845553837 -0.03848555818372914 -0.08252226164719084) (-0.9914074454747495 0.1099215165855021 -1.176398795771016) (-0.0664821452461377 0.06602296616003009 -0.07327179876184059) (0.2358727501516642 -0.1008027927039019 0.1073416047324218) (-0.03599736875293447 0.07761884877696978 -0.1157606664769033) (0.005082274235460149 -0.2640287580302307 -1.117432091600638) (-0.393430364509878 -5.956939036283615 -2.947654116276776) (0.1630634194080874 0.0656438718548898 0.03590546129280109) (-0.05640797823073879 -0.09250192482432301 -0.2616482287119797) (0.06506379055120588 -0.06103121253210726 0.03986143422968367) (0.01515496503837334 0.02824393152949321 0.007829223494963736) (0.2015553925612339 0.148929865323457 -27.76968754230214) (-0.03770712354699206 -0.5547850804691199 -11.89872463193812) (-0.1534835580846389 -0.5404700079149102 -2.013168738461355) (0.2525862074501175 -2.669264294682551 -16.89668327431251) (0.1345969668082918 -0.01309513510640003 -0.03626801324911727) (1.697754868879485 -6.20707152418209 0.8104179671926874) (6.462763498588988 -0.8653488855548892 -14.79460491092297) (-1.407407411468705 4.247492248413286 3.39860298055519) (-0.7797280435582482 -2.021500231607911 2.074548433568623) (-1.16990597121853 -2.835014752887954 -0.01715456483706101) (0.1180817561000408 -8.135917943825174 -3.742229707976433) (2.539569975310965 -0.464017705187014 -32.22189484780961) (2.6311261228957 36.26027808332209 -6.437108913639747) (-2.302304234822133 11.64511698201859 0.6739275584391242) (0.2333893404067906 5.749400259900714 -1.63854446267646) (0.02033816468426757 -0.1430306943858778 -0.07114334491096076) (1.072726120772947 6.665428390451306 -1.370404702613435) (1.030556819153663 8.897040555203418 -4.815958142491926) (1.110685020008229 -8.868814047281742 -2.008008111415676) (-0.5506449102919776 -0.7757912802612855 -0.7623362480613837) (-0.4009969821970363 8.136939351476364 7.542683961549017) (0.9931636002229912 0.0784004354244684 -1.226789119729882) (1.925989301344068 32.85723394425037 0.373450604248089) (0.0967622608635581 7.191138276587145 1.761578457762711) (-0.161002516535222 -0.5021321374092803 -2.458704694718721) (0.4224216126406246 -1.014002216441001 -17.21914233113356) (1.583040548923622 -1.444150602713053 1.028458041025634) (-0.1434195809382743 7.838027784024581 -28.73669991728006) (-2.079763318696206 -38.18188232396221 3.454819516024231) (-1.599307277223946 -4.449319140835655 -0.6581238050623379) (1.611873036247109 0.9397369601582489 -3.21600989139111) (0.739370773628295 3.854959578575503 -0.07646886226314809) (-3.206047902953146 0.6653467707383001 -3.540809405596069) (1.743339581508633 6.128910918880742 -2.671914444308118) (1.598749960701501 3.126912504085432 -3.588382780506377) (2.330933427592096 -0.9571248937252776 -1.542860447616011) (5.10994489794872 8.071976348838747 17.34114024119946) (0.5841251064389503 3.358821080162582 -0.06541673340909604) (5.33656270921843 -1.085710815487497 -2.844756241323356) (-2.410667538904199 0.6297932860759186 -4.721368410291533) (1.4391614467325 1.237503922003035 0.2824105824800084) (0.4439535765481832 -0.01900066290152269 -0.6427645054841498) (0.006960816688797536 0.004888527428737985 0.01447606416609815) (-2.421066525214783 13.00123568125982 1.080064187426935) (-2.47174793355672 12.80527416233103 -3.373595685917176) (1.125792753794273 6.52507189256992 0.2662336643866042) (2.126311376186897 42.53728005595736 -5.206090907773254) (-4.176869418017024 -1.23916947412408 4.104598231005969) (-0.04895811271275519 -3.119173841373269 -0.2097795052825283) (-0.6480657954468587 -5.602234904720108 5.349204880841329) (-0.3536091249731753 -0.9786663389208953 0.3612776921031206) (2.851277772802004 -8.188711680828257 -1.91563942932646) (0.1195541103044071 -0.2615504721341445 -0.08147733597096782) (-0.004356477269133657 -0.5861333851281694 -0.3380490170519128) (-0.1535775182015317 0.1404942610563554 -0.9777295313462282) (-0.124800439508907 -0.2227186276935603 -0.135211164628564) (0.6161460955243567 -0.302336030570392 -0.3073487551727761) (-1.407381049542634 -2.154711599654172 -0.5750933847161558) (-1.111537600100526 -36.78667230355589 2.168281014584422) (-0.02670244802518111 -0.248951768803317 0.01947048903060028) (0.3542606262352997 -1.343866827793587 0.3165661269470684) (0.4522438659030955 0.1282866109061367 -0.2465466025907567) (-0.1779484651391497 -0.01534552990154772 -4.930785741281358) (-0.0001951588375121321 -0.001269747919175695 0.007505389986314383) (-0.01027076430488359 -0.004938701434970827 0.002336460611151636) (0.02797485219365993 0.02197249768370439 -0.03804526622304175) (0.002015668161002907 -0.007820814297781817 0.01009536615777522) (0.256825727261929 -8.06771183279916 4.274111754318962) (-0.08624208028598956 -2.923722796826267 0.3612488384672062) (-0.3067534238353686 -0.3016308182909296 -0.01931729461966728) (1.141798490463989 0.2290338712608778 -0.2083820241614597) (0.06613585970750274 -0.02694467167943495 -0.01579714860306824) (0.0120392367215863 -11.32627805440472 -1.444972702814205) (0.02293070662181907 0.001668738702746957 0.01004452942081528) (-0.3935675229454205 0.3708321795518217 -0.9888623733777593) (0.2466488480690494 -2.011246712989454 -3.270274136909255) (0.02222328351093843 -0.03925136955805091 0.009383158555948973) (0.08876639718734051 -0.06135241487307599 -0.02381063325603991) (0.07766503932835456 -0.03339784750871216 0.1879259123061109) (0.09438690410385994 -0.003057846169761331 -0.2302429896041294) (-0.08822384740086683 -0.4847305773174954 -0.114563536771584) (-0.009321216763670245 -0.02618826573307032 0.005653444855191934) (-0.6770326424258268 -6.122345900389713 -2.678337220150185) (0.70268210135614 -9.254848270743464 3.995255335314065) (-0.9601657418294598 -2.491201269089387 -2.114488365826345) (-3.298937021621541 -2.883848538741707 3.13178957929331) (-0.7937143723686828 -28.94148529613252 -3.53681123932278) (-3.571296652457586 -3.29996016391173 7.813944456278224) (0.03363846880711378 -0.01520307296207462 -0.02457749509955349) (0.6790540442055536 0.756024364111228 -0.1681542148078227) (1.335903270622602 -1.910508805417697 -0.6288117683063862) (-0.06047321296198779 -0.03147343212105306 -0.0487518496839017) (-0.9981811125765661 -11.63670521872693 -4.059354582157691) (0.9387003446834707 -3.866954731128917 0.09885181219389116) (0.002895021548449406 -0.0151113779711137 0.0180181298726598) (0.1473349462659319 0.0527153538394728 -0.357075481192906) (-0.2439495288439235 0.3168223405589983 1.015479560306435) (0.280716489235392 0.140052928018373 0.4910163314811485) (2.716303495939054 -1.435172473266434 -0.02046555976775222) (6.552352479231877 11.06014903866173 -53.96379699769162) (0.6009382322533164 3.384580862664034 -7.229213209678278) (-1.438465480365801 -3.177932519023892 -2.08316838120885) (-0.03845215910234318 -0.04837390401066639 -0.3438146011816337) (-3.646551717995314 3.698798150935898 -3.494741640211056) (-0.3983177725034887 0.05031486502522974 -1.405019191869658) (0.210951026390313 -0.2259874815051059 -0.4075451801986703) (0.1119669910635166 -0.1595123313113335 -0.2026516352310775) (0.03928507686186032 -0.1175448555279236 -0.06543956221334994) (0.01875639277697526 -0.06116456470464882 -0.1973110254783567) (-2.025315713893496 1.051220112886391 -7.580930415340637) (-3.551798723311618 -6.991001544791997 4.549871531180361) (-1.983847912270514 -0.3328217925271242 -22.88669611596855) (-0.5021958448070989 1.907737075171484 -32.97622487483247) (-0.04574955947624212 -0.02983460381215349 -0.008587409621297101) (-1.55536515784651 -0.8668268771304011 -2.814946640269214) (0.07200511729211108 0.04608296579884187 0.0223568904344277) (0.02973187960801222 0.02748309515418895 -0.07610931233271054) (-0.2031040492194667 -0.6980023583931358 -1.518506425444692) (0.4838088629407455 0.005739839448725487 -0.554175122652701) (-1.781618050322485 0.4368025941339336 -23.78313196450671) (0.5893161241650051 0.6740104374109632 -1.22031418713912) (0.3266974735147403 1.581859784837411 -0.9729739444340471) (-0.5869194466592936 0.0003721171423298614 -0.08365301995939207) (2.357105265668735 0.2757118277839217 -6.205169941733213) (-0.1564282144981384 -0.08918260476952837 -0.3611294252794831) (-0.4940601060121098 1.793468542856853 0.2047143954194566) (-0.6766355958547452 6.553084503371538 -0.9986228836019188) (0.02722205480766675 -0.01103302354014114 -0.02581258973272795) (-11.29407688838067 -0.6530102388585304 -6.753538530301244) (1.107959815811908 8.097020198923445 1.918219548764231) (0.4128163859065382 0.06220389812991009 0.3728706860848662) (-1.968593573024032 12.17360095563241 -7.997619930423991) (0.002591241194459803 8.374957906890669 2.148439893699312) (-0.2670362750699928 0.1959786230464653 -1.126336854270965) (-0.8538330976114927 0.2691766532094095 -0.01845820744035563) (0.2252413657075009 -0.0269124974039932 0.07693679492232232) (0.1510132973312535 -0.04835616308432319 -0.481133688693392) (0.00267956852050754 0.01162833332680934 -5.96021368747724) (0.1443337683062204 -0.3128573218714179 -0.7461516894676268) (-0.04609938678786661 -0.01334007104741003 -0.0435528199666058) (0.08469035948717482 0.01321739175069298 0.00625306598410566) (-0.1791123355105155 -0.2473318558615377 -0.073087413591511) (0.4860644291398044 9.279203363087905 0.7864957749150312) (-1.102880251068271 -0.098206553796098 0.8576947399964903) (1.66196982047465 5.460385032698367 -2.029775814780858) (-1.76918536720101 1.546327866656683 0.2183499509739475) (1.38028045555091 31.84118981893972 0.2837976715085367) (0.7784682280015509 1.094568052009995 1.733461316661798) (-0.1316793803854408 -2.793761133363951 -1.752405374892012) (2.656771266779943 39.46938793143422 11.16010514373157) (2.203461865575195 0.8448249801749579 0.3963706289971355) (-0.2999518001531111 0.1903459612626571 -0.5770565196880135) (0.07236832160830994 2.062346861009582 -0.3430167632217689) (-0.4804697497962482 -2.184921087506787 -6.322939085164551) (-3.99093680077062 -11.82895128222006 1.853733908433174) (-0.3819668677976299 0.9148078375480448 -1.70499147534147) (0.06307560413248917 0.01489296123460785 0.02436252762302958) (0.032430290482303 0.05941665675505858 0.06420564494379871) (-0.06682117217614625 0.006840578393923177 -0.004841708165733261) (0.01047142316760549 0.07759869104011839 -0.06391494743827596) (-0.5184388340016162 1.014251088655466 -0.4841874004426341) (-0.01494611714874208 0.008933659877212136 0.03345818670263238) (2.331693214350225 -2.985555456879636 -1.214217498673102) (1.840382668064533 -32.99912973979558 1.548605605484601) (0.02800334662790084 -0.00490260238283538 -0.003716581106781885) (-0.120943597659578 0.00048964159233376 0.01132533535470439) (0.01473476865965163 -0.02570687216691514 -0.3046903543576784) (0.01687794732385486 0.009122983445111893 -0.06737035677514623) (1.41099290638529 0.1729893043789785 -2.487974198838176) (1.602466603508323 2.275844402526254 -0.01579413140394853) (0.8756076717265503 2.613013149653055 0.2520876235389589) (-0.3442893525793764 0.1227010686392912 -0.1226779179375577) (0.04903296849529204 0.005733296991317036 0.0308723553691775) (-0.2523291890925337 0.06811880193730008 -0.07990009539580765) (-0.09756618831622813 -0.09861794827208953 -0.01009426338198436) (-0.009611035672085023 -0.006369571787587644 -0.0007564817138608756) (-0.02022351102888082 -0.2008563902060715 -5.618989835728842) (-0.1089600579855287 -0.0105993233290178 0.002860999447039835) (-0.02398404198571595 0.006343198083973463 -0.0005413052978613397) (-0.1688852476420053 -0.02036515625029198 0.09150904788247284) (1.760376794529929 3.20186286169434 -5.04839416684454) (3.224685259547925 5.120202303959318 3.834372082938001) (-0.04338777597284989 0.03138874214791352 -0.03201867907791408) (0.04692192540123918 -0.6288226023642194 0.9340211880361224) (1.316562710900412 0.9480570713660824 1.256210033880603) (0.01721915524526423 1.241582256370271 -1.223693822673687) (-1.154991907023334 22.51688650264946 6.904780662455415) (2.775335066839041 4.388843416436519 -50.9594049594406) (0.8381541937320673 -0.4455534210112835 -2.652834533491076) (-0.4874994096905815 0.328768867721639 -4.779474240479479) (-0.4104449666973059 3.345393123712638 2.587338073359962) (0.02272427156399532 0.0009058583722422802 0.05567466629228142) (-0.01125895085248662 0.03066749554200632 -0.02738520122362405) (-0.007026761682991409 0.01249474583221375 -4.601181717141992) (0.04944362480355129 0.005892724330033633 0.02190910260452812) (0.04911860788386244 0.00101254095479929 -0.009358158772250182) (-0.03345109914831165 0.008092664973747492 0.007072303144807603) (0.0238938181935155 -0.03507089020279461 0.0004862680389885483) (-8.662642520414821 19.22853923184746 6.48202301007816) (2.454946802014641 -0.8479109340556636 -3.626526695865381) (-0.07156162224445302 0.007031106974915199 0.04949542398998676) (-0.0163156502135861 0.001547604912090979 0.005870138027731972) (0.2733398904806283 0.1177163809392633 0.007240000495547613) (0.004983937800255518 0.0009345087645388456 -0.003692624960456624) (-0.2549668503120477 0.04612920088105908 0.01727995925277151) (0.004075693028827693 -0.01564366486526104 -6.302278556873571) (0.0867510870826935 -0.05308358310825859 -0.06885506829127237) (0.02996904191496755 -0.2460146994705776 0.2076724073803539) (0.02660594840316805 0.006936297229986489 0.0006240530806878222) (0.4042812416841657 -0.3222274559530023 -0.1102424818799318) (-3.965124528543819 1.232260737092341 3.945712776647996) (0.03125239366843022 -0.04265562225113578 0.01584062138248642) (-0.05761916197612178 0.03349874289517674 0.05672376328354083) (-0.1133275158421711 -0.01664777714283067 0.04472243102456763) (0.02637347720858109 -0.03047774770114563 -0.03027506165235138) (1.205346912436739 -0.1572728763938093 -0.3918591829424373) (-0.6063615928811003 -7.208362824912518 -0.945494702376074) (-0.2156607301923519 0.0542715095837931 0.260828814973483) (-0.3856930273711261 -3.494131134841314 3.538472331345019) (-0.1015931192192525 -0.3469438313522611 -0.1977782597903489) (0.419412412752843 1.179281436842916 0.452350720290514) (-0.7034394314418535 -40.61250048474955 -5.846141156686834) (-0.05697212958089942 -0.1119430013694892 0.05380154337331609) (-0.2296067093604521 -0.5814632902519827 -0.2442953325587004) (-7.019234392108735 -10.49033636734865 -53.30376174867819) (-0.2562425065382001 -0.02250404920092375 -0.402096118279996) (1.036734421999402 -3.734393171128922 -1.641642493994813) (-0.1717782957080877 -0.07940102300730448 -0.2005553865771093) (-0.6253713421513128 -0.03935388816287722 0.1403625116656897) (-0.0841167965846657 -0.0487310665145987 0.03438926668188889) (-0.1607820358214793 -0.1106871473004222 0.1699885647808762) (-0.02088024462004882 0.002376139302759682 -0.01130730758819747) (0.01775955007901053 -0.04501012764955909 0.00837768162720709) (-0.05379330026695142 -0.1313151293979752 -0.09873519852268695) (-0.03970146845124431 0.07682501648325676 0.002299114883871748) (0.03293305677507295 -0.0435033484663124 0.03421944520792908) (0.01752447275019403 0.01175372028764856 0.01869321495133877) (0.04054894182320384 0.00219616861241478 -0.01713809143052741) (0.4587174058539631 0.02961580548303 -0.6867849517431693) (0.05292945248713828 -0.07231049674801462 0.158158511965269) (0.2178962740406817 0.1109766375452177 -0.1970783030767725) (0.007631395121894896 -0.1544128365062121 0.002974181963719354) (-2.719081884668619 9.214634329451872 -5.933169756190486) (0.7677097194588591 -0.1834631702603362 0.6956704275569412) (-0.01535499748693102 0.04800941679388348 -0.005170851821911458) (-0.01018084235575008 0.01907741309623606 -3.972908004306129) (0.0270473760717767 -0.03411138911383407 -0.1480520860434374) (0.3744929186501537 -0.125660620804509 -0.683381900427212) (0.00105949041913371 0.003950584089452416 0.002538358680961333) (0.4043629838996045 0.03701308322905095 -0.7055291190702221) (-0.0608569831807068 0.003880957135489742 -0.03371494410301962) (-0.1336089873015008 0.02973792146767273 0.0119706632549116) (-6.067196863663509 -5.454908949727802 -2.745722746646355) (-0.2925908535062238 0.2165800994642423 0.7269245060432021) (2.238388427377723 -8.118666969386355 -3.518878138687276) (0.416210977002987 -0.4279932384577996 -0.1399194066757478) (0.009657512695807101 0.002699075058766395 -0.007807872568937276) (-0.03953960112237596 -0.05192783755682056 -0.02554855422708638) (-0.01335414420731924 0.007678222376660167 0.0121935372878312) (-0.03652997569126226 0.02510904720898314 -0.004503639674261191) (-0.0005904470288030854 -0.0003467745887285696 0.01644323673429963) (-0.004630614226834435 -0.003190585060714034 0.04078832955509498) (-0.2037429045197438 0.06189863583778382 -0.4087068618979227) (-0.1596998219749256 51.8043591263334 -10.89725336882846) (1.985192981347196 -4.038484593780181 -8.05081700866806) (0.3239674137853527 -0.01048781292685597 -0.8593012257827777) (0.8960760348814969 -0.2823306937222937 0.5583564698457564) (4.375581721539125 -39.08368215616149 -9.025970831208227) (3.513188810255635 0.04341643471850709 -0.6271461043869762) (-0.1422796854687555 -0.2177452984532266 0.03272715249941994) (0.07719592958690547 0.03279176765872905 0.02961939835242134) (0.14200145614792 0.05518007817469807 0.1037693522878539) (0.008271850864838497 -0.09520315342877964 -0.113422504321205) (0.04976359577942782 -0.2221441369311331 -0.06702481657004691) (0.1003116180794684 -9.869131753682547 -17.59366369005808) (-1.683546714917561 3.030889604409299 0.6463572330446576) (0.1571796109577884 0.03026230580191536 0.02128657891614688) (-1.742410247257467 1.039529936067155 0.4537538882324538) (0.1143239410041892 0.09033677118113766 0.2088896262807989) (0.6058945011620721 -0.1606559766319421 0.2308511622363063) (-7.284220311450913 -9.428746773738084 -1.558277176302762) (-0.08040340188544681 -0.1609571670490846 0.2865132884970495) (-1.542010591370212 -1.206962370553761 -0.08265687279396153) (-0.02517384288540623 0.01818378088448187 0.04214108201602744) (-0.0401642655432865 0.01676010032064081 -0.01027596332012485) (-0.02106948468781989 -0.002804333028283767 -0.0241032420539962) (0.749680723132615 0.5798956676452981 -0.4724413175774811) (0.07177562246068117 -0.09002550465830123 -0.3290333367627092) (-0.0002465708875252323 -0.006584814683380366 -0.009006579980718856) (-0.1938906728029313 0.03867126798953995 -0.1012135037032965) (-0.5312954095514811 -0.1788574936072811 -0.2907152550607885) (0.2002444401645758 0.1251289813409992 0.01182246919324445) (0.0331162430871027 -0.06068138760206045 -0.07673631050440119) (1.525355988339311 -8.988851665281313 0.7098594935886471) (0.1550571104240254 0.02329186658481033 -0.06450373291266522) (-0.05953262008184845 -0.05110331774284552 0.01150686941920639) (-0.01739266786822237 0.02309615730849018 0.02345455849257316) (-0.01869459282081328 -0.01639128100954024 -0.001118441567751351) (0.04636740826950874 -0.02594678513945591 0.000202618489975985) (0.01304211644004498 0.01770941965439544 -0.02806506455612113) (0.2591976098743408 0.02480422494530828 0.0414142209025411) (0.6942224242223285 0.5504876847117758 0.187910222278259) (-0.1362633443865225 0.4687284719783711 -0.4024592171671968) (0.3308709065254526 0.002884643836056244 0.1352215937640298) (-0.01130363373768628 0.07343274283455087 -0.009501000128573646) (0.1138802170227908 0.1540138114086809 0.02578527932291622) (0.02467727268512508 0.01428735548714084 0.001335648157331691) (0.3174706844099072 10.23241829174405 -2.658569892737876) (-0.4735774465894809 3.38658004508876 -0.1721491985778738) (-6.830920480447017 -3.553097608268976 -4.062718122033823) (0.1115361553365317 0.007700579603841311 -0.02009795146153603) (0.01457360779349415 0.02900659415281603 0.02023719223545499) (-0.4944769109130862 1.500563263509739 -0.9937237884403681) (0.1302228360716095 -0.07632757720594968 0.07764780094141463) (3.547754033238353 8.227349365807703 -5.540527473008385) (0.003322151520561464 -0.09010797880884476 0.02450188875572435) (-0.3984680832553332 0.03206631254142074 0.04752253893693542) (-0.005425410015516191 -0.0360366994941107 -0.03444096058261523) (0.4188880159807752 -0.4824832319903021 0.07449048784023196) (-0.1033988503774418 0.1355727372179312 0.1610922887288329) (0.357306864475885 -1.257032847186575 0.5678370041555427) (0.009233676764731571 -0.008477841203202323 -0.04170806409853281) (-1.132333749202386 1.134588348953349 -0.7858008156747169) (0.02284996362207006 0.03810843181118068 -0.01876423297621574) (0.5139228683493676 6.467479349275255 -2.811141137537042) (-0.1982467359416653 -0.1895145984916833 -0.04222963172935897) (0.01684020455863738 -0.1054375539036601 0.2451619093019474) (0.3040981803183903 -0.3705563018481598 -0.02627202910318605) (-0.714137145593299 0.415847891668589 -0.8562148649769692) (-0.2842255534173511 -0.2723647917636453 0.1324690933596719) (-1.028544427095209 24.32359141594109 -1.926222217865145) (-1.35592319437428 2.443787024637764 3.32658153118625) (-0.03104953693334702 -0.0576804027566684 -0.06497580762399861) (-2.198125980785301 0.7614191094734679 -0.3166314293673154) (1.526692803694444 13.58972286655564 -4.171651297007283) (0.3072079949292996 -0.05582040838037296 0.032735560307436) (0.122118658530202 2.489022833178846 -1.65295264290008) (-1.398823904788227 3.189642795303351 -4.028586415395029) (0.3658059947130263 47.3805893382111 2.476769730950343) (-1.589110018302551 4.366747428545506 -4.538710067496962) (0.6559927780661474 0.1157898469275222 -0.3220330025034568) (0.415485035272267 0.2755440867348561 -1.067406518490943) (-0.09722335138945742 -0.397251888215553 0.4499078529836571) (0.7437411037108922 0.583367337792406 -0.1243164568772807) (0.1974685119589094 0.01827583096494629 -0.01567600168744324) (-0.03976313547159212 0.3961831641782789 -0.2908372878134038) (-0.01712546563558529 -0.2493896684721095 0.04631171826497277) (-0.06785061502564547 -0.0111214001954889 0.01599484370278198) (-0.1709363436539435 -0.04675301189654044 -0.006250971753004278) (0.1153272732527604 -0.1903943008666595 -0.0399181155845231) (-0.002674919124680625 -0.04744836870079171 -0.004180662261039525) (-0.3085039274054019 -0.2160120721596524 0.8249000392621395) (0.2986550905683515 -0.02096640531186914 -0.1505469093844071) (0.9238352639825264 0.040548881474986 0.0982555410913038) (2.947004580993322 -4.143452967299595 -3.858143869394242) (-0.009882905320694024 0.2316496476730188 0.02180426866008395) (1.05513939347854 -4.542771840490184 -0.607975223820113) (3.535216167096157 0.06738825497645412 -1.674887750457903) (0.4949245188557441 0.2851421243208286 0.06076649865562948) (-0.0246851139148666 -0.006572705569270858 -0.0400438727338285) (-11.21157771597811 -60.70808607754991 -7.475639019311411) (-0.1320767759429358 0.3429746722361026 -0.05959083629688611) (-4.693161631079185 -2.037527500895828 -4.201751437237003) (1.027558809249462 0.07622124146220766 0.2117972573921761) (-0.0694860429478561 -0.01150699506258535 -0.1044819385777072) (0.005477371190175148 -0.09638272613224363 -0.1644293883247519) (-0.07672671501289136 0.01454696752829912 0.009788798480559049) (0.07961283554688886 -0.077051802978798 0.04340473536277405) (-3.216819224189844 0.5452176537951203 -1.175444860331961) (0.3370564212301226 -0.2836807243175368 -0.04744284339007274) (0.009305325735550428 -0.01724542568917065 -0.01042638224977841) (0.03227928158966478 -0.003673695663956708 0.03942216496775502) (-0.1167965334158798 0.201432603305456 -0.01300381057676284) (1.939614389020096 7.261581718540716 1.60956138475244) (-0.2318695015694708 5.608469124398946 -11.26723774565362) (0.101127745188743 -0.009213440383413308 -0.09187136822973244) (1.514239648533019 17.36836046631497 3.970481761907435) (0.5258130869344873 5.541247185040929 3.349771352082489) (-0.1427239962135006 0.01490580183621455 0.01277180809870222) (-0.7521655836893417 0.464878975883729 -0.002103573249178238) (-0.6496747028307072 0.2564265533939578 -0.5920459931403598) (-0.1238264889398989 -0.02226981059792994 -0.07248159248059879) (0.05162821906342811 -0.2182923211139561 -0.2287847969149774) (0.7002551767958116 -1.237389730309579 0.6726880864957369) (0.8993151392975538 0.5103060990063046 -1.463130553280639) (-3.700671656563204 -11.40471233632679 -7.987226446911316) (1.862873901417715 -2.691880387293744 -1.177121584926429) (0.3727103030359706 -0.6136756436946911 0.5115903486989237) (0.5309235438995621 -0.5664252041327605 -0.0226009525791408) (4.364073505423105 -43.45025612967425 -2.824954524895787) (-0.1759763173992549 -0.2278207832641322 0.195100644662951) (-1.014782299570747 -0.6800351746257621 1.425665264191753) (1.484691717721263 2.659138714001059 9.416139750943922) (1.600736394604533 9.273054019179797 0.3451364138772109) (-0.4586606116581451 0.5417332314687179 -0.2864497276438261) (0.04684507012920061 -0.3414888816482044 0.136722810955259) (0.1547332120538593 -0.09141015403248948 -0.2993271875109578) (-0.1592495465171134 -0.004779782475760969 0.1414543073049877) (0.2501120538127493 0.06261395067488243 -0.07406773362233529) (-0.03464629030841751 -0.1110959735016261 -0.045159103574041) (0.8722143967226283 -4.304134348600986 1.391887638342835) (0.1715544498159214 -11.06163768903544 3.097381285631295) (-1.682751728922826 -2.304916271732699 -0.9869535830784715) (-0.07816562575482455 -0.0728139202820075 -0.02492020539206814) (0.4198907031123746 -3.211720993702611 -1.377106058551106) (0.3309984638034768 -0.9716999335650609 0.03475746373778635) (1.159784083807679 -1.376015082148666 -0.9593382785921798) (0.1805593467238558 0.09574479072219991 0.01868516184151907) (0.762271761768921 -14.10320098890865 8.231644155234198) (0.886015780066152 0.3605777729235327 -0.3521960703028135) (3.521452296324125 -0.5770975446689213 0.8628656423719647) (-4.968183577153999 -8.779981591846949 -3.761191362491562) (-0.2651434382259507 0.09873746987248777 -0.3106111432129906) (3.122990368023816 39.34496014670434 -1.549410144663911) (0.02565539134158112 1.034369758166102 -0.511303456624057) (0.03297908451233497 1.07981504446307 -0.01153284347676958) (4.141650208702273 41.52323036565739 -0.5513341857285989) (-0.5792807177800178 17.00735516360784 5.211499199374165) (3.541572723540681 8.78099590230963 -1.774855806561071) (-4.509233952782592 -8.531587970633092 2.792163776218574) (0.1233912378201638 -1.031766274148118 -0.8203287225151209) (1.257357315102879 8.224086910852801 -6.066501072702122) (-0.03214776978804121 -0.06139815889179626 -0.07461072620734477) (-1.677594482005219 1.531252114703548 -0.5627248881058544) (0.1078420119433922 9.680032893178931 4.692297043211554) (-1.008352957769721 -10.40585959161408 -8.77762303564405) (0.1320311553931253 0.8252962190918197 1.463570014422683) (-0.1050369386516277 -0.1662841095285908 -0.2860106773093994) (0.02113718665248766 0.007459711463286835 -0.008671691090902493) (-0.03987157697127532 -0.02816186471815883 -0.09810372301023632) (0.00375887454173876 0.008467841263624556 -0.02462491121216754) (-0.06426495869700902 0.004472439206000167 -0.01207577203193834) (-0.03102198552374471 -0.006683350912062935 0.006781389756961521) (-0.002860051987713025 -0.04294000340284922 0.01423599091025105) (-1.138855702252659 -1.147566519555078 1.589453908501802) (0.0241008642646142 -0.01769997538673453 -0.01106474971418019) (-0.06129202689525812 -0.004182157814417003 -0.01105091540238736) (0.22817569763445 0.6636430427569646 0.02987254701218391) (-0.1495411243352919 0.007339056054638877 -0.09487854501890182) (0.06584461904209624 -0.01857240657811949 0.1585775898178801) (0.1464014628746378 0.4068108977078246 -0.6197076104733642) (0.8641521318327953 0.5602337829210547 -0.1465781448160011) (-0.04067348937339109 -0.05158803784724466 -0.01965506372199067) (0.1547907517778252 -0.0004252273306435128 0.08185524049008336) (-0.1022015293822401 0.05269306490316744 -0.03934594648565451) (-5.059640397161375 36.66013468232318 -5.703768868305606) (0.3585098999889089 3.118340773203825 -0.4237512918016773) (-0.306600729968271 0.06773604277184961 0.02963057668843576) (-0.1053347589151985 0.05804437409813981 -0.0328934661201614) (-0.3913215327268183 0.1740101538023739 -0.4081894792332121) (-0.8053137572284317 1.747951175866301 -0.7336593515774256) (-0.4298520144289451 -0.07914116647524227 -1.533166414666539) (0.02083829212428887 -0.01426178906432232 -0.03642403187935805) (0.02307073306257434 0.007021021993517266 -0.01093811000990113) (-0.7600907177944585 -0.6399784039745452 -2.888265608161037) (0.5864107599138231 0.1102075354224494 0.3914218576166383) (-0.3625543753132434 -0.7121632742278987 0.307650935959156) (-1.35344242654501 0.3540657042371494 0.1457598198266163) (-0.622054372412982 0.4447423784229799 -0.09726926692791922) (0.07088634067581837 -0.1058229656560728 -0.07877327720521732) (-0.1399672743863845 -0.07731555007114189 -0.1137605749568989) (-0.1041751026961383 -0.05751746273712707 0.1275243680875207) (0.4278737646020934 0.3502558792147254 -0.1370128133980552) (-0.01996349270855671 -0.01694701592725576 7.941271748749667e-05) (-0.0485333169379213 -0.03330642306764799 -0.009462128586177277) (0.05769902810467899 -0.01752115669220972 -0.007865234958947347) (0.2823005226337394 0.5653411897768927 -13.4555945146934) (-2.050562253694515 -0.683051288451747 1.519638280649941) (-0.006912572370183003 -0.0119208744502266 0.03078193349227837) (-0.0004966096867824558 -0.1091887126909342 -0.09109313884720552) (-0.01639024960843667 0.02402244484232696 0.007523511845099688) (0.522210647211336 0.5381880248108849 0.5173261039116903) (0.4376257952322594 -0.2915380193405044 -0.5088610895711099) (-0.5917544231595557 -0.2547970939960679 0.5603087560639785) (-1.700046819586067 -0.5373849385668437 -0.852033237143867) (-6.104074322264371 -98.38828450235792 13.99157943584877) (0.008037719435151237 -0.0004154663667884952 -0.007561645000970981) (0.007964550591291683 0.0304496222271297 0.0374859738424736) (-1.457756058511501 0.3837467830360611 0.2240597274169128) (-0.001046941003288546 0.09885069922724048 0.01246196370061535) (-1.065332606129429 0.2818020398029062 -0.02259889050717367) (-0.1819468792088085 -0.1303563479275102 -0.01565435289009913) (-4.062455054767198 -1.678818427423217 -5.973141905795302) (0.6113200023019583 -1.871434724191882 0.1851570049204764) (-0.1523698040885929 -0.03074836885437478 -0.01389358819142206) (-0.1539876206503089 0.2809934842474729 -0.1947944239623379) (0.03761293120292817 -0.1725646244844747 0.01800799663382408) (0.02143489847437163 -0.8991604056998629 -1.388156761682285) (-0.02270631333278565 -0.06920702256966084 0.03369947992334518) (0.02823295742771332 -0.02871128880789676 0.006782813649263397) (-0.08066106147002394 -0.03722589856814881 -0.04958376790669314) (-0.0111022481003971 -0.1032458376438765 -8.582369850003296) (0.01414221690595602 -0.001879984880670934 -0.04810942383305339) (-0.04496228577465397 0.02750198929614815 -0.0888771353259247) (-0.5496663126604328 0.1169194485429503 -0.005000837940390593) (-0.0953143976415745 -0.08980590369178701 -0.06061710567841374) (-0.02881741994021826 0.03520742535850552 0.005691685464787533) (-0.4055255698126348 0.03470442701791102 0.1318770215875328) (-0.384442029048527 0.02331222591128221 0.2328331199060098) (-0.04879557866689727 0.1132425181652759 -0.02861386353380474) (0.2202390753435733 0.03624156224165161 0.03577644930378904) (1.349293119725662 -0.07453568974299768 -0.8481873309472103) (0.3065730054888536 0.1443592610571017 0.3485547389113994) (-0.1214341035387952 0.04104371513601937 0.2484411443136633) (0.08215337542203371 0.1826866385835381 -0.06258014655517655) (0.0919429772095325 -0.06063381755923593 0.01901284031429379) (0.002142438039070889 0.09594092485559003 -0.03937129122828185) (0.8355375773276004 0.09567322594519041 -0.7222943326995326) (4.343151812690069 -6.278262311624343 -4.74626986684267) (0.9480418162918443 -1.20230341797484 -0.7184333286194226) (-0.03048219872193275 -0.148178642155889 0.2476724500147391) (-7.378692574525834 7.525715134736878 11.02307688866498) (0.2436269653576981 -0.9344198993199472 -0.7374958058691848) (-0.2640765438884243 -0.7447158952782063 0.1312255886950403) (0.005300919006476511 -0.001623332509673303 0.009867230756123864) (-0.02381041143593049 0.03598061206165222 -0.1780631778461215) (-0.07075699126457935 -0.01874786459899798 -0.02553213943467818) (-0.06963999474486307 -0.08330704658453097 -0.1900557226333465) (0.09268236141443673 0.143144227864528 0.02040483505098097) (-0.08433099942429367 -0.01598123290727882 0.0782791249581517) (0.1736954831226859 0.2318269410544923 -0.3028797612664729) (-0.1601775084099865 -0.03116815984369312 0.05848571773744064) (-0.02936060581340004 -0.077147841402471 -0.04306991294286305) (-0.5093906832590137 -0.1323417528848243 -0.1082336392174197) (2.619601679125692 -0.1830484064206797 -4.746322017110923) (-0.2623463604222181 0.5599164587347962 0.03142312981049814) (1.485700062597708 8.776475924029169 -2.075777330138352) (0.1609311436936213 -0.06739050628709434 -0.03428200160361215) (-0.09436863935529791 -0.1943830631580039 -0.2619863006855436) (-2.022133899194159 -0.3778778990084646 0.5916133549606255) (0.004683298611832795 0.09105882055959655 0.09879055685891014) (0.1116910508051351 -1.030095176131145 -0.07316800984259406) (0.1051898358747068 0.5390429000328768 0.3239172146158896) (-2.512266902904202 -1.015092586462144 -1.122627130633882) (-0.6788695780127842 -56.60137605389129 9.497433438561885) (-0.3061300494508865 0.4409070795762046 -0.3266804499338031) (0.1209671394064574 0.5859323950332191 0.5000947710251054) (-1.598898112454257 1.287509186019397 -0.8883885555698158) (4.608032139264143 -4.725033590161741 -1.038886916427899) (1.337998832511708 0.7447680003491213 -2.743921255169383) (1.024288416276812 -1.394617841180971 -0.4421294215902739) (0.2339237527827831 -0.04859779225427656 -0.3314359583635437) (1.074391262865444 -8.177553991927139 -5.33302807320669) (-0.3247315467501435 0.03431069580481856 0.07894010295734516) (0.5765414745612005 -0.8259640681532969 -0.2785120940359032) (-0.05285560286394672 -0.02698890867057126 -0.1956474018118928) (0.04946445206659704 -0.01344525383586951 -0.03241143934933678) (0.04365913830424406 -0.3659166104422925 -0.2143835228209452) (-2.593659121376919 -7.477789987765354 -7.419555065107555) (-0.005866959206011546 0.221692413639476 0.05351886987989249) (-0.3608310364974663 -0.2199454885941228 0.4109543541557678) (-0.1497777630885412 4.608568707747529 -2.16066961448465) (0.3588814452882021 10.46361079514448 -2.739799557919175) (1.31723201462429 0.1914792051058396 -0.8796167600565123) (0.1794682568718112 0.1718792963531377 0.5447284095465197) (-0.4160452488741305 0.1930677980690362 -0.1765574040124659) (0.1476667814448125 0.7638449822436756 -0.4558790265476489) (0.03301196728525126 0.005497885639829586 0.009986322827803512) (0.1554817337637038 -0.08141955979375787 -0.0547149727395808) (-0.7470137544523634 0.2378242602407871 -1.113957848861495) (-8.666614166624601 9.351787690149635 -2.009129125151423) (0.04245734275951712 -0.07336218840463778 -0.03451265163084533) (0.01776325970737999 -0.01183001836451587 0.01776370286469249) (0.001675146403773753 -0.00360327560733099 -0.01191778024812806) (-0.3352906401354439 0.1254473786460791 0.1496877681035161) (-0.08181301786420803 -0.07330884252443459 -0.03113079860649112) (-0.06255805911607512 0.001559652570668433 -0.01009791163102801) (0.1641188639304056 0.03611917218865488 -0.01034012030287075) (-0.2083715766359461 -0.05475698331068123 0.08552800478538652) (-0.01446241273479944 0.001396176655885921 -0.01751253300250668) (1.618658478154042 5.761048075780733 -9.634607451050998) (-4.394597378103373 -11.42015143397691 -52.05686737032963) (1.025772317989924 -0.09448180535817463 -0.1386159305178233) (0.02720122183320723 -0.00508154796541709 0.003033736645401077) (-0.4720015469612826 -0.1382648592219282 0.08784820102787347) (-0.04761930816901263 -0.2770977906955805 -0.2755119984016999) (0.001973433276781129 -0.003491905396606342 -0.01406967969479441) (-0.06559015271295142 0.0374265410296141 0.01096068675414669) (1.681449334760107 13.19245916257944 -10.84984537520672) (-0.3765398632401596 -0.101836312727268 0.02550953981882237) (-1.496629727963131 0.7549236731875371 -1.142964144285345) (-4.470927042940152 0.3440014791155981 0.07113063445708689) (-0.4552666347666011 0.597936395041839 -0.3645590949361163) (-0.4375662929377127 -0.04707485252895031 -0.3741303765448037) (2.086513549359179 -2.774416242466053 -3.974369095217265) (1.899850167096434 1.612746467458932 0.1787149286677785) (-0.5375445745215018 -0.7414154489089041 1.962869139996865) (5.491259473629388 -1.432326404483403 -0.6547491909925978) (-1.635692834487023 -0.973453692722561 -1.724080631133748) (2.986261197622544 0.2837145057249627 -1.017401116045211) (0.4043039337065395 1.717883379235011 2.234831445045759) (-0.9859905077779759 0.354846849088144 1.091577275113735) (0.1180849149919576 0.2559085734159974 -0.8651078360647091) (-0.03659855256626859 -0.9052285251235115 0.1819310391666419) (0.3070734307146585 1.931751509644449 -5.171207083961328) (-0.2358794912126353 -0.1046916876998652 -0.02045965787638529) (-0.178979884336199 0.04306972012673092 -0.02246666969260747) (-0.01309316217149188 -0.02619094780778032 0.01957086017406356) (-0.0007488818400683134 0.01713850889702998 0.03626814704676896) (-0.3074788529226326 0.5999983522565224 -0.09827295841146239) (-1.892506209189895 -0.6930410564294355 -0.2591820572502267) (1.332763488534372 5.595256623813063 -1.32378662180389) (1.0173915507347 -0.0819923933600247 0.7452981122957825) (-0.8587540122711901 -1.0733349548473 -0.1686123471102581) (-0.08062975694527912 0.02112768738983135 0.429729265774194) (0.2141444252676267 -0.1544845758925578 -0.01913976390380931) (-0.29501874947483 0.04234318095447323 0.2539361060600096) (-2.56518383868279 0.0560102675284756 -1.076379367090171) (-0.704651711359604 -0.5247438929600363 -0.5070377749670019) (0.6445328224008205 -0.983055502038652 0.6263279191737994) (-0.1802606107392987 0.04016310239095111 0.08796535934069022) (-0.1212643354865887 0.0768505123555985 -0.1290779356191065) (0.6081538008675862 0.4443771771754611 0.1663189763395779) (0.720150713752141 -1.113820718013127 -0.7464011934046729) (1.148969268064562 -0.8065127713424378 -0.9207958108109341) (-0.09206964336925889 -0.2710726211515402 0.3147598678779848) (0.08022041841687493 -0.001213624969996115 0.04236948273724033) (-0.06305429776281202 0.1204478308964301 -0.2653938815723447) (-3.823027951480996 58.35866536304012 4.625787711810693) (-1.008163752691582 0.4856501486041584 2.09060480720379) (2.543224075142391 3.518496857790458 0.2509788700899995) (-0.5774985390680279 4.085283365172286 0.333621741407897) (0.17882274526332 -0.03143822209373319 0.06430977724922443) (0.03261510533412813 0.05786654141996547 0.04016179732210547) (-0.3570597778357666 0.6471456695098335 -0.02618880810682733) (-0.6253630754543603 1.224947872964911 -0.4863397212306144) (0.3125042731856393 0.0630163101670736 -0.1853068247168812) (-0.06994478956817904 -0.002250208080211091 0.02275755947745403) (-0.1167492080224543 0.05313068266689938 -0.4174125026623028) (-0.01394821215585165 -0.06708121884239029 0.081540422454369) (0.3929606131079809 -0.6100743597191222 0.1381354246425752) (-8.530821327253015e-05 0.006666833233401737 0.007211421927823654) (-0.8068235441743817 -0.5953869797221624 -7.810522975767276) (0.02990670815801399 0.006494231792505821 -0.009110052038828359) (0.006092600366417823 -0.05039341497207161 -2.010354255114599e-05) (0.01328521949258012 0.08635901466215587 0.1593395464038092) (-0.09975214552442289 0.05316232573482679 -0.072020174110926) (0.1460341249914115 0.05189432061258473 -0.08154714644972148) (0.9061100652477501 0.2596498109362893 -0.04020385658231163) (-0.01333410411581625 0.171345266012659 -0.04574055861816839) (-0.003925578371463715 -0.03784916346272049 -0.03116877756437609) (0.1316421816862487 0.08313373723215878 -0.04141601979887236) (-0.1688074596269482 -0.01642213047248849 0.05194280048036126) (-0.01453588650724409 0.004278440482827675 0.02278998114522131) (-0.1794972757104412 0.1054380073064622 0.04122890995506355) (0.5799330362127416 -0.05275323834398266 0.4305759245609131) (0.05409028043545782 0.0108012556638474 0.1742529202150823) (0.006721739381227431 0.01205315710716801 0.006892755094377735) (-0.09433537020337573 0.05568536662709611 0.02362828371141411) (0.01899878761795865 0.04071103591372839 0.04442541095522783) (0.2204547446363726 0.04232742686055484 0.03256106538979048) (0.06866031769560155 0.08523125317508021 0.2626282767541384) (0.1601279017749848 -0.08014569928879856 -0.07002728941274752) (-0.0116709227778459 0.1408279152809199 -0.09275288952394803) (0.5318854285956278 0.05118612545629278 -0.07559835860741511) (-0.02333303011417964 0.5669458419606711 1.40152597033301) (0.006286286853074301 0.6649775692787905 -0.2671304980494027) (-0.2610282909482909 -0.2346454938066105 0.153484183001823) (0.2532920804039271 0.4681585094206084 -0.01721095856412061) (-0.07284378481176158 0.0782318730550183 -0.01612094159977866) (0.6904384389835074 0.03314792180076014 0.6918137189072805) (0.05513613567730169 0.3637723034699658 0.04561566380063634) (-0.0692930936296991 0.04432876957194509 -0.3348681978350944) (2.466583603079028 0.5881457266507366 1.792575981441001) (0.04240908864844464 -0.6139455448430733 0.4248884644574583) (-0.5485494599885488 0.05969450285766986 -0.04435779888463827) (-0.1141988818008775 0.1438829232989569 0.06758901544435508) (-0.6708474173200449 0.1726695099226097 0.1910808053107652) (-0.1419747904133211 -0.020306576791251 -0.06795488087651688) (0.1210577894783657 0.2812068763389385 -0.1745891271526179) (0.3037355670347659 0.04614543254586322 0.02254397235969412) (0.03578446611661165 0.01185140457660966 -0.03325586420388141) (0.0151786192351997 0.01737290021119411 -0.01878455605107403) (-0.3005408286199023 -0.6013312759182304 -0.8419900845928435) (2.211875363547511 -1.065886835734132 -1.008312204581097) (1.042167493908805 0.1691211773203293 -0.5694452983423035) (0.05379575970653291 0.4167774979959699 0.02956415186590851) (0.04661580248786246 0.001270887457004027 -0.1497290943741865) (-1.506975813170769 -0.190883365476011 -0.3619997366611295) (-0.3800414101040536 0.1857873603543618 0.00565708607136145) (0.7039126739106325 0.2355916979714888 0.8395935953403276) (0.03323443877781915 -0.1987737027809776 -0.7852554536772303) (-0.4399302343356373 0.3220975992263007 -0.3111598431294065) (5.019606602708187 6.010475877037249 -2.404592385311848) (-3.362769735414444 -0.3316543248419233 -28.73836859649595) (-0.2998238749044266 -0.0882528261177872 -0.08583491176032595) (-0.3931159441287748 -0.2653557319700485 0.008217948876573344) (1.603496409773715 0.9097579588812925 -0.251349468586904) (2.384890342627669 1.305644572691204 -1.283240251072846) (-0.01315334793437499 0.003945864673857692 -0.1981449454170285) (0.2856109611018832 0.1100019188385617 0.1462230501834993) (-0.002671814819332236 -0.009381871623111538 0.02801441824959862) (-0.006480646535114321 -0.001204288566788142 -0.02176645517347731) (1.729291338090762 -4.055645806522066 -6.548713943038497) (-0.7013140126057825 0.6656638784432161 -2.412681309677594) (-0.1740352497510435 -0.2060344772619531 0.03419960973277453) (2.12152273515339 -0.3860264289235245 -8.45066746708785) (0.2158994900737887 0.1284194173930908 -0.2660539595814976) (-0.4262560801679924 -8.887888766475323 -5.018282523079309) (-3.321815991011656 -0.7885059705819052 -0.3723052163753436) (4.078603951028884 2.121916442293128 1.292006785969554) (-0.08620011838386578 -0.01613277902303927 -0.03078623324904999) (3.568561390563455 2.09964932444487 -1.99008647572696) (-1.28320437484228 0.5527592241760468 -0.07835940644104888) (0.06391076893680731 0.02518673688186382 0.03583357149983267) (0.1531215121615058 -7.858036646638325e-05 0.002282001664563121) (-7.182917606547269 3.807212579605137 -10.95018640187386) (-0.4485853897861619 0.8283847500680273 0.07650751566440323) (-0.04409559030755225 0.02446425412059303 0.007604388737235426) (-0.0822883482994477 0.02701468927259949 0.01602773762940288) (-0.02496126893791218 0.03540429547627762 0.03645496677314929) (0.0454130235530439 -0.001074154810884955 0.006783721602459249) (0.04489513468349168 -0.02872129974542217 0.0130522066506603) (0.9789089087952358 -0.4325439868109568 0.3512860045880012) (0.9453175166427449 0.6575294817501997 -2.673089972931015) (-5.343350452466334 4.026026677795757 -3.014964709611188) (0.7306973862605675 -2.454886964616903 0.8302345852864522) (-1.793168884251394 0.6370452955435264 -0.4441608545408365) (1.330003329024755 0.8658748638479076 -0.5953890733157039) (-2.852309988603985 0.3770341446587957 0.3916122531200212) (-0.1229979559195287 0.2650078533899565 -0.1715542935519078) (0.4166395760660349 0.8514699008254079 0.2371845719212713) (0.5327320194140377 0.1517912790508753 -0.2140799046760626) (0.06148378057682097 0.4640332551052448 -0.4310420428342519) (0.3748603372079836 -0.02250873411190471 0.04539851897991087) (-0.05237329585337128 0.06169345526302013 0.2121494608677265) (0.3118816146053329 0.009174262295011641 0.2471413617706812) (0.0985227649550606 -0.1043418173796901 -0.5396814037086456) (0.1763146421570108 0.07627088732584489 0.00410434303672854) (0.2122443968560383 -2.53012203912944 -1.026161105309331) (-0.1700272690239043 -0.05323936786523283 0.03531570510516185) (0.02951847378096753 -0.02108206400906785 -0.03542284148197035) (0.238900601673818 -0.06550265090607221 0.01392579024503475) (0.04882329125668787 0.02525031439053096 0.01281022765660583) (-7.127504249059038 -7.957264566975367 -4.639941607422873) (0.04815944409154965 0.1827013387888104 0.00621798784137945) (-0.07597558990147639 0.0120416312138899 0.1688606746646571) (-1.104252297136023 -69.04652621838726 4.787811597669584) (0.9014483639889301 -50.7707585973636 -2.342290257123326) (0.9317927844873442 -1.395497542237863 -0.7023914244044126) (1.814419666682814 -5.82830573321613 -1.733759628992531) (0.2452846720972702 -0.0474465131608295 -0.0118103095929139) (0.02278197904468271 0.1169788121440014 0.1312569639897818) (-0.6926941194895289 -0.1987835343463389 -0.2118985282511052) (0.4463061959283153 0.03521886631301818 -0.004325019275208581) (-0.007702052982112545 -0.02651329252561468 0.04387777322658017) (0.06461033658360882 -0.04842534396632522 0.1630808329199798) (7.812763478125238 10.41342198038869 -7.223556801454711) (-0.08245102235429813 0.5778649794422669 1.105045572826315) (0.07604217930105406 11.3932516659549 -0.5121137768310504) (2.852199843185547 -0.5187627498676701 0.6699730623353378) (0.4372102742106548 0.1137558880078367 0.3032854261818414) (-0.3214967920470338 0.05185329288075264 -0.1125319297121267) (-0.04101460404546865 -0.03591238670186966 0.1077606880440612) (0.3140941647825033 -0.2022337654724025 0.2527101189617662) (0.2217400055572568 0.02900560427973979 -0.05310238947189045) (-0.03373671197211467 -0.1747572548146641 0.1627955894932374) (0.083879945773932 0.06577939972044017 -0.0378533226266588) (-0.005258031228055758 0.02313639294043749 0.03650151363690035) (-0.2738643659678575 -0.1183785711928707 -0.3273254870986476) (-0.06520454631499105 -0.1410650884929962 0.152555553774187) (-3.783602549762894 -2.694434179902775 0.5439678348600097) (7.776449551083854 9.376121154433157 4.930521966618053) (-0.05369856119217142 -0.6088510542436418 1.255108148930539) (-0.01944846729372908 0.1148291387397001 -0.3313900369680989) (0.1999805391673417 0.1843741310482519 0.5402849877342383) (-0.1005697406417047 0.08998620440406527 0.09832966235329642) (0.08021605942333296 0.2873990353128347 -0.9229762916719423) (-0.009667321871111495 0.01396323077595741 0.06988593131684157) (-0.3760470913140593 -0.5073094778342897 -0.6487429666928752) (-1.737410998272707 -0.2803319809025087 0.8604752359694952) (-0.5643161256504274 1.276165067438872 0.07783386761302574) (0.2995647881936402 -0.4447085458194227 -0.08423540734662788) (-0.4147076570837947 0.008171426924458949 0.01788806942672246) (-0.1446627561036012 -0.07137775355516512 0.001097207948879395) (-0.02262090424605023 0.00451158276689833 -0.006999068042066327) (0.242950760553434 0.06249023757218969 0.0314509310754563) (-0.02751478251528003 0.1931559591564579 0.05106822487686311) (-0.07347561359344593 0.1757708721796581 0.01082513373466126) (-1.219863978005792 -0.7299509497889635 -0.1771592519882601) (-0.2486732870681493 0.1480461802213278 0.1616955158268538) (3.730620902933501 -85.27726632446084 12.5188533403703) (2.571489172920134 -4.89385708476001 -7.056165391121646) (2.889214322637556 5.184852776524941 1.238582978084011) (-0.1549784458110334 0.06727313242107688 0.1669328170571707) (-0.2320604767139682 -0.004354609505653528 -0.6444944894439936) (0.1103384674129693 -0.3640882651826534 -0.06183783724011018) (-0.1126668639915519 -0.04535100120948298 0.014470980021896) (0.09854260171155903 -0.006906952683117001 -0.03729737768387597) (-0.0312967484846164 0.02826885066925326 -0.006310238252647669) (-0.9725043285426406 0.2542669013953468 0.3009750458421793) (-0.320166823381563 -0.04256320042614732 -0.1019477509769544) (-0.1832423807338139 2.521538702046584 0.6229285894766263) (-2.249281071322919 -0.8683005995063735 0.9402010124475975) (-0.3390954540246393 0.125872882987991 -0.004013370393676267) (0.1001731575805636 -62.28362484472425 3.444043818595879) (-0.08083023380347411 0.01909671882996799 0.1560714991494138) (-0.03246963717098027 0.0451843592339301 -0.0397639427893397) (0.2459201492787222 -0.192812972780906 -0.1082802619218984) (0.263054620422415 -0.08252823391697864 0.0111796173314142) (0.07608586644813828 -0.2707670984068312 0.3783922163237199) (-0.0999124224087983 0.05967851597247029 -0.1602149574417454) (-0.5112058878570476 -0.75014127577259 -0.7796272166766075) (0.2736505888604932 -1.113553315180269 2.322351789792924) (-1.599882580086651 -0.1553491427791092 -1.434654019951979) (-0.1306148756792076 -0.03062305174379083 -0.01798626290681584) (0.06574645281480168 -0.1691569889688359 -0.06218598006863359) (0.0006934556379758483 0.1982565666170673 0.07652601174597992) (0.1453278720538472 0.084170445917683 0.03153198665102316) (-1.356152825936781 0.6182330119202277 0.3086400880844552) (-1.14228587559935 0.7460338764560013 -0.84751261029073) (-0.003995081360580938 0.07117517983435651 0.04265488808893558) (-0.224728947012599 0.08006146075078927 -0.04940074656526518) (1.427916675534032 6.335853211396696 -0.0797351385343934) (0.4888901988572837 -0.3633548876601245 -0.4864159921510801) (-1.762861671047617 7.746364709623428 -1.730325642713828) (-0.3638884291261386 -0.7630583808521302 0.1050832932250882) (0.7179942640119348 -0.35996038699009 -1.038588082882542) (0.8329592371370983 0.2219227164698458 -1.364314397475066) (-0.1432571154057024 -0.113795968266285 -0.05810378948018409) (-0.2700433342070491 0.1493021217288598 0.5745133852073924) (-0.5200582792989313 -0.003124462640278262 0.1362237579688632) (-0.06661243602704869 -0.1090603516532466 -0.5155453218269107) (0.2460402452208718 -0.2164539836018501 -0.06460460331041938) (0.03260233711125278 -0.06344259811867764 0.1386262642651293) (-0.1963830464424395 0.01042994270683021 -0.08029796755095023) (-0.06904504889660891 0.006795438648383591 -0.1347443125630787) (0.008726791913966097 0.04962252913813334 -0.01670819702789752) (-0.09553696819284532 -0.009956409215312753 -0.2749228355468873) (0.02676241984056314 -0.05756405003729494 0.02224981633505996) (0.3171217900992382 0.04427162309623032 0.02836561850211738) (1.088196095508463 2.027705747325339 -0.9712382851022249) (-0.3704648943124967 0.06784085128153776 -0.1013820914842656) (-0.484578824367306 0.04730788295987046 -0.1414931333520886) (0.3107792309952931 -0.03347432818191577 -0.5014518430515288) (-0.1251747094648795 -0.2485386750487379 -0.5188283435585074) (1.328305086165288 -0.214373700871004 0.730266380080319) (-0.100237636965598 5.126084146432656 9.192899351852695) (-1.217034666981345 -0.5821292977384676 -1.436395881978097) (1.059873885460256 -0.999521366046631 -0.4610776648395706) (0.1311120811385422 0.08595869923748702 -0.1737897258032017) (0.3446230003317574 2.440127598648969 -0.1965540798071089) (10.25413531576401 12.0746190046691 4.349207109883156) (-0.2426934434122834 0.2338536339485922 0.3147575769378617) (0.02345603811050756 -0.03301217293030766 -0.009969213570812804) (-0.02281344331816424 -0.1443157069527475 -0.01265038681595333) (-0.007755981418895958 0.09955634166700206 -0.03742414207854262) (0.1063848004573929 0.03286597409693474 -0.01027396232502313) (-0.01382983399140602 -0.0391552624013334 -0.01853486352568291) (-0.0482192068605892 0.02440253271945647 0.03811958066429279) (0.01558817623209549 -0.2085337900884202 -0.0980261721408841) (0.007771963666685299 -0.004598488384720978 -0.00654227208275438) (0.08031220014381951 0.1892431601235089 0.1462386234366204) (-0.001418805447776938 -0.0280112043111935 -0.01005035542962215) (-0.002558634529495416 0.03782725548977593 -4.814207689425876) (-0.009449347272544076 0.0005368327257113813 -0.0001905192597744724) (0.02690071477309938 0.01031884286989388 -5.815025661486645) (-0.1576526969037415 -0.08944250014599184 0.09067869282211684) (0.006146467602111138 -0.003098678947026797 0.1775615574667146) (0.2013683056590486 0.01598075644161161 0.02928368416725846) (0.8394965809206688 0.2278272857631916 0.2445807299292204) (0.06044249733848602 0.07555250120429817 0.03124901220590382) (-0.1708605549652216 0.0321503378923436 0.07441951765180974) (0.2736831180850596 -0.246726094392062 0.4876080136220998) (-0.1608526827843062 -0.006658640013912214 -0.00308375941533403) (-0.6109317552187408 -0.3208136801450149 -0.4112713564054298) (-0.03207185469745535 -0.04441917415848196 0.0488726729028836) (0.01322340996859226 0.01096531755270072 -0.0180224577714223) (-0.1731426607705286 0.8053919219326536 0.325226586091614) (-0.1126696088393888 -0.05127566897371746 0.01594765411552041) (-0.05625679164835883 0.03476006209016905 -0.120811433978295) (0.2912697228944106 -0.3098586262987084 -0.05281803261547567) (0.07783947759024262 0.06634456151027811 0.0103554409737172) (-0.1338418785972106 0.01230877618360674 0.1478341401065663) (-0.5659205220271146 -0.127563075294664 -0.2158557183801754) (0.8432693384181258 0.1036826883973592 -0.03735794364811085) (6.219372219538228 -1.606595810572362 -2.965456972436465) (-0.007992491885497 6.336023451189532 -4.074869090181471) (-1.878279930609392 6.515088497499939 3.048626009268501) (-0.5223529609826971 0.5056417551674162 -0.02009935542502676) (0.7325795947909697 0.1066203199620404 -0.6921036465275159) (-18.80379978486181 1.164927316873038 -5.964086803807202) (0.8234956689882873 1.850194193804848 1.008767221042756) (-1.206962083003868 0.6535378019414262 2.18286778092467) (-10.5237839662758 2.617983264477926 8.282343193075659) (0.3336561708539998 -0.05643084531561033 -0.107816915806619) (-0.2980283531086383 -0.08917088281170596 -0.1279090823442366) (0.7876359852446757 0.4503253119301361 0.09203001157484213) (0.2161267793761343 0.06444295053276204 -0.3968741934463818) (0.4493226408942305 0.006752276059222899 -1.030628428638352) (-0.4076352851746784 0.2230613805490114 0.2229469798077152) (-0.1069930599515069 0.1561288029793392 -0.07259389382664849) (-0.761003989375356 0.1509432906647646 -0.3027526457852232) (-0.9319522590818151 0.3365657596014048 0.3218631002673397) (0.0007872854804834017 -0.07581106180710898 0.01872153752439803) (-0.8782794595082797 -0.6837298602577208 0.003476797463261266) (-1.084393462830374 -1.02367402093265 -13.41661268565686) (1.57217036861653 5.650350765134442 3.40295975583966) (0.1606080887357492 -0.03793848500292435 -0.09135102774916506) (1.779187650579322 1.123553637666613 -1.044457984457531) (-0.1230902941964288 0.07442052955540984 0.3289857076536983) (0.1429534416415563 0.05776456334187367 0.05656218213085915) (-0.716132953049007 -0.06928825540308958 0.002302362530158142) (0.003316580008154858 0.002325673103847401 3.3964028786913e-05) (0.08563194632334853 0.1033422819778903 -0.1793364288936919) (-15.72110349579683 0.06003629951088629 1.077290614493737) (8.520251924914087 -2.507520656306943 -0.7583017323549925) (0.2364794584275846 -0.1735590449156401 0.08169286912385582) (-6.142901689044325 3.12301089386037 -1.471026802748532) (5.352189869664854 1.535353778372731 0.7500532519397192) (-1.662294193695413 3.357314157174255 -1.428991928434011) (-1.196423769154913 -0.9685965617313917 2.257783141388863) (1.168142373868311 -1.641410163577518 -1.362822005381094) (-0.8177676707857806 -4.086822280584681 -2.302301576751989) (-8.233989963776297 -1.126631090496218 -51.28289416949606) (-1.605168993364364 -11.01498327837262 7.916855566928033) (-4.873342274129797 3.691271998565967 2.151996412485081) (0.5531213906698061 -2.29282039675996 -4.904011777624133) (2.023090146489329 -2.312321964428441 0.3210195279933934) (5.064770626424688 3.06098402179482 -1.906062013203442) (3.737708001614856 -4.793070683986056 2.136111906080745) (0.04836287895178448 0.0527989880001624 0.03164357318438634) (-0.01850453617281583 0.08867273898391903 -0.2147828485753086) (0.1769841832337591 0.5530779341440698 0.07531328112967295) (0.4570917030313748 -0.5206170706084078 -27.3279500984376) (-0.2707077431464754 -0.1513861905827582 -0.1850465849720315) (1.199846944940371 8.326945987966814 7.234742156374552) (-1.159330272625636 -1.598373215243653 4.634460262004731) (0.2013342249814509 -11.42703798614997 -4.808041006605) (1.524643164088767 10.1834849579042 -0.1014765239596085) (2.362012334124981 -8.610788128437511 1.988167249328189) (-1.445106719743207 -8.282589877426656 -0.03411327174965595) (0.2193385499715438 4.466778886102684 -1.214813318667246) (-2.036028697273951 7.525187502814197 -0.002110392065048039) (3.262021219499299 8.184054351004765 -11.96441982609594) (0.586139045509979 -0.7576374176997189 -0.8652902555541413) (-0.2070705308833728 -0.5879956624354993 -0.03736247314805266) (-0.3027041723664184 -0.00436886552557848 0.1831739066026284) (0.1071503283584171 -0.1072548680071622 0.1073421942796122) (-3.187305727283994 -35.6057480621896 -1.88841304994332) (2.635819577799088 -2.565694938021641 7.200985250768333) (0.5428564229516188 0.2826373368150486 -0.2120564428253656) (1.27386156255893 -0.8461698568208396 -0.636370791023672) (3.627505107049997 -4.747626889884179 -2.743398029800005) (-3.098988172033817 100.0396481961742 11.91235598167063) (13.11726582953885 5.343679730793412 1.330494237435795) (1.417750561922091 1.802720854633973 0.6886554664770042) (-33.09394533834825 -28.81944684207228 -6.323062611162376) (0.9061162499788521 0.6002527351485019 0.05472382132839716) (2.785225348024618 -1.1528371088007 -0.2161195241922615) (0.6995940513353086 -0.451537339842114 -2.157850036664406) (1.82876381630448 0.6334082784886657 0.516826206638126) (1.333708625763008 0.4575278725395318 0.1601299924516826) (0.2987365867219657 0.5786014922983118 0.2969918644573659) (-0.02423518385696311 0.1410569147316263 -0.888240546730826) (6.002046046618537 -2.542859737187845 -1.137569220465398) (-2.516278906687529 -53.94886113114522 -3.785381957139088) (0.4161917220064731 -3.689837262712198 -4.137388540875159) (-1.528969236892878 -0.3576710401213453 -0.6951603136420775) (0.8350688757777744 1.110417749599926 -1.396585359234411) (-0.073625431492264 0.008578368655438449 -0.05354566471217093) (-0.02197272359930314 0.0119490364634616 -0.005154672832707824) (0.0455198176296234 -0.1736038957467768 -0.1717415564301627) (-0.1642398201330731 0.1869418185000726 -0.4941564557330225) (-0.07383742879313472 -0.06653372997395253 -0.01697269049911168) (-0.4515164099123424 0.5327870949974967 1.012021185871863) (-0.2350817242138055 0.121797068501667 -0.2969704007832866) (-0.2897483895164473 1.008493626964796 0.4703991325832279) (-3.564782955986541 78.08173203469718 -6.510547493000288) (0.227656526853166 -0.1210640582870797 0.04174113153458553) (2.039945198149603 1.598235543137356 -0.2007372058377415) (-0.07986908944424154 0.5584687636604907 -1.233250502213343) (0.12426201674532 0.1624076887760762 -0.03031459766672475) (0.229257874646847 0.3007023588439349 -0.1034781864682393) (0.5601569588874666 1.503318269961072 1.409176820367206) (0.2441602923296287 0.4256868337059683 -1.80712964444156) (3.028763670246702 -1.607629886848012 -2.723244121287403) (-0.2346703343951875 0.4348610197823256 -0.255768971460977) (1.913994542616574 0.2614922082025023 -3.099239401378897) (1.191778204773605 -1.211765135332206 0.2564637739154012) (0.7918998849775971 0.3468073436136693 -0.5005948218360747) (2.383628177995523 -3.718339829951037 0.9006020046041827) (2.821191630941423 -2.946634619861949 -33.57650081368891) (-0.001479020803577868 1.302122363795414 -0.8873141945655566) (-1.953256457075202 4.278575661527974 -1.197449059740179) (-0.1412534405705749 -1.597365278175075 -24.12555115800522) (0.457210266091672 0.3679490863041938 -0.07772545757401585) (0.05663883821232658 -0.245310081435 -0.1005572149598702) (0.1749905219985378 0.5311207105809861 0.1401907166327313) (-0.2225316773077856 0.08815586022581046 -0.04681689479861414) (-0.1291526066368091 0.04425547443968459 -0.07438045271939199) (0.2796745060112625 -0.1917210278380589 -0.178069746336168) (-0.3498329291806351 -0.2422565865684192 -0.01315813805150587) (-0.289743845526019 -0.03248008770019231 0.2081851498270415) (-0.1927497128368616 -0.004894872819471719 -0.06920711284770689) (-0.412919846756622 -1.086352260691718 2.456448393145786) (10.40372934853603 1.964533710188676 -2.861290160851532) (4.022534590757463 -4.202009629031274 -37.61702409672539) (2.981201505917205 -2.499671358590676 -0.5445350171042294) (0.03824700357313349 0.9224481885015007 -1.75236293937162) (2.249147974296723 -2.790867456308477 -2.008725829141714) (4.587930843869563 -5.242147837072642 -58.70232498186574) (-2.390345071019012 -1.891777437825581 -4.140244238396342) (-0.3395436673565398 -0.0001852970101140494 -0.4534080614046354) (-0.7404423889898477 -0.7115751082017865 -2.720083852523991) (2.308666073606532 2.239309624215824 -3.125291475464948) (-3.065146086550333 -0.5109626851904295 -1.282930348254776) (-7.107936608752095 2.582569348963843 3.541494541007488) (2.074026306924821 1.053127824898423 -2.709392748226066) (-0.7844370738663278 -9.339105141979676 -4.304327455277348) (0.6356110532505954 -8.272255832412826 -7.762909808653307) (-0.3323008775275685 -0.4538851566565221 0.2964795758976762) (-2.616162960445161 -9.09982010650965 -43.55943369741663) (-0.4385821193819049 -1.114862025283814 -2.354362928813487) (-9.140857929830759 5.054752523838031 -3.951932857543357) (3.105276964549527 1.085914414528716 0.2545165010820452) (0.6445924502464004 9.325026904551702 -3.685529778593675) (-0.6714284587954613 0.0738624097523751 -0.05359318510882519) (-0.06492002705909417 -0.03185345693488319 0.0689590057435007) (0.001493024185073799 0.8844438945917008 0.4249275840684252) (0.1388188106028873 -0.1752002438064054 -0.2031343392538633) (-0.1410756201253751 -0.2622813319181642 -0.1462539569367937) (-0.0003288098765369812 -0.1543336212457234 0.5526897689751071) (-3.088065594754055 -0.2601579282576501 -22.17699188426129) (-0.009107251302654662 -0.0113333774934028 -0.1240279609381521) (0.007756346546154202 -0.03293343251561047 -0.06388869517544353) (1.809083181231236 -0.2434669454966977 -0.3840233434719454) (-0.03666243111973631 -0.1067289198016954 -0.01771040719422811) (-0.1049764961468377 -0.0875484052132352 0.01445101749412274) (0.3049699131448511 0.2792729155776366 -0.2842228912627866) (0.1809990685996031 -0.1091228058682704 -0.1357157776559374) (0.1857471557506073 -0.02709942586845421 0.01878568101891818) (0.004653346552714788 4.190051974355428e-05 -0.0009831189618825184) (-0.04890841296293442 -0.2417427409224265 -0.02819825346613484) (-0.05481542055752365 0.004562277761847112 0.0008654255981584928) (-0.0166634825904385 0.02248943688256647 -0.001549854259907807) (0.0333670486756084 -0.02863593073580438 -0.04029078300596697) (-0.0814646214959132 0.0497844198954944 -0.05436480834460028) (-0.04618622101791975 -0.005446962146544106 -0.006279005137392189) (-0.06252603354511593 0.1455142015109952 -0.08227842630121235) (-0.4118586369926748 0.4074372295972171 0.6946104248318449) (0.0819148563200425 -0.1773182517784987 -0.1436447584568801) (-0.5044754253131635 1.559317292492984 -2.983836423068221) (-0.2224519073978058 -0.3514065159623123 -0.1374279220157423) (0.4177654771494806 -1.526917767723704 -1.744084469239494) (0.519458350056398 0.1870999388514599 0.003976163133111221) (-0.07616080730904221 -0.05771289123766024 0.2805862124231767) (0.04285370630084816 -0.05515493174652414 -0.04748435154144359) (0.7183399861244756 0.07620630370165715 0.09765440731501013) (-0.3475879050575203 -1.567695833651418 -1.627475582341225) (0.6625987745872943 -0.04260278369179615 -0.7356880987292103) (6.737543190860086 7.092504223226362 -4.061197361017832) (0.03590713487812144 -0.1439010806996733 0.2849987235095634) (-0.1853331121330879 -0.2134172997176138 -0.1249543393748351) (-4.066714236587019 -101.1123699062219 -2.522713480246735) (-0.2518023754667712 1.020272815220508 -0.1100025007034887) (-0.1077577623977402 -0.3098584616333031 -0.1869799685326476) (-0.6417959784237592 7.436199358985309 -1.227029822324539) (-0.2293704547257349 -0.5696091088573464 0.3657118431956659) (-0.2459207443253689 -2.164060139642956 -1.035322184488038) (0.8662879212683483 -0.384375138285534 -2.473766331913025) (0.7861973149049547 0.03892207106441098 0.1278863934113189) (0.6212907131742843 -0.1877516264796883 0.2525014510896207) (-1.019781717006044 -0.5527967110890133 0.3739125873629681) (-2.852440556218693 2.921648601644072 -46.79952643744946) (1.055320023167033 -0.01099518814242549 -0.2065072546857837) (0.8128668192640421 0.1754145589189665 -0.7088373499655475) (-0.03213119191425262 0.003462202943890415 -0.03614632031855111) (1.143430194121929 -0.461915096241967 2.120657682231538) (7.854750674124066 0.7638543475336003 4.096948671141507) (-1.147259260914279 -0.4473429503023598 0.7814169424048535) (1.518491158224311 -0.6481943188036757 -0.3180901090187481) (2.578999205817481 0.9733373922315072 -0.5369902769246062) (-3.355169358755131 -5.729068443833727 2.564012252805103) (2.246869575268872 -0.1839320369691073 -0.5539799554470187) (10.52861027997047 -60.12089382147891 2.654494746268725) (-3.730558355198773 -7.354733299967643 -6.602382269544376) (-0.9935759085826291 1.21508733035543 0.1705491978864091) (0.06401501470029347 -0.4683698619383944 0.3492328771208895) (-1.23564033689279 1.121197677674762 -0.9029188479561898) (-1.053198666754403 0.5342276794086224 -0.8711498444254445) (1.845604844786499 0.6514646530077567 -0.3378422457588052) (3.777250273865788 2.785444465846383 -10.962099046585) (-2.776432208243649 1.032788466279632 -5.436342307556167) (-2.527653060728135 -0.6254230684829206 -0.9459075962015813) (-0.0874434881533922 -0.1526861064305944 1.257410514500058) (3.586115767268458 1.506789564730959 -0.02461356664020814) (0.1071177092043809 -0.03953780406064665 0.02449929543131465) (-0.8675720588353913 -0.04124758503507803 0.5056971186886454) (2.742602200442348 -5.147889710211561 -1.486489519125767) (-29.13833234155005 -7.229420714788697 -13.5493830534646) (1.47387025995021 -5.78727642742825 2.960824366994299) (-0.8303375562291881 1.120578317888398 2.221440736795817) (-16.10656675376392 -7.03221265733862 -0.2507317023427218) (1.740945713956199 -0.4584192539726342 -0.008651726907770441) (-1.060269502729799 -0.01547025263772678 0.2978921305043963) (0.06941508220849801 -1.055446334113741 -0.8230343277776097) (-0.4529712083265 -0.02214009314904561 0.09998378642853323) (0.0212696582327484 0.9302221162575166 -0.1030472502628497) (-0.1858058646690211 -0.3421454810897284 -0.1009023958087673) (3.050604318436454 -4.593845939109476 -0.275485993117315) (-1.194890545988906 3.84856052214073 -1.154506772992141) (1.235340388073798 -2.893122574370125 -1.856741571198783) (-0.5634560046082999 1.316596905223278 -0.03483884242335811) (-7.411900231730257 13.54543104733408 0.5712419587194952) (-1.654804203456922 -0.05370160593778059 -2.567652370897666) (-2.140065197183826 0.852059312033854 0.8157244673525607) (2.375550212957521 1.803364615640049 -2.60819806854422) (-1.737055407655116 2.106838144443239 -0.7535347085080112) (-7.343737842222895 7.616262027898006 -16.8577772753348) (1.339664161165341 3.369580581657454 1.502669059955772) (-1.569555499892622 0.4265336192496172 -0.2799754409235992) (-1.939678956259663 0.4597791480676547 -0.5016810455810358) (0.002961883015579493 0.00636420774834864 -0.0004360852742323982) (-0.8270256504052254 0.01748511359536792 0.1878835593525016) (-0.0006655656264703869 -0.0006700950119212418 -0.007854133915380141) (-1.054923363825953 -0.8565305006007318 -11.17513418975332) (-4.546858048209075 -0.9054924836578884 -30.17503368417298) (3.414263725387323 -0.7913418475862311 -5.188574406436608) (4.014985658318359 5.142764536444918 -28.89552822616757) (-0.3922821630946314 -0.5616302020991577 -0.8380065390817557) (-0.06132919586224637 0.008342011962307414 0.01754254953738347) (-0.1016138167499558 -0.0199721375955042 0.004695749498894715) (0.9879951040044938 0.2378192841891373 -1.083812577926683) (0.003448024108607429 0.01798618039336197 0.01048544408924124) (-0.2085753215399927 0.3684523568687639 0.2436248493369798) (-0.1878210196521417 -0.04089383838068347 0.02274607101670872) (0.01519757605626279 0.04522163943756162 0.003778486077609524) (-0.06684262918715805 0.01828505844540831 0.1171407003238627) (0.07088370467447366 -0.1323464653742522 0.1051661152567337) (-0.03359796021729222 -0.01575169862770208 0.008009709807166679) (0.009336671796287128 -0.01441730797043615 -0.02652547927011885) (0.3605891614008941 0.06728386308752857 -0.04715434255172393) (-0.2824840927850419 -0.131999681803442 0.5109370441398676) (0.009545805506810582 0.02101977351039669 -0.0105325796417348) (0.02844217161941578 0.07292830376313737 0.01218822738239844) (-0.1634005440352445 0.1454735752165017 0.1870375033633495) (0.4131979283052518 -0.5504619239524084 0.3244102233489118) (-0.1308882461220504 0.2333861948634329 -0.2694628654879217) (-1.412098882566223 0.6563326636858413 -2.852422100203898) (0.3998046592992444 0.2034946416908963 -0.2148227650130123) (0.414989644121628 0.09408326769679567 -20.196109700612) (0.2863746375188839 0.5255271912148174 -0.01378095615710961) (-0.2146899867490395 0.04344610667451036 -0.2163823358896285) (0.004760723780255927 0.05738678045070603 -0.06244579567309873) (1.391415856518667 0.4702685486143344 -0.2920239734865165) (-1.816305334694293 -0.7615332695291994 -1.206577987534607) (0.7581781967693955 7.620970407984959 -0.4474776163502188) (2.827536229996856 -1.651370870388062 -2.909069059948002) (-0.5485587259112984 0.3421938659119638 -0.7953474996608245) (-0.003356077582608343 -0.002372361862665793 -6.103419255016537) (-0.0191627675582625 0.01322153051300416 -0.08719396088572917) (-0.00964435744612701 0.003793024334814375 0.002807269062145913) (0.09266485170556221 0.1414412593688467 -0.07134415441494311) (-0.006748320712378379 0.02136814422264827 -5.644545950370065) (-3.759213384754886 -6.909292199596699 -32.68656637832231) (1.270835538298077 -6.738969179424243 -2.487051575666621) (1.042152019868682 -4.819700135490436 -3.021886959162717) (-1.791212038887064 -8.854107730248243 -1.87951038308671) (0.0120378368485781 -0.01100611228250883 -5.883854900121464) (0.7730681158046734 -10.94916144622297 -1.462224703310698) (0.0289627902619493 0.05289639087518931 -4.732843332255009) (-0.01572283598331425 0.0141662817293319 0.006570758657717492) (-0.1812927789528542 0.0405961610366382 -0.1078654647020842) (-0.0611857091646811 -0.1480060704198628 0.01234847681108384) (-0.6634053296210913 7.854892920936528 -7.028441416407194) (-0.5102399749031346 67.0379019100951 -0.01386700878478309) (-1.071825374186247 -0.5535680315354559 -0.1443284416613342) (-0.1212935231074753 -0.3820077411786291 0.4713105443284862) (7.482960688973978 6.153254313726466 -2.477863067729279) (-3.775629680300058 -3.618444248750508 -3.698602157022806) (-2.637812557644454 -0.6499967646309222 0.5546170577253613) (1.568324492494488 1.137866168013097 -2.535263422107628) (-1.049651863225419 0.9444662604060254 -1.960504488764165) (-2.735529951842805 4.344368066204561 -5.810586371674997) (-0.8330724378297238 5.152150521531314 0.2239200832739873) (0.009798441885850932 0.009458870528627428 0.01169001180705338) (-0.2914455988722558 -0.6453421677056455 0.9001238118683415) (-0.5585294477979637 -0.4454325800109199 0.4619942270334064) (-0.4140169847238162 0.0714296466255136 -0.3012590527265052) (-0.05749152441295642 -0.08368803402438799 0.09048688578761803) (-0.2483606507040761 0.07244752023216218 0.0261236797621725) (0.005796512891302391 0.01131071810949559 0.01380301173321888) (-0.1842478062201761 0.2099545421171967 -0.1282150926310712) (8.197964648292526 -6.312994687049053 10.55004095271073) (-2.124327378430419 1.412280491245392 -1.068946155522251) (-1.057744478146613 -5.760533609519348 -0.9166626696229341) (-1.722922705468702 -2.682166959469979 1.63442063780315) (1.273141552175248 -3.190628571667717 -4.736975912326185) (-6.253675666325099 -38.08967469508279 2.847693578249532) (0.6887029645209413 0.4755433375106343 -0.4565672275142317) (0.3065368612509473 -2.374496905659815 -0.1598596512240503) (4.07589876949355 11.29332001112928 1.219773058184644) (0.01675868815699224 0.04470662676753786 0.009975739892774366) (0.09016711237969488 -0.2384118947486027 -0.03361159069393292) (0.3542426291308298 -0.0196655145202152 -0.1630989404620153) (0.1923297732110394 0.0462347949190855 -0.2496620643991734) (0.01953534459870689 -0.1072612172917174 0.01952159687545764) (-1.210231929384489 -0.4812059152578803 -0.0329745515265602) (0.8479686630821052 -42.55379286763267 0.9215167178060986) (-0.6546620522061843 -0.5169739103880682 0.3064507539333602) (-0.3298596899415918 -0.02814008096646303 -0.04593578646908669) (-6.874223971963948 63.8499668620341 -10.90381637617238) (-1.081484346366185 1.031106952456515 1.014706561615573) (-0.01045117132424313 0.004942627943416015 -0.001341363972872344) (-0.0002475775265569493 0.03050861837043849 0.0002664119411100504) (0.05496397231307928 -0.03969028989440837 -0.03022732212226058) (-1.345617241230678 -0.1596611488099188 -0.9412886848999467) (-0.03097233109963668 -0.02879983345240068 0.0328741825092544) (3.686964916220193 -0.4723836971662692 -1.273983756155367) (-1.93802034936242 -0.6709744711482244 -0.5368338837533675) (-0.01359706168558474 0.01517578262803242 0.06678385355188071) (0.0002221956541902381 0.00455148760769734 -0.01732647319776484) (-0.05476562648058458 0.0009303861396348853 0.02229025991771868) (-0.7268443129649187 0.1230329618436303 -0.4643589125814611) (0.1303065620409254 -0.03349414773545194 0.001260896043898646) (-0.1180295183319787 0.2883107874114916 0.3314107424037285) (0.8362885574461586 0.1346867481520193 -0.05933902134781738) (0.2917981932276186 0.1114259157860798 -0.1519973700615166) (-0.9493451865250745 0.2006825922586317 -0.01497771943903582) (0.05218334065713143 -0.1499691919205098 0.3853655182085291) (0.2661756394772524 0.06064512421746947 -0.02836081577672879) (-0.05570594878292356 -0.01412590377018692 -0.01067553087878007) (-0.05591776794505002 0.01973917491515648 -0.0123995423541824) (0.3692335380990385 -0.2874319800824938 0.3483143935707955) (0.01646015432176198 0.003830445348732475 0.02006128557902788) (-0.03357040702825859 0.1007566981110581 0.0467209392627509) (-0.002335985049753016 -0.03708571827648839 0.07317314725222972) (0.1349316715150528 -0.09689033828534249 0.2274660413435603) (0.06615898616056906 -0.02653826394774138 0.0391809858442408) (0.2689356761257666 -0.04117111444980204 0.2080298667564556) (-0.07512239534914371 -0.02080538716782471 0.02900453382856402) (0.01416184084378708 0.1350431269096047 -0.04277717864651162) (0.4496128999891766 -0.02793257107180786 -0.09850959846893764) (-0.04338908521216449 0.08197218213168708 -0.06612890461608824) (0.7916131550821588 -0.05532652719889199 0.08600828694137277) (-1.035255519493039 0.7814447426308193 -0.1344409626047254) (2.726703299133324 3.03295935885934 -1.402099138496592) (2.690288888976185 7.866420471900623 2.326358065743337) (1.81024504299583 -0.1296252636876666 -2.526764485747262) (1.691000636426381 -0.3329096633607821 0.4985284762534921) (-0.2268922792052926 -0.4272364600562781 0.01524710509216876) (-0.6656827433657848 0.6546405289685484 -0.1819437627901109) (2.103736266005969 9.881075298486071 5.966104599470651) (-0.04392758048229428 -1.075621590931199 1.441798245831608) (0.06640502940063736 -1.391526553053913 0.5607832801535348) (0.5562255256727622 -0.01081124454470594 0.1798639916810179) (-0.5867782051007856 -0.3898386623608079 -0.04887097268376724) (-0.2593910136463494 -0.1939838541100432 0.307729149331046) (-3.573200723325324 7.283442684156404 -9.905113639187949) (4.741491827667288 2.546285438235362 -43.74535178321987) (-1.284892317822438 -1.450640755764921 -0.7162980701336165) (0.01672337291892356 0.873198926691902 -0.08938619473153009) (-0.1729054103944988 0.7168066333301474 0.4824219863077087) (1.498843906639353 4.434222315878639 -27.51617591275684) (0.2849609735704348 0.2544255183949895 1.168721175138329) (-8.022318742892114 3.149741502734901 3.062642443008377) (-3.360278525119556 1.343660971990261 -2.190195815417929) (0.01617263048634854 44.5225779729063 3.088758396877557) (5.637401910713224 -5.292690696844769 -2.226053607370461) (-2.562872996159634 8.290602845090334 -4.37388575146358) (-8.387041427798327 -6.714990892234955 21.92215541861503) (-2.587391037858637 6.468214460645175 12.85748837740076) (-0.2220060282348943 -0.4475011850924993 2.329630975181657) (-0.2548053331578186 -0.164785389275804 0.1716168143187622) (-0.8605722430346768 2.173112159588603 -1.807487125035184) (-0.4767537694176501 0.2279067444562839 -0.08303382444059967) (0.9040884270249172 -0.3122571934778825 -3.749499683789633) (0.09430239851424474 -0.1268341160950057 -0.1708941952277632) (-0.008190877854638512 -0.02236808881452518 -0.02005600835722051) (-0.2570458720882455 0.2521669526488978 -1.943747706063097) (0.1318618903440444 -0.1275025605433977 -0.1218104665649036) (2.496441370472095 12.94313441742608 3.923159287464729) (0.0006075511036885209 0.04308264032022847 -0.01050357875290785) (-0.3048146340152726 -0.1969581152681797 0.190527227656214) (1.735006209041259 -22.99185077455479 4.340586941828954) (0.7027792286323382 -39.52272597891528 -1.961213970913791) (-1.861275471332565 -0.7624513464693763 -1.000414205999017) (3.533136392975662 9.672632446395129 -2.639242001372115) (-0.5649909969958198 -0.03458287249156611 0.2232540677304244) (1.445702917638734 -1.100815323230622 -49.65133250378135) (-1.827980191428821 0.9788117981111524 2.619653726316545) (0.2113348789421046 -1.147220484260991 2.68076946325088) (0.2023948083803758 0.3403277721200082 0.1474113763125158) (-0.2112760503735181 0.1082979275021492 0.3714553295280888) (5.213752468396777 -5.863762662717354 -6.914319038164405) (-0.07437157297164387 -2.31887000167948 -7.276947869298362) (-3.696576368058578 -2.412453370161364 1.6880477376062) (-0.7311704180432772 -2.833770290544044 1.60496764446187) (0.3809578750650706 -9.795341434886648 6.520894039365318) (2.15965152986541 0.2140396790932834 0.1766817808576004) (-1.575613054407715 9.554440209550172 -5.606878570837893) (0.09368968806354622 -2.326272604042289 0.4373545494788474) (0.09878189344332333 -0.3459637691119727 -1.146392913110454) (-5.30175638714127 -6.208421688664779 5.301940624890967) (3.837193998532132 -21.81628426166904 -6.106715649399525) (-2.974380318253082 36.00273857345197 2.640262335367987) (2.174466681709534 -0.24586273768557 1.803455429526152) (-4.670085884811678 13.65513798344008 8.551690732421376) (-1.165454935252474 46.37915754228193 -10.53671067111547) (-0.0821098392476132 -0.067613111343875 -0.2757930628267983) (0.2282253297849495 -0.8214280602039905 -16.95845139599533) (-0.09336107001329541 -0.07788546487608394 0.5856190722165252) (0.3231814083714923 -0.103817259941526 0.09552446389406868) (5.708545783263307 2.653543216877338 8.469472911302899) (2.126159403605776 -1.437736124821465 1.923917603838191) (1.000291847625962 1.55185508489792 0.7119236852232851) (-0.2262542258564578 -0.2421263383772049 -0.06878853247837542) (-1.632971714272512 -5.382436123985796 0.5276013851525966) (-0.629148075562584 1.030675501964773 -0.5197554723747893) (-0.004308047353145709 -0.03126363999275904 -0.09757435693211257) (0.02317192315009392 -0.01876388863952105 -0.02549170417195037) (0.08914212012243139 0.008726370314161853 -4.980533547090324) (0.008814154619083142 -0.008105621656729635 -0.07684510051026205) (-0.01027637305998519 -2.536039346259754 -3.418009680696438) (0.3258254975898217 0.2918442232754192 -0.5749153185836524) (0.01224842892374943 -0.08609991238801816 -4.964586140869995) (-0.02301980214221543 -0.01950584349393411 -5.960339944797755) (6.228268512185019e-05 0.002828746269581855 0.0008415977947528175) (-0.05635227135906941 0.02761070642092505 -0.07197607968745154) (3.123029728043817 0.5848100401186667 -0.4260255346501508) (0.5300850063782847 0.81564948295138 -7.883667415778479) (-0.2139798775850675 -0.03731466026058108 -0.03636991530680748) (-0.001319735702144763 -0.005111365282793568 -0.001651167415088061) (-0.009678121574746019 -0.01530241120388142 0.01070092151462084) (0.0501688885070916 -0.1607091260356051 0.03778053554551364) (0.02651064215023471 -0.07029463076571865 0.04982396456678724) (0.0425413638889292 0.01329118880121811 0.01603972002615522) (-1.621343116847984 2.996246882517977 -6.964441638951698) (-0.00206391647734143 -0.003040032223675776 -0.0009531599431624937) (0.00857344441092406 0.06746192911800136 -0.08496218940307554) (-0.01106823982584865 0.07749287491579364 0.04791904140500157) (-0.1576026883689278 0.06774199019866524 0.0283692286709288) (0.0244435356246934 -0.01920217642356566 -0.1562103180130719) (0.003199506251292566 0.01065139881350678 -0.001036712994084598) (-3.361210187601784 -5.845765699000459 -10.0918977098346) (-0.04223952642516047 0.4154539281044242 -0.2182214187361884) (-0.000774348100277066 0.01576271437052439 -0.2138676084817022) (0.02774218618821306 0.2218557605212529 -0.1781129846167162) (-0.0002670307006275177 -0.009198708508089931 -0.004389982207986191) (-0.2113821078208384 0.1368786724369192 -0.04545467693894928) (0.5814872223140141 0.4634805311147117 0.6017612102603458) (0.0227586807773961 0.06864240276124731 0.03255780503240219) (-0.1863682856851486 -0.04153974606135472 0.08422094020199025) (-0.001991715874898515 0.002383150733040486 -0.001495264689759236) (-0.05390197293786972 0.006667725630602896 -0.08571058007698149) (0.003799315825686941 0.002387543627478509 0.001854403391117053) (-0.01530861678237519 0.03631696324255946 0.005470520626664407) (-0.002013148989509703 -0.002266539200150262 -0.007609705885788273) (0.008333164285086632 -0.0146836342822065 -0.01825356138923854) (0.01775393746595814 0.05241884893400862 -0.07760547614353838) (-0.2335952624736612 -0.03435014225392753 0.2401981211819496) (-0.05433747626737483 -0.03806316840952192 0.1080260689061439) (0.1134338597891075 -0.03470731853372699 -0.08248376752129678) (0.5384223027440247 -0.07871595764206094 0.0119098920102873) (-0.05395159453454535 0.02205598154283718 -0.01405671074324097) (-0.4016577749926173 0.07975085792309501 -0.3400990673096869) (-1.027050606882581 -0.2089866010537059 0.4833767408646901) (0.3339013180601568 -1.429744111955491 1.866707727100841) (4.406734274152604 -0.6321290785379663 0.5200335799937181) (0.2320237730038571 -0.7793620979820368 3.681429067587083) (-0.3835602118170561 -0.7243756784573259 1.585144639701562) (4.349863738052473 1.367214237274314 1.437268763986258) (9.979961195531233 -28.62848059323582 7.49205160487654) (-1.039087573460503 -1.680669793020102 1.454765140315595) (-0.8527382980059361 0.6701899506837294 -1.947793691893675) (-0.6625368403480243 0.4076617291912644 -0.211316659044171) (3.771394560104665 4.301153678229546 2.192013741474233) (-0.185172821014997 -3.767125307499419 -1.942549934536488) (2.48993443150665 -0.6781321843373234 -0.5694492327679954) (-1.173104842777358 -0.2530291761363394 -0.1192030438008621) (0.4961363714483113 -0.5662020327551409 -0.4305406754771276) (1.210911761100521 0.5658193430890953 0.2495217290762744) (-0.7450899447030166 0.1295260691517775 -0.1416595572782023) (1.47154698727921 -0.3403533180930121 -0.3188595074496704) (-0.01246659298096298 0.04339707375121574 -0.01361566323927798) (-4.246962832529918 2.125732501156039 -1.333609329359159) (0.1038908355466927 -0.05387370745888174 -0.2551208680735139) (-16.4958694729675 9.779824148689663 8.554955147853994) (1.863844063087056 7.064250376843286 6.977499351901911) (0.06540766893960914 0.5981981766938037 0.5851134846988901) (-1.71503566139265 -0.1766833065852993 1.826823849542793) (0.6304153092533747 0.1626127528948879 -0.7226712863151051) (-0.3884221912688762 -0.01037465006749844 -0.1381009523057351) (1.257464200769512 -0.1626770917892798 -0.5538679166210358) (-0.9641772160299662 -0.6761776967531482 1.643391740466535) (-1.616532507135445 10.25197938663847 2.961414822414272) (-0.1934445467243509 0.06791003386898886 -0.003641812447418076) (0.1600711542725367 -0.1224600813291978 -0.1341983496140691) (-1.827576573067905 -0.4757372162322814 -0.6410927454770671) (-10.02394636562573 -0.2597962961224877 10.93127530464809) (0.05739789536462053 -0.1096750767557634 -0.3215939153774832) (0.271166860587545 0.8232737595046029 -0.8837440351261446) (-0.1000180035185638 -0.3266345156253249 -0.03343022692289924) (-1.52927955545566 -4.414350897938738 -3.214741499337709) (-1.349703873711767 1.655618144133308 -0.5241886158082836) (1.072573704328176 0.906948027370254 -1.104501846139293) (-1.600108539983169 0.3708876041394213 0.4428623076808262) (-1.015593018970504 -3.506484595714392 1.777734936628864) (0.01494384194218285 0.06543790531255006 0.001336366596722149) (0.113032856369455 0.04098740424543705 0.0730534472085551) (-0.01664500240389102 0.004611538729357638 -0.008304225758697575) (-0.04594105644644676 -0.01173649168879441 0.1306341678807306) (0.02787754612548477 -0.02135332169868785 -3.456291949541974) (8.91579545188501 -13.5980531412653 -0.4695514169612156) (-3.338813959459548 -5.956842712481833 -15.47721993204025) (-3.35534089628094 -43.19294663477003 -5.084434234831113) (-1.222250272142151 1.209355766330498 -0.5022888407134274) (-4.515923804306624 7.957453325316382 -5.084417657692936) (0.6190310321221487 1.370326793379644 2.117746275472079) (-5.941673295431154 -3.216122740465565 0.836012517409469) (-0.02838429949829199 -0.7419756792591959 -0.2512600060380926) (-2.742028401657604 2.181789443312252 -4.022026548540095) (4.335962045571183 4.194474346079311 -1.976977879851874) (0.0798516322886256 0.06885355466445364 -0.001243060717747255) (-0.6565547927593072 -0.09506525208397681 0.04647333676972859) (1.466053244841806 -0.2302606735735336 -0.6690467477088727) (2.369945307011031 0.5245801605519194 -6.961852602588735) (2.627201093073698 1.024615968920733 -3.248334276152832) (2.26917828123104 8.893602934461056 -6.742265554975717) (-4.843051021562993 6.132633963323837 -5.238917054787189) (-2.532205131504679 0.5741019386236406 0.5515990256979921) (-1.418026733036231 -2.375213956085299 -0.7849340216532282) (-0.1789573462254569 -0.08432230388734574 0.0311175915601552) (4.573004474680314 -4.342673939150025 -2.036619097518747) (1.38422319000237 0.1610817980324625 0.501348339577451) (1.548993154227868 -1.061177426674698 -0.7037218087776401) (1.453558353374342 0.1289541659241809 -1.087600155453024) (0.1710337443550857 -0.1462891937372994 -0.6030026087119063) (-2.918569160535993 1.727363304857149 -0.3294492889520041) (0.01103280980833438 -0.01608982775438863 -0.02591312231801804) (1.647613266240927 0.03230495572318393 1.365630616986902) (-1.226871534702331 -0.009199993063564949 0.1340473559818102) (1.041003705642632 -1.616566871819241 0.3453855740991948) (0.1435191690228048 0.08913459352980446 -0.07175252657148568) (-0.331919272853738 0.3501781147711014 -0.2211894812327648) (-0.6295552066890926 -2.217121156484907 1.259294102329123) (0.3708998421872762 0.1455963122477471 -0.715794289747826) (-0.4713787578383767 0.08396701024291842 -0.223149706412884) (0.4458754492821154 -0.04278459950526751 0.07630256724660436) (1.653745736078681 0.168368287319454 -0.240261889769721) (-1.103496380269752 -0.4649821147582507 -0.04595625893674316) (-0.1001008876205078 -0.0366121870489514 0.06693870498945773) (0.1208373383294472 -0.2679005261595655 -0.04051023518345506) (-0.7434103539857144 -2.02889947398469 1.24022724704431) (-4.277702250715901 0.6833674588573295 -1.218037453854787) (-1.539524224433223 -0.7077587465194165 -0.5483746072665581) (0.3752658098952888 0.1567877442742896 -0.02725207669414111) (0.4764786800690697 -0.4121343072955145 0.04239115846373489) (0.05150798930868694 -0.2098087655673058 0.03005501570492979) (0.1779245590487693 -0.1007682607850863 -0.3859573346400074) (0.1685552882723532 -0.01225266983947036 -0.1526042994061936) (0.2663092695536698 -0.007121057721044502 -0.0973509061527586) (-0.8676407277193611 -0.06083993979751245 0.1243960425480856) (0.1996677520328683 2.388269239873362 -1.933524574804127) (-1.341919575688617 -2.219310679100279 -0.2041403604526547) (0.8381667691817341 -0.5940764074030733 -0.6294788604376899) (0.0801730311821402 0.2503095811615919 0.2830326847436173) (-0.5987945492203424 -0.125453295449056 0.07590904164790015) (-0.8079146846832786 -0.2409748589476452 -0.005465928411994857) (-0.2872996400205592 -0.2636954884109898 2.80734325898918) (1.08877048119236 1.18756130716976 -3.43532275472368) (-0.07140728649441441 -0.5420842286470474 3.734670490516346) (0.3595526573847986 -1.906394422925655 -1.298325304408575) (0.6268237198351609 -0.6369384154044699 0.907587119164936) (0.143377400548152 -2.67674908293352 -0.3199721141325602) (-7.578923060254406 -8.488085139043115 -5.212076753205185) (-3.560720705767274 -39.31726201700802 0.4245872954518917) (-2.271186466051012 -47.19683246637778 1.89761535974666) (0.002147000685290279 -2.679860668884072 -0.7971708174508312) (2.317273247755813 4.787507426209866 -1.327058552218229) (0.07098173053392987 0.001967620184236811 0.01105557526443877) (0.01990674842631268 -0.007657470338055692 0.001825546281518368) (-0.3076984042924187 -0.9125248668757424 0.1478599439207124) (-0.06086682839196106 -0.7297359381298901 0.1106198076255944) (-0.4472628481427438 0.9308871498777567 -0.06237532372889593) (0.0625615378225732 -0.08774655297247162 -0.02273434240600774) (-0.1531604166012021 -3.058179333430515 -2.939141284397304) (2.374226234452764 -0.0792010181607844 -14.08701640538686) (0.3583146790251892 0.3371161783132425 -1.390482845116856) (-1.257549490352002 -0.1720661151650247 -1.770928902615285) (-0.0007783254586793688 -0.001125785719721287 0.0008170896242848484) (-0.4422120934964719 -1.181037484783314 -0.8563911967268081) (-2.252185100421357 -0.7546129852114196 -0.1804659352994951) (0.3035030546694349 -0.08639319631416112 -0.03163212352130321) (0.6428351750571655 0.03885690502751701 -0.3958901403360134) (-0.1947101408281613 -0.1306562122093645 0.1403185596400035) (-0.3408817297637291 -0.5059285712531423 -0.7683245612922182) (0.3297532226586521 0.3694802647671676 -0.03304503876859036) (1.38121535953074 0.4076967141800736 -1.161456284602197) (-0.6510738775318473 0.792241312344192 -0.7547525383327667) (-0.6579105200327889 -0.1981299969914562 -0.01547583848814425) (0.03608203895285469 0.3035582939823623 0.5787225278340145) (1.396816621102655 0.6873619648593368 0.6567414034607091) (-2.677109718698209 0.1012307272276273 -1.463144930249045) (1.321418347647117 0.651153086778067 -2.045241757279431) (0.1699827877152897 0.1342452832288437 0.009194700682900014) (-0.1536065009283562 0.02025283169952603 0.0836515013224147) (0.0352235821917849 0.02721290432100096 -0.004556684354721204) (0.3517435542168513 0.9170410503234931 1.858758989746594) (4.411355297085503 1.115500771128439 0.8827142435379367) (0.3413538940011283 0.2137060048671762 -0.943127726637617) (-0.639736942493886 -0.337081856508505 -0.1566078340960398) (-0.1164620612318468 -0.1755822536712602 -0.005611512427256965) (-0.6969745146576617 0.08340300990644089 -0.1671174745143279) (3.216428138183058 0.1981723929358327 1.242662071509189) (-2.374252042976743 -3.00610740992565 -0.6713660505216674) (-5.898791271759114 4.2409708931745 -0.646028146676572) (-0.4968326643383625 -0.1276000022942714 0.2201605043836549) (0.005333683416137051 -0.006928192714406754 -0.02715166596508585) (0.1044265134243371 8.70306957072807 0.4615200182289509) (-3.537762816463964 -1.583744974666852 0.6326032902314616) (0.09920234414646692 0.3353970516269237 -0.3752248156756243) (0.5871210422561337 -0.3539777207571586 -0.4452647490078444) (0.09612920229834279 0.6211480158985557 -0.6069781973439017) (1.427697045675098 -6.49696070130786 -3.374737447500161) (-0.3126653292893 -0.8014719403394707 -0.0152965041647964) (-0.5392530320216335 -0.1318048264565357 -0.6229540294901701) (0.6021159435294479 0.2071215576570509 -3.360049594951612) (-0.3495135000601052 -0.1780886016603304 -0.3248674399238719) (-0.948090358778254 0.2565716767088881 -0.7278835256839166) (-0.31117258654034 0.7123462908806473 0.9969047518021584) (-2.460079751563095 -0.5312912761689935 0.6567100869654418) (0.5147151044280971 -2.186649865952159 0.2729061938639688) (4.749427193092751 1.609022892682004 -0.1314477961577792) (0.205502134213645 0.1611263314475959 0.5344734280206136) (-0.5631650649585007 -0.3854217383301751 -0.3147783507940888) (4.24405281836068 0.2823810624925162 -0.9765971555150732) (0.0813809190529222 -0.1657805345307501 0.1682108513284694) (-0.1142250656702257 0.1375063659499823 -0.05736136228342542) (0.8544161645171253 -0.4658108192561974 -3.041485861229308) (0.8309096809525229 -0.2300682542946216 -0.1117060704677459) (0.708967061508694 0.493761536101076 -1.025877617596579) (0.1078726176426723 1.481642728916669 0.3415546902847755) (0.3185852993813995 5.180941320817606 -3.626846918247822) (-0.3013247181125212 0.01764688562979551 0.01900476679036874) (-1.205993510241836 -1.443004291919914 0.09397460346305267) (0.1765422388354955 -0.4921036125891548 -2.065909652548134) (-0.01713720886318062 -0.0166016584674994 -0.00471914431154706) (-0.0529454352927106 -0.04400237672919099 -6.914828079183946) (6.942091069577484 -6.989592517310689 -0.9815612576575463) (-8.291491217335713 -7.533844810278061 -1.893023064995397) (-0.004008806984670849 -0.01911941688552045 0.1554769935699039) (1.532064558512825 1.507875745478676 -1.432499273678583) (1.25709167720583 -0.4053788049417409 1.673235602202816) (0.0001409185958153539 0.07584163854550222 -5.823709667806457) (-1.689196877805466 37.37435883832398 2.270247973917347) (-2.767036833897173 3.874389176832754 -0.06186673692213551) (0.3837624658163837 37.79743051964614 -5.096105621282463) (1.479301597042059 -0.6060566842065712 -0.2492817249845239) (0.8760403653370563 2.439448394204613 -0.7900013703903264) (0.3595601837823179 4.044313525407204 -29.01469732806677) (1.647479358489642 3.175514480453046 -0.6160445236086358) (0.04760597624415085 0.1546425895438699 0.1922312642377993) (-0.5088163753219658 -1.573259716009854 -2.217264216201223) (0.7492839882351667 -1.98385052199187 -1.316813311200498) (-0.7786699600390818 0.3841465110592219 -0.7812565859486867) (-1.655166365236791 -1.19684242456503 -1.100542273450483) (-0.1607110069086714 0.07964142297638574 0.1024752117915906) (-0.7218084107101944 0.1473271496909172 0.03079597485986374) (-0.3844776958723137 -0.08756576213707951 -0.4354700797981088) (-1.905325160929525 0.5935291944270505 -0.4021573932598528) (-0.1034706971890696 0.1017413422241987 -0.1024676944382659) (0.05812556036927964 0.1022150371790579 -0.01446897432099423) (0.02466582577068709 0.04817545447746178 -0.003578512841644337) (0.02880511118447614 -0.02192063461836932 -0.01014039126096616) (0.0007428113032173847 -0.05815827619683335 -0.08303965518462708) (-0.1855404201377634 0.02009374139206134 -0.0915495309462679) (-1.137600261984853 3.821572071199073 -11.62512623195185) (-0.02698297456377369 -0.02772337403336122 -0.09374520502834434) (-0.08351394981207774 -0.126785787734556 -6.590719267022916) (0.0065725736543855 -0.004387564254892951 -0.003037901290926934) (0.12528688804146 -0.01140568768360819 0.1267428089276614) (0.005916891612224095 -0.01645891189822161 0.001382972600664502) (0.5128705290577356 40.26272194990567 -0.7461184650970307) (0.10003823327186 0.001032582632629072 -0.004203882320100966) (0.00353814096048504 0.000325306139163363 0.005290149343676563) (0.5125603685277192 0.4041868740751243 1.150054716028807) (0.01376039831048914 -0.005275610788002656 0.00667461010405409) (0.6049963394934403 0.1279042017000205 -0.1494600412626386) (-0.02982470403645756 0.01293244637689506 0.009845652862117995) (0.004333616791624488 0.02632128256854045 0.03182720681869069) (-3.568672715592406 0.7939813428742554 -2.050235027455536) (1.070745873088311 -0.2402707197431968 -2.683093873031782) (0.001043757606245481 -0.001272522397953696 -0.0008154781077848968) (1.274184785866446 -1.763189906229372 -0.8892996070999488) (0.01073947184785949 0.009202335686476916 -0.01878062776609328) (0.09944448122286731 0.001201042698225945 -0.01945344366336675) (0.05260260281414889 -0.001740376534776957 0.02694527033632006) (0.1474667328060021 -0.09984008450475575 0.09129290785530153) (0.05467543449268473 0.1026201425854425 -6.987027227383537) (-0.1467758231336149 0.1044032597327934 -0.03869482216655377) (-0.1050914447649111 0.1271443714092015 0.06080590341746823) (0.05938693681172966 -0.05730952645584028 0.01122583808753964) (-0.08521878554094917 0.01693619608454769 -0.1478698017810746) (0.8126786108732369 0.922660725736496 -0.2141070151055612) (-0.8954461999137904 0.2740846965073889 0.3563871870677019) (-0.117779705741886 -0.004973522652001565 1.260017713293336) (2.057109583272309 -1.554074490719629 -2.891786423276539) (0.3162508682615957 1.385116920173755 -0.7590852860120305) (0.006758952424420706 0.02106622493414456 0.200173237484754) (0.1188146746097616 0.0786399654213599 0.09944143405997986) (-0.0001706757783591333 -0.1308720072248786 -4.676143497934119) (-0.006741916935617301 0.00823789245674692 -0.0007659132516787195) (-0.01264782781453092 0.0121071116182219 0.03614929168177462) (-0.2625992317511103 -1.773635915235216 2.894830893646812) (0.6786848649248376 0.02582718474743545 0.04718475189798579) (-0.764615072460967 -0.5559103044454436 0.3484154630047541) (0.1002963655946715 0.04525797636576336 -0.05870552232405704) (0.1120304000060781 0.0149062211192514 0.07344500623895883) (0.01164376336825731 -0.1645405748471649 -0.3183876198198731) (2.464494978205834 -3.402827974233728 -1.332213750951606) (-0.06566977516098016 -1.815284863668517 3.72535005298676) (1.296938442722965 0.1585095295547445 0.4527149238354468) (-2.931424840055665 -6.110996491409807 -2.786068157467454) (4.270524828897544 -3.397733056107049 -0.6738389541021903) (1.273593110440841 0.2649524824342157 0.1484650870604652) (-0.1162310599424214 0.1086859321434542 0.04177916472088539) (-1.271595675306838 -0.2467420814214518 1.637070539044981) (-0.333124993383398 0.4757805914666843 0.3822422688408449) (2.463871109079165 0.6580422820694241 0.2727116886306655) (-3.187694013703498 3.296626754103333 -2.946430684345003) (0.09564069538369675 0.01660385792018615 -5.350285065993218) (-0.01476181904709798 0.05657385874914959 -6.459761840870795) (-0.1178607351958352 0.1386207365108249 -0.07033716120703026) (3.741196148468029 0.5892947218405173 -1.710118694745879) (0.1135415720633186 0.3068610850381283 -0.4189140196788158) (0.8859539545498231 0.1756141157079832 0.2810223223724196) (-0.7546327877127252 1.106606292228094 0.2382075588816619) (0.01512229179239552 -0.0917595483968817 0.3024230846934327) (0.439257238396579 1.156399876370453 1.005659989166298) (-0.0737733935694453 -0.01622682299946267 0.02365384471043087) (-0.114913962236526 -0.1022889923414993 -0.07760668291500916) (0.02159047353489821 -0.006022240000848068 0.4558240434339785) (-0.1235381542523847 -0.03428732742482985 0.01872697199084447) (-0.008401501654186074 -0.009532088522621796 -3.500609197728318e-05) (-0.01120021027719522 0.07922986907424723 0.07681386212294433) (-0.168725014267028 0.04531943727387551 0.009523076428085735) (0.04265671432707453 0.06552699793566961 0.03500463138835737) (-0.0631675811814007 -0.03558758880176344 0.24107251301934) (1.104990931340741 0.6665179534562871 -0.6083248401070104) (3.853153290261774 2.161721018772301 -0.6432901318926606) (-0.5787646407575812 0.4686983136010892 -0.3963607506208426) (2.909582855179675 7.479410056104346 -1.45259765427764) (2.385512841053134 1.83148970955761 -2.277772381698548) (0.8474902883594533 0.5304466893699858 -0.6541408972925941) (1.880228721098985 2.942839276922714 -1.08842377319582) (4.127836457210872 -2.887753478897195 2.555752570335896) (4.79384654575879 7.440337532653711 -2.676948624637754) (-0.04232483595477182 0.01811005058250785 0.01184299773313704) (-0.0926868804286663 -0.1115099274913523 0.04963873210129442) (0.112302927507607 0.02085015188641721 0.04899587558253627) (-1.09659385747184 -0.2871631578398899 0.117309929058016) (-0.8637028996859133 -1.685868425402783 2.487888221097139) (0.5351010635500242 0.2128073388943933 -0.4236778042776844) (-0.3875595575856447 0.3340916957622203 -0.168080772808598) (-0.3283972480270084 -0.293481181934544 0.2753417415785441) (3.242867339705575 13.81786603891886 9.031168060927945) (0.4862283817711373 -0.4815742166039258 -0.8070593197022355) (0.1720778955509407 0.1005135509981923 0.1321056810370022) (0.3391454914619593 -0.04417027062705738 0.0834472507278857) (5.56789382508077 -2.328825682128431 -32.41274605343737) (-0.1664499143735899 -0.04653002412297405 -0.2330798851833494) (-0.7706688172986376 -4.596312952311055 -1.627341515564992) (-0.4817635165745416 0.1159406379531888 0.2110025005026101) (-0.04449997997777848 -0.01634345973794624 0.03274902430907081) (-0.0272988047109187 -0.01229753420011117 0.01796376902477816) (-0.01589922962643496 0.06037078110596361 -0.03312936597527253) (0.42662275998667 -5.735458772914163 1.602825413842586) (0.07871417272326833 -0.01670850278372443 0.00707700698965741) (-0.252918509678473 0.03346636578634074 -0.4261304360812731) (0.06436916858405645 -0.02001668361327654 -0.007409106009642411) (4.119103590537598 -1.044669061279147 0.8269404412510055) (0.1291993402712789 -0.4896793261466814 0.1769708447665229) (0.08426787086570015 -0.05792813360549216 0.05321066524741007) (0.7660138655021234 -0.2495150095591 -0.2178816840421151) (-0.05944401045819547 0.01179003296448046 0.07722223340511222) (0.05657857116648427 0.01275127537479422 -0.04279119090788813) (-0.01193740406681474 0.08307216802261325 0.01081564476834467) (-0.2548315399978124 -0.2276656701293178 0.01204900840685057) (0.1191498925877581 -0.04772040014565478 -0.003002300047269575) (-0.2232942874139622 0.03215371650011283 -0.103731462297187) (0.08013597537347222 0.07786034341495375 0.07859662341148542) (-4.263538552284784 -3.264940362069412 4.89938882706008) (2.648719021407203 -1.220109321223888 -0.8633494665311673) (-9.119163688263683 -18.18670551385718 2.454112191706355) (0.3139020506985608 -0.07289329816133552 0.05956216241118663) (0.04777312215257872 -0.04089478269126587 -0.0963978519807982) (-0.01928896467178292 0.7743994631479306 -0.01921470103426201) (0.5811422152108568 0.1006038087757355 -0.2009829488626487) (-0.8462827100947079 0.1976972137127617 0.06682469106996124) (-0.9817635554784701 -0.3497826895373035 -0.1319246447209431) (-2.726864410975633 0.3255077630961227 -0.818880348988221) (-0.4827106201518582 0.1747766645457237 -0.3051994177922722) (-0.05083156553133323 -0.06700097307578236 -0.2783987712062744) (0.1676285126194921 0.2010487236878078 0.1133813115329988) (0.6350777248672452 -0.08324441541455917 0.2357555425543537) (-0.7424081073420723 0.3207928550633636 -0.2986460704770524) (-0.814813209106925 0.1997580025976053 0.05010681742297363) (2.130589372918923 0.6429689963639935 0.3817807315621977) (-0.2908266877143174 0.04576175742618537 0.06393217403521831) (-1.811919824301713 1.457205340112491 2.902988111436971) (0.0030985127803566 -0.04302177423092325 0.08783842687203303) (-0.223378888507174 0.04527070533225556 0.03245026218454042) (-0.06245901030445047 0.08356240155973881 -0.09705828111296493) (0.2491629650334429 -0.1930609223503227 0.1274739645456872) (-0.2978071874025469 0.002216415585353274 -0.01609482692394852) (-0.07349945861972278 0.004656124811988235 -0.00595259241297626) (-0.04440492141004235 -0.0007072321636606323 -5.160703480712251) (-0.04175547034040818 -0.01564200827384049 -0.1306110624750815) (-0.448780832841363 0.2574169709192659 -0.4245177247801273) (-0.04449114032412253 0.003676453214609181 -4.789223499543382) (-0.02324155449480016 -0.006356556462534489 -0.05079132628933795) (0.1053552904981332 -2.610282640763279 0.5044768378746778) (-9.375529238651 -1.450935420475508 -0.5808129948299201) (2.767944536379274 -0.5100708252283874 0.3498717480301708) (4.583898889895987 1.498598256485714 2.324752300546669) (1.16931521692896 0.4563133770061348 -0.2097939108907577) (0.4089158648857012 0.012345183710497 1.433786096963225) (-1.080954663964081 -1.515400414206715 -1.218686642850931) (-0.3902638218963269 1.199451751772564 -3.39724962538349) (-0.1733099771116626 0.9738094181047716 0.636697752695744) (-0.2628731135471326 0.3442963800874242 -0.7996592610207389) (0.8920286757246949 0.9048533098749648 0.7578657224433051) (0.7530682954206868 0.2568810467806734 -0.04777958260416704) (-2.659570803610973 0.3074101999140513 1.678637151526105) (-0.0371629314868123 -0.01122496606799416 -0.01467953355302576) (1.329143186492744 0.6460968501211388 1.893346051865798) (0.01515448868637769 0.02751610358482552 0.02765372041864312) (1.981109734748435 -1.279425484731618 0.2805615277246549) (0.007716743103910585 0.02033554553188339 -0.02732488279744024) (-0.2496271917663186 0.4146229779763356 0.1105661519846836) (-0.4282910989197877 -0.4361130237240055 0.4630857646790058) (-3.277303516754133 0.2511244064891528 0.7377191781639525) (-3.20876985676818 -11.45812115836203 -1.879950510228418) (-5.449548109295493 2.338017452455007 -1.973432256870163) (-0.3685997984610123 1.16442486358042 -1.422644521882172) (-0.4657712083636577 -2.176136298063073 -3.970830103173563) (0.4900936218632643 0.9023690727358953 -0.870870184880009) (-1.036342762269955 -2.331009090841164 -0.9144470801862526) (0.2614254779668548 0.1224781577579223 0.1705409543350246) (1.527939375896053 0.8391908072523819 0.3410232538477752) (2.333407219076428 -4.557003434765373 -0.04644621462298005) (0.1006569087771609 0.03901611120447865 -0.08110131238546786) (0.1929409763984117 -0.4920733427898126 0.2060929818548249) (-0.1337162692501593 0.01362925142605821 0.1661225201799807) (-4.206243513865601 -3.60028554978848 -1.53843081579297) (-0.8306546475329712 0.5934978686654686 0.5573790988185064) (-0.04490863257107764 -0.04624398360716828 -0.07732689782775473) (-0.2708170038676406 -0.006617102105870279 0.2005828831667407) (-0.0009079527062656207 0.003567406209749522 -0.01750509599328096) (0.2127012979954514 -0.07423746715073164 -0.0931246396880335) (0.1856015952514083 -0.009214576397377161 -0.1095709639438432) (-0.08681591144113411 0.165943494967327 -0.3373964541831947) (-0.0004356611096719132 0.0008113491136006838 -0.01217570908758059) (0.002182597423210212 0.002716490541426474 0.002254189211301215) (0.0005616009031023141 0.01095193785704087 -0.04484069569229718) (0.0131911012715323 0.02473281207646073 -0.03952283912313929) (-0.3324113698376439 0.3844306887353238 0.8915041241884609) (-0.001229425782240928 0.003778777357372962 -0.02041763092966134) (0.07519780176359295 0.05322300531584245 -0.02149354261488412) (0.1048736457136677 0.01833250684328404 -0.0435314718644329) (0.2600247795674472 0.005104080945819961 -0.05397284675056288) (0.01148007302848235 0.02103156151945881 0.04135801220201427) (-0.003289481444410623 -0.002294295730993067 0.01218700432415847) (0.2513053031274939 1.582918987093643 -0.4225789229147402) (0.8778850091699473 8.978238076972104 -4.247481806293954) (5.308820880824386 7.159064231719242 3.029052367297997) (-5.8226054455564 7.481279346441045 -8.33691547233232) (-1.020653780278416 60.55006271186604 5.72197487714119) (0.01160229785107939 -0.02218668310252095 -5.868398893216184) (-0.02567154330547654 0.06953175685157335 -6.330990797278783) (-0.008120367576240449 0.008781520268736203 -0.03500552260030776) (-0.4878395745260304 9.629384088803432 7.888290279473587) (-0.0246411825251107 0.003760749002154805 0.0165560617966999) (-0.01179426755382445 0.02922392586196129 -5.221538197055061) (3.482723757072982 2.989681331413007 -0.4455501397661576) (-0.08531616526801779 -0.008183942849018655 0.001808948670290734) (0.9012569844765705 4.363320336903757 -2.304864418617623) (-0.6049429408934202 0.07054148806488257 0.4675234428599559) (-0.03267188748533972 0.03448595662443343 0.004406399794835631) (-0.8463866983124274 0.0814179685405832 -0.04555994939959188) (0.2314257139499562 -0.1321460980580982 -0.3361775702431871) (0.592574816316251 0.3496184010264453 0.1464180730228003) (-0.4267550709009033 -0.2814498394934983 -0.6404272346075406) (0.10883880493292 0.01005463953086105 0.0238630667304487) (-0.01481995243234998 -0.03215283903822392 -0.004602884422504289) (0.2954041859110383 0.03115060119319954 0.008365619489638682) (-0.06938104832283899 -0.2583453652026048 -0.03201559967270248) (5.00849461006842 91.72370363100434 6.966000523282672) (-1.752782865335562 -0.9642814857717513 -3.761139556490918) (-3.596169977030322 4.151604220559293 1.360064118846227) (0.05342901719975682 -0.01531755028501531 0.04522516183590707) (7.40964222595498 8.768269718157331 11.13559848012306) (2.422117867785869 1.285289855890845 -2.05298693151546) (-0.2335982483821822 -0.1686470113233014 -0.03963494371276272) (-3.382097582248998 -3.250126379386496 -1.477249673122717) (-1.419820331561259 -29.41282945293347 -5.762144873247502) (-4.855528401571285 -6.076605052057082 -6.253879529745055) (5.194539544399113 -39.92960852798868 -2.747392774880223) (-2.439438439342911 -1.010087610791017 2.047674079177948) (-3.060035588658117 -2.70541555394101 -1.141853898654287) (0.5751618884688843 -0.1071801803150299 -0.02994669609482946) (-0.2487207195843769 -0.2281283624537867 -0.06810745834164589) (0.02342507140873547 0.03927197791387197 0.002558654448097821) (0.104810739612705 0.07318674649223897 0.06762990330846648) (0.01147732379628547 0.04248851349689882 -0.07808157320390689) (7.676397862975007 -10.54207470699068 8.29013656282503) (0.09516525212271067 -0.0277905282656245 0.1598001672818874) (-0.6969622564945294 -0.8426204549037515 1.651132346895094) (-0.1204132519826504 0.04852964948368574 -0.01366837085976292) (-0.001087586864754711 -0.0003505005469042453 0.004561235651886682) (-0.002366313417072416 0.0009775248644667551 0.0002730587075406808) (0.03415787398529854 0.01514248045670579 0.005811731163534655) (0.03055508878169801 -0.05710397964325179 -0.067841015815728) (0.3341170997196757 -0.112921881052998 -0.01439784027212296) (-0.1174675459153484 0.09720661283583325 -0.2692608529285174) (1.303220650753087 -0.7432349274758175 -0.781766839000696) (-0.02495818495499641 -0.095660156967666 0.1113140540982983) (0.7533528824907938 -0.592048210052934 0.4433049607175168) (-0.5038278908010068 -0.06000581632159655 0.2423060653399273) (0.3398785669560024 -0.4012609085243309 -0.6212133029240821) (3.4484277653981 1.368949149985704 -4.113007094251127) (0.267873667373798 -0.1557547332357458 -0.0721176280567218) (-2.582254520495326 -6.671425815542915 -11.34595959192311) (0.06571508592447381 0.07778597128876528 -0.2530035835581508) (1.101143455166783 -1.139538717577062 -1.257925262947355) (0.2442668971662226 -0.4333389981606783 -0.4961606933966611) (-1.016616124263438 1.60527608877284 -27.16519484522937) (-4.834402489358185 10.44550993283917 -34.49837340180639) (-0.8899074027895645 0.382532472090812 -0.3341994051564409) (-0.1585863512207082 0.09011021215206322 0.07688420501581629) (4.589815319469272 2.059551164749542 0.2434334718105908) (0.03456623755436691 0.002140538565907332 -0.1055888411246983) (1.369373600881021 -0.0008687322782760937 0.9309560129544104) (0.3016316039174571 -0.2400534502035976 -0.6452305866874233) (-0.02109568754677195 0.1684338233646713 -0.1326432423633519) (7.320297704734218 -1.113294607141772 4.983326844238869) (0.9631901038740212 -1.079314163409526 0.3114463221051943) (0.8446851238495224 -0.4355464394747576 0.3104888924831883) (0.6308205120903896 0.02113327153854738 -1.644017729052212) (2.748383286418657 3.796935493609507 2.73176233067814) (2.17468945706218 0.1381467563447833 0.2038294838661559) (1.649548128336523 1.415017132526968 -0.3544711821272777) (2.327002404962809 3.743176525427378 -2.560111301982217) (-0.1321069859418376 0.8615050350984612 -0.1341414038280724) (-1.950493010833237 -0.3968576335846339 0.6533909595995748) (0.0037046694592732 0.01606085130465554 0.01035101178936527) (-0.0402926660357176 -0.02611667820719615 -0.004809446028564706) (2.988042770985679 0.686936362562373 1.016539368154043) (0.01932132215435488 0.07105383904225558 0.02383082736926152) (0.82575506711414 -4.639136506164621 -4.804112533970853) (0.1498208331874374 -0.3555438044214962 -0.206996982298744) (0.6835263338926684 16.10365208030414 1.065100379910641) (-0.01927597167249041 0.1242285561963725 -0.05433047366259504) (-0.01635214794551018 -0.02304410671439185 0.005899905098658236) (6.490880315281382 -33.22200867188703 -32.72715579956093) (-5.286903077453551 5.709709356113637 -11.6790949504736) (-16.62205422270087 0.06187791513368612 -50.42505956128551) (0.0008195548963083584 -0.004203906021921853 -0.0267629112175208) (0.01172226705793591 0.01120709643457866 0.006693732346830782) (-0.1651806613938122 0.05519677388239402 -0.05241738860323848) (0.01115787093176733 0.01869221906585136 0.001226039523729128) (0.2422999134652918 0.5589875907419061 -2.840280583821586) (0.8236811970864971 -0.3672349896547282 -1.800495355785968) (0.007612911951670617 -0.03079013019253025 0.02661038814999694) (-0.01439109546152735 -0.004780411070152712 -0.006069788387774095) (0.1990132413261383 0.2728330476661571 0.06526157992514384) (0.1876184540335392 0.09917832623599301 -0.09972134384069124) (0.4896572730196053 0.0865844245337454 0.52570005237262) (-14.46185927880154 -14.61763085611289 -2.890641344106992) (-2.36191920250742 -1.172567606460708 -2.0163997584826) (-0.1202254820119845 0.103740404329921 -0.06732861690785732) (0.01877530525833179 0.02238904504744629 0.09052238695758147) (-0.07566958755531394 0.05298651938129359 -0.0517442758341722) (-0.3962304446832177 -0.8976933746638509 0.3978502141015843) (0.02789136198384763 -0.06873958306251983 0.005068021337157717) (2.097096013721838 -1.198566396722 -0.1859428731591575) (0.1193539112384268 0.1073607787773546 0.234527272582937) (0.1181524766498863 0.1123441225589714 0.03312021775893906) (-0.09699894657150507 0.02282038452789621 -0.03007587423032909) (0.1390236223532623 -0.01316851217636038 0.01600411012047898) (-0.1447855809777518 0.008532246728831596 0.05952576917925156) (-14.0365855676167 -5.962209689821078 -2.555643154622089) (-1.168458503506452 -1.238384750044292 0.9655436749430704) (-0.1761652845029943 -0.06681962840964605 -0.0843835810904407) (2.694481136348542 1.195381252083041 -1.557745965235615) (-1.690691995301451 1.338851471999168 -8.449383972526448) (-4.840392185596594 16.19994081469314 2.664377185708187) (-1.877928219199533 -5.973193057364917 0.2679469400194782) (1.117729873630239 -4.248318890470848 -5.071306398266392) (1.763608627578718 -0.3298588896362944 -2.667568113442166) (-4.486044584676909 -2.503608148463865 -5.031701583978434) (-2.176881333640147 -0.2352657582823279 -2.713367923541375) (-0.3521123419426199 -0.4056116634740167 0.8124767512640854) (-1.875893748404952 2.133588472851633 -24.38335411956962) (-0.9288819724045281 -1.447527741972443 -4.911672079254922) (-0.437738595294569 -9.371378428944533 6.14898394868277) (3.172668289245775 8.826402481704836 -29.92727348902606) (0.8970736615434103 -1.103516646098003 -0.4282381097623343) (0.02792905085501279 -0.001952862000423321 0.05841137041184698) (-1.10770542140767 -1.250441360438556 -2.64072621980594) (1.230907118182342 0.2478108796795689 -20.99357641214707) (1.277881512815073 2.85805164125216 -3.823274726798253) (-3.122613657814786 -8.723502531552239 -16.35734889461184) (0.3728982647579762 0.5309432396703779 -0.1342024216324869) (-1.271596080643512 -5.835773333595644 -5.846564193009478) (-0.4230847869577175 0.8549263676015808 -0.8321708118435517) (0.1965314530110712 0.3170114888098205 0.03184075740569754) (6.777043858216898 -3.70061758212394 0.6286755493807503) (1.555846812564481 -0.1827515306180566 -11.94187848561521) (-0.676416653624745 -2.516194467663082 -3.900888334649895) (-0.06582646277361201 -0.01596339259859237 -0.08535168199091053) (0.4173858252516447 -0.01043477795820028 0.4528617157291778) (0.008831721188624631 -0.05446741499720364 0.06516138431770471) (0.9225636994758372 -1.940648300583109 0.7155624709047508) (-3.29073334593579 0.2818789066743976 -2.273048790389097) (1.20237749904299 -3.621765390205669 -2.175621633972397) (0.01059055224757912 -0.08102504060938323 0.09173658079270583) (0.1284532900958865 -0.05012829292017416 -0.2878134292515381) (-0.3212259993292586 -0.08741530825999831 -0.0981227776685458) (-0.027627068998127 0.06422886750921127 0.04182634783991267) (-3.829866755503049 -7.551901449632519 -1.86520433800144) (1.880355967793943 -28.63800151661281 5.727315511642269) (-3.86888381884936 1.3738274179689 -35.88774074644749) (-1.712629210195655 5.173420094231796 -10.64278181574191) (-4.810408404548208 0.2684806461134412 1.611491985623933) (-0.1893947911783374 2.341338974283627 1.362442032724856) (-0.01892791646334002 3.766806355890618 -1.448705235480116) (2.070446720076791 1.145747892987219 0.2767618215481682) (0.3663010384337312 1.064816714266602 -0.523199465894473) (4.227396344719232 6.691933700379735 -7.954677504221639) (-0.1271272904853062 5.118799173654566 -1.795837147106432) (6.115884011551432 0.6427118278060077 -8.121284512489359) (-5.437121512423772 4.032195451578253 -5.088601633938763) (4.254041130201962 -1.40001891944046 -0.1340290717861444) (0.01069729902083547 -0.06993525275588536 -0.1620283791454588) (-1.204349987580748 0.3149142208915359 -0.3605922853586658) (-1.655429811343573 5.099432045281243 -0.4007015699479863) (-2.695304015465018 -1.446248326726107 -0.6117853635447348) (4.875328953351831 6.699408381112856 -2.481197795928543) (0.8030591257928353 -2.07885114897252 -0.6877824794303662) (0.3074823007950391 0.1310588319265405 -0.09519537664622368) (-0.1770005800893695 -0.1091698823980164 0.7091570882172377) (2.567301382201578 -5.059891128783307 2.69259252173668) (-5.052432100703887 -16.94398996829406 -9.031344806576218) (0.1802592876108653 -0.03185256471459252 0.03973659727137944) (-0.1865177934298733 0.5838974263835229 -0.125705731011488) (2.212258764683976 -3.387765312667233 1.011358222742747) (1.367531502723546 -1.364687859416177 -0.4693056852812984) (0.676170310043324 -1.225745012431393 -3.246480096833756) (-5.343662760470744 -5.807784436620739 -7.856380867993777) (-2.090173843933528 2.420514042718239 -0.399341443187431) (-0.5029950747917901 1.89667650008433 -0.1470230623174529) (4.743275619797251 -62.90165952675925 -2.038430976027716) (-1.380848945217652 -1.198149422444173 -0.795567966381282) (-0.03186572379949937 -38.93246216482249 -5.484288492100814) (2.828137598497774 8.889313411289502 3.663850688601834) (3.856170122262614 13.53618326113724 -2.118649033404162) (0.4567384907331503 5.671195175811373 -9.882168357741239) (-0.5089504946913426 8.70948765723444 2.76488521902063) (1.012224629700602 -1.672234911844358 -4.978251346574373) (-0.1059589981372653 -2.69211115434377 0.5969967321615324) (-1.033245673014261 30.56447443159134 -6.385058124741497) (-4.488402342431129 10.74538029142079 8.812045829818274) (1.806682428794349 -6.285477744508863 -6.561061640216503) (4.523458884187887 12.85576230880887 18.11950248750479) (2.525181916052829 0.8397190929080165 -1.413703692186969) (3.191862207543273 12.66389603888678 -0.8097381566598627) (-0.3165089439704216 0.7053580256754779 0.2128278787449988) (0.144828914222102 0.3153839014507951 -0.2685722295639518) (-0.4065518204694786 0.07473068157215912 0.2596724132259997) (0.03165176761726017 0.1280819066332584 0.4527468633795051) (0.1385900452653429 0.2493544611823437 0.1232407049725193) (-0.6020764731154967 -1.156112915460783 -2.060088155420378) (-0.3097489544027561 4.595783995019275 -38.53496545481388) (0.1309034009630223 -0.3340254162556905 0.08596345231858754) (-3.73218838353431 2.806737376284512 -26.59322252334149) (0.1367287440947723 0.04281817432055057 1.248185323818174) (-0.01155119219468674 -0.04853815271257518 -0.05808719977746556) (-0.01955801284277435 0.01190747933573926 0.01902076445723834) (0.08960183832362588 0.008829458429229968 -0.003512421908292911) (-1.973209297700059 -36.33355231531698 6.224304711725394) (3.286091929556938 59.64601821782328 -2.715866773782405) (-0.275108652665089 -3.655566616273101 -11.29800026801651) (12.51775639510179 0.4838072935093964 3.383005591069194) (2.294586627029547 -18.15869513974658 -4.982737046221533) (-4.085688336109682 6.690932340961581 -8.594437987748133) (-0.2179979801023302 0.1960247021425894 -0.3349042529884049) (-0.08120032600805158 -0.06497679011717078 0.1079554822201733) (-2.370363132425626 0.3822894653786252 1.734543067824434) (1.357281590648544 -2.576546600071865 1.614501588994615) (-0.320349353840339 0.530396865780619 -0.2571437775483949) (1.033300155800597 0.2436814316045247 -0.6714239507794826) (6.41459326921985 0.4294335554709726 1.719330212273979) (7.160259265395137 1.766041633045249 0.3942758629313086) (-0.006631187678801588 -0.0167915889687078 0.02615177332818315) (4.321202751894644 -53.6931796764755 -1.92873747653424) (-0.01981598041351446 0.4489106777989007 -0.08703757312548882) (28.43845311519919 -7.072360511348492 -17.16099192558675) (1.621176890148852 0.4278748806331995 -1.262739622547229) (-0.7310326948679723 2.909605189723586 -0.3641535101983364) (-0.1955863619656252 -0.02724382494051552 -0.05052213968330728) (3.942917262832477 -29.7605572942963 29.06480900010411) (-32.0638758409182 -4.315923740121233 -1.904896429580516) (0.04425417972161276 -0.07072215620511527 -0.003524019418010467) (-1.98926503129233 1.101887740766905 1.902994307662865) (4.435221689998949 -3.425947070292632 -3.454003079673334) (0.1849804134737421 0.006020232134249525 -0.03682868126129892) (0.124064570646008 0.0250818948720664 0.07085033000331487) (0.0159871904490926 -0.1441055438894845 -4.578402685507472) (-0.003165563514036139 0.128599861620019 -4.642847645091526) (-0.08285506433510453 0.1909127989884077 -5.626553227729535) (-0.08643802145406512 0.05491160955940319 0.06063474475190375) (0.326835091207071 0.1523327553606224 -0.1187899136931135) (0.3487021475865512 -0.1188578967405615 -0.07374249601854273) (-0.02811285730137573 -0.08613754389238967 0.0961227574832916) (3.023640182945497 0.6153145302914032 -4.465495383945328) (-0.01692621575518221 -0.01660788252754303 -5.435068485232503) (0.03932312583976166 -0.03617424562015796 -5.204393540726805) (-0.138266768239026 -0.1186181397175517 0.04471098116293289) (-0.193837622375148 -0.07890683867868731 -0.1013089949532751) (0.02373888914913105 -0.03631531225203733 -0.106820559686955) (-4.809300272381458 2.857279222020945 1.568053747650417) (2.705519107386133 -1.882085529832822 -1.363256214418519) (-0.5366306463976958 -0.4536115833249545 -0.0004852458753952307) (-0.2961773180576823 0.6339444678679668 -1.571393713306787) (4.625495735022617 -0.5134848252521014 -3.359241004545865) (6.735564291950269 -0.8063980208601844 -4.936378267511549) (-0.9316994961049855 -0.3232474597755051 -5.144688630593738) (2.893804132532038 -6.697754168292938 3.100028996028221) (1.002533477153971 -2.975822096100661 -1.353797479990111) (0.01610696155973062 -0.005541627386923608 0.006122370530893986) (0.1522334644443106 -39.62288774716456 -1.552429059781972) (-0.6552538671321795 2.62714453701284 -8.391907640978852) (-3.661794787149827 7.525672838491137 1.135132936027084) (-0.2319843674215065 0.1810600779896411 -0.07083419373912542) (3.567313066791442 6.129610247775393 3.842934866914056) (7.562949052562558 9.556552759732476 -1.51876631319194) (1.531864495726003 -0.9679575953658558 0.3774156096101956) (2.671053516733835 9.784404365414694 1.107981869041551) (0.1831519083952891 -1.447681889205274 -0.9165261369720453) (1.187583585657682 -1.105411395242869 1.480191507983819) (2.385418048313428 -6.336965865755948 -0.23487010634131) (0.07784417494394782 -7.849983491437418 1.832135727011402) (1.751170265865469 12.24478138101298 -0.8639718358147987) (-6.894598946148672 3.249419251329839 1.102630153762961) (5.247544851868521 32.05950975589823 5.531920981031451) (5.29453832717595 10.59202967982622 6.96089945212761) (3.283566365091388 4.554226659201085 -1.521528544054521) (2.902504943988542 3.880093875005911 0.1331387195096763) (-0.2290041170151904 9.113147364130839 5.876670456434968) (-4.059630077068555 7.402108426798274 -4.895260038483312) (0.0782247862905308 -0.01530289923371371 0.03866749026627735) (-1.482414096001938 -1.483969094826486 -0.4330401608036081) (0.66538930325164 4.893053873161762 0.3092037080606396) (3.928530364737884 40.72085052467106 0.2345577198080128) (0.08771198343366436 -0.05288960850342747 -0.08356600404756885) (0.0418876604332639 -0.009579248389491934 0.002678608100926013) (-0.05418727125567448 -0.05110009375254179 0.0339776068084007) (0.1150936455383498 -0.02265930572841195 0.003634968104042922) (1.820728573903343 35.57347418608332 -9.288083098973296) (0.962446572787602 -4.142739963288546 -6.81649645688972) (-0.6218988482835035 34.0021826363184 3.332633598826782) (0.6322954139929178 2.088047663340543 1.871142945345102) (-1.706588714165508 1.344464164019808 3.711086402091335) (-1.453268218666793 -6.516441088802591 1.693852120336069) (0.1811931778626026 -38.66426854219242 0.7460985341918978) (2.163914683320932 -7.11003213857207 -1.647665137234947) (-0.004059356132960025 0.01304518462848379 0.01426758238049896) (1.092047688125857 1.631340375617734 2.544461704306891) (-0.03993009210103559 -0.01773984321456956 -0.01577602857000673) (-0.03455318417682136 -0.009169568505326266 0.02315700688680111) (0.02000618787163944 0.01389533168025356 0.01932893653483369) (3.175213950437295 2.074529618701855 2.043688727434135) (1.195871945847562 3.344997518049364 -0.6741616049769612) (-1.726914404802003 -7.286272100664582 1.73252923247064) (-0.6222796094010847 0.9510305574397898 -0.7697999787893434) (5.586472280732813 39.7465662303062 -3.11824114708199) (0.0187089580714242 0.009977093011501643 0.003811094491525792) (8.782254603141205 -3.283070926422218 -35.50787578522366) (0.02053028968909524 -0.1060398759283318 0.05682138232129224) (-0.5388142477326122 -1.820972941044564 -2.063318240804019) (8.193001433732865 71.27056444423758 -4.902819452776709) (0.3874026014124874 14.55692806825265 -6.28035402450385) (1.469861893272534 -1.19926085156662 -1.001609273945905) (2.239602278757597 -0.721648684692463 -0.6290174249721354) (-0.4751148134009004 -12.61453503520928 -2.68778377235977) (-0.187122970593123 -6.4876452068981 1.143729961834323) (0.06720492626478691 -6.391966446582535 -0.7065939846266105) (0.007705386621333979 0.02375296864483375 -0.004746714405257346) (0.1087305053121326 -29.46216922250396 -2.948269461739424) (1.301535758057308 -34.1812194540048 1.6177583071404) (0.9615699320568161 -8.921878819893026 1.196845489040793) (1.837621685271249 4.135930634312558 3.066736483441876) (-1.00836049692566 -24.15777217935574 -1.591736731028463) (-0.4163968203899541 0.02534257170477694 -0.4702475113614268) (0.5030115986541795 -0.02753926282574808 -0.6219349343786199) (-1.01500361917065 1.407393611113249 -1.909590799612909) (1.201532464738673 0.4390281273097852 0.4478680203786097) (0.2198413595145211 0.02868132631382612 0.008039075580805535) (-10.62249953029693 9.530527098099954 -12.2324372473087) (0.1981570640301727 -0.02224641982274265 -0.09714560382326436) (0.5381556066253328 0.2739099803180476 0.3476619727424816) (-2.22193823391744 -9.203075819760807 12.65649269385204) (0.3973365642188368 2.688868497664695 -1.144812434462458) (-0.351544650127766 0.2195412670428598 -0.3701232528334994) (0.08360409843931144 0.09939003565698362 -0.1766564058926006) (0.7246307495844392 -11.65847439410944 -1.122815198553627) (8.813499217935663 69.6941616169218 -2.949521282788783) (0.09799132703315175 -0.008000678063745013 0.6259035743818464) (-0.04320745721186303 -0.01582274268151709 0.01552382654059379) (-0.6011975071885353 0.1725314769201892 0.1939056243579254) (-0.4716611914736881 1.228617496781457 -1.661465298473466) (1.028567796852771 16.30231367741382 -6.937567954419447) (-0.3978827464074002 0.1132157492677927 -1.470193587206496) (6.039719823273662 14.747109082723 -8.982155614834358) (0.1425710587296432 4.738196938771521 -0.5127776763934873) (0.0705294502160636 0.2622363817746037 -0.2514003714714143) (1.09348742718208 -14.09846841195133 2.242527567191301) (0.1438581485367939 -9.224587288966008 1.532245079555223) (1.166043349986349 0.1799621356319472 -0.8322266211895828) (-9.10294153371828 7.005392083829557 -13.04320653309398) (3.341190656593392 -0.629309175871109 -1.841492379814362) (-6.872641622570047 1.778407382921366 5.810996058862719) (3.824424107464727 -10.78552988800338 -2.137618678303729) (-0.8367814805141899 -4.250793005303153 -2.629833677804208) (1.897192375387802 2.47140114914101 -0.2554137237747421) (1.312267885207849 -4.750618472291643 -4.187880900482616) (-0.4090738232051556 0.5495358420118358 0.4730933770167213) (-0.2906196254059652 -1.42642269515726 -3.229117970584987) (0.04032582302396223 -2.744035588608656 2.357316478516886) (-1.598567353792347 -68.11161169741324 4.777428604076468) (-3.252174083615635 -12.75551577379551 -17.91600246122947) (3.711377424625752 2.427940391063637 4.311005872240436) (0.2320480648228274 0.2300600490826507 -0.185114588816214) (2.703385911902089 -1.596525969189986 -0.2483094029196461) (-0.8571994352389797 -2.558511287903572 -1.649292027523805) (-0.2076391315612494 -8.655565239688736 -3.240393537594603) (-1.816887394074986 -41.83578945774606 -4.710297053461511) (1.279249659487219 -3.438025658108972 -0.8946054630852446) (2.384278164727478 -10.94232632048383 -0.551836291401524) (-2.740425894797399 -44.3398607361311 4.99548080030285) (-0.1151527210927481 0.1986227872990859 -0.2898380276001254) (0.2913831314106221 -0.4560295656879898 -0.4709843374167865) (0.209595124413481 -3.395731918236177 -2.890497624506637) (-0.2448606623167163 0.05446930279480458 -0.2703500698746079) (-0.1277741075722634 1.036136114749218 -2.746765197738091) (0.5085133789499804 -0.2070764719274424 -0.2931361090137241) (-0.1733667794663912 0.1537559814858374 0.0585276886482449) (-4.290392929557005 8.14096646357644 5.896845433281761) (-1.101906118644523 -0.1175810093668404 -0.3689847011811599) (1.617512291449496 9.971465582499604 -1.277838691605659) (5.948804006722397 37.24960430865645 -12.71757392479736) (0.315942837818748 0.2399425986700382 -0.6215245127080636) (-2.096866638658177 -1.406486901485132 -0.5400075716742592) (-4.993519702250176 -2.317679073967471 9.241224305219152) (-2.251667525569481 -9.11629393239433 9.166509490844525) (-1.099523023992798 -37.23134840720323 -4.195391272155256) (15.19060062619418 -12.55022124961875 3.726882039592611) (-2.152938596314627 -2.133867743194991 0.6694770584756081) (1.927267865006721 -0.6498805373850282 -0.8904489540961744) (2.979805695429436 -54.89545070014929 -1.162396553176328) (0.2694315736714556 1.474165069120061 2.223009747813256) (-0.6267837102185578 -27.49616750322774 0.1843510000521837) (0.2881527401950883 -1.952691290090747 -0.06469150541624286) (-0.2488783389639808 -0.3993949865399304 0.3549357719864327) (-3.3150439490396 -4.955297211124146 -2.654209470702778) (1.920758101577706 -33.58271637008095 -11.75212146274311) (0.1471137753076166 2.439808679987124 -1.171754843776808) (2.781403522791774 1.883107112544221 -5.114968975255864) (0.3818795502558468 -0.9625501635496119 -1.967162300818263) (4.816993152694111 -70.75888081964443 4.493840293033209) (-1.556929601599187 -1.327247500045159 1.204118787452285) (0.177664488533479 0.7581839400867694 -0.5588045745011981) (0.6162221308139865 0.5288115547076542 0.08823422894124097) (2.069787242411093 0.8728604296255574 0.6758976605389903) (0.4766180466808341 0.9710243037356658 -2.255264975957687) (0.3465110368176867 72.43997698768223 -8.074084656881713) (-3.421480905738272 7.11951602989361 0.4893373550861017) (-1.663878913732725 -32.0330706703361 1.391014844611001) (-0.2452154668192743 -30.76975890477371 -1.42685211085245) (-0.97520470454706 -5.571446677861847 5.620083935467262) (5.645265373828935 -0.317672246306955 -46.00360515570995) (2.097066086220594 -1.518355995912536 0.6539612585159851) (1.140927946484132 -8.528782476725324 -0.1379868531677031) (-1.985993695886584 42.71929980784294 6.805594433148017) (-1.435388994659648 0.3291240188383245 -0.6775300517937578) (1.35610728502309 -45.78481213088416 0.9692132039127114) (1.72474189130663 -1.00631518268817 -0.9058479119215077) (-4.040096237415868 -3.703074989841291 -1.275247733845726) (0.7081568530034212 -3.64893851396303 -0.2374453388193583) (3.859892403729666 -3.72725892759968 -7.230139494022313) (2.505588455477501 -1.942639568398013 -5.203967562890986) (-0.02740444759512373 -8.14054808998816 -9.166083503968888) (-0.5370136870352683 1.767858511925285 0.4172614300058607) (0.6064074943621944 2.533839436069935 0.08171658278120858) (-0.7968790181305044 -28.13824155162123 -0.927710132654656) (-0.1419694816180717 -0.2894736596399571 0.2313572396779372) (-0.4327663317054877 -9.759947271403433 -4.512335859359955) (2.884345458636311 5.490303221704133 -39.41993584122241) (-1.026846799203576 -9.780815349753238 0.11611728457658) (-0.2900973685198575 -8.393262925853202 -0.6540726539209927) (0.8553331321998625 7.874262170149075 -1.293209488043561) (1.033769665767981 0.8425891160554355 -0.1572883841275038) (-0.08031551191698671 7.724010184224959 -2.887421378998078) (1.794570436086539 -14.17978796209669 4.075837642369423) (-1.441731481458169 -2.225161172631749 -1.354084728185262) (0.06653645672852243 -0.08813066964700071 -0.04201337543453571) (-1.541789941792355 -0.0255679479410913 -1.118148186446359) (0.09997837515484365 0.02296761974067262 0.004636545909520461) (-1.80506024105471 -0.5573923918074055 -0.9938395353570253) (-0.278330931682127 -0.03441911487384393 -0.05395882361105885) (-0.09832437381530162 -0.1305765553739802 -0.2622263764476843) (0.0263345370474551 0.1785271914094532 -0.164113709081816) (0.3047288514395096 -0.4096559197697561 0.1696954957067542) (0.1541908109379712 0.03840920812103675 0.03370817701643281) (-0.004853525574123777 0.03380024064080071 -0.0204944207118731) (0.003482106338126345 0.01233064024468103 0.02922180773626732) (-0.3726676835202783 -0.1314532126492117 -0.06609223628307997) (0.02732312580476159 0.3870175470026238 -7.286743595487618) (0.2970779382887875 0.4126378198625922 -0.4439912071563957) (1.848630834989629 -3.091734304325147 -1.985823847414204) (-7.975038857707021 -8.511595234277262 0.1904194265003915) (-1.203638750202976 -10.3583176247341 -2.518129258006906) (1.750871969834686 -1.340470283709865 -1.599068031696999) (-0.4824638627414501 -0.03625638109720325 0.2038677898399976) (0.2546650940055641 0.170428686633152 -0.1000598071392718) (-1.533768587054783 1.99448832748274 0.1624294738109981) (-0.05775033997081988 -0.1498847150725975 0.1911796598191631) (-0.07298140741627834 -0.0126752672573539 -0.06869088284227051) (-0.350943338551211 0.06634065494433017 0.001032874702961706) (-0.1145190078038402 -0.001266910132682679 -0.1376325301219871) (0.003820102558756366 0.1022454983705731 0.1568235864216206) (-0.1302432852687831 0.007322581888668028 0.02437200969990764) (0.02843440618705592 -0.01518635397825279 -0.003218582851818857) (0.05880518610217564 -0.05261606133753802 -0.2183011504121939) (0.02387453996067952 -0.02504390176338035 0.06331972319668125) (0.08572774840190037 0.00132405327718832 -0.09990042345074319) (0.04455228209951688 -0.01332889850574549 0.03393935268072863) (-0.09574728446761983 -0.006961926089458796 -0.0008539901941186472) (-0.05452869284989401 0.02961449317742519 -0.02104480760424254) (-0.03642149221833007 -0.009515335708917882 0.01546472280308968) (-0.001312889417127639 -5.598947828847328e-05 0.02482803370350104) (0.04347323258227248 -0.0149442497490938 -0.01895960342728562) (1.094083836169291 1.175125424966757 0.9421838712995234) (0.4625163276520967 0.4110591081787605 -0.3753300615789943) (0.07232792698160946 0.04853286731611383 -5.025002294722619) (0.05649413592217136 -0.0007390506031941496 -0.007659161230303966) (0.04720617211042785 -0.1895730212242655 -5.302896104976001) (2.490568593549363 -0.8671841170968414 -16.13300583528907) (-0.02713453968714793 0.009057153235144718 -0.05069265329918879) (0.08453270634957301 -0.01302640851270927 0.02500565537448106) (-0.05374037376866399 -0.09773484234336574 -0.1537268143123872) (-0.001187648384892676 0.01349923886725989 -3.483105348268495) (0.2014641481012067 0.1273774694917127 0.212746581395397) (0.09697440599223313 0.0178592269032614 0.01053168415800684) (0.1556881278609643 0.322836817418134 0.115860211189927) (-0.278502844742043 -0.5450717053670394 -0.3443614236763793) (-0.02490968552994807 0.03802653559508738 -0.01051474635831823) (-1.074066929759779 -0.9115770495984304 0.07117064432942716) (0.1387946780063662 0.03497514588966161 -0.02719869943878155) (-0.1063466891924576 0.007444173785878513 -0.02446079605389473) (0.1451118498795253 0.00382564872895684 0.09568003485567862) (0.2557941601501171 -0.3959241014753991 -0.354046774460406) (-0.09746341459236463 -0.1439291228448022 0.06456988671353328) (-0.9048804938628991 -0.3989389104583422 1.303507013424672) (1.081527889625942 0.3716803896702993 -0.4016225066561172) (0.1241565561388365 0.01046566251586038 0.1517417005550779) (-0.04395942313630256 -0.1302628733802548 -0.1501171039742409) (-0.6177221897124243 -0.1175032266830775 0.09009495894689593) (0.001740900487959177 -0.02698388841343631 0.004614602648799346) (0.004825395551670047 0.251871490676187 -0.06653810721714024) (0.1348205863305211 0.7456719175775606 0.2262932737610076) (-0.1464298702258469 0.04252178674381137 0.2637617944260879) (0.08730105672162715 0.04800678308419428 -0.06752008737510849) (-0.9342540271598978 0.0110989913981626 0.3679236267340565) (0.3771801646574901 0.1012722888159064 0.1187520008030745) (1.694777776572339 0.8345313831266525 0.3508983187220445) (0.003377632955661376 -0.0197127169619986 0.01263297997337844) (0.03401611774835395 0.002744712470958292 0.002928188524685502) (-0.1401830768410887 0.01230352003901568 0.04740629944822954) (1.41677737642826 1.231419762662307 0.4408533489461712) (-0.361184792003437 -0.4058127061119445 -0.03572710656698641) (0.03121122304647512 -0.02670414596833822 0.01543372075721334) (-0.1628072431386282 -0.04453064680117585 -0.01301158845279732) (-0.02788826528911086 0.05076637886814304 0.01565350232710611) (-0.003934570834862177 0.003154404605931675 -0.002046208088650379) (-0.08470076459233356 0.004825847831588386 -6.646998591518138) (-0.00956456463838542 -0.001198687325590531 0.002879430007820153) (0.1472487577485121 -0.1025819453236539 -0.0375211428779494) (-0.2836414086915945 -0.394124940640508 0.09074260386733168) (-0.1424339785018141 -0.2107146249898833 -0.386326787540565) (1.460106852087416 -0.1210939329257971 -0.3020884493952766) (0.4422344093506515 0.5557122697463025 -0.744514501923618) (0.8386456709569388 -0.36038232619655 0.1391117562646987) (-1.980285465797834 -0.05366976442298366 1.021773228036168) (0.7108337179872311 0.3308450686711667 0.119450751641139) (-0.064718676626228 0.0461475611059454 -0.1676244147882171) (-0.006724421097811275 -0.005499573549792969 0.01103572435405535) (0.01456502510816175 0.01999234708939602 -5.406145952485199) (0.2847419623413337 -0.8972364652545499 -0.1557817590120207) (0.05359967065237669 0.01946154799541056 0.01813816504219647) (0.03012054943608381 0.00108604633732744 -0.06563811055160221) (0.02746464141951942 -0.2167104293253612 -5.564341423177527) (-0.1146687293764484 -0.001476400217293058 -0.008838955442469928) (0.01120986302300742 -0.004882164367184671 0.0290075696331909) (-0.6673807127317317 0.7415779830466821 -8.963259865537392) (-0.01771224436776335 -0.01483185984859132 0.006115596024275038) (0.2063728318674767 -0.04245880704435142 -0.1566723996147925) (1.490280699596707 1.828693183744855 0.1431910498851988) (0.4469861348016009 0.1455087936741092 0.01225236364905828) (-0.03294501612952419 0.03858496872120575 -0.009917044206973164) (-0.01449220374809764 0.04689373421431865 0.004893921050877113) (-0.01781876219207965 -0.0533738664890642 -0.003373232008326364) (-0.7384709106179401 8.381010486061884 -0.02999209223317501) (0.9203280817611139 9.559423115271525 0.9687015817357639) (0.1141490653183752 0.2191017656620352 -0.1991949044320599) (-5.464088558295234 6.584333218892136 -5.836291023652588) (0.2716139032652408 -0.07261390019107676 -0.2566735894738273) (0.02602202113502948 0.2656882371988507 -0.06718505581472575) (0.191847049325214 -0.109038245910308 0.04129543852566528) (-0.01063726018858585 -0.1785063490586284 -5.512616825536939) (0.08882237707502931 0.1727482005298324 -0.11963803727444) (0.4946195856147696 -0.5307797141652772 -0.1658695187634961) (0.1925077722958613 -0.06373165577267663 -11.43206797080792) (-0.1737570428193881 -0.05487137421616718 -0.09092889870134689) (0.3405606286858953 -0.5300851644134356 0.1100291595738944) (-0.1378929983251779 -0.001606900892934057 -0.1922223012388197) (0.1453311564515696 0.101979256628864 -0.2013890326421377) (0.4393532563351918 0.1352743043530342 -0.1539611737172298) (-0.4698908574604175 0.09985664094245097 -0.05471801613375981) (0.07140352240697206 -0.1065573727651323 -0.1566399859696236) (-0.05544095198025435 0.0120056449530873 0.04501134067011361) (0.03201623521260921 0.18797170238105 -0.03213908916888028) (0.2543850304446652 1.14052957883946 -1.303856178159807) (-0.1453756521696523 1.325866520977178 -0.6533480218737251) (0.01730934471905077 -0.1310838322357457 0.1827339818191214) (-0.3522826960655496 0.1856834905481012 0.1393415523435609) (0.03165884298307481 0.06042074039151626 0.05309571341821859) (-0.007931886700675905 0.003619664450417168 0.005195808411771489) (0.1951944828780154 0.008052093335493069 -0.03493553709376931) (-0.1321474635726419 0.02447640229523189 -4.922906235495784) (0.100765536263525 0.02587634621617424 -4.870305302390703) (0.05045924771281468 0.1215538681783728 -0.1295508859106965) (0.166448546382676 -0.00454219545400382 -0.1824013094716833) (-0.1373569692883794 -0.09871844909472613 -0.04953595987615504) (-0.06115397273411019 -0.03161388433077946 0.0122242651937979) (-0.03335122684348862 -0.04213300288055248 -0.1014975948581657) (0.2655335601357613 0.07162829722614859 0.04394154132690041) (0.05884573005720679 -0.1203582892758733 -0.1083403077682067) (-0.2861694659253773 -0.1753087411358537 0.06802385314611983) (3.157793094810365 -0.5973505159241339 0.8742592331132177) (0.1418229027712715 -0.7133744999480303 -0.07077668614458946) (-0.5638198023252355 1.198434427659398 -0.1588432692134232) (-0.2112206138441027 0.005146047383634694 -0.1084619020832988) (0.02982976631331812 0.05125523243030351 -0.02088722738527151) (-0.1183605953901629 0.0007602806352732579 -0.01343006368737638) (-0.02145050263159851 -0.02989606533832886 -0.04412808495496007) (-2.997696029600285 42.53334296438008 -5.756405063467396) (0.6277041202350983 37.6741706410584 9.857779660562308) (-0.1025073657706789 0.03483512630594904 -0.06695658479175348) (-0.05496154369655536 0.0006524964762258667 -0.02215002513404972) (0.05777497365014545 -0.0206541135606418 0.03081527439553191) (-0.3270222847162806 -0.01950043106370825 0.06552603142212231) (0.2382344317500805 0.07363003456300404 -0.5811763079740843) (0.2883998373227757 -0.05059676673025076 -0.09966755474212019) (-0.1221993540486375 -0.3549071893921159 -0.4141343239036295) (-0.02143238178861282 0.04130269673668238 0.03103409460721918) (-0.06664882747161116 0.02735196936794809 -0.002619206312145433) (0.3746397089484101 1.585028577533478 -2.265428141897188) (-0.0132687483817612 -0.1089853377411924 -0.01642495271445238) (0.4004853675772851 0.1106917993718941 -0.02985281496507665) (0.1256278247644122 0.05153339560738555 0.08754597934073387) (-0.1516599065952205 0.2639902033127067 -0.2383515562736382) (0.1920087334234798 0.1787011772593329 0.01841530067684066) (0.03030196550339202 -0.02256907011210378 -0.08590036535824189) (-0.06584321752061281 0.00559511725531138 0.0166467471141292) (0.0009101185570505194 -0.0008953751555080961 -0.0005933600508269105) (-0.09228469140284529 0.3335932808495233 0.01572580214483832) (-3.574712975852978 1.210744515465954 -0.4705785658456019) (-0.00199407333502169 -0.02623233285958635 -5.272917757712137) (0.2196386942930026 0.4449044897494693 0.07413792507928407) (-0.002687627725867702 0.001043328145932719 -0.008472840790310524) (-0.01368905810165401 -0.02252828501974901 -3.202813002737623) (-0.492361509903967 -0.2503177638643097 0.2283009710093928) (-0.002871232806338046 0.0002645348443865905 -0.005323074285229891) (-0.02328687507635218 -0.0169903149182032 -4.818629083646575) (-0.5704675822391962 -0.3772125674983627 -0.1094624993409888) (-0.4865256458002446 0.5068995432630647 0.09631395106521995) (10.23468551557536 6.488103528703917 -0.8871421160928157) (0.2825970705292153 0.5068930774302621 0.337045497668105) (-0.004894178294515217 0.4608009780231257 0.2252875494676244) (4.573246068125771 14.58989143454988 2.320879513535532) (-0.0101827847928774 0.02688923175888191 -0.002206791172779397) (0.1960075133500413 -0.08273156065316249 -0.05919742386177596) (0.01684326647790369 -0.1190688390613614 -0.08989950110087047) (-0.1032813420952736 -0.1315067368144777 -0.1350074304551958) (-0.5970078270423376 0.2902985164043296 0.4162552333400124) (1.523790874074567 11.75957921882374 -17.4763690401479) (3.218919454284261 49.57148068918721 8.189901052565617) (3.297713462945308 12.01350289031143 -7.334663703384636) (8.750048922270473 13.26947571137671 -2.870940933195967) (-0.008226801461225916 0.004781073780474624 -0.003722261630746967) (0.02904315618596667 -0.02212551508834127 -0.115160146149962) (2.098126330806619 -0.6467213211881329 -0.6219890619494262) (-0.06503512476640122 0.5015192751992448 0.005883109494659061) (0.2793783579720867 -0.5246783328018405 -0.6464046600827364) (-0.7545324972451611 0.1557659030154634 -0.9918207473969401) (-0.2783907562011506 -0.04452946900279975 -9.549152890672673) (0.007491748376667507 -0.003625237056120784 -0.03533152166858082) (1.910171113673479 -13.98334234679768 -2.050003342190552) (-0.02999541723693585 -0.07377675022695671 -5.936365964142464) (-0.01642029109860396 0.07390105037883021 -0.001286756312829025) (0.01671128158060375 0.08485801469392132 -5.291088403941953) (0.005942183992805288 0.01761527805790435 0.001387659630560511) (1.044573049729188 9.323767019617552 -4.117338526044469) (-3.889633134832355 -1.455685686192596 -23.68746433490034) (0.04070107292848052 -0.288140760040103 -0.2436223839732373) (-0.02602522793517705 0.05414251807244545 -7.39368424317241) (0.01565585159542598 0.03604631462516836 -0.1267577501749999) (0.001660731515428736 0.001145295688595054 -0.03836855523796051) (-2.399024775311246 0.4608994489124075 0.7271856636876602) (0.01284296827218017 0.00638722973211314 -7.297016126652255) (0.02557660421238565 -0.09812366723513528 -0.06444448455536363) (-0.2060636948928143 -0.03371872938773916 0.1197066478080855) (-0.01260688850857391 0.09155915907298094 -0.04753961188410596) (0.1359805059126991 0.01611066592316002 -0.02388177305382568) (-0.5876530731194451 -0.3585443814652075 -5.577987900827075) (-0.3503575562579864 0.2199709287260431 -0.3072187631593292) (-0.1198358959168158 -0.3791411726059408 -5.613571977972956) (-0.1098484770467661 -0.0001233807782904765 -0.06836850298714325) (0.4725045516683819 -0.9524350325390945 -5.487418068410737) (-1.073964919946623 3.107100883666685 0.7953067987510158) (0.005278380457536213 -0.0006687587922025564 -0.003567631111818322) (-2.491430966066461 -9.416923086523351 -6.079835443491636) (-3.250233111098078 1.905430456312331 -0.777181834919586) (-0.1552104080742765 -0.007142112713745713 -0.04910978934534113) (0.04864254827644268 0.01244066412295303 -4.78517428423388) (-0.01052742256359185 -0.01243601757718226 0.000116623592630016) (0.1022041150281081 0.1608772049083708 0.1457009787363469) (0.0576784746847127 -0.02244354312578831 0.04940013346999031) (0.01634875514636676 -0.06155541804699645 -6.802471946119231) (0.1002396173354982 0.05991867814947667 -4.843723427195757) (-0.01444819050915012 0.01979519038007896 0.005233008904571276) (-0.04809306030876672 0.01216857979657813 0.01808131682267768) (-0.01885756561804526 -2.094292520829141e-05 0.009285335610171475) (-0.07311984287083728 -3.229057480247721 -35.08023525450537) (2.407494252879201 1.573660262765709 -40.5174406057745) (-0.03175554437852074 -0.01191049775963175 -0.0137038363670402) (-4.973825433192637 -3.885453044124162 -36.09870596120716) (-0.01389492363595606 0.02351572618835274 -0.07548002374198051) (0.04260479067973458 0.002618243887115651 -0.05309274390142365) (-0.008726354580960724 -0.00421282319953077 0.003819231692314645) (-5.118620408838204 5.961712505086887 -12.02856701232235) (-4.647076615194347 1.68577877201231 -11.04654340892567) (-1.318375395037001 0.1663219704986192 -29.25297857906308) (-4.019992202742266 1.01316184742683 -4.196578544132151) (0.1620083477631158 -0.2658993903142849 0.04482135180661598) (0.082055366872732 0.02033966673394215 0.0003011348774902573) (0.1316739576389678 0.7547650060615119 -25.06902949977117) (-8.50152968696009 7.065667311019108 -6.486155085649902) (-0.01377916186097951 -0.03824597345219012 0.003077721934755842) (0.250522695694497 -0.2081426542647665 -0.5952324545589452) (0.358400725260954 -0.09548368232196563 -33.19449141099581) (-0.7926339971353624 0.1779230762635138 -0.02498087771005517) (0.6055858123144396 -2.344871114460877 -3.64482521369095) (0.07671337479747421 0.2952176949882171 -0.02779888503747321) (1.435367614290223 0.5872173673086003 -23.308390075596) (15.90156376334389 10.98772663571081 -44.20937537794706) (-0.6812081247060099 -4.83755295518678 -0.602688784525611) (0.007797613465069755 0.02431515092266288 -0.01122958548206792) (1.585548375941367 0.1331858356308133 -2.825459122511792) (1.147509343206165 1.593290913997972 -1.496921026604107) (0.6269743332461413 -1.253342630796412 -1.0863234802207) (0.7070175518562637 0.174826566012445 -4.618144410502859) (-3.700164312843746 -0.4655243726520351 -0.893869828427502) (1.454953571298048 -0.6390864414825199 -0.2185018914234932) (-1.153529124071792 -3.859377323897778 6.340134263052306) (0.6580286034816314 -0.2756835682220157 0.2413465038924255) (-2.325723565333988 -0.8051244854104908 -28.06876286751615) (-0.0002985032605005598 -0.001750486595526982 8.911520443002051e-05) (0.5462415663488673 -1.195593368603654 -1.072823397383213) (-0.007923875539620409 0.03602404219628159 -4.866554988231874) (-0.002833556925068354 0.004396985495516204 -0.05065331958597675) (-0.04383508594110625 -0.02941719658338129 -0.04899787082486751) (0.01282596940015755 0.02624994885874003 -0.01590349811839899) (0.02659171874928241 0.03441696430185077 0.00037929458100683) (-1.107875576005417 2.682688920360395 -23.48396706756633) (-0.4711230568359509 -0.1526691230892946 -0.2179182990186591) (0.03615957085574234 0.03983834484940571 -0.116237810859432) (-0.04670850313432672 0.04966578401938938 -0.05507861055852675) (-0.00505907645653133 -0.01751273810870048 -0.0377760449792043) (-0.002703746532723844 0.01842545450180254 -8.119807964440833) (0.02748495952654829 -0.04241600233507076 -0.03786806502036565) (1.269295648613967 -4.223259475504278 -2.195340175907329) (0.3755891960851914 -0.02735788642063641 -1.06767141538568) (-0.002552895215351335 -0.1194292253128921 -4.833015034421745) (2.262363897233184 -1.25391314810946 -0.06873321471212339) (-1.55575119988049 1.454662600696375 -1.660881816080375) (-0.7017073638058511 -0.1449648734324972 -0.317263602154416) (-0.17790108765445 -0.1275579687294783 -0.2013246319983078) (-0.013196007569391 0.02842481944749863 0.01598998949493283) (-0.004703931630799102 0.07022139775279868 0.08631697671835796) (0.008470299762897001 0.00112814729195051 0.003037872282557304) (-4.547866823984033 2.014935900603906 -33.42415636186518) (-0.6439221418669311 -0.02938160218103075 0.2617536503255849) (-2.260276029417272 3.274451863897291 -3.642460381554159) (0.0383057124696651 -0.0483637332034989 0.01756726610126854) (0.0464169900035464 0.03172530284596085 -0.0223157265868137) (0.07400217111176809 0.05411887077705192 -0.1275851865173556) (0.01134595467777455 -0.06744480140074094 -6.179752876902072) (0.5231576835871086 -0.9632114002711203 -1.786909753413621) (-1.597230570311418 8.22285050555287 -30.89583367202804) (0.8053836427589998 -2.697646124345536 16.14034449064024) (1.030219765552843 1.02780866004085 -3.626875811372821) (0.5576935430780409 0.3127717560796331 -0.7553895985564643) (-0.3754442560763119 -36.19693462262244 7.997905719022368) (-1.014384107895513 -0.5648188397884524 -26.46839568389722) (1.753591994716619 32.7849639302919 6.847178402417642) (-4.113269524752894 -0.6498105423426196 -5.327904145950583) (0.06955691922860151 -1.405327187214429 -0.3656409549630723) (0.1147737747895279 0.1107562133500398 -0.1895483682156429) (3.162451274498112 -1.231754551501413 -0.3628998517744165) (-0.002293170368490858 -0.006375473236101032 -0.01202845354389928) (-0.9379788845558378 0.120362018673948 -2.082700795013778) (-2.186768499179494 -4.367756278382543 -4.094080119091704) (-0.002364590102626601 0.1081441886052824 -0.2893783807903972) (2.320845946059373 0.4035868870161665 -3.065543634810492) (-0.0494095786611736 -0.02221625708640523 -0.09176745607495494) (0.01468934964762234 -1.408984810102901 -23.41975197798484) (2.441809571670805 -0.1049022169051308 -1.104243129507455) (-0.7290214008413375 0.04311779383499669 -0.2954403923259716) (-0.1132800211803407 -0.006089903634259039 0.06826789993188581) (0.2983612467184774 -0.06918282416308812 -0.2021947038659983) (0.005062442234225631 0.00781143667009042 -5.279360290171176) (0.1694889883017644 -0.05419097596617943 -7.763930994075934) (-0.2197180986975311 0.1274146281257793 0.03050728698422252) (0.7479855204556716 0.3065514732041473 -13.36566424029917) (0.1310338520453673 -0.09889537341217186 -0.1868329209922661) (0.03485365949710843 0.01384534869063063 -4.385430879741996) (0.1963565138291012 -0.3493119353503664 0.5795283751857537) (-0.01030589641816784 0.04672296626566035 -5.382210458205939) (0.01804368175158312 0.002893957483714469 0.01177146760915462) (-0.1074218601300616 -1.832020955463275 -18.25633457046913) (0.058332734555941 -0.04582248624702023 -0.09385004985134285) (-0.2935475214986699 1.192623085999028 -16.48417965113257) (-0.09509451016152293 0.1508014686251808 -0.08997536465453776) (0.07927850620756816 -0.03058533232652003 -0.007533068919981265) (0.0001997307137558205 0.05380616154368834 -0.030325523065545) (0.224168019454439 2.864832466933589 -29.97948769004154) (1.068063478303323 -1.284938170630397 0.5580974473520118) (-5.530174195089184 5.608968995229029 -45.42810323027638) (0.3586089008259363 -0.1447227301643771 0.007838052435029629) (-0.0672913109748763 0.01945301131864269 0.02291799237235926) (0.0863619863876305 0.1085857465197871 -0.007312301116757652) (-3.958955142428311 -2.986113502756626 -2.240688507021997) (0.0334252147549936 0.007358799701812838 -0.00948103487648203) (1.16669547992364 0.8274624261380523 -2.360544185789458) (-0.04771977876879807 0.03960456370312755 0.02344739208060195) (-0.1472916839020827 -0.05912733812367008 -0.0008819277393741776) (0.1457776085391906 -0.01383662861832504 0.01920003538703046) (-0.01633523739374245 -0.01293523370433918 -0.04858947031033883) (0.05870715940031299 2.164097363466253 -2.268628612145568) (0.01119886585981287 0.07755422861929187 -0.05929020910349127) (-0.1671157984392062 -0.04489590344965213 -0.03247657938749057) (3.258767481235022 2.767965764453646 -1.994176709992345) (-2.182244617610956 0.5437031566414253 -6.071680361000319) (0.03932147583943207 -2.525544959031425 -3.000052557485327) (2.236221733829022 -0.6672312883980588 0.1670718195044937) (-0.5152460373378236 -0.1614876820592929 -1.265788111375458) (-0.05191705740359744 -0.004942150509517733 -0.0002141932472931327) (0.00208905119733383 -0.01701662790691089 -0.01634571888923661) (0.1116064059445244 0.02198145646138823 0.09733629725634746) (-0.0008199303224780408 0.002428365467245159 -7.91251709028034e-05) (-0.0287824800158099 0.03571325999144992 -5.425458171735395) (0.02443890928831926 -0.00837238833346585 0.004237466219411516) (-0.05213936388466361 -0.02244840289208776 0.08746906632286643) (-0.8656475177720906 -0.04958565164499062 -0.343393559964592) (0.3202375532196288 -0.09063227428160338 0.5727270065947331) (-0.2370744712190249 0.2270240749110371 -0.1920596457210648) (0.02032373767649359 0.1248380302228211 0.009411854527315175) (-0.01373257255691374 -0.01123920712246338 0.02513108233538346) (0.2880756777181991 -0.3653305447240527 -0.02135975862121819) (-0.1229283330062919 -0.102201194095115 -0.2085262981316498) (-1.29626936277438 0.4198270449097398 -0.07637094656102356) (-1.204161877648075 -0.5280118344172805 -0.5462349249728456) (2.274269206092404 -0.2172832125487961 -0.7843919545258) (0.257865800785395 -0.06776990946002791 0.1067170831092121) (-1.307464938881064 0.4893858322383822 0.9581962623412332) (0.009888434810079651 0.004098030564023872 -0.02771164991367819) (-0.0052743046190947 -0.1552585476247946 -0.1113680611489016) (-0.271740506020442 -0.1408741157054889 -0.06346044576768517) (1.428535043541002 -3.740331311404537 -1.724788574719668) (0.258178176486894 0.1252586291814986 0.01203451123454527) (0.1769760835449292 -0.08535131380777666 -0.02563760945385668) (0.3560147984055109 0.01135392026097415 0.01364958672963848) (0.01257799947295804 0.006372291822880492 0.0789705399510881) (0.04857290707477886 0.02416060447606499 0.01007678767883826) (0.3509870670952593 -0.04179731104515619 0.150083124590901) (0.2072829997619696 -0.05276486625937087 -0.03698962223331816) (0.326366977969953 0.9171037436098533 0.2449619356916962) (0.2001272076347227 -2.100082201884802 -0.6883035552349199) (3.03070031823698 -0.5255058077988402 -19.0671270826846) (-0.8430629520065809 0.6857865070674682 0.03712079607659491) (-0.4381124085734172 -0.5732066049286151 -18.44974110968471) (-1.563150352320539 0.3427631888630404 -8.118482795564217) (-0.02987497893699463 0.00342402170603634 -0.116228326917864) (0.01955420732202833 0.06236278630895642 -0.1098542931716636) (1.08070824920372 -0.9224862461108696 -9.33043430825202) (0.2923088312606859 -0.3374058627664433 -16.90737209223037) (-1.852249859315558 -5.203740655104432 -6.249772250758818) (-0.03747241495385062 -1.531009218850016 -20.49607252640102) (1.217840690466817 -0.706168879293704 -18.8019799986534) (0.07378823806080148 4.882077499800342 -6.694515459510352) (-0.8456200418916124 -0.8823152760143782 0.08350415178093408) (-2.048249914238189 -8.132668950052199 6.663847177619) (-5.013293192386821 5.602037492017612 0.935167119688088) (-0.5818858649430889 0.5621520388460628 -1.575305076889751) (0.09605055454456468 0.08488625459844074 0.04081798566722101) (-0.5032476275258584 0.4225564244348436 0.4814885627893165) (-2.632008692064409 -4.13970627573199 2.898800592498814) (-0.5102053839591629 -0.1781300497355644 0.5419777232555431) (0.07315174773559631 0.06583824797173321 0.2620251265913468) (1.688668614814224 1.187802695023192 -0.40173498515036) (-0.291297605622739 -0.2216862550748064 -0.4765734284924316) (-2.038725452924393 -0.8985344847574008 0.2134850325339486) (-7.671741802889988 -14.12929133363466 4.980405338668537) (-0.1586228577453976 -2.79702782855726 -0.6300147589889595) (0.5213745637280555 0.177575695313955 -0.1226656857023967) (1.332293231743664 0.7907143894103248 0.1723393909670752) (0.02705681697955848 -0.007137522363550376 0.01015787377055367) (-0.006790253065281389 -0.008689531430549575 0.001979917769405377) (-0.02129587497293508 0.009406350403061831 -0.01106067366162414) (-7.550982959395013 -6.329952859511986 -0.8423767373734108) (1.523254851531764 0.9237805487617801 -0.2008662468884193) (0.6181887257279395 4.568533170031356 -2.297910321475725) (2.236991272981869 12.12395802140681 15.19453553075153) (0.0214397437524563 0.007728528254544714 0.1572544514944837) (-0.140367239222186 0.02427656583937994 -0.06849172280839494) (0.02494354954781034 -0.0147092816218096 0.02446462767100022) (-0.1106917118760722 -0.1505562607634153 -0.08107097981924868) (-0.08842958891607036 0.001797874192437186 0.02554299132076641) (2.147653244258791 -2.804163195702813 -1.505220958748139) (0.01252486556862188 -0.008714055206773543 -0.001759216889229934) (0.04002803728096679 0.002561754215579169 -0.02654420528996053) (-0.3787875634080834 0.08284685570589342 -0.6094981051963112) (0.03198217342866959 -0.0412495992485694 -0.227943292652737) (-0.01698255447070501 -0.03644215330145516 0.0002312770097923494) (0.2718440102290917 0.5382962318911646 -1.758548844922607) (-0.03205040604526851 -0.00613170237668201 -0.01012610772376756) (-0.2006021653299122 -0.07265360749187658 -0.2173909832104094) (-0.05447580777138075 0.1001251383633601 0.04698436011326852) (0.01030344863171963 -0.01378841542522973 -0.01483828258452501) (0.01241713645707897 -0.002122854045633697 0.008670671207712897) (-0.511989849286709 0.2421847622329621 -0.1477732628310341) (-0.06816253860568899 -4.119537414266906 -0.7293714075235579) (0.1509968300418787 0.007907938303231419 0.1321504945202453) (-1.472368862441574 0.9838284678671987 -1.000875221715155) (-0.005313964667564715 -0.003761663306779746 -3.870345635714587) (0.002774859079807486 -0.0004711857721506884 -0.0005109369877747318) (-0.2022883928851549 -0.13003791057579 0.005957757818227674) (0.3973257806452542 0.006880425353325034 -0.1899876016848025) (0.04688879374765825 0.08949737885137504 -0.387071534896521) (0.04924172408597066 -0.02830461732012426 0.06906785486065957) (-0.0221897566919441 0.006569175451647397 0.01136835577776593) (0.1529479662729319 0.5241631969210181 0.04562453575529422) (0.2820217057126303 -0.118876865026304 -0.07120585033904733) (0.3101833764814527 -0.006838121215586055 -0.1486005102545283) (0.3302993544766919 0.07387263351748735 -0.2827001023298167) (0.04172018838803075 0.001763251193797435 -0.05591824104773776) (-0.00269247397787778 0.01108704241097424 -6.35034222954035) (-0.008084411821948287 0.04826437220910684 -0.03487327154049016) (0.0122312493923929 0.008644977834914884 -0.003390023326903287) (-0.01969009987354356 -0.03974092974006575 -0.03426796146030993) (-0.08932004338974561 -0.05864887456275659 -0.0384772847050724) (0.119573759587727 0.2650361148061586 0.1087483033384423) (-0.1071372192488654 -0.1757582991997182 -0.2369078124628504) (-0.03545083214677846 0.03216736492826923 0.01202534043271482) (0.1052679936043011 0.1355595530815397 -0.7189748572764709) (0.1577366998756398 0.2201350109059921 -0.08356546823292649) (0.009677677268168396 0.01351330717281394 0.001345095083853821) (0.1175350084443979 0.1349655853781097 -0.2677051145271544) (-0.4742938057113611 -0.1986554420172378 -17.88375771370701) (-0.06359397331092453 -0.8181684202671089 -0.5510117387461742) (0.05396425333782447 0.002523617740894542 0.01140419819582128) (0.01076307953344946 -0.05430510044949909 -0.01814401705585763) (0.07943097117221148 -0.5915268042401378 -2.396886222554989) (0.02836905924665008 0.06323131702603664 -0.06042883537793516) (-0.1790007554794747 0.1446396238633836 0.1031130532605974) (0.1988581920020696 0.352917885964007 -0.09797552554232127) (0.003508596728528872 0.1426497939310907 -0.05091285130880127) (-0.1813558301462235 0.1840096546940466 -0.05281622845895076) (-0.2284209426671709 -0.01901129392022221 -0.05100820293162044) (-0.03997215884865359 -0.1787247383480123 -0.1860754034375804) (-0.007787742418727541 0.001882405584182253 0.0001090531414292403) (-1.586514482142024 -0.4145239795109567 -1.030824999746276) (0.08434389606430608 0.07044105593718521 -0.232025749381152) (-4.037963462064053 -0.8288098136229174 -0.9398559862565313) (0.5550770550036381 0.3970274575221867 -0.2357717133867597) (0.06452317479579117 -0.03989594195215487 0.1221339697340494) (-0.00716715207952257 -0.008826643391655347 -0.09590872034073838) (-0.06087907409061859 -0.3736662654311365 -0.1557020894583107) (0.005127517292362493 0.4352329586459469 -0.29267886357049) (0.538931099154151 -6.220808891790325 -7.136978061747864) (-0.09511645270192043 0.1708182592875247 0.09295337246114327) (-0.09453886559744865 -0.016419455081986 0.03564204034038086) (-0.102929344386192 0.03690092859855534 -0.02160192822571156) (0.6317560211009848 -0.810336642965062 -0.3901130149798447) (-0.003815271177360732 -0.1002372900939539 -0.05269960386742397) (0.5666421517658022 -0.1123930555866025 -0.3136413546990647) (0.05108461807053639 0.01330355382446727 -0.005097077445620459) (0.2512482991912613 -0.1794733751833747 -0.1038305051383329) (-0.2412177532261425 -0.1644054824743247 -0.07698856455181907) (-0.3369170558541964 0.02200893882864206 -0.07654962706390064) (0.01304985457783091 0.01086961042112667 -0.009887158757610919) (-1.47032621803667 0.04160014304322002 -5.289628636331313) (-0.4769096519313125 0.7713121135260934 0.6197410651729718) (0.1215487731707896 0.01320963958030086 -0.1504294303081131) (0.0816614732122375 0.1039692176111983 -0.0559442480566918) (0.002603644056038142 -0.005934423544746902 -8.106280755461537) (-0.06918077648983788 0.02474403954132265 0.03430178301757719) (-0.01634869498702192 -0.00096676033099524 -0.003683783712996764) (-0.03227210950546573 -0.09784645591454601 -0.17337950051011) (-0.1324648044231252 0.0441303407063485 -0.05816871400479648) (0.007409946840153413 0.02382599682155601 0.0310583597307339) (0.05292177392379574 -0.03037248630012214 -0.09100073434865237) (-0.0113006106338845 -0.07272463864876737 -0.01496559408967659) (0.02806850794019508 -0.7039566041844353 0.07054646080872073) (0.06103182423417004 0.01213360216842347 0.04387905367482681) (0.1326560406876653 -0.2979920890488849 -0.1269371310843843) (0.2561329483099099 0.01404831037319127 0.08953930401055515) (0.0009137830017795362 -0.01200746479563278 0.009983546523643989) (0.00413421775845014 0.02165995917567282 0.009689931559139369) (-0.05697823907045166 0.03151098311401794 0.09804768872603543) (0.9065806932655593 -6.211989017826867 2.690013851912321) (0.2881995138897379 -1.48184439058512 -0.1103985741156515) (-0.02083612196041754 -0.06510946514771096 -0.03862176622551752) (-0.0635315044331165 -0.4407699232294595 0.1590369224477764) (0.5496592875381917 -1.212001059747388 0.1955370286435728) (1.272768557435176 -7.836043605311835 1.900318961796656) (-0.0447712538754463 -0.07397077684020507 0.0256943431526015) (-0.2520130164238017 -3.222133042774773 -3.832485944238683) (2.032039986885632 54.83732606352757 5.008895701685556) (-1.428191665363098 -3.012222305098973 -7.075612156579906) (0.2234948895662794 0.4998905225186185 0.6459772741447933) (-1.801095246870479 0.1355280304453383 -0.3225449203214129) (1.528154235841258 0.72783109376706 -0.7219787654788187) (1.490614056544606 -0.411539151097071 -0.2366619398303012) (-0.1786104994555729 -0.07313447435178114 -0.60224384661272) (-0.0265052676410453 -0.05928228120427066 0.040369828848587) (-0.8857542984750713 6.96339138773092 -42.71066517449651) (0.7015472267269728 0.1189352884898837 -0.0597934052404064) (-0.003501894562763745 0.000166623642415515 1.557022725657599e-05) (-0.1949293000035457 0.01168857254932256 0.06561566707238706) (4.893904991927467 -0.02905983965537307 -1.982973776352887) (4.34763906949035 -0.1665211638208395 -3.076687193257471) (1.758251319074569 -1.563972125711419 -3.140165783413445) (0.05204189190167216 0.01801597200427166 -5.478494704848199) (-2.113385598526872 -10.72238310963376 -1.77447123476007) (-0.02192926151886778 0.02516650133268017 -0.06417356105380036) (-0.01136662942633849 0.05128255978300575 0.01522296700167169) (0.514849442753792 -0.3878910601649088 0.2832283392729649) (4.538099709974763e-06 -0.1423980529085694 -0.001238478937767892) (-0.03073086288430065 -0.05665388775845508 0.080540994913688) (0.2850622857130154 0.1756636529606416 -0.003328931821569464) (-0.9608595421903698 -0.08853144217091491 0.3552659190031339) (0.08985831809817793 0.001747584088991052 0.02311789251677755) (-0.3890778969252031 -1.331846778055082 -5.839113909024785) (-0.2984093165303815 -0.5651813881843111 -8.270011720665538) (-0.1117949603514958 0.3293603398416826 0.353704738714824) (0.2904146749535423 0.1965927085463383 0.07936309964918149) (-1.289568436120848 -0.2452017351710796 -0.01140021655748757) (-0.02058487621715677 0.007175758727298328 -0.01991787923950766) (0.0003022685103357946 0.001692317778395461 0.003421481646767913) (0.09621036498249975 0.1422922630532245 0.04558940144261884) (-0.02920179504105683 0.06047186553926685 -7.118291685747638) (-0.05188629452839288 -0.03606543850437245 -6.161233764737197) (-0.163137103774245 -0.009812598632723456 0.01400586804394009) (-0.03621949783316221 -0.05644920087820969 0.0371563054763701) (-0.29576688329889 0.0544250257631694 0.1140012670030311) (-0.1123838242410288 0.2107285775056833 0.01311557858973836) (0.04182919800468259 0.009274899801450694 0.03437834082279676) (0.02877029282463962 0.02379883632657158 0.0712705911713486) (-0.1719410833019399 -0.1220586499525117 0.1660668640662917) (-0.4551659794993276 0.01388740956528619 -0.1264873081953546) (0.004125858825500509 -0.0004917688774808339 -0.008577367426427177) (0.1067844902281244 -0.08341330758321729 0.03724876661760022) (0.000205528114047877 0.04901741047215571 -0.0528788063206166) (-1.212444748060592 4.7691464622996 -5.149459825275759) (-0.8416514673915023 -3.336338681997671 -3.41030651190535) (0.2530133378540992 0.9897002407875347 -0.9909926275237813) (0.1187650756874372 -0.2500797836453024 -0.1177661314081089) (-0.001956487450264444 -0.00616448771493615 0.02364234325920135) (0.02519345399587437 -0.00797008885823596 0.02743321361158516) (0.02132724008958014 -0.01355800882707647 -0.03473705231219797) (4.59493846409271 2.154964574604321 -31.195244678743) (0.0349717023681675 -0.07236992042273743 -0.007427977636152092) (-0.6356351911994488 -0.9445463505453345 0.1635665054416478) (-0.2188531532464775 -0.01159188561383297 -0.05276896410838307) (0.004600236490094792 -0.07351063149893153 -0.0172906037140922) (0.005761194282071627 0.00115427486239802 0.006725828125746678) (0.0255873229376587 -0.0162573679143437 -0.1791516262564578) (-0.06962381355636942 0.08312323109897754 0.07746138154407139) (0.0432794042599806 0.008087534161968491 0.07535876407103291) (0.008698696497570053 0.01064583572311277 -0.0001901730380323673) (2.135522203643123 -2.134078316638045 0.5293946918833248) (0.0114462322105102 0.02070382273249554 -0.01343778936957907) (-0.009668049781380635 0.01953270763612815 -0.02368921220823184) (-1.433790865118374 -5.881137403436914 -4.075535119466077) (0.5414307245254514 -0.3321830273001941 0.1165240593707333) (1.965650318747419 -1.798005016791173 -4.740209226115543) (2.797745155826648 3.823695337049822 -2.572064161564927) (1.46637177462499 6.787353208109669 -4.361919266585955) (-0.07775069197424134 0.009791966277956126 -0.002817246441116909) (-3.471533565222698 1.136139031269103 -5.149072242255511) (0.0583300839218032 -0.009493899349697583 -0.01276959158082271) (-0.002770909809203701 -0.004513344623541153 -0.002208565621254691) (-0.03127852462332757 0.02028406184183731 -5.851777385782202) (0.4250633008024493 0.07133812617801336 0.3076270282566477) (-0.1997484222679096 -0.1215135056483923 -0.5484850034605405) (0.02168268608281414 0.01797001998422567 -0.04278668402734755) (-2.458561618842491 1.496573161532236 -8.258453590712012) (-0.01299447082099546 -0.006587192379760361 -0.06524619711314136) (-0.005382983387069325 0.002231337462201918 0.006237834068233467) (0.0348539587995422 0.01204820794208572 0.1059248535190966) (0.001679639589859297 2.701951463707566e-05 0.003913800809487465) (-0.1050113586106293 -0.2073535227002834 -9.044036540957647) (0.02561076742228657 2.696220249223929e-05 0.000382240910319962) (0.01039988219894917 -0.02630850702916632 0.04262111328345548) (-0.3032748277652049 1.341977974586415 -36.67790653417722) (1.184734430823067 -0.4212061526418459 -1.166226427173038) (0.1168228035149618 0.09258015901422872 0.102825294083935) (0.0008255963231879101 0.001762381098757539 -0.01662518555376117) (0.1423014964095899 0.3862927352571353 -6.92620071497386) (-0.0465144178913953 0.02428462060051684 0.009128292542688517) (-0.007458880430565063 0.00178151754538173 -0.02059502425886572) (-2.972942877957382 -7.225469174006681 0.06795526088901396) (-1.102313115472515 -5.627702107940983 -0.5690640579539201) (1.032496523263778 -0.3050933532673273 -1.560575803764305) (0.05541447770893115 -1.866925716069853 -0.8625958554595455) (0.6363077416427132 0.4845921407650699 -2.235817222613655) (0.2622933427189468 -0.1140365758117665 -0.08256585923524164) (0.5416822442442719 1.304644063707182 -27.09147741263713) (0.3762901064062374 -2.168028071234518 -2.565544363082754) (-0.01024880434172344 -0.04397403885201578 -0.2563303332000233) (0.06770472353570203 -0.5439037688745313 0.1506561299566661) (0.236125999581817 -0.2076667513594347 -0.3870926447545331) (-0.2548377937632046 -0.05763669170980502 0.0319551142863029) (-0.6349547032653358 -5.732333431050973 0.7525014426481021) (-0.6375994205009222 0.2743411592622702 -0.8811528364074884) (-0.1918586060888277 0.02933367087964035 -0.08594324904688638) (-0.4963255252669944 -35.44545067035128 3.09470597382571) (0.09339236058786493 -0.07156606497821751 -0.4763103532841531) (2.112113334003458 1.209101546389188 -0.8196969967265487) (-1.536937407257226 -0.9559253900368713 -1.83276993936772) (0.07083834372985645 0.07113126886275352 -0.1073938263741991) (-0.05652806951622431 -0.09242744588238033 0.02730876885409641) (-0.03046271924897508 -0.01013198247014337 0.01007176719237802) (0.5263411036549689 -0.87978015426398 -0.3581525097577491) (-0.09499505033982103 0.2210526277581567 0.1613018027965745) (-0.1071100802625101 0.1853121649496718 0.00417962033011271) (-0.06834408697405736 0.09520130474812509 0.1284325282249731) (-2.330839766336218 1.285797978983133 1.714705097575354) (-0.1908152621919091 0.5105288155009471 1.364272793054232) (0.01303320570357314 -0.03600222082154265 -0.5457147915069929) (-0.6329048134061026 -0.6015089645250862 0.3890882133961192) (-0.07056643878313905 -0.5359522431736725 0.1249086196394799) (0.1194432446452987 -0.2739057690062506 -0.63445757604901) (0.3462884915209703 -1.194661132015908 -4.29214403092621) (5.257741228338046 14.20908325292082 -57.40881233411291) (0.444531463331538 0.06042987151442965 -0.7602642287883864) (0.03529323661810901 -0.2066507092624219 0.1254939004854793) (3.189593509451611 2.236066834531041 -0.09081765205719322) (0.9897356187913968 0.03777609456693656 -0.3422264409205307) (-0.2650687684622507 -0.007517219162719821 0.3267253986654896) (-0.249308530096876 -0.2070060198246217 0.1259520076313778) (0.09129972577267609 -0.3931602791458927 0.4953439763470573) (0.03725032240714324 10.51405794277424 1.887847785014992) (-5.815832822024616 5.038461592531824 1.658760880322768) (-4.728250196470084 35.44243828790218 -1.683484600325518) (0.6547170175081563 0.8126051284602724 1.047821260146016) (-1.152011692770776 66.41536089687278 -0.5713986990159892) (-0.07463557083351291 -0.00282524980030249 0.001468288432040485) (0.01829649359191616 0.01629075626254619 -0.09471079698649812) (-0.03878256794034601 0.007446946455312249 -0.003349701867673257) (0.05844214015832044 -0.005352217221597702 0.02839990808490968) (0.01594767047804904 -0.005148497808773729 0.01425703555043361) (0.1020964204945958 10.42104417516995 0.928655274296577) (2.328132209310694 1.05493786741441 -1.810464463023044) (-0.009335438893239678 0.1424826416651631 0.0235327752225826) (0.4947505413579079 -4.498718972931886 -41.72742089403897) (0.4224821770558847 0.2914018523701755 0.01277093332857854) (0.04499707012968682 -0.01448705149710327 -0.0001469080090023174) (0.01203134971694999 0.004028856603049601 0.0371152651814038) (-0.08738097576369062 -0.1000837619427954 0.05127776991715279) (-0.03252910257979643 -0.06608009895437786 -0.03079526522511804) (-0.08676774380758218 0.01588207807113745 0.009006960434349757) (-0.2153860745555178 0.06727461523416883 -0.0007679574883548979) (-0.1012904012192842 -0.05004494947940461 0.07238687047300599) (0.0992468958711446 0.04947594619208983 -0.06851097088900089) (3.59278766511248 1.335245058610648 2.403310470177356) (-0.1186079679951598 4.747881491530148 0.9391216168176075) (0.2577968089182063 -0.7373905211209888 -0.5351890847619288) (0.2709140480253839 4.254350504061398 -3.333281039537158) (-1.216558945643554 0.6925899388377827 -4.095033615800404) (-0.09789905898317146 0.04729956586084569 0.004289302092180203) (-0.009756015444406907 0.006542029858872851 0.03204591836211386) (0.2468628263690134 -0.009055564406136911 -0.07229664309416878) (-2.533954408270214 -1.852267286562187 -3.348522457865506) (2.565004912264819 3.105865696612127 -0.7855746989360034) (2.881502610466375 -0.1693576755725071 -0.2717052584396261) (0.03521647445523709 -0.03140571330760983 0.007815390797970435) (-0.05045271166444668 0.008095982255563922 0.002582234177548937) (0.6520066078346444 -6.255852157451354 -2.036910924691535) (0.2880316558760005 -0.2099465302636763 0.08015478826381935) (0.5818960568521563 0.8506255822391937 -0.9253535893263554) (-0.02692087103600568 -0.0003364511697918956 -0.03228273260605403) (0.2264403940179787 -0.0956948462982725 0.1646497458767726) (-0.7622606879606151 0.21111287609559 -0.1609572842260207) (1.038887958265656 -0.6248252989481908 -3.35789798284017) (6.0513700759727 -0.4030773252477817 1.570244657226156) (0.02075548931443557 0.01179299095956519 0.001812948984864466) (-0.004841989328094654 4.99987278661372 -5.992173522277318) (-0.7998611475640552 -0.7433542172461223 -3.160517385101537) (6.478393144317703 2.397557882458123 -32.34970130994368) (1.646229707127286 -0.1109360017088118 -32.96251348421957) (-5.638472335613713 -3.420845240586895 -0.4366997078613304) (-0.4057881668715778 -0.2416394596490634 -0.3165281299193567) (-0.02443121369889942 0.008167354189172169 -0.003755754955765677) (-0.01796253893416794 -0.01064179226887288 -0.01282458507403606) (2.201326865626133 -1.36681578425926 0.2587707295251131) (-3.888203612760523 43.17684910886708 7.718039979020894) (-0.6613216297032065 -9.202696672227722 0.2111603055270255) (0.05711161229888616 0.01244613766584016 0.001069892901763) (-3.829962891892399 1.790581520601039 -9.363216296862337) (-0.08177263755699954 -5.502416804030455 5.015906186104053) (-0.0679814423493447 0.003248151132012905 0.008453668014468394) (2.570275151347292 -14.68244891781407 -23.72043851783761) (-1.847240476113191 -0.1908339316664842 0.4068576905054518) (12.00323577166882 0.8232443604854804 0.4769339654485382) (-2.226928207524522 0.6974239761405767 -0.7480953795168251) (-0.7531176250394821 -0.818880261621891 -0.9364166634066678) (0.2120182816116474 -0.09825381832268293 -0.09094613199752279) (-0.06860847100243483 0.0236451913732759 0.01058657401693256) (0.01268700629401298 0.4900817108997823 -0.8480326326975174) (0.374211845616673 -0.1273695877849843 -1.298987573956822) (-0.2582057215918546 0.02858968135606464 0.009314628055114238) (-0.09990322878802839 0.03868546634439712 0.324025007104902) (-1.422126360620217 12.99506981826282 2.123750197860961) (-0.03820435766535622 -0.01578624117831436 -0.02790593067109785) (-0.4575041564229019 10.37719228513003 -0.5225401024202866) (-0.3182329408811543 0.3351078760310953 -1.13183834285708) (-0.5098911029881362 6.866317269230927 -4.260386385603923) (-0.06431842385564462 -0.03690143739019214 0.01516805639284901) (0.1089156184990191 -0.01843236848794105 0.05935879148954062) (-0.1596058435259416 -0.1223700060570896 -7.088111368087895) (0.9514208649570403 0.8331029792890792 -14.19928202685867) (0.1214370291885937 0.1277147843617943 -0.06048916930789317) (-0.006675086069061386 -0.01161205358693372 -0.001403503051620965) (0.03313456951631385 -0.4613379734187667 -0.1485736106963272) (0.07919942920668514 -0.05348504517775103 -0.06634579690053764) (-0.03083931282190383 0.004031739255768076 0.01070055864081587) (-0.008006862576140077 -0.08396469578502688 -0.3145829209659666) (-0.06339236160629738 0.1567740130462991 0.3777393889475776) (0.004320352760471637 -0.01222719052511397 -6.165185989092521) (-0.007741448073905706 -0.03510373130376816 0.08292264556257031) (0.519210786805936 0.01758648470783053 -0.01384254508464015) (-0.03832949875652601 0.01561738732652521 -0.0537921960279609) (0.004062628420820245 0.08777350619041269 0.0378212621335073) (-0.08419340642463331 0.0501586168507608 -0.1839869489573836) (-0.04593081561339749 0.01387053404868019 -0.01340419327352605) (0.01193602889530146 0.009315921264868039 0.01070293313574599) (-0.4616476205047159 0.8447677523882267 -1.984356230909631) (0.1147201630202693 -1.186296688053676 -0.556139560108403) (0.1222513397875751 -0.3156428965643224 -20.65975581689002) (1.422256665359535 -0.03762858194226267 -0.6102524441216627) (0.007485757257796063 0.0005239932632029234 0.01122195874392653) (0.8373087286276649 0.5785369437970518 -0.6038082895929371) (-0.1485003302741504 0.08009964293393962 0.008825953708862799) (0.1388197793005869 0.1637303594920813 0.3205250275394792) (0.3291347077448034 0.1751489510184885 -0.2107906639459242) (3.611765568923841 -19.11818338685418 -1.733949414331435) (-1.893924572152601 3.650139978173559 -3.95623519220683) (-0.2144439401735998 -0.3412165758186902 -0.3532858703471961) (-8.372934620329138 4.853110788995133 -35.62747376066778) (1.955350184334512 -1.539035880058901 -0.5431106305190758) (-0.0009711943801333223 0.03491330717182481 -0.002631981386678172) (-0.1076436677701035 0.0009120062561037701 -0.0129336107494758) (-0.00326480845865292 -0.003594777185112259 -0.01337638364695252) (-0.1862900937153094 0.01970191533234198 -0.001190826170425312) (-0.004902873169152435 -0.001751906265176459 -0.00135431549946777) (-2.077590817650559 -2.643609656822232 -5.636919587216695) (5.065534078548037 44.08974447773373 3.375823913219876) (-0.111121875443575 0.2567763186461436 0.1896748900378537) (2.222348009852711 -2.383742925320304 -31.06703362578176) (-0.06974782032494714 0.107135486812559 -0.06639062411005657) (-0.05373598684952185 -0.06874329431418034 -0.03874925382107403) (0.06939800082701686 0.0316728186787751 -0.02654855691057402) (-0.06398540300284977 -0.2495657782013951 0.1015284846361955) (-0.007460701531447442 -0.00251123806733752 -0.03259335331294765) (-0.2620887137432228 0.149177189542921 0.06244798953789873) (-0.1331532245070016 0.1917236056467247 -0.07007086702608806) (0.05831373873242736 -0.007275549430381016 -0.03035301563171044) (0.3440045533588018 0.1676034818342418 0.2687512607962379) (-0.06865808944395589 -0.00493986965158166 0.008939989783515468) (0.0458493019305001 -0.02641850710749609 0.05889528260897309) (-0.05607203044129862 -0.0239489126897791 -0.06923096801081702) (0.376830766900459 0.04306385824479012 0.1007825570611113) (0.002584106371314371 0.04224799950834833 0.0281075212383728) (-0.112172193434374 -0.06054884971461511 0.04939323041168119) (0.02327026682674262 0.04427840389275735 0.172269527716552) (-0.6393323374682741 -3.956796980470258 -0.4139393444404692) (1.096473889595168 -31.44556302077758 -4.648748676262724) (0.7599876410569044 5.203738684360814 4.785629606630451) (-2.433325234244762 -2.358588697868623 7.191117767844119) (-0.6728885562551181 -0.01585531016032371 -0.8774133864229017) (-0.002970008724861847 0.01543629881055174 0.06784277058386408) (-1.327146245970002 0.1456210622503191 -0.5161162426262514) (0.398274678289966 -0.140819928073145 -1.034142601595137) (0.113886706302519 0.006657596190389442 -0.01661932301342495) (0.6724080173880875 -0.3943455462492128 -1.397547763894767) (1.030269315320349 0.4612880547744829 -3.558124078169973) (2.231783820496403 4.973707965213259 -2.377468580091109) (-0.07576153123257025 0.08974104606569556 -0.002344019428975115) (-0.1866330641676488 -0.06530478573910535 -0.2547003190112169) (0.6523271215899854 2.841345221297657 -2.76944717569508) (-0.001453311491439811 0.007744100080385721 0.005359330735319056) (-0.1336465181528736 0.1939203515382911 0.1204804953905887) (-0.002044021907069295 0.02650280889642102 0.008035014629369692) (-0.01582236829772202 0.01394954600376201 -0.04227541047381604) (0.1194484146808471 0.02789660060323987 -0.0912201611994234) (0.006030319141764218 -0.01118159156733746 -0.05487600283291642) (-0.0299569051346789 0.05528965544974544 -0.022649539469814) (1.025300986970966 0.500159907263352 0.6088910744836957) (0.9893294516754796 7.599060383877549 -0.2689054385889436) (-5.69756872687628 3.566343652690017 -6.583001912190265) (-0.5450187877754402 -6.446586211991867 -14.89530772756472) (-0.7917024926664729 1.543840525702811 -4.357417647230571) (2.605131360998608 -0.4133346451332169 -2.107808673128633) (1.083319120470235 -0.05053843146563029 -0.4474487749616436) (0.6696871062291887 2.046086432575844 -2.973406991857376) (-0.003525674888306629 -0.1810366259264475 0.1080688059243156) (0.8720712328121925 -1.032633291126449 -2.200397088244993) (0.02112796722561432 -0.007160632878583734 0.008472899642534832) (0.03855775531983709 0.007586748056979503 0.1197496791050292) (-0.09301812223905337 0.002520767416065613 -0.07787623485411485) (0.01338405370982362 -0.06200977467286893 0.04950450018371284) (0.4788333113927017 0.0003088852478711525 0.02048012438297691) (2.206388629353924 3.305986732408016 -0.5178273727557294) (-0.04950364882702413 0.3079810178708658 0.1377534611888669) (2.804251037648005 3.425020822612966 -1.999474562412543) (1.59710354334066 -22.04112674207913 -2.359101619014322) (-1.294482822242862 -5.550815652220791 -1.270657897919439) (0.6450882350681455 -0.4055522144748586 0.6911326110376216) (0.3964283838459599 -2.011753097307686 -0.6915931900035985) (1.817199886011097 8.79844631334192 -9.461509929587734) (-1.674796037968617 -6.391498722764238 -1.479617228998255) (1.078543230765638 1.193682815771817 -1.012938715952103) (-3.847743962043503 -5.455441716713691 2.654749940217669) (0.01930103737267227 -0.6046928969197498 0.3127589991123537) (-0.06505753947573628 -0.1884248437967648 -0.1122530628479699) (0.4065981133225117 -0.05558853375430173 -0.8655150145065658) (-4.369721740827449 -13.49645247453964 1.779392471239535) (-1.23408894169949 -3.365717840464225 -0.7828552149187087) (4.957376802006511 1.888176345337244 -3.583689792524732) (1.700100322188911 -2.991739237693847 -0.5776049474417124) (0.08004960299996361 -0.9486181210284153 -0.4973246857569094) (7.027205500662264 10.21277544154592 1.906001660911747) (0.1068164244609452 0.1317299412941237 0.03615063909993858) (1.035724316585175 0.6079489770361642 -0.7548609789838888) (-0.09387521521082892 -0.03700523073635269 -0.05938164258880885) (-0.3676887556767648 0.3720175902322109 0.2132465642270366) (1.122534805912157 -0.6135509274320028 -2.160898445875323) (-0.7925341429825059 -0.2622308663112045 0.04640836399127446) (-0.131200487103281 0.5850142794046592 -25.40186303699553) (-0.04742288117204908 -0.04405268078823931 0.07532869511270225) (-0.07194039710401609 -0.007336931244928721 0.007794846431519253) (0.1314305256919652 0.9341034624374133 -0.6708995650706432) (3.714644163646937 -10.49529667274579 -3.547672340701836) (-3.886145461912623 -26.02160454555801 4.995701777444602) (-1.747352571212889 -37.78057470218215 -4.084887033683026) (0.4939243213666566 -0.662171541869606 0.07069861921617446) (1.205375347680788 0.432172615200429 0.8328385092766614) (-1.425887247418992 -7.127858579444359 1.76843609561122) (-0.4695508378350461 -2.212773139916435 -0.3029846004275684) (0.4735879716530312 -13.44350621302072 -1.263791427084573) (1.449272453968044 -3.088842259511178 -3.831001600185708) (-0.3936361594811764 -1.709287191802277 -24.45711144013556) (0.4703268968100419 -0.09965711814892531 0.1607567795385623) (-0.07684694780680223 -0.05960761132219776 0.2011657069759512) (0.3297120754840139 -0.5506788231593994 -2.448235374911084) (0.02407766524061966 -0.03845017523193753 -0.01200560298231231) (-0.5029606437589175 2.92940457415316 -1.352842107704924) (-0.1176336175189737 0.2426486259387031 -1.511317348679846) (0.8004664207345523 -3.224200988855127 -30.12456933100001) (3.653784935513299 3.917555478537524 -10.23244426728107) (0.08547583167211159 -2.099312719104797 -0.977565829654897) (0.3786801807862453 -0.2230826825298179 1.50471183791807) (5.137373801602919 0.03437607953066391 -3.390734413565911) (1.290821295071795 2.293596582871662 -0.9266957854595641) (-2.1936129563802 4.458117351458146 -14.40264072602905) (2.231986592145299 -13.76670790328567 -2.9479511245612) (3.885908364370165 -3.129473147358143 -13.04924265096029) (-3.60350485267075 0.4523823095947961 -5.897701132509393) (1.451216108601577 2.658503401281843 1.078613479003284) (1.820808170512998 -7.067557237434097 -3.02257474592784) (1.475574151126596 -5.956215967068431 -1.806113389161538) (-0.5653822462012417 12.75750715083911 1.659140037997189) (-0.3567286079361385 0.4142418501039883 -0.3298847898818235) (0.7388666367541219 12.71478330069569 -1.751548895145112) (3.393523383054055 26.52019673114405 3.7464909623741) (1.063130276301445 4.408392120602426 -3.791831683688614) (-1.451115349204605 -5.401616637372356 -5.682362250412727) (-2.423663534198116 -2.828649378877543 2.06757780664951) (-0.04278463708269148 -0.7708880843545096 -0.6493633625047122) (0.5242770469178452 0.1718015789143951 0.1833753392976716) (-2.012711416061835 9.858976736415023 -0.0187650589390036) (1.685980217872079 -34.20057976733769 -3.391144585713601) (3.990143831790481 9.501365944574252 6.02432903165337) (2.671324158666643 -6.961567281288547 2.925448011734104) (-0.001954085043857509 0.06259469835110965 -0.1823605276547296) (-0.06833314792211932 -0.1559154809245808 0.103119501254968) (-4.689810582282637 3.070949277493292 -3.413568650831795) (-0.9757425834578075 -0.1445533428094509 -0.6085637063253051) (-0.02618222578021396 0.02432091095545706 0.03546085228452206) (-0.06675593379054849 -0.1609180542355672 -0.3524140660451331) (-0.002417891025673226 0.1010808277624144 0.008306576289016401) (3.873846278866288 -0.2157510737084505 -2.27628234808952) (-0.08844619945920999 -0.005357434833233082 0.009317843602943729) (-2.777484061814304 -1.890571180866335 -28.82941539652431) (-0.01922209470706976 6.562164567038756 0.06165774398537027) (2.570966114001361 7.597438329630643 8.623850273213613) (-1.727403632139979 7.300894630968517 3.137371670263883) (3.337431699565436 24.83319897456391 6.839966322536895) (-0.02247192329299785 0.01045707640085871 0.006103496979605631) (0.01873294491558278 -0.004505914387280829 0.01709549262535951) (-0.00151639833984844 -0.0215115844893744 -0.01013371435590648) (-0.007652410133728197 0.01733018818658767 0.01292866777895325) (0.08550745895806849 -0.04325957980890809 -0.0194443162216251) (-0.3301264031167422 36.11084299005464 -0.4828041423754383) (4.01258109638095 34.17602002883228 1.962536162297809) (-3.180332607148067 -15.04561390436546 -2.752918885388032) (0.2202162076531503 -0.4144350329322709 0.07357117725194597) (-1.954189882412782 -5.786256109627961 0.5745130774021355) (-0.04539810263911589 0.2143675831842948 -0.03388321841091516) (-0.05609366286268867 0.1052628482719883 0.01492198776110101) (-0.3092176793597956 -0.4819409576702368 -0.06292102262323077) (0.6456319074001128 0.008246150414736864 -0.6903959150129879) (-0.4798274996477556 -0.2608667535864027 0.782790078891908) (3.027738787235422 1.008445429744793 -4.154818999290229) (-0.9392020053854925 -1.103119238853625 -0.1613799835318359) (0.9280873963396719 0.3258937821180722 -0.4836235591514225) (-1.403874265898884 -36.92689307812883 7.145157647909947) (-0.6175928813654439 0.7561850990444158 -0.4160348449654366) (0.9409840601503876 -0.1145835253815421 -0.3584334188846346) (-1.47601391318135 -31.82921055937554 3.130304151725362) (-3.369888986501163 0.06852655003066377 -2.650567410231563) (-5.691424532707176 -6.969016989880036 3.140641034474951) (1.733462162166061 -10.14497166088998 0.4671126307816213) (2.545394422198307 -1.856686639859193 -9.020645290900081) (6.715272559780018 42.05381030290531 11.27819107361153) (-0.6324093063429838 2.444356608302108 2.598800800593812) (-1.10537522579824 14.87152469428655 3.358594698499255) (0.6338350656338636 12.50516637160701 0.7872171506704861) (0.5540549753278606 0.7138158088122529 0.2372594642870701) (1.537647653293055 -4.206531324245582 1.481702502153902) (0.3876700352291662 23.0745134582359 -5.977978541976077) (4.730719955980495 58.83304251939278 5.509262942764217) (-2.918817290084434 13.77767607244703 13.92718565392423) (1.174941509688486 6.908175860376006 -2.487781878915853) (5.13777215492746 32.3556116598421 -10.33465122278132) (0.9161437880743215 -5.519020175071593 -0.4878013251622794) (0.08126605898905301 -3.907631847547763 -1.883760316985222) (-0.07538626308084417 1.033998361126409 -1.579195555543344) (0.5151587655947558 -0.06527720963114148 -0.06190023808512218) (0.2809023495222083 2.331601046812794 -16.7828069294239) (2.59908298964571 1.780372520820037 -6.180348615803321) (0.0186772948616738 -0.00957513408305073 0.009310232714114321) (-0.05121987483237071 -0.275819985136663 -0.3748180178246227) (0.1385695248272834 0.4797549841213754 0.0468655148231375) (0.007349670969388189 -0.02302030682598474 -0.02443642629763729) (0.00781563445522885 -0.01806143912774078 0.003202006858210214) (-0.2704204946989409 0.8286898101035118 -0.9548285874717346) (-0.02774705750544029 -0.01213685559593589 -0.01318802443657574) (0.02385191529627247 -0.01868627805669636 0.07852727274866381) (-0.3269456307814267 0.009678013626245381 0.0725642155334657) (1.767464489233703 0.170167059053792 -8.41498716762211) (-1.895546932917439 -1.950107799502288 0.03221254305843857) (-0.1327677329298356 1.2783364617096 -1.295229793971439) (0.8680776375467523 -4.732235984655166 -3.317770437477861) (0.1280650174607195 -2.659591204441384 -5.647058919961247) (1.351896277171879 5.648734902981006 0.1032493910391343) (-2.633456051109498 8.581227969163098 -0.8676880876248501) (2.151308282356437 5.989371926891907 1.270616796597112) (0.002314368570976999 1.434926039639741 -0.7258515070155537) (4.081484010512012 33.40463388757188 2.682776886259593) (-0.01629865921929314 -0.01020771770917227 0.00874547145113987) (1.306019673400849 -1.443502585521322 -4.439503813554335) (0.04385433621093288 -0.04421314987694255 -0.7733492074302385) (0.7842626775371121 2.16071041481711 0.8051154978505932) (-0.132838476625874 -0.06916848273875179 -0.2965024649378437) (-0.08277072856654054 -0.02843590374534175 -0.02677237997555692) (-0.001956522202907846 -0.02134859173544601 -0.1823601971487817) (-0.2512727181094616 -0.3156146066092712 -0.07655162841685142) (-0.0449323002998729 0.006117479097323977 0.08700265221648959) (-0.01510743134560695 -0.002401992608866844 -0.05129055420721551) (-0.02675895046251773 -0.001481141758680105 0.009884698275117426) (-0.02070418001967976 0.02469464509633631 -0.1011287417110298) (0.01938349049148737 0.06788451769325829 -0.06601608076862919) (-0.7768990213362101 8.535478151846892 -3.802825653679316) (-0.6044546176566313 0.8048050931182851 -0.2381372783581137) (-2.482126443472989 0.4008524310121727 -25.99674925854041) (4.910044414260102 1.00896585860183 1.171134462647187) (-0.5317584556846033 -8.356980559163913 5.28132414699691) (-1.571214044706112 -0.107425135851055 -7.407073989760858) (2.081484449747348 -3.33431489879273 3.596565187904669) (-0.4075898214355113 -24.2731523804286 7.32826670455783) (1.315157586354393 -1.950230831489319 -1.333881660641866) (-0.4877807370774576 0.293443179842816 -0.5022598963689944) (-2.261755868783519 -1.027418601896685 -4.28040488064727) (-0.9895138050947961 -5.142918682579509 3.25996576651651) (-0.4851719634650148 0.01435889896238285 -1.167003860295254) (-0.8656764954913012 0.837544852564312 -0.03422191600513352) (-0.5971646607563859 -5.294579335593494 -2.091022987402654) (0.06195333253525492 0.02996301672732897 0.02772452241962486) (-0.1479966477733821 0.01100482046450808 -0.008309873890915545) (-0.0402550636182152 0.4556250095928691 -0.1746841329337126) (-0.0406022439312296 -0.1366157063163875 -14.50387262629113) (0.189021582730598 0.461713691429582 0.02097438301335296) (0.03512277543528716 0.03860594329229683 -0.03393377139523845) (2.530728985929318 1.849919756895422 -2.429167422253499) (10.10143108900328 7.848110913017857 -0.7857409090907994) (4.022364785974598 1.076206171165529 -4.351803062121036) (-5.234966407406897 4.381034736271078 -0.5592116456634117) (0.008982081156651134 0.013055305274674 0.0214851625071525) (0.01297958044879698 -0.02311387255425625 0.01721017960936389) (0.02180053888345925 0.00960645096847754 0.003832524193363994) (-0.059417161538588 0.03945361051604472 0.0336826800939149) (-1.790101968996729 6.780067393870619 -0.7101423145556192) (-4.013643281443832 7.116907659953941 -0.03951222860265147) (6.7523759701933 3.301187118411204 5.092673983074442) (-0.9201436262660083 0.08165579375670816 -0.2125879593477496) (1.995418477702508 8.131050668764569 -4.670033079270375) (2.02261942339374 4.726827112747312 -2.06593781635316) (-0.2170814375887584 0.1793738456830627 -3.378138968588326) (-1.274254096610244 -0.9421275272595826 -2.213539945930953) (-0.1862432927317778 -1.214066066940939 0.8828528407829114) (-0.3419267171044051 3.070403950149366 1.331364641945052) (0.04870310638144353 -0.4520769210264933 -0.7779489703615269) (0.2059198167048232 0.3808971308332211 -0.8504588126535109) (6.452029755363832 1.113425221086926 -4.75821554043885) (2.979905398631642 -5.640798013935004 -2.27312478444762) (-0.1613823446336146 -4.722181705696364 2.602510586564377) (1.472917426875042 -8.822577038220727 -0.02153887215761381) (1.791837547875626 -0.1799427337890445 -1.011079023666413) (-0.004854461906802277 33.73457544194503 -2.439467965746599) (0.09387224458413074 12.45203286226042 6.460453850605234) (5.040007448854113 7.244356478232756 4.526369965896101) (1.664441544972392 -2.507745388634698 -2.528329930311416) (0.1603678169724526 0.2057509237921469 -16.84041908085098) (1.623012765665595 5.133589085761812 -3.433246414446782) (0.02974548386423936 -0.1031357703628384 4.126862492348286) (0.4347823034039267 0.4612792762552129 -0.6470593494979892) (-0.05494989482716273 -2.351401898253007 0.1312710181397352) (0.1909835058538937 2.343706636755103 3.204963165084093) (2.026205345902764 -2.934218261332573 -1.741995686873114) (1.019179390902148 -3.964066683421519 1.736090938800792) (5.310588828049903 4.791946104720703 3.053024019811356) (0.8920143900860559 3.176307256709456 0.3841410558379443) (0.03648633606190871 0.2027528929035239 -0.1068843682622681) (1.561813715661845 12.32242362463642 -2.96918274205275) (1.334624536499424 12.62659049581535 -1.163521976886452) (-1.054040141431655 7.543847762496873 0.543067012926536) (-1.753463273075392 3.885703131677287 -6.656762803453117) (-1.113747066588494 9.630882158821278 -3.917221473197638) (-0.2456562486322926 8.88272838647211 2.378616357761294) (-0.2201383917000023 1.928242974000545 -1.943740960197302) (3.705180452123431 2.083008486538401 0.1066613859754124) (0.3724901893510945 0.6540204709892748 -0.7210809662367923) (-1.615037988332849 0.3991576158107081 -1.351433396149633) (-5.951323501628021 -0.5674040359702603 -1.249032414841263) (0.3206163365192107 1.564256711336209 0.1219486906056741) (-0.8471465995890356 -0.327692241531441 -0.2442120658096914) (0.5703992111354284 4.163720799604947 -2.568156345269679) (-2.079286962711895 5.546274153867624 -7.008069771912741) (0.3589225140163543 0.1236091773399564 -4.3888513279642) (-2.587159081432963 -15.07763865543468 -2.868666184438823) (-0.3183803745711409 -0.04427620702996371 -1.249565788336247) (1.455655658464611 -2.005503589922479 0.5761479579788523) (-0.2159899427179339 -0.1797944153436424 -53.11653827836365) (-0.3083080037014734 0.4931587387539426 0.05912940019620383) (2.063091233770916 1.707131979429719 0.2682386945660051) (0.1485505859067371 -0.6247218262917352 -0.9022757397710613) (-0.07812040264705863 -1.006723532831212 0.1273422781265772) (-7.074045117198103 -0.2542539751865203 -1.794577786787239) (-0.2346916438506337 -1.538955306218867 0.5352403859155208) (0.3955866973622507 -2.90881917616541 -1.439073699068126) (0.1014232898533849 -0.01965668474295061 -0.3479777835963336) (0.714209168143479 -1.434090580107228 -0.1979790479629009) (-0.5377339617732775 -7.823732208915034 4.051903323781842) (-0.1264310162680606 -0.1652478389647653 0.2587294289168438) (-0.2149956473607592 -0.04331422760450848 -0.05857492259232089) (-0.04927355144468431 0.08798989111862854 -0.726033890916725) (0.01814145173748449 0.05534178632199794 0.01967872363098513) (0.2927562510504121 -2.20730412017733 -3.722880883244998) (0.5821573277912651 7.589996734726218 0.9566937640865881) (-3.30267461708418 29.8370156334687 -0.2762135943388792) (0.0423307372367827 0.02597594488931941 0.07558673855328205) (0.3419219545750823 1.4359058220567 0.8171381174563497) (0.03515336936934421 -0.01821617831159619 -0.04581192700553945) (0.2469404258215469 -0.01763868698543419 -0.03376359627636634) (-0.2471193566721352 0.6036522871426628 0.3371404185069342) (0.9536919393282595 -3.156992986734577 -2.229835097706987) (0.6604783982109752 -3.62937096926185 -7.557898124834651) (1.024406540944899 1.281141756123839 -1.424622501199295) (-0.9080921942140245 -0.7949896272473116 -6.418198446016643) (-3.044118564461693 1.767855217842373 -1.057039603716414) (0.6310158777399482 -0.6648881646653375 -2.077965781221645) (1.856230279581039 0.6599751927576555 -1.027979421645215) (-0.1297471610970941 0.3381201988750085 0.2414241276977973) (-0.01811809893266151 0.006121309084792225 -0.01340161982911535) (-0.7113470773932324 0.9788351872946389 -0.7398470165931663) (0.8164224966982288 -0.2925858139674153 -1.29671340476605) (0.8896052804646308 -1.315615230895564 -1.180414316691361) (-0.3896633945910755 -0.03056620715097702 2.695438937124649) (0.4844177960279081 -0.968348737195331 -0.9397228276669281) (-0.007949254277175681 -0.003312020821181419 -4.585693391376781) (0.003966020968186653 0.01983448525068346 0.006706877723175055) (-0.005305230519290671 -0.01057429811144464 -0.02930529471985055) (0.02161558104135738 -0.03986491148036795 -0.0101137857367538) (0.01933220961365697 -0.02032847373548217 -6.01157148161402) (4.52721261933135 0.2857754054457651 -1.310943128207314) (-0.776303189830715 0.6245697632315641 1.445005850340835) (-2.212745363660412 -0.3256631234609307 0.07597791462862916) (0.117003228570638 -0.01168418015649671 -4.555939614605825) (0.00352821154316693 -0.0006911915950659742 0.01157284882409722) (-0.02503034077324948 0.305644363061082 -7.852578421487795) (0.003806837940866653 -0.02409150057277345 -0.02308356839350521) (-0.7459013654272132 -0.1072841945578803 -0.1170708947834462) (1.745518056595824 1.203510317879236 -0.3222194677967069) (0.0433777812859064 -0.08606200012980639 0.1491551865904056) (-3.096164078639046 -1.270326164504781 0.1937974970525944) (0.3303487479655369 -0.8079097011786258 -0.7035083016022656) (0.2382585584901494 -0.1801443760609791 -0.1819976451854324) (0.3594892522086622 -0.08944919404539742 -9.660328113922827) (-0.01943650532317595 0.06381981246424734 -0.04565284574611046) (3.647874526177927 -2.855518618829683 -2.761893401627349) (-0.02034071235364802 0.04590481086452351 -4.15876027793703) (-0.01151859230361714 0.0002258417779985216 -4.871498261194268) (-0.2020430231348904 0.01132748359812131 -0.08926028711112863) (-0.05160997084583156 0.02987850414472368 -0.06520261521064376) (0.06665301457958694 -0.0883708095026764 -0.03759425323906895) (15.67761054218751 -6.788457018686976 -63.05530308441649) (1.437522358084717 -49.84172877169783 -7.002889195070908) (0.4688404902102664 -0.454135428128853 -0.5289568420996262) (-0.03249997529519209 0.177824764468033 0.06960041500109951) (1.270875023345999 -0.01759228775467431 0.2844195197568117) (-0.1942923372746286 -0.007443961123232312 -0.2202218167663449) (0.04179916817864964 -0.6621894580249764 0.7909925276953259) (-2.979256957944611 -2.942584282234011 -0.3350004765022065) (-0.1760516531489457 -0.6210052141413928 -0.8038573846209878) (-0.1082837400898801 0.09279109608565372 0.2725265790378656) (-0.3083237207559131 0.01920909161503515 0.1165580795620149) (0.8757693588006922 -0.1897330479017027 0.2407705119076642) (1.414743607055005 -0.3938318010438104 -0.2562461974835252) (-0.08278467094296449 0.09515596040479908 0.0004499484604262895) (0.16696834786851 -0.2195390654839704 0.235925336037083) (-0.06861970877268775 -0.5099802617103638 0.3779790200343892) (0.03159696445967424 -0.01843171206206809 -0.02421240288029872) (0.07782105342038918 -0.006878766810911478 0.03297790707253442) (-0.0644439687108455 -0.05067533339586644 -0.02144141375077925) (-0.03506902540552152 -0.02732648013893806 -0.07762093888136731) (0.06826677157612834 -0.2382547839215329 -0.5023317945919491) (-0.2629315095867647 -0.08162957452971169 0.06631745304309689) (-0.005349827024442706 0.04044867387534209 0.01554607829816841) (-0.03243412994104063 0.001434941060898318 0.01433740533433947) (-0.03521427426519726 0.09355060555402522 0.0874192370031793) (-0.148748028679809 -0.08031551036097564 -0.1054410017574251) (-0.02146583684042091 -0.0348027282942389 0.04209363424731431) (0.01135653531488903 0.003425964904911782 0.009543824241934399) (0.06421796266131347 -0.04683493705549553 -0.08926391871956879) (0.007021361760048628 0.004308770041170334 0.01239212741696821) (-0.3311166330432267 0.2750464369505827 -0.08325457701107572) (-0.1112798525668835 0.09146552114733589 -0.003150267402161279) (0.4483381168127903 0.1838855236903923 -0.06594412053051832) (0.04704844489178879 0.07091525135994839 0.0957027091671494) (-0.1547516496538328 -0.09735895642599968 -0.03003967643819015) (-0.04080451918839803 -0.01939217247298608 -0.01192583387313152) (-0.003037984877884467 0.002292382879049711 0.01156698427469735) (-0.02845015534703669 -0.08968298253254582 -0.03483347536555842) (-0.09344454902284685 0.01720085030413191 -0.05162347278672981) (-0.3102891526082519 -0.05477291820208666 0.06610416749991538) (0.584835479128716 0.1966497752289972 1.295652991395012) (-0.006683786192970304 -0.2034037889194405 0.06366801228523233) (0.2431386044679523 0.1072367882804131 -0.1274116333448451) (0.3246376177475864 -0.2501706194517628 0.08350595630569652) (-0.03886431594798757 -0.06084063874762641 -0.03789194335853405) (0.1031520554203301 -0.06966800437034106 0.1355330285804365) (-0.009326585250619496 0.007382081863730895 -0.0981303690431528) (-0.03420109323348749 0.003860785107293636 0.05662318948759094) (0.01059663105854113 -0.02801341236762903 -0.009427225283966055) (-0.01238129606353281 0.01532354757638063 -0.05918676299545214) (0.182080554383873 -0.01724273865894981 0.04464137783646976) (0.04725747523918354 -0.04967381037430013 0.004437134697445322) (-4.159193647265505 -23.8379759526804 -8.496903854365861) (0.2295200938425461 0.01873689057479416 0.009638337496723742) (-0.1072010328847555 0.01053449892380959 0.05607109147550535) (0.02574535223985309 0.0326376970300411 -0.09070284099751437) (0.09985149623375113 0.06397747017809062 0.1977793022014184) (-0.102374048015925 -0.01422256882192365 -0.01059696748310013) (0.04567939910711263 -0.0133169921394013 -0.009625287031660164) (-0.6655585715760323 0.8748070910962973 0.1167425472919164) (0.1498583569150843 -0.1400178319387725 0.04145994410381927) (-0.2107946931099219 -0.1425350912822134 0.1286540599965313) (-0.01853607766280109 0.0525730088069882 -0.04087736092156327) (1.009035930861991 -1.101286803666856 0.7285556548867067) (-0.01973780264535292 -0.05857699322691969 0.03820138509233029) (-0.06216898185495615 -0.014989213962834 -0.2100579737696814) (-0.1042235079808803 -0.3171509109596987 0.1379407607536619) (-0.2127848663852045 -0.1928251735118409 -0.07097593263086696) (0.4195388250087826 0.0443879447045997 -0.009218211792686587) (0.0500627195671275 0.0002629558544311869 -0.02890708351832643) (-0.1652547517196661 -0.09624629216580279 -0.005040820740048084) (-0.3911123662074031 -0.04444684217369615 0.08354546777506608) (0.009781698553932808 0.01574406158922302 0.03685474562220831) (0.116944464480943 -0.0432248734756487 0.02805054123093051) (-6.435189659555578 -7.166819981113843 -1.942110098464545) (0.03913909410820098 0.02504547456858648 -0.004220269444286169) (0.05764756102644705 0.02972801196170683 0.03574308865592987) (-0.02592334849444985 0.04140602772812488 -0.004269442139257544) (0.001708354277157723 0.006865000018453709 0.0146560655964598) (-0.03128700695815803 -0.02628177384379144 -0.00851318795261047) (-0.08682743404330232 0.04261465694356094 0.0528227402365905) (0.284769381159653 0.0413626584265836 -0.09416035518366271) (-0.1043772929704904 0.09170864364071317 -0.3169991872018085) (0.001120117224270134 0.08796235972068421 -0.03032946338673655) (-10.98231983886321 -81.51971195103462 -11.32948305959933) (2.836109189486554 -9.769691082728652 -0.03057780253657971) (8.1787430936532 76.84397951352329 13.22616996942307) (0.009741483248316623 -0.05639513514587216 0.0196669950963821) (0.2060035592375322 0.02329196461211953 -0.05922805461933911) (0.02858725574685612 -0.0428961253788764 -0.01555818280864834) (0.1530915990869312 -0.1159856757457072 -0.0799150867453859) (-0.08042314763274094 -0.05583114735521945 0.07953486294113749) (0.02747720051620926 -0.006197943135792272 -0.02372837754645796) (0.005480054088838595 0.06225171468897682 0.03426393080333935) (0.06784968644130759 0.301249660736279 -0.06233308532795899) (-0.5249912189406959 -1.274531102787563 0.4162979487986143) (0.06046612650223143 0.009539743310011116 0.09638723038633973) (-0.0795039326149187 -0.01689610229330675 0.05688154272626415) (-0.01255390219428927 -0.009721999890534953 0.03928192626734275) (-0.1256635610502543 0.1059484715633223 0.01415375696710656) (0.007853560329962692 -0.01033664539241441 0.006395486587057755) (0.1245317580595504 0.1345447266070667 -0.3434949717185424) (-0.2523304548866897 0.04486791186330116 -0.1303822335404697) (-0.3763280585083527 -0.01488189882103036 -0.2239940576366739) (0.2557574031503744 0.08952678707149934 -0.1775769489212345) (-1.429316113646632 2.260863063135066 -2.10437384022687) (-0.1043334858704971 -0.04032891047775939 -0.02072990485164215) (0.2104151568200917 0.0212468066159059 -0.00513720278834541) (-0.04179977415782037 -0.03105047544810205 -0.02034638509825376) (-1.920787368584338 -0.04077640788133829 0.2218796057672935) (-0.6963092112500832 0.3046129071063076 -0.6367584588262258) (0.01898444827873014 0.08168570104484668 0.1531864792886442) (1.463133240670938 0.6416193899408631 0.8332885931369232) (7.817351540298206 3.208082187903563 -3.432250301839841) (1.388476460803529 44.58230427859272 7.547710328705369) (-1.977903343162507 0.3512127692733185 -1.665254125615646) (-0.1884701078212769 9.607739436462367 -1.856318041613187) (-0.3616503491614164 -0.04139232715312785 0.06672753974670811) (-0.07509677819453711 0.136907515496606 0.04440997444777139) (0.06144796276555802 -0.04102949761351382 -0.03587880114615666) (11.73797553861821 -0.2164660116512634 1.735967964739711) (0.6717839290779377 0.6336217427302522 0.1989851618466989) (-0.9557713934561294 -0.3167701660519737 -0.0799128650147054) (-0.6637274235593955 5.431687703015416 -1.003826563290597) (-0.01403700061323333 -0.3420031614549802 0.1678883136798253) (-0.2964298761328878 -0.2863745189121229 -0.07120488388053539) (-0.9706955007211895 1.173195249471009 -0.08646466583132828) (0.07663514766916363 0.02671755458907026 0.0503175578453734) (-0.1079077143737961 9.030788347026697e-05 0.002830389139951033) (0.3597420336315421 0.295930891918068 0.4653025830965658) (-0.1576383043363856 0.04793427912621282 -0.07589586268452088) (0.06158813742902278 -0.05136319353682006 -0.02671182187538522) (0.03392904231286619 -0.03067494967670759 0.07310865155687307) (0.07268070749845446 0.1657876984626226 -0.6324302328883025) (-0.007350976967937507 0.07734953037920693 -0.01839832763450274) (0.01865680570677184 0.000816550804683621 -0.008929931477698695) (-0.03189350895831572 -0.03944616351361839 0.0201766909037908) (-0.347229681222231 -0.01828602845348908 0.02163082876993681) (-3.609203078978866 -0.9915582273398698 -0.255323379824167) (-8.854203482590691 -61.36316737727827 -9.039417793404652) (-0.07359181773669468 0.07807143236525561 -0.008519450519693564) (-2.58426074468923 -0.1418324871490816 0.369538417464743) (-0.3802906098216423 0.002076901603170464 0.03858124826721382) (-0.002077381780925404 0.02657874211047057 0.00138611701330911) (-0.008863615101517897 -1.351543285663891 -2.002633294476273) (-0.2270256154240843 -0.3527518856970084 0.1774942663300255) (-3.080609163838504 -52.56764225785021 -4.872366903498616) (0.04146443900176063 0.07547236343628608 -0.06006451626974305) (0.326175743967998 -0.0695634379942678 0.1071659064396675) (0.1539156608109721 -0.08646268539159002 0.03832190920310959) (0.3838519863521537 -0.01722056823383286 0.2192058268525732) (-0.01015380529091229 -0.005128123431264255 -0.01374318361417571) (-0.02319645944203911 0.002867947336838316 -0.006999463079809577) (0.01257219353752246 -0.05740350714384547 0.01972458195475292) (-0.3620475227952721 -0.4872196001232634 0.1532696306819129) (0.08676921565247493 0.03637713497732663 0.2739674868595059) (0.1120749760764393 0.05443048159025939 -0.05312094916318286) (-0.01120197668550109 0.002052552470603821 -0.002225242800118949) (-0.01789362840254675 -0.03862962576263468 -0.1215098698395522) (-0.1589903662066066 -0.002851260961868333 -0.07257501732366051) (0.07618917543549461 0.02815003313562234 0.1062938097463824) (-0.1459638518413219 0.005656853046584857 0.01421690013649293) (0.01721994313918632 0.04203039442065286 0.02293243698060397) (0.2881217025979443 0.5166223510657378 0.3299040186049941) (-0.07252146785965953 -0.08585273108323346 -0.141514621614429) (-0.4600930560105083 -0.1174943849336076 -0.01051623000746854) (0.2232814331781801 1.839322382046806 0.7969753814784082) (-0.06752581283804768 -0.05711381859383727 0.05593573326931822) (0.5945642358576424 0.03213334946132851 0.8814248661044518) (-1.956037522573101 -1.561202243363242 -2.720697263714672) (-1.022822040942176 -5.288182723787424 -0.4707997690215049) (-0.1862801779683784 -0.4798448507718836 -0.04760725591656331) (-0.9570181267446427 1.925561508422376 -2.478042730470389) (-1.401234720507551 0.3441081716632112 -3.193285973575106) (4.935469675039187 -1.831136155628293 -16.42298034778216) (-1.40768023490022 -0.2831237364528784 -0.2609924114185276) (-1.247667315252156 0.4333678894923717 -0.5315094611822868) (-1.180541946952379 -4.785381253824038 -1.772443980489397) (-0.7753197307767736 0.2976267989812246 -0.2885019362517756) (-0.01427059856036977 -0.07555219838982152 -0.1196861304057612) (-0.1343245277747104 -0.01820526498172499 0.04633612146586057) (0.1230015684282644 0.03834186665409827 0.108427814310421) (-0.2284469123479524 -0.04345398125601225 0.08662152941726896) (0.2499293571962245 0.1588411484063952 -0.1020716758488273) (0.7219332335427141 -44.90764052207224 -6.800987756650891) (-2.152089140841283 -10.29239854364405 -0.9174768297353163) (-0.6009730933605735 -7.323504718014695 0.9821011523223604) (1.078798124879171 -10.71089873507151 2.39378669105497) (-1.078529026613425 11.04818495690905 0.9112840551640309) (-0.3325912400490716 0.124293878386423 -0.03019537258977689) (0.2204543478197921 0.002495238187666258 0.04397128415657807) (0.008251176868231042 1.335587973920501 0.3453914573703654) (-1.120746285504969 14.88538771846233 -11.74522256499116) (0.3876579366827728 0.4262106569586209 -0.5792174167937416) (-2.916571454667079 40.88923741853052 -6.22752255640042) (-0.4634747396354791 0.8809241488566099 -0.2768041469235639) (0.02140671075899815 0.01099621096196249 0.002837822132525945) (-0.04864448048550779 -0.01962446872147023 -0.01238617662534153) (-0.004989157487010322 0.006936307086016263 -0.0158863697910768) (-0.1016973692309472 0.03616248443910924 -0.3361955944843504) (-5.12280495778929 -7.717506902017767 -54.36466547059079) (-0.06304684649818312 0.07086177992310941 0.05316033055789767) (-0.2139807430162182 -0.09910472747060528 0.06282163648967348) (-0.1049724858331598 -2.779098460564063 -1.221414389127059) (-0.007630054070728018 -0.04400925353911146 0.1015070118217538) (0.04263827035788998 -0.02062609248249617 -0.0726531870153812) (0.001104222131687347 0.1619021740235347 0.1689767376799507) (0.5962125955169784 -0.3265261827447084 -0.528702946501504) (0.1026155778985989 -0.1094864250569712 0.03130286659404593) (0.07189780245494047 -0.04471801205105964 0.006729291039063367) (-0.04370471978431466 0.06199665169446922 -0.003799672820090409) (-0.02862279568593855 0.04062750451806788 0.03555799565819081) (0.01105673202497819 0.03605024027421196 -0.005958211646644861) (-0.05743161485416914 -0.03786955814604003 -0.01944213617522102) (-0.03129223050290515 -0.01699995088997414 -0.02895182583237621) (-0.2806664438424125 0.07628399236824034 -0.06207026126427162) (0.1697710950575009 0.01794335597576172 -0.04726401515631173) (0.4607988303862065 -0.1040201002956704 0.3598661531136973) (-1.084201766226826 -4.570903776111201 -0.4901780412856203) (-1.001873800386821 1.54092213189513 -0.4549554669785294) (-2.960264699225664 46.56544188660914 12.04741268542149) (0.1682988447025988 -0.1983816688711458 0.2627156521220955) (0.007395248832648636 0.001271557346826944 -0.001212904091180064) (3.338531912490242 50.24753067777788 -11.29635388120102) (6.962508906351859 30.09681534005431 5.892576728595184) (2.503034418633619 3.932348419716005 -5.612034001287803) (-3.078785302288484 40.5222299394762 1.202606896356943) (0.03663520157532037 0.02155572063240004 0.02658716744236515) (0.01114536166643535 -0.00397427359002933 0.005313023351252494) (-0.008523717531046641 0.02149496422577575 -0.0285607938300731) (1.044625356905055 0.1108334256342958 -0.4267402630551321) (-0.1260835328980543 0.005908695756202099 0.00408530850824261) (-4.346808383985277 -0.8371406417565784 -2.626574837218764) (0.9586011710722668 0.1297158360395742 0.5182361399941726) (0.7702016169792084 0.3306589749697081 0.2758425778745245) (-0.02572147465932387 -0.01656445196050576 -0.06540908588551723) (-0.9944085760304523 0.09539437537250818 0.1744127335536669) (-0.09321613753652566 -0.06788361424804069 -0.095162273763581) (-0.1882233139285105 -0.2134504945282737 -0.2145306431443686) (1.054184883884227 -0.6901318168384347 -0.5042142214136224) (-0.4110748673245642 1.103087990429007 0.359455678746592) (0.08700222968035187 0.1254223034592508 0.08228501072906758) (1.809097607033152 3.98164202264417 -7.260272794375613) (-0.07317036294228332 -0.08833063445415364 -0.0165912486768928) (-0.4280468728457804 0.02902375365423637 -0.2692632530099807) (3.082751304555249 0.4419227009955871 -0.9207595999945499) (-10.39869641179685 3.590554494182322 0.2844668742646563) (0.9345555584005451 -0.4986675880875285 -0.4009182748665077) (-0.2347121714471067 0.08430324321202352 0.2773374306960411) (-0.8290226010244345 -0.09117410361475679 -0.03791222131315934) (1.401183246446275 -1.902560161120948 0.4044171045687101) (-0.4728090154342304 0.0281516409160681 -0.4306322977426847) (0.42139984052097 -5.269321440078663 -0.4119214031714942) (0.4551146709243732 -3.184578620150456 0.292461297682675) (-1.441534156652612 -7.306612369843046 -7.610506897745427) (-1.513558858335207 1.19138088292693 -0.1625255594265733) (-0.005324632261221165 -0.01512791487619452 0.004891121035911718) (-0.08022413715762722 0.00136761992206885 -0.00961727486791023) (0.1190792622292209 0.01309357164863671 0.1207264914979915) (0.1566960815685902 0.02487630992240066 -0.112534766742902) (0.1884269000124627 -0.06339628952279858 0.07420988351147575) (-0.1694157800110378 -0.002183344633397796 0.01700414958532792) (0.001162723470215322 0.1013806527837108 -0.1367458548262999) (-0.6773035124251274 0.2621961870013871 0.2708796819713871) (-0.09189619768537369 -0.04551084379444478 0.0166864333991184) (-0.147354396464834 0.02058909661688957 0.007587949520360557) (0.01217739343424292 -0.03622631065014043 0.198832631253567) (-0.1297063752122712 -0.02360130282837203 -0.01714671782853102) (0.1888628191325524 37.36594216029469 -2.374970459142578) (-4.949073403722205 -15.0221299380451 10.75269721575192) (-3.685849164835656 -8.588556703993181 -1.349062541245227) (-0.135789798298425 -0.524455115903225 -0.3251654392345992) (-2.99108042329118 -7.659791701938321 -1.975635903647406) (-1.026644942167628 -3.343660008847178 0.4763057616971744) (0.6188263280361648 -0.9402625635291976 0.08350025240683573) (0.03908811106014598 0.9960575786307403 -0.517159294890165) (-2.225499173160724 -4.098910614713618 -8.777892290666644) (-0.2004232427104314 0.1406083379767238 0.07497006642992478) (-0.06103793270995264 0.7043811596929653 -0.6822204884691199) (-9.320494838073248 1.660795020709866 -9.043378022780814) (-1.408796350833103 -0.3161949957736676 -1.76799801903633) (-0.1621260243565296 0.4352611687330226 0.958464014694145) (0.03235093491182467 -0.2226661711649024 0.06675428431186078) (-0.02427909840795152 0.09807206356729353 0.1104172501546197) (-0.05468719224551866 -0.01638203192657564 -0.2411127812265383) (1.796821784865895 0.5037730689115407 0.9417868071929212) (2.15221010694634 0.887841481356562 -0.1915871259498675) (-0.03752525120661694 0.006422089485303511 -0.02518434506567507) (0.01375639733048818 0.02021417297813444 0.01696994528256238) (0.09860741917610019 0.003467119179739769 0.03451189356725706) (0.933367433106028 0.2638136483634461 0.1416091560958105) (-0.1268136326285224 -0.07406388546580603 0.04226525375467868) (0.4845327991317562 29.05623381856962 0.08308924994024802) (-1.135482025475423 3.317755138342556 -0.658846832480765) (2.878439638538839 7.356480960575137 -5.826330778814755) (0.05518614467108218 -6.550010503789602 -4.854728469063019) (0.204285541570464 0.05314346269085126 0.007902533628777662) (-0.1329253787039742 0.4345530132765682 -0.5433532417565479) (-0.1419973631000356 -0.02717357431032357 0.008674125904829515) (-0.04298536045212742 0.8853240597570667 0.07927279973333384) (-1.084352671361873 0.1788444189829095 -0.5927597504984979) (-0.52803493930525 0.04046965613121344 -0.2059263850798508) (-0.1385019131406157 -0.2480261748869013 0.1092789991474101) (0.04517991400967525 0.07613842113389258 0.6095805224219979) (-0.124953332654231 0.04433648576449474 0.03021648105571287) (-0.1545901093679441 0.03655013853218527 0.009580595335493696) (-0.3240555382879227 0.1604297578515487 0.3210333779423254) (5.759522635555042 -63.33566893079197 -11.77108874258769) (0.761512164518766 -1.304565018762026 -2.621825178140296) (0.1569647552082006 -0.5472307984368436 -0.450326541742392) (0.159181848142222 0.352660258946964 -0.04023328083329253) (0.03523409910634355 -0.03731701690113615 0.05756584102068225) (-7.062907310416599 3.230314417531039 -3.347967031025813) (-0.3851707887200211 0.1230630107825176 0.08328400493727667) (8.21738356224545 -5.727446225642709 -5.53493286666828) (-0.8641428163746925 -0.3717453957799035 0.3731118203293537) (0.4521854867468384 -5.677240309630456 3.222510235025597) (0.3259621480110967 -0.3035140069396193 -0.1112694797857737) (-2.015735555226765 -4.712434608832584 -2.341984313326996) (-0.06634707649740612 -6.718575344103693 1.659367193743633) (-0.9070122923953813 -3.340327389445606 3.259399223872786) (-0.1310493542083686 0.04301960416880215 0.8000379028910143) (0.1579760329772454 0.1548281626215399 -0.2313774696820778) (0.6987035136604745 -2.809189713848225 -1.494104001596104) (-0.2527735913979526 2.739728264259414 -2.772812337414277) (-0.4184723121886579 -0.01508696765781559 0.3141392632952067) (-0.0355525660170937 -0.1405595592611559 0.207625812920965) (-1.042776829643442 3.549929343168914 0.09755082089346204) (1.160696079573106 -0.04786442890768089 -0.1701757394863241) (2.440245265023651 -0.1064592003784892 -3.615260960567562) (-0.5775205628631526 8.108254481568363 -9.328870943555769) (1.765448962834103 -0.2194790429796721 -0.1231441209498909) (-0.2644290730124522 -0.323970457638111 -8.233787603744497) (-0.02010163613111888 0.004170343152058357 0.01565489140836123) (-0.08482409781054701 -0.01935144489777593 -0.06159294361486795) (-0.04214120226790763 -0.006374709077364107 -0.002787085700355338) (0.7432671752972971 0.1536418307983278 0.2898564463533073) (0.03274880530436187 -0.01338664941475422 0.005031501303700822) (0.01103062299467944 -0.005977664098256114 -0.03439278299880917) (-0.0658350050237131 0.2098867802035674 0.1000785131872319) (-5.24775362404427 1.398313789336454 3.367403665518916) (0.2702797437939432 0.00666471685843047 -0.1170121756386777) (-0.3933937023251357 0.02697956964119447 0.07050286482587523) (-0.06413795675250879 0.0237540392856598 0.1169787616793754) (0.2179524831220422 0.09323250024198496 -0.04991274856018189) (-0.4666172730364008 0.01893038553712109 0.4880142262401712) (0.06680709688498288 -0.0162935903409711 -0.2460172188009347) (-0.1174592524915186 0.03092525270350416 0.007068288858299196) (-0.3578109102540816 -0.03828231125094522 -0.1058453252995048) (0.008504970498708343 0.005988199931577489 -0.02925152573375008) (-0.008128236024691742 -0.0197925117485755 -0.001289065733236165) (-0.007860404844627585 -0.006196596051811929 -0.0141190352044878) (-0.005690017941221823 0.006042906259714168 -0.006486804380910914) (-0.06883600169507018 -0.08854588611538608 0.1117061319474273) (-0.0001258741691417733 0.009354567582339813 0.004478448133106327) (-0.03549257254022219 0.0135871039863619 -0.0191383729634645) (-0.1770538798343325 -0.4359793569713697 0.3467330965758458) (0.2288327655940443 0.04675116918541952 0.03667689942863275) (0.0120745309921235 -0.06317478600648194 0.02085600185473618) (0.3465277060083787 -0.01607609666297725 0.08687028383306736) (-0.2337457184494837 -0.04512669475655667 0.04114056982008554) (-0.03179383669458261 -0.0188417062157322 0.0008329382924966156) (0.1210807295043749 -0.001507835182893009 0.04556463325173332) (-0.2198323805307726 0.1026328049667492 -0.160995542787851) (5.874174331229679 -4.453620474029915 2.392813281256218) (0.03333674726214257 -0.0855908462475759 0.08757669353416828) (-0.1213093383035232 -0.1380917648587458 -0.1789180153305852) (-1.31045683309721 3.34441571058945 -1.352648387398981) (-0.5595724062775034 -1.040714898497953 0.1249091079797199) (0.0200076461272873 0.0009495391403375152 0.009459328969265948) (-2.565793137710119 0.005333175366700083 0.02166465523994821) (0.1691907314038483 0.4617309979465763 -1.244141019300279) (0.4290187054799667 -0.1010514043428465 -0.3889831282761926) (-0.002827518342358393 -0.1908965907566417 -0.4467777279917491) (0.1432262259927709 -0.05004197677903673 -0.03243032200510196) (-0.005027283721465239 -0.04684643855961727 -0.05715173536558741) (0.3306897139401667 -0.01620229560616019 -0.03148746197751354) (-0.1671856422993435 -0.1635725281971274 -0.2616136467266587) (-0.1057804123124416 -0.08634156822449826 -0.05458265644240786) (6.225615303653351 -13.74304409869611 -7.711666949647245) (-0.8502979627659442 0.1534482082426192 -0.5156922802832257) (-1.861094951347381 -1.784775317149167 -2.037135117668626) (0.4771986797455187 -7.320643877971873 4.259633565434736) (0.7311713435193058 0.1758555110520612 0.1282260702855796) (0.2374569421161929 -0.6802487157778834 -0.4646262000689449) (2.140225918063202 -3.728582837299322 1.138185442538899) (-0.6806245038412493 0.7503356655425351 -1.044476035305364) (-0.2497083519456054 0.9282617399581992 -0.0909127165810393) (-0.5218243691732662 -8.803025007410419 -16.98639747182255) (-0.2664893818678074 0.4093931258833322 0.008193965947907) (0.5020382804039615 -0.933628146368326 -0.3245318652686336) (-2.970841145981046 -5.576810971981648 -8.496928033987306) (-0.4603447693955727 -2.934371097128157 -3.015720886980756) (0.05144911515359721 -0.01306089891116061 0.003113407464920889) (0.0283071326622301 0.04894927275809723 -0.02513975103206502) (-1.839528994838788 1.299048562704356 -5.759294672605196) (5.994203551074634 6.376031877840682 -3.104379150095641) (-0.9390781423760288 0.5912440637742497 -0.7572050451534612) (-0.1089298837244409 0.1466157009464404 0.1098087904058138) (0.3754921722486438 1.166619360409403 -0.8498726956084361) (0.9089204287608683 -0.8783006707132656 -2.691726993686621) (-1.950465635135341 1.378475484205655 -5.457114123734465) (0.02993110488375231 -0.04580374248283791 0.05306401778728269) (-0.2180094320495421 0.06534115139639995 0.02361231896015106) (1.097281886827139 -2.761300349632106 -0.4632727831825145) (-0.112934948205666 -0.002736309834148375 0.03503128594840392) (-0.008957734979410055 0.01585420453753027 -0.02227988980702468) (6.143988433057679 0.7382490761399489 5.747647491863296) (-0.1772699913780461 0.1932884963014601 -0.1090801379209787) (-0.1983860238642581 -0.04182324787694996 -0.02093045612977504) (-0.4509928478492302 -0.1714784155400984 0.6100740838674565) (-0.02774440814590093 -0.01918066307943054 -0.06849831350073282) (0.3024606065787576 -1.365747201667499 1.437246882573211) (-0.05968431154305734 -0.006592542198727564 -0.02783629288129149) (-0.03977130997481163 0.03349746956913877 0.05135467172723793) (0.03496107956717993 0.02099094757454086 0.005188091908304708) (-0.301019365936009 0.1135453054348878 -0.02676433342024371) (-0.189334010998729 0.09619074943948402 -0.1374974989081526) (0.2620983132670833 -0.1145720319670358 -0.05647086872943421) (-0.004890130002063682 0.03925511222621882 0.1121507579690306) (-0.3634695641978242 0.04322242949580082 0.02042480432854941) (0.1377191849821115 0.02055049837019156 0.02825488721020882) (-0.7105380350231925 0.9556989162359371 -0.1665874772594792) (-3.924762065536777 1.453946257104623 -0.3593750135711621) (-0.4534910963949089 0.4690434814433784 -0.2048393105748131) (-0.09030416251412965 -2.041887108039683 -0.609432068534423) (4.323509285131032 10.3107183150348 -47.28920325958807) (-0.1553665826095703 4.15300706894777 -4.098621556075203) (-0.3631596048808864 1.059683689706087 2.01567528608361) (4.887628577392106 -10.21103270764295 -3.16313129791838) (-1.480358604171968 -6.163234673298356 -4.05375268408809) (-2.326542247468565 -0.6093512753703766 -0.06313592573804006) (-6.638928210621961 3.847636264382189 8.324808395909926) (3.002544921316069 0.1736208392918916 0.08427869591066306) (-1.619717596436714 0.3580546127154886 0.1707921592288588) (-3.835088884570539 4.961385704301247 -1.449649551030086) (10.89724750188848 -48.51370571207159 -13.25193544481576) (0.9919309613507166 -0.09342397571213724 -0.05512580005244922) (2.473179692535256 8.381070897428833 -6.588147783023381) (-0.1069336915611997 0.08548090597480085 -8.718527962887334) (0.1367271023450631 -0.05239972762655024 0.0408088998286347) (-0.07477455374552645 -0.01325466395765387 -0.003742344268289955) (-2.219732585632204 0.7394024703374715 -0.0918237304516068) (0.04048597061516591 -0.004034187930931979 0.01154598349328941) (-0.5534837084948635 2.357275232808959 -2.34352692177796) (-0.03622180016436326 -0.1275466724084981 -0.3879096956143013) (-0.01139445145055276 0.09570720391703577 0.03406395317189893) (-1.364628091409847 -0.4273735003109128 -0.1601085792680145) (-0.09417055151400505 -0.1083344782378287 0.04091934448768184) (-0.1906765726396271 0.2169934899462706 -0.1073095444337644) (-0.4276122449063802 0.4005880290143692 -0.2423379005652774) (0.08711050542076713 0.06638005901634213 -0.08966922071686621) (-0.6522106771976419 0.02854152739612957 0.1479089952148492) (-0.009989205652771671 -0.3138258887728935 0.1647435407596772) (1.177430954300383 -1.985872854226221 1.525740034322909) (-0.01076148665159732 0.08043657506517776 0.007680310673412752) (0.09469142736475444 0.1208761164248843 0.05820564241183199) (-0.2145919903616033 0.0988127363769101 0.03221335764464967) (-0.1162156710961203 -0.02691150993715556 0.09172042937094724) (-0.02069287834604984 -0.01229181458279549 -0.001964006558889009) (-0.04541751540007707 -0.0203767134417057 -0.006137637269952532) (-0.05051154205021182 0.02831248128975816 0.06263315148709846) (0.04643259942756811 -0.01245680432619714 0.005190991917436808) (-0.0585348662958767 -8.130905871221034e-05 -0.04712206465090677) (0.1537928909557782 0.127653573713303 -0.0334302968874397) (-0.3283299918401163 -1.283251833461403 0.6650964012739784) (0.2494820649264154 0.6189802803448494 -0.218127299535583) (-2.447161795015201 45.0709674870031 -9.413027248961345) (0.01479657006987985 -0.01166705527913676 0.03986058688179584) (0.04923737482460003 -0.1784988972039357 -0.05931066843832876) (-0.4523494905824614 0.3173478071542629 -0.2507724341995706) (-0.3737148851771165 -0.2058056976668622 -0.07330331807401036) (-0.03942201099315777 0.2520064826404147 0.06901446574518079) (-2.120471504300474 -0.1221649055483119 0.1792920990012964) (0.206659450020002 0.08263208031533568 0.01488723799227912) (-0.7680052744668509 -0.9141994470889188 0.06970745979900539) (0.6218640197033736 1.108937858246538 0.6804893611507857) (0.4080399563995417 0.06338541526573957 -0.2282558235707774) (0.8076855345467232 0.04604587251127507 -0.1173812061800641) (-1.204004566379483 -0.7618652498662097 -1.175278084763767) (-0.9023114364155105 -0.6182503543637623 0.1128323511567736) (0.5033491013939415 0.2828967917746316 0.2318052728163685) (-3.216455733598903 -4.231245081065593 0.8336948256120844) (0.1680156172567743 0.2140779468077266 0.01007287911672906) (0.07944395091709262 0.2555628966886543 -0.3008231916448548) (0.7302404851650726 2.118214902026183 1.844869050792355) (0.0406205880667338 0.4513864548539576 -0.9570066762859564) (0.5720433185981135 0.2680142147838592 -0.2616839694449669) (-2.783271594255269 -0.7647096297152125 0.384267292794184) (1.045040418501706 -0.4777430426991264 0.3760558147360404) (0.2130302683796562 0.1851107636310937 0.8641298912124108) (-0.1460244527306034 2.128856970956678 -0.7271689353120191) (0.3839804030219301 0.2905169744373756 -0.5938353189578071) (-0.189591916174945 0.429191330862714 0.2171163049687573) (0.9165497955550582 -0.03948122859375885 -0.08706425767229481) (1.369365897328443 0.4054879446131637 -0.03885298609015399) (-0.3161115721827201 1.863587521553245 6.302805998448153) (-3.078654520860413 -74.69027521522501 10.57979479676119) (2.833380031501027 -9.367879104003732 4.454168116416286) (-5.819764410319213 -4.392993709410776 -2.78436557841996) (2.785592283052822 5.069577866140541 -1.249921281691838) (-0.1347136195491894 -0.06807953631192577 0.008019780868724978) (-0.1377752312151725 0.2592053615877697 -0.3340630522371314) (-0.009612587936939797 -0.07497707944139681 0.09591064034830471) (-0.003644122115609313 -0.0008185315889777016 -0.06178631776740447) (-0.03265087596982089 -0.02888155045678661 0.02606557605939811) (-0.04807043047697 -0.02474978101895596 -0.02721592671573556) (0.2101845278497254 0.01863772745805828 0.08655279586358154) (0.1659184263594444 -0.2667265557421991 -0.1563806338078855) (-0.3970711834062641 -0.1872651179138495 -1.236139425617472) (-0.9420706095403883 -0.5108607937310584 0.7966394024787032) (-0.7650919621056033 1.307713260127803 0.4269278113373407) (-0.06885239404100268 -0.1621718380627244 -0.5509971802851433) (0.4908509315477325 0.3056032813697282 -0.05834515067558634) (0.01499722989304457 -0.01712211229468344 0.0001683421981573292) (0.1456473178580363 -0.001481850918471566 -0.04222737542935474) (0.3623307763606075 -0.3917556057094431 0.08042913975911015) (0.2342543696514386 -0.0007774040058522516 -0.009112109734310373) (0.02749165174758206 0.203761458412488 -0.02809226472050328) (0.06128700765794223 0.01148630484316137 0.01762317821751123) (-0.4352193596233209 -0.8427073944602529 -0.03472104895034622) (-0.03170936174004496 0.5536411886974629 -12.58356469567849) (-1.742051971367562 0.6591220832840032 -0.3371777923032915) (-0.1955885534837905 0.3272707797459475 -0.4292494899601292) (-0.09491154807584717 -0.2364924542420135 -0.3399687377447593) (-0.09977079270473754 0.8400686532976887 -1.48508324398162) (-0.4372013474161676 0.2715185448799493 0.1125400707535961) (0.3009418610490829 0.07060411969609483 -0.009679866503393808) (-0.05610960265193665 -0.05195035293964405 -0.2258921079386225) (-0.2298920640706465 0.04249294436657985 -0.1298224196779649) (-0.007162621364548056 0.02399461232403015 0.001844671396422733) (16.87758808206802 19.67831166446462 2.837216110840054) (-0.3108248142748209 -3.448650403516688 -0.6183216299881459) (-0.5348638439200669 -0.9906654297541038 0.2995952487404431) (-0.9094464495574655 1.129220062678364 -1.63795030468961) (-0.3162921722287352 0.1525235862474315 0.2182095274024252) (4.094323212550464 55.9856067634621 -13.18832977870665) (2.76015966999223 0.5744268741401166 -6.336455154588744) (0.4673732904501138 0.08710013437243529 0.2137201435263503) (0.2242221777226323 0.1813163316528237 0.05826191751245037) (-0.1149761786132647 -0.2379296462724588 0.3927718472879321) (3.219088518963356 -5.709456366224894 -0.1909236087909387) (-0.7867746590326472 -0.7822248137037898 -0.4303582756147696) (-0.5116180432605949 -0.2372555153014698 -0.2118115568699722) (-2.273675098238837 4.720260971768054 0.7533127006449398) (0.09571373637628812 0.2137348784696185 0.02923420688173833) (-0.2980868248061199 0.8915151681476232 -0.09791109729410927) (-0.1853030589673867 -0.2088028347879405 0.2483031584249279) (-1.650388426416459 0.1345007634759791 0.5590885981111723) (-0.1635125841533464 0.5860339218517899 0.153157665412857) (0.1011306308283052 0.5611033321848492 -1.016119999627164) (0.2548749247229066 -0.3838786775876432 -1.092406832379413) (-0.1218089256757006 -0.0005247684966145361 -0.554103522273914) (4.366761534152198 -1.757195770645321 -4.422938618496548) (-1.42580870067681 1.174029769085024 -1.418957555570501) (-3.375523833908269 62.57453195872274 -1.535203325208912) (0.1472175731813748 0.2799742703900179 -0.3589775276470571) (1.609235970324475 38.57111898932622 -5.857374431045903) (0.03150201916319488 -0.01198591520915308 -0.009237520117145959) (0.02523265529501919 0.09301365650798656 0.03081506790651549) (0.154817463892343 -0.3824636538259727 -0.01785254292916807) (0.1580493757659797 0.0299829069282406 0.05230643327261497) (0.08041448775158123 -0.1096987418475985 -0.08878102141676444) (0.5503189744292161 -0.3142953600821173 -0.313881404002166) (0.08802014247844704 0.09805873683137215 -0.2375995489167533) (0.1095580631696783 -0.05738416161375438 0.002679682110558955) (1.876601968460373 2.437421990434423 -0.5237768922392161) (-0.134356834225173 -0.03784438455962021 -0.0263258557335553) (0.1547232319603609 -0.8180217147095356 0.5431013879655826) (-1.544979685274044 0.4255648885815602 -1.099433097185607) (0.1575789939262237 -0.637504810746945 0.1126319140841169) (-0.1808080108487221 -0.08390820700760743 0.1904427887709934) (-0.180971386353283 0.09985439450167707 0.2980126238741611) (0.1373799276300642 0.1959945685282177 -0.009416123264066711) (0.1391394955286687 -0.3288126043417119 -0.08453215380586648) (-0.0009160356520877405 -0.003662875382167316 0.0109011482880545) (0.128203362693838 -0.112258603258242 0.03627052956203176) (-0.2475750367200604 -0.4700174767626576 -0.3286432184714154) (-0.4858065882174984 -0.9689945062197785 -1.429364889449534) (-12.77508173521327 9.14356176337073 9.083433916174815) (0.2300943146814644 0.1473884340448673 0.4325710542414739) (-2.661791909087968 -0.9223899370633368 0.6408261708662343) (0.1888849616682111 -3.539499747546799 0.5042704296836305) (-2.218089532327609 -7.609735420289145 -9.164753756669482) (0.4622516787419814 -0.2210412452631524 1.743682850381572) (0.00292962944279114 0.2428321952903835 0.4682524229561778) (-0.1294475254098211 0.4181241124298018 0.582021915666898) (-0.1107546333875404 -0.05691347837769362 -0.01254765016278395) (0.9923945749266263 1.210876151691539 0.2743937674911803) (7.42065830424897 6.792872963175913 -14.14311559609611) (15.31579765075714 9.970255732873097 -2.035959013467759) (1.156121743510269 0.1215793996022343 1.006419765980095) (0.07676447142013776 0.07356261448548869 0.0677851055752518) (1.236099823304777 8.52650682848158 1.290092953600471) (0.006804477736231551 -0.1109015008467819 0.01908360383047984) (-0.03090598113008266 0.1444643619346593 0.09580526323221075) (0.03412846549770678 0.0368263118698421 -0.00473079867907668) (-0.005874976915337246 -0.04127283217850111 0.02468366289290406) (-0.01587055711766316 -0.002723703689089643 -0.007181714367065811) (0.359700527043634 0.8128409091191811 -0.5789507718319941) (-0.1705321019361152 -0.02662126312126099 0.09356975946252816) (-0.1344672846390964 0.02657549363830126 0.2659636530878539) (-1.623606206143381 1.004827468845872 -11.31973073767305) (0.04819345900237279 -0.003687060140979987 0.006983892378910145) (0.04229586611701092 0.008271958166752285 0.05545183462249444) (-0.0007462084279965531 0.6446660168049259 -0.346378148464949) (2.262172526437045 -0.826240977464062 -17.56691673720453) (-0.5128546026285652 0.6426712955851233 -0.462881039358517) (-0.2796775610610477 0.002446825438910019 0.1481107093935642) (-0.05284708828107006 0.01927261717664681 -0.02710196457701015) (-0.09207868641280971 0.7305003449164263 -17.19819688499944) (-1.113813220576799 0.7597026280023373 -0.3209589193131156) (0.4102228329532311 2.450684133818048 -3.080840515187795) (-3.447839229457426 0.9407504046156123 -0.3404528021992439) (10.50678142935397 -3.828331116996231 -39.94118284290587) (4.314568879648462 1.909219083260111 5.437012683335718) (-0.05313576587966017 -0.005860010804555268 -0.5553052443394805) (-1.304334616897804 -0.03151906128905257 -1.73354118765285) (11.89166070683723 -5.30821306762356 1.224621382492038) (-1.457025971316597 -0.868122471887756 -0.5996630359474269) (0.9471496053351967 -0.5719528405904466 -29.76258603147287) (0.06448191108182977 8.596733081688864 -5.006559824150419) (-1.665431863007019 38.29529476109547 -4.672930438826614) (-1.239026132893341 11.27766874012691 0.08097947588485632) (1.100310675736794 3.510938613598644 5.762966807130388) (2.101030364293869 5.953206359993532 -5.366566011651814) (-0.003555113742754679 -0.0135909719763986 -0.006701572857062529) (0.09833902400602439 -0.0219068077977237 -0.005631098120910769) (0.01439070750472945 -0.152291066392144 0.0966850151937409) (0.2091491999898422 -0.0944837532047153 0.3148970604827881) (0.1634756260216063 0.013795135920526 -0.02993289090057191) (0.0745703992945897 -0.06508586957060938 0.1457693540158572) (-0.4326578555549306 0.1872520914593418 0.03499626797888884) (-0.1584621965522516 -0.1641808185575255 0.110545486486378) (0.4850249463642129 0.2484605688776561 -0.133703497613849) (-0.2335919937483696 -0.4309500000721466 0.2304807904174344) (0.1188289442262511 -0.1328469529556876 -0.1140975697895459) (0.0441473427032749 0.06479004699827959 0.02787139859724267) (-0.9445048059848792 -0.2890542466918489 0.192588116582117) (0.9943231555183004 -2.395841437919878 -3.013670681701091) (0.4162299263328005 0.1330054270283171 -0.06660897937227712) (-1.990888481941069 0.6768075421940083 -0.6026811225203088) (-1.223034411123741 -0.4743905869768946 0.7237745892306012) (-1.988546576884043 0.07285591149729187 1.049066362659487) (4.711191371159146 -9.794839728956179 2.467160821177175) (5.344324550784634 -14.98117642347002 3.168835751505555) (-0.0818379746295963 -1.156177708780175 1.052603104090489) (-0.5541159441258526 0.6754475518631891 0.9076732285224468) (-2.848971290003427 6.218420211574025 -7.867127077552638) (-1.64176052019057 -2.176571413483895 0.02686945861163798) (-0.6187398272933839 -2.20561028986039 2.912387931144886) (-2.120358182136089 -5.76019173249091 -35.83503284625356) (-0.2869286002028427 -0.1245209922349804 0.1635716183630581) (-0.2408560143525889 -3.367182036467825 1.61515812704977) (0.2830311555696565 0.1448370775568428 -0.04488988380793749) (-0.1820348958601372 -0.2082874817502085 -0.300443780410883) (-7.000477147994646 9.970880829628754 -6.713535975219242) (14.19081879495613 13.86109664308014 -8.192719294867571) (-7.039362811471934 -0.8016243229715458 -4.26829170543347) (9.708027559712317 79.97208805849478 6.952079582970798) (-5.467930889592709 66.55074252919384 4.158008348943115) (-0.1173739659907037 -0.9486526134349265 -1.267686416989342) (-1.69213347441415 3.968909316096155 -1.647648263854296) (1.530127122242096 0.3434804468708701 -0.3159106376417595) (1.410722758863645 0.928066575315339 -0.2275834307587406) (-1.978590237549876 -1.280606145030174 0.3055458984671527) (1.465121862861862 3.615559047427082 -23.62806677505537) (-0.435175671334385 -1.033324484350822 -1.317982491204448) (-1.003227432811132 0.8240360977132837 1.511283661368447) (0.9469643782138575 -4.055564322513654 -1.992060998173972) (0.6512118830171166 -2.040845001684166 -2.255357748797453) (-0.1820367728964732 0.4130686562393002 -1.840782638673164) (-1.213219258885593 -1.055097586451565 -1.39968812946196) (1.000969921117711 -1.591949842054571 -3.9654165981912) (-2.019156667985336 2.463317212453298 -1.419812310141269) (-0.4449904136579867 -0.5966876759530404 0.06211920733659818) (0.008714446397345067 0.06934170885935545 -0.01127672256974969) (-1.052476921512004 -1.708965925583289 -0.05529420478199926) (0.007727294742120958 0.2899767462388882 0.302497261150028) (0.3900852368649126 -2.871895070110062 -1.670011579806403) (-0.6312511226163918 -0.283106447201624 0.4003831088553875) (-0.8978583823296382 -0.2666592007082337 -0.3278946250188324) (-3.14293052453113 -9.15913739320148 5.323754256176879) (-0.4386231750324258 -2.842284679282804 1.380453909329235) (-0.5661721729573117 -3.279127611959256 2.666721046911045) (-8.773762547869691 -40.86135565157861 1.729051970419643) (-0.6478060097814489 -0.4022202035483846 -0.03991023140384339) (0.2351455611880817 -0.1060101095549713 0.02053300345523387) (2.510405790703262 -53.05185752404131 2.88548975641296) (-1.731131758457728 -1.391632149000789 1.132521749409716) (1.060253346591007 0.2402458897630735 0.1551266225969813) (1.822685091145348 1.988557925205393 1.678665707397105) (-0.5891463793396093 -0.4187350875362694 -0.1222239468656965) (2.090055352969193 1.648247396193 -0.5089097857603865) (-0.9560732143390691 0.7661955468827442 0.3280832474583765) (1.789462779108412 0.8451760508820734 -1.055356848055459) (0.01145759115211853 0.2150781222350794 0.1244363130463172) (0.1193757471874821 -0.1666755085403467 0.2935294903748855) (-0.6744337041072503 0.4580779128433001 -0.2988627729567545) (-1.286078340424836 1.767092608573863 -0.8184407474856071) (-0.1660357759021022 -0.1004667314423986 0.004585680662082925) (12.11016545267815 -7.932102627861927 -14.61095691249966) (-0.2430018383312988 0.6159809421360647 -0.4508563301509537) (5.785725524735448 -0.6934142684508551 1.570068658906165) (5.938264384494789 -0.3456695485243433 1.322505511361597) (6.229623277411948 -3.050774461573627 -1.423807053029433) (-1.280884499440422 -1.493235147410993 -0.9003835137431548) (3.512006530612887 88.07921787600739 6.303224589905913) (1.578892962293554 16.94923166080997 -5.221904255827886) (-4.047860995521287 3.711850908758084 4.017858702522343) (5.25320828657625 7.984379918966889 3.694761064573144) (0.6748192289622299 -0.3618050445411489 -0.4773442945543194) (1.777696543930938 -1.168258118533558 1.020796809593878) (0.1256611044138765 -0.07365528723170982 -0.1775741510524287) (0.09869461697476159 -0.2391020188631536 -0.2793520978888028) (-0.07837485789838994 0.001055986754862959 -0.1728142855568966) (-0.8440835371565997 -0.8734856592131328 3.022990538061392) (-0.30144962197821 -1.423485302010232 0.1263843678797708) (-0.5288185630849705 -0.1336438310215478 0.1383263397894896) (-2.253780476737459 0.143158599348274 1.758540712923309) (0.3314838457983958 0.01466790504444596 0.26094706283677) (-1.113605009507096 -0.13759443468479 -0.3529850604256377) (-3.105400282401297 -0.0633055378286132 0.5669869768757425) (-0.3708988094491705 0.1905335842139605 0.114533366417495) (0.07692143797965126 0.3201388896931226 0.4666119087540661) (2.522120596482125 5.527836122254508 4.083439834426303) (-1.498349869662676 1.17626555348711 -2.207627229785516) (0.5831020185107425 -1.802274150440555 2.847503860077103) (-1.498555885246837 -0.1919873898584638 0.1338047111462518) (11.75883803098736 -2.877179595647614 7.857236033223359) (-0.2696116093179638 -5.298595386390728 -1.900044232566005) (-4.650355408542083 -0.3225551865254273 0.3901100818012888) (1.086905501687449 5.770466050264701 17.88043755491188) (4.787613523877686 1.905944592699242 1.243629670489237) (0.7378998019480365 16.24251188857543 -0.751225143053371) (-0.9797848380609318 -15.74476224604081 -9.950374891681339) (4.077169619922948 4.280828085951912 1.520237353459655) (0.1121807065556804 1.587313108302132 0.6335066680546528) (0.1130157376688157 -0.02594820002763 0.07161896699066195) (5.669298351326669 -2.859333542320931 -41.54578599934619) (0.1959033520939297 6.751350463750709 -4.019282581393782) (4.039576230407636 5.32453907261017 -1.09549305892441) (5.884671090546265 -0.176112320278823 -2.927821816701924) (0.4752198254498265 -0.103284618729783 -0.0003852693107544991) (5.106900214078038 1.806309837650167 -8.744999328715256) (-7.262932516301289 -1.349067156148869 -0.7697715736690283) (5.857634477652875 4.541697334352038 2.635980506735026) (-1.812568532807639 6.413723612106534 -3.92428396910206) (1.118792352383045 -1.642365553381891 -0.6209881810354203) (0.2780567849958452 0.09854099411966236 0.8138761951347057) (-0.07595708083501945 0.1148161504315134 0.09146733236816142) (3.219921253094202 4.801196338244081 3.55949556940714) (3.173800841909665 1.138335848974511 -4.73735043586364) (-1.130793484833072 -1.080790702373842 -4.948962082591668) (1.924928454998444 0.3034983935403162 -0.4394260318093507) (-2.660284692184986 -1.674607763281577 -3.917117838096754) (-0.1271407105556106 0.391256732933829 0.6815746445763842) (-0.02598719346753535 0.02364568437420515 0.04361635987392116) (-0.03625222897751815 -0.02558796043088668 0.06730107481585144) (0.2275661619091306 -0.1544682363509002 -0.2097752873885335) (-0.2863876295397052 0.3177277315043976 0.08306535263712458) (-0.1053647426218881 0.01707021892163592 -0.1543558262684526) (0.09102634227943514 0.3428283981798431 -0.04405386093911624) (0.1555115226228782 -0.2169105482361373 -0.1071729837580276) (0.09379255225918738 -0.06115273126270672 0.02303327478107156) (-0.3615795747837553 -0.0007004625381885048 -0.1452163485336287) (-0.01039663401664901 -0.004945969639697345 0.02678317605194915) (0.07305458603807356 -0.05930938478852182 -0.04744707921279075) (2.920079257406174 1.073181998034063 2.102897887251607) (4.157911187879849 1.223888305748234 -1.573637058278354) (4.885083683050686 9.099759139192036 -13.09904267172257) (-17.5597022800976 -9.964469382325397 6.351867909427883) (7.763422631296545 7.532310306140763 0.6663920722701957) (2.107917849925256 0.06979632906140187 -2.886771517880892) (-0.05669608952900224 -0.07580822195059186 -0.1295393303555475) (5.835203304896286 -12.61917230898636 -4.853627668242424) (0.7468708334132407 -0.0945027699191925 -1.508176711514723) (3.543913975624974 -50.41713664704603 -2.712270977873485) (3.19413049539685 -44.97506755753323 -6.596455615998392) (0.366722217778305 1.162699274715384 1.169187381070914) (-0.3516594299273012 -0.2802546925947971 -0.01298278070227185) (-1.661282032400299 4.434161341647625 11.69102764719477) (0.1696138458882777 0.03299181533967616 -0.0613559061763622) (0.1174658476989932 -0.1240169226755103 0.04715035494306015) (-0.6766288369358612 -1.836814975307846 -2.106699042180797) (-0.796364211918501 2.444129571901699 3.531559638296462) (-4.254287459167259 -7.53694409004918 -2.387518142861071) (-0.104273686519634 0.5907244706237258 -0.4168970301353006) (-0.7027277312841989 0.1495060769094219 -0.2355567293393716) (-0.1843718314417136 0.09485712402556082 -0.1445403190268996) (2.169046153564574 0.2008331667040018 -0.08145129689109337) (-0.2392451360630362 -0.05313992568013656 0.01651749756269996) (16.68625411298144 12.56840985607668 -2.72041578702079) (2.59367953022918 -0.1657071834249729 -1.569583960793111) (0.04095422946680594 0.05092857642942931 -0.1187979081006546) (1.575456001920817 13.19998836241635 1.33466324361018) (-1.257656216482382 -0.1834556811517585 -1.233110660714642) (3.080409964351534 0.6179090561723968 0.8248258170437415) (-1.134251840851435 -0.5969521056662184 1.61028145984986) (3.387003647947806 -0.6196198711239315 -0.424364754350108) (-3.670106179319504 7.316535533608898 5.789582496284744) (-0.5049774665401024 -0.2314231360503902 0.1435221936687744) (-0.9125304454202759 0.1264156144233758 2.917042397809767) (-0.07752778756762863 0.1500356648839344 0.3316598918691449) (0.293957785631932 0.2045111116694123 0.176567421860391) (-0.005102466443769587 0.005199058173154013 -0.003252552131932741) (-0.01686741197835243 -0.01184050108366376 0.01332484464861395) (0.1572667304921403 0.09613592442326171 -0.1053713604768398) (0.004141356189866233 0.1663247118555697 -0.06802291581760955) (-0.1467398932641341 -0.05627015299454006 -0.01549511161384551) (-0.03299376249698754 0.1179844472518686 -5.301592469197125) (3.576417383561715 4.38342698041853 1.912254381762335) (0.006821293050120161 -0.127260821479728 -5.451567536734935) (-0.03307035925737178 0.02668382779929283 -0.07146305383706686) (-0.01689470028623802 -0.02608549454995199 -0.03708163313919642) (-0.02327667334039375 0.0098142812346304 -5.28240578953016) (0.01078029131710161 -0.0007226202269921895 -0.003201875855776339) (-0.01596161088815907 0.0002356736591593254 -0.003119116102405779) (0.0003754968590398439 0.0003764427605690454 0.002509552827582406) (0.9143620984771637 14.62506617005289 -4.484755166370748) (-0.8062180994830304 16.27094378379701 -0.6672889435572831) (0.1413231608926555 20.04450224466386 -11.864008480166) (0.1414271747795993 0.53602557769258 -0.1884432170458366) (-0.07661368185095185 1.259282122234976 -0.5496855539792294) (0.6436628279655736 15.75568338370919 -4.607618795114511) (0.8063942797754384 7.042185509265003 -7.786904746144771) (0.6341784056974016 -32.63294128867336 -18.82732006471549) (1.428495408901625 12.42724686393453 -37.98532925470901) (1.118591046260665 -0.499556716770543 -1.99200801767707) (1.35970055795408 -6.431701577314961 -40.3196613622045) (0.6835015790802204 8.952000542862583 3.30716593691338) (0.8704934918518319 7.131862771896537 -15.57793724995478) (-0.1605790709292534 0.6492159682830158 -0.5681121115710734) (-0.2930406365932934 0.4006314000058878 -0.4493519420244109) (0.04922300189734513 -0.7416776101447717 0.05464555360834995) (-0.1416157894195158 -0.1843592492970687 -0.0569352913231703) (1.440766602208346 2.833204385262166 0.09075394071449078) (-0.1802303117218104 0.4641209755233533 0.06874606925301541) (0.8015394170660293 0.2600833131648551 -0.2738821175363819) (0.2385873590393025 -0.3233989867784918 -0.1152191104010639) (-0.616004452272468 -39.52256143024461 1.348528715751524) (0.4589741318393086 -4.760183798443389 -5.795660765611311) (0.2031673795582259 -0.02879699348406603 -0.07947271481598227) (-5.046097827999554 -0.3293301441449601 -4.057446533031056) (-0.2156360827947925 -0.05642862198470455 -0.2582856891266103) (-0.1244069857065844 -0.01265872522121288 -0.08148536804931512) (0.02270594528334669 0.02712236859261359 0.1925602743322183) (-0.03146172160894027 0.01153883798051954 -0.006577310782013131) (-0.009311156453023491 -0.04035144771235522 0.03331908381314037) (-0.3313676647137206 -1.212736404309589 0.1834311527378659) (1.447047617161318 0.4212252700059479 -0.8473961336980167) (-0.01544439703369102 -0.1437096753617216 0.1035929536917795) (-0.4716349548463439 -0.06199207382160785 -0.2700596062005512) (0.322650396328612 -0.4529407264174801 -0.1077503328484664) (-0.07393510869103181 0.01080649139402119 -0.2329276206429907) (-0.1743870574753046 0.05619324797591441 -0.3706176772611978) (-0.4656217506643384 -0.3830937620960464 -1.093274652758619) (0.02598029281154563 0.01553000951701074 -0.01765490844966271) (-0.00771021732725516 -0.001101971659080615 0.00126237024008777) (0.002346123789543138 0.05157279057424062 -0.03986242099071739) (-0.006153032891176368 0.1659778397216111 -0.2197958953026778) (0.004561753481183439 -0.04399468641250857 -5.582635545824613) (0.01257335887101391 -0.003421087210000586 -0.0006320938228118261) (-0.004993488288948679 0.005083225475059752 0.0009017842347710668) (0.2492005299609724 1.650527200495395 -0.6320356181950408) (0.007774810494562929 -0.006782306570968085 0.004395434349200209) (0.008374530039173047 0.00880210330056742 -0.003832218025492784) (0.161785482039805 0.05623457402006762 0.2726668523992938) (0.02631983025091757 0.0221414038660084 0.03053129274968378) (0.04626285883317185 -0.04768880074294239 -0.1044693079346807) (-0.1659000726512546 -0.05010761927600768 0.2263360252834163) (-0.01696003729114001 -0.01287625044226138 0.007391285843470229) (-0.0754342930289999 0.0426766426466894 -0.06934310376410771) (-2.132420010029629 5.150640136002156 3.822533192174453) (-0.2713426721378296 0.2415516022646969 -0.06165654628157928) (-0.06202317178018297 0.1022881501122343 -0.04693629517227407) (1.428102573312397 2.381478635793507 -1.625796512851716) (0.1746142635302992 -0.08855896668500657 0.01614453539724746) (1.236223459723549 0.3080349833940561 -0.8929318756095077) (0.06985604900212927 -0.004209325786245673 0.01257300540747515) (0.3078808453332656 0.06558340475360239 0.03891105521037034) (-2.487364364839919 1.207144444371162 2.521836762279385) (0.01465805722342139 0.0458430277642945 0.05093135390334985) (0.1384792856957723 -0.1051478174190624 -0.4327429078651145) (-1.960951495915798 0.3891704806626799 0.876505190214498) (-1.595738118170879 0.7837709710374444 -0.512091632452964) (-0.9956813858012766 -0.393311044922215 -17.94885125168294) (-0.3326919527541058 0.1029635049841487 0.08435475375444965) (0.009053792696251617 0.04697614507305488 0.00382598368086931) (0.254087517404475 1.964814000948308 -0.2992573372734124) (2.85653404201249 -1.033054456073438 -0.5406272428847982) (-1.497556166272095 1.063750565045345 -0.02974470120276804) (-0.3630323044461087 -0.07364139380994061 0.4968006977434913) (1.945722651303833 2.847322089525604 -2.268067844842534) (-1.141363061817605 -0.8587902196660236 -0.8457979059713425) (8.965145395343962 32.59065845343054 -3.991651220400123) (7.432651566001641 -6.648949462581529 -5.206069316724941) (3.178374092075205 -4.211490308216296 -1.506991565480098) (-5.914125219183708 -12.96815642752014 2.372507183393342) (-0.5144046223792805 -1.006926546825453 -0.8031204351267087) (2.418701697292673 5.618005536342277 2.964377593950978) (0.5828895862314969 -0.3732155408620148 -0.852055115559791) (-0.3223239139351859 -2.160944796296765 0.03427950634448473) (-0.7294019825431969 0.06841089209037154 -13.47165877969048) (-0.1559224279567075 -0.4059794484165198 -0.8674837695796898) (-0.4531167641609232 0.0316996508248061 0.3910430755628259) (-0.07497374138840035 0.1637651243351244 0.03622330061315738) (-0.04353870412427058 -0.1292062821225647 -0.2033836974332399) (-6.101324177227529 3.150295844548952 -3.478546559016069) (-0.7888128255088092 -0.1683156782183877 -0.1216251638812691) (2.030473641940334 -0.3462169071596243 -1.248051608344351) (0.2182243486081601 -0.4772462531599775 0.7917811673185798) (0.9485255715296316 -0.1549140526000466 -0.1666052148460261) (-1.991589616834537 14.03127556543533 -62.09105262980223) (0.2738941977726543 1.136572240328347 1.733801302597074) (5.115032147605775 3.696581193823702 -4.158208057746278) (0.9548562587042436 3.253108089940936 -4.024235411036697) (2.775187714171418 12.66867798494481 -1.814478580662132) (2.938957447964526 -3.564530835600716 0.7345808914825329) (-1.118161406917443 -5.074691701866887 -7.428202036769981) (-0.94415053408778 0.4376010607756823 0.7099315292966035) (0.656613255995837 -0.1442750064279701 0.07455006549918491) (0.6765402732528141 0.2386398657487864 -0.8243606731968169) (-7.384760453958808 1.039922997161826 -0.6824170399603554) (-0.1140351808541302 34.03783907697557 4.962798375664821) (7.00249807118133 3.015963775781598 -2.96019779647203) (-9.451245765730457 13.08317325015715 -2.067836458338962) (11.55968409418906 3.193235393268732 4.736242396154078) (2.063608839208583 -1.826040049149896 0.0890953575581683) (0.5489532930040212 -0.2041772960497433 -1.204947647296552) (1.092387167004225 0.2132925465412657 0.3059910577941014) (1.335651383389111 -0.1139445493045698 0.08386189439084007) (2.402430214194267 -3.93383739790999 -8.37707766043817) (3.022042561143181 -2.393005691901983 5.045811780327869) (0.5449754723556748 -0.9467965145215952 -3.461516469972512) (2.759639573591413 -0.5499275238466996 -1.16441284163884) (-8.319615468049797 2.635706890241803 -1.561471213084773) (12.34840549169343 -9.405901210235641 5.270744118808196) (-2.04698559020565 -60.85052640192494 -4.063702337295595) (1.474683763066945 2.096486213149112 -0.6405638180770072) (1.109114705671868 -0.3609449289374426 -0.7667559897812291) (0.5804633892467504 0.4582416083799309 -0.9470795041238363) (3.565430887547608 3.924048174196869 -21.39385518204801) (-1.030417263139488 3.775534529144776 -5.438052290591143) (4.864160694488303 0.2058605914556484 4.827675043263103) (1.372464667998309 0.147437448882781 -1.682121824692571) (-1.830773035847656 -49.3363331380607 -16.11224664580576) (-0.2389400325592012 0.1823852135258808 0.2268113114411057) (-0.004726568510900528 -0.02413696252114518 0.007963582878040606) (1.368319846328799 -0.8412127059594182 -1.58488005104575) (-0.1525620105115977 -0.4756803439856434 -0.1691428925998412) (0.5251197880006031 -0.04161171324980931 -0.5440938025137907) (4.560228194608962 -67.49311240889014 6.079251733517186) (0.1262585572422838 0.07067698067532399 0.07582240334020776) (-0.02403793775867787 0.02812644607032996 0.004421950441952695) (1.610967139841676 1.187028375583395 1.956923986071788) (0.9554213571649103 -1.577144495505879 -4.215495568429602) (0.03060498951520535 0.3061208083964149 -0.09664135139902832) (0.1885885019152465 -0.04124972263648687 -0.0772309843922073) (0.04245270954590635 0.01857635242919405 0.0294240381011366) (-0.2804272329805007 0.8254410052002643 -0.6503415332181911) (0.1912787169307083 0.009671585108091385 -0.02212656263793087) (-0.2617131436624028 -0.4113161960195381 0.2034666781410732) (-0.3609989445472942 2.769830950486367 -1.287956278247355) (-0.0174461739922409 -0.01918658178128655 -0.01097405893483629) (0.01343254619398526 -0.009072733637968761 0.09686144351111256) (-0.3520784552405137 -0.3664148973861819 -0.04291618692246407) (0.1468316800367559 0.05113272110541568 0.02469718442801167) (-0.160995092888956 -0.02432061673520983 0.1880601743457923) (0.01239436354944991 0.01190738462381076 0.02479526166780571) (-0.003155540198666262 0.001318194386135502 -0.0300674674417948) (0.1224639365193695 0.07272602342752334 0.05380487759198684) (1.695096734460185 0.4167468534926216 -0.8792029172837398) (-0.352516286107516 13.26628339868281 -3.319334478123228) (0.7902433562406177 0.7280456598370485 0.1452101165892522) (-0.08573312578390217 0.009255074634600888 0.03012751122638101) (-0.03489264683488317 -0.008551214046982683 -0.02092250914844145) (-0.01211588452565181 0.00679219634368657 0.03482584059395885) (0.09815549608438481 0.02377233127542642 0.01906771048734951) (-2.099529748303226 -0.8101152126523056 -1.409543376143374) (-0.1770353479543846 -0.0009683803767929506 0.08063879566192579) (-0.3724293248869512 -0.02532108258033103 -0.01439455657510834) (3.418311559780825 -0.5370467605668262 -0.3181477733683143) (-1.080029623948776 0.007388390032498832 -0.101634275440378) (-0.3611496473989284 -0.1079717415124757 -0.08554289078962297) (0.04253611241338674 -0.0512457483974995 0.07014561016819242) (0.085177375159135 -0.2279307283499733 -0.02573599316794645) (0.00261459060518851 -0.2403838638400896 0.1200244518880286) (-0.004487823062224621 0.007300558204907695 0.01252439811788163) (-0.06401735085898431 -0.02721318269167183 -0.01231960545930292) (0.09407169459368203 0.001725179468119768 -0.1780450762496399) (0.08931777651816512 0.3809250484705235 0.2365607912683688) (0.07895019584960496 0.03196862833193538 0.04492008958041917) (2.946227793903299 17.98482107021862 0.3620117134141116) (1.456397166362351 -1.744371142168481 -0.1962510829512346) (-0.766062250400473 -26.80852466849721 5.994193330974008) (0.005405048269944824 -0.0162181737660507 -0.03369270200343349) (22.77802333514532 6.892344288850271 13.20337217334994) (0.1441983508320792 19.2660915547441 -4.23015561566697) (5.460798027935592 0.597254367933534 -2.766812017040849) (-1.026432365004557 2.83169294375773 0.4553832784233021) (-0.01150604215738815 -0.01259262336368815 -0.01857168552535648) (-0.005370095854962521 0.009567022579666422 -0.002798731681880987) (-0.01923962206999882 -0.1628562230378168 0.03675066766841609) (0.04337294681106665 0.05790869827389778 -0.09018145680514589) (-0.1856881631061338 -0.03386213779129953 -0.06785514490083215) (-4.824223554435781 4.628051729317082 -0.2805204840682389) (5.64224289701938 -1.384998059603233 -2.843037593760894) (-0.01582855413559781 -0.03832914430326995 0.08738905802725555) (1.809854452297394 -1.574710139159808 -3.065684473548399) (-0.06004291367310736 -0.1653617383307053 -0.07279034964482581) (-0.3588547708325466 1.847109495172354 -2.332056750806296) (-0.08725474379785229 0.02262790259622541 -0.04811393162087393) (-0.539098806593624 6.153568876088263 -0.1542888353214202) (-0.7449863414126092 -1.266752157241872 -0.5106733607103991) (-3.187010430607199 2.319913075964483 -1.226843250950439) (0.1948684133488269 0.004309201616690649 0.06278105460942743) (2.69825660780231 -0.223545354426111 -0.205072602318487) (8.746056759750243 0.7386199609362767 1.693853386001893) (-6.466637610052858 15.21733494713343 -1.053541422493445) (21.97766289476942 15.40731098070252 6.241856113215441) (-7.568599375512349 -3.218506883499392 -3.67302327884915) (-1.068199753187107 14.73902981553879 6.173335484591513) (0.1691606151136781 -0.151479267975145 -0.4681034505334819) (11.67836111843794 2.029994767137532 -0.4167028390052404) (8.344002952635147 11.78260899370133 -0.5124771915189887) (0.0007231711396168128 -0.00512459748816451 -0.0002600897697402887) (-0.1642665748171147 -0.1337918630128207 -0.2177280540406349) (-0.009658890526883847 -0.009069012446236278 0.01662130530160343) (-0.01271050769468483 -0.009004200740301675 -4.647310260079152) (-0.002144858558694123 0.001138959995434948 -0.001444877482617043) (-0.002891772816777924 0.1137676077054642 0.2090059612290573) (0.02726700172999906 0.4314189268110838 -0.02340341146024524) (2.654548968100364 -0.2694134531534099 0.264054112029007) (0.09917714240606859 0.006791626833351742 0.03154989240829492) (0.002472346942536899 0.0001298765583265874 0.0008116187456281519) (-0.01639687573089425 0.05761098628455155 0.00360555368851723) (1.006292254176769 -0.5041360210062766 -0.0740438186985253) (0.2293368973045283 -0.07139100720131678 0.04855613910778317) (-0.05605141729610842 0.01227536330278448 0.003751497164622119) (2.352800952949314 -2.324524713948939 -1.067506604243678) (-0.03213974185191906 -0.1272250355609549 -0.2994513190279224) (0.002598722001687648 -0.4110902132652178 0.01989723413359445) (-0.5438200719922296 0.04209438090638568 -0.01237389586953518) (-0.1321803474444226 -0.162170999771392 -0.09330740534730156) (0.768870495045211 -0.2811250537123072 -0.3281543308721684) (0.1917520979369077 -0.1069653446367573 -0.491334615173699) (0.5642811350882562 -0.2253339163423791 0.9581592461083703) (0.3686404837197871 0.008642120929932065 0.07000884192146319) (0.6755867386082268 0.1606483944955385 0.3381453293788537) (-0.2868586198225678 0.1453768458152295 0.2106720976598229) (0.8376818810168274 0.01988268948134138 0.1914561670068777) (0.09330583394664387 -0.004151894502832088 -0.03485658349402912) (-0.3277739290036266 0.05253061770172507 0.4996554387952793) (0.1304667135813703 0.008689928629608242 -0.155630923437533) (0.005762892196366297 -0.0004310529451585671 -0.002603892676896897) (0.0185688392493521 -0.01853250108769677 0.0405066969608687) (0.01296056150209279 -0.04426094657724303 0.02012180970318988) (-0.3349498578198475 -0.1693992964261241 -0.1782086128160172) (0.0880386555738743 0.07922954687156161 -0.05169878109039605) (-0.08251349210044287 -0.08865893428124233 -0.2494512274742088) (-0.06094478038590733 -0.04739427143062407 0.01270512257202117) (0.9110109290440787 -6.657637805782334 2.634951096355588) (2.047219006516561 -6.252802157655892 1.536393705136391) (-3.716226886985958 -56.63119214085906 9.797857666433408) (-1.872516445561021 0.004646790159938963 -2.370853341277355) (0.733085427836603 0.7638154754263744 -1.959183645578065) (0.5203160680773784 -0.1711837172914104 -3.65504666579969) (-0.1647414789788998 -0.06536074441329398 0.01348266506728858) (0.02536586030867129 0.06288631520185271 0.0151262729535366) (0.02385364768068295 0.0004661220381354957 -0.001996312059046628) (-0.00560076962225603 0.01042261453903831 -0.01468337128551741) (0.01632905078680075 -0.01535354637641587 -7.967686492482628) (-0.0002215935709972974 0.0001467330033391988 0.001478138542887217) (-0.01037879732057055 -0.001176859995455192 0.005639090222060295) (0.01663324307281039 0.1204777143082655 0.07264195028465424) (0.01343584247762977 0.02540682530980205 -0.0122954230990909) (-0.1305407103751978 -0.06437744481702606 -0.0354745103053766) (-2.156364964174581 -1.293806598648359 -1.73141689267256) (-1.368481589485818 0.9148843190375627 -1.256909542962183) (-16.47767707605752 103.8304785035586 -9.631226573204025) (-4.251771050843011 2.815539823912393 0.2499931632989432) (0.1492869203413729 -0.05933296712285681 -0.1199246748772446) (-5.634259638570898 -1.115380757483061 3.428342141199391) (-1.172862049830386 -0.4007144788428254 -0.9904698359540151) (-4.120326891535409 -0.1087843009806089 -1.313949196184715) (1.917377459727286 2.801581144570614 3.113797115085358) (0.599376291759968 -2.366157112880877 1.986192835267506) (-0.5424406578629183 1.78377016297803 -1.316033756747899) (-0.1351806170796566 0.2681748868397804 -0.2011764207705945) (0.2345104937592244 0.6554503407246284 0.127485528088939) (-0.4478117132902585 0.1527356935313031 0.2256383376853759) (-0.3766672145412201 0.2033227200911865 -0.197744157940041) (-0.2596773794259457 -1.353770720418503 -1.337337285496152) (-0.1991503516649009 -0.1177271209259432 -0.1075045062470196) (0.9516493643520795 1.30691415347793 0.2301370221916982) (0.5447981993816035 -0.3836692877902017 -0.8839772866693267) (0.02945728512925477 -0.1944203087464588 -0.1661341092749556) (0.008947223421814697 -0.01222008750042124 -0.01746093654701353) (-0.3040604198462912 -0.02429850614507093 0.1216882583917148) (-1.589149681006201 -9.115658667346624 -8.038643946759255) (-0.2788259948268899 0.2094425032818019 -0.1143630538462838) (0.5324400500585067 -10.61805013293406 -0.1213256566276933) (-0.1072808034347728 0.004110006641756935 0.05620924424011325) (0.07774592444299211 -11.02417896281983 -5.612292185603613) (2.755611139763763 -3.272475603264464 -1.355265551414358) (-0.01078263456036957 -0.03446880358913514 -0.09601026025946385) (-0.175654329946416 -1.68999895240743 -1.169604278550509) (0.001827943866529107 0.004198690090552272 -0.0295384602293389) (-0.1306609033519049 -0.1103196743942983 0.03413276783289074) (0.1831957242479519 0.1264510164027494 0.01492542562895549) (-0.1343532639480229 0.1485535707316465 -0.1514977800226169) (-0.0118522861553428 -0.1569469889288197 -6.00952657527888) (-0.003326188112915351 0.0721768589886527 -0.01051703576952978) (-0.03196008930496488 -0.1692213676103108 -0.1013397666013549) (-0.04204192451424027 0.04238982891449772 -2.119650608878453) (0.07906860988144584 -0.07476084661134298 0.00343289242768352) (0.004991627251108187 -0.002191022864290224 0.001963551136189953) (0.006012803691728448 -0.01108172031518143 0.0002214089200786333) (-0.07026122590283444 0.03442581424006534 0.04304358308484123) (-0.01026200028100474 -0.06086607850813666 -0.1407055043668534) (-0.05197424800772339 0.01930597238324848 -0.05099902343898128) (0.0008972451160832834 -5.481683423522502e-05 -0.005231308490665768) (-0.003810351874368219 0.003954619124827491 -0.01863016836013557) (0.03025989976504164 0.02199681393760203 -7.313230969697881) (0.01675995496212909 -0.004877299429974392 -0.005203602387817748) (0.05210856249472601 -0.03834216042655443 0.01697594425918671) (-1.289692985165795 16.78839651902722 -4.252418821120437) (0.07657890891142904 -0.03964892114602579 0.006666401420719038) (-0.03684681813065893 -0.3873659224613745 -1.710253822905011) (-0.06318021808717156 1.587430766575367 0.3770572279932694) (0.05126728685095659 -0.01549143977033443 -0.03132973241621967) (-0.1009882542429031 -0.04071554545910885 0.01090406463455873) (-1.566365580915238 -5.028769806123639 3.45392863271841) (0.02605684656219406 -0.05864336510663116 -0.01353424525435334) (3.632276274390644 -6.809349563946915 -1.017792668179662) (2.082137000242898 -12.16496719375701 -2.080426685725583) (-1.660757108161766 -7.030398926178567 -0.100973735528598) (0.1004251578487715 0.02924934735052557 -0.06667520704832645) (-0.6831569824632981 -10.96216081800479 4.973738319445891) (2.808475394034817 -5.350182183624203 -5.235893588745513) (-0.4162213813047486 -0.1973296551448628 -0.007672670415433146) (0.03045029066351835 0.05181975686845643 -0.1382432052441246) (2.427221281554893 -0.1890774745076834 -0.4392935087056952) (0.4999959780567207 0.3760095132879746 0.1025416785791104) (0.4973204322366282 -0.1441195317403433 -0.1557817964783456) (0.09698549874575366 -0.1527089320963283 0.4985718714766554) (0.5750470767947264 1.260435656513313 -0.93428500950266) (0.6821644841568693 0.5040454599355205 -0.269259901081809) (0.191949533497361 -0.03416668649227294 0.02908316643114199) (0.02439041132388271 -0.01374796727070525 0.003227121190468484) (0.001972666691345023 -0.002391909716476717 0.001028834718025028) (0.04130250094050555 0.1784429593040662 0.1134973266665148) (0.1737834236048335 0.200610563786141 -0.01802564306000057) (-2.893537877908967 1.951039095622876 -0.7861151040011881) (0.08573801699408395 0.1588343577335694 0.06395240131132898) (-1.368932450439172 -0.6284106462992969 -0.5512388331163491) (-1.281526173789585 1.927826701754173 -2.384633632021479) (-0.09741184556507106 0.01005523130838374 -0.1441658436609415) (0.09072481917314634 -0.4538344943781697 0.09720095394756871) (-8.443375586893559 23.62152871870514 4.423332811536041) (-0.08453515153485056 0.1459034026843187 -0.1828226302522201) (1.331982528733231 6.021167000443842 3.714808576073004) (-2.630547992568085 6.001116802779856 -8.100036221084785) (2.038321197702109 1.840184705462177 0.1469415431913036) (0.05600496636844967 0.02507923944106552 -0.03720096245735181) (-0.01831876912249088 0.005113721254500439 0.003678977370932887) (-0.005698589342221427 0.01714800584565343 -0.05862503130336567) (0.0001884954526250088 0.004440668022794912 -7.95471716617304) (-0.05222164245766467 -0.09090759687468554 -5.143542250029066) (0.7474821847347375 1.085092903423133 -0.00914416077893343) (1.897645196735005 -0.3583304788798106 1.846687397869572) (1.071191097534878 -0.6450230240992224 0.9457365819973462) (0.03258173412017051 0.226868658197869 -0.1696423803254372) (0.6238474551566286 -0.2631406619356836 -0.02470929186994145) (-0.02167007571343871 -0.2190355428872573 -0.180532084499637) (0.006703200475439299 0.01069618212482863 -0.003320156116897992) (0.01345757873956643 -0.00354964344827499 0.0001780371721336084) (-0.7092755006248485 1.169281855095744 -0.7610703947245727) (-5.030305472041733 2.556004304465533 -0.1290750077694947) (0.5682660744124963 0.432160930240325 -3.431667245183922) (0.05013574641205563 0.07718787948452917 0.1259844470051473) (1.77674827467415 -0.3291132176389813 0.5690305798893236) (-1.990345590853207 -0.5446004400658203 0.4114448925176047) (0.002747703934875985 0.02880890403664021 0.02918417467266202) (-0.4395352538457726 0.2089692479749754 0.3341267556666607) (0.5500711083663248 -0.1548655281392222 0.0655042932970252) (0.3372167339341728 0.005029332641408008 -0.785863928891402) (-0.4070654201105918 -1.009630414586311 0.3117511515814481) (-0.7289626907502706 -1.643460024010217 -1.458469034733923) (1.34357614810213 0.8541562086340861 -3.028605914227454) (-0.9691558151916911 -3.911043014684243 0.9054987864617462) (-0.001177750168059036 0.001179945294097245 0.0007890359278311292) (-0.5266493856492458 -0.3428760465139411 -12.79691768247143) (0.005493313136017292 7.30941668764552e-05 -0.001996676905137455) (-1.028235444527384 0.0645213106660532 0.4345720234669074) (-0.6301057702229165 -0.3936662420167213 -0.1996686844033228) (0.0007818134455888476 -0.01204574826133324 -0.00176876204608859) (0.02848602014934266 -0.09132058139279164 -0.03300125189326354) (0.02584449685190204 0.001964773268451868 -6.164761591653821) (-0.7139643927037099 -0.6017687433503677 -6.968822047413759) (-0.001295057448219342 -0.004685768895389309 -0.007441406041851954) (-0.003154225507827681 0.00126696533690871 0.001760777014241427) (0.01408009146043569 -0.02669467294348973 -6.019899647782841) (-0.2028004691588213 -0.6571399979624392 0.2271022318512718) (1.606989082444047 3.197819142366867 2.81643787789573) (-0.728570680708907 8.349514996383448 1.417160382553607) (-5.237665446343814 2.163948752438138 -0.02137855582612835) (-5.483300724557608 -0.7662840224386264 -9.691283968410469) (-0.710683829602448 8.014174185118105 -1.694919941358933) (-0.8048697798229214 7.487028365391402 1.211920852532152) (0.7611103218071631 32.0009449758432 -1.721683081124925) (0.8989856103748352 0.5494167941837718 0.4336011722076721) (-2.71371576529179 -6.480316496244015 -3.728845571873909) (-0.2339689185080685 39.33590132011128 9.896141687609594) (0.09453808461309743 10.383277034843 -0.2159719143794007) (1.932842129334212 1.932576791393303 0.0757430395136327) (0.101549032402473 3.426918775142719 -34.21824270772681) (1.782413655643558 -5.014784698454244 -1.940368026115777) (1.823698624198254 -4.220293693338057 0.3163145586521657) (2.568182060163953 2.905428747369654 -1.109240550312373) (-5.007359832665226 -2.271715723709221 2.198920130723498) (-6.675466588176207 7.372912859385235 -7.378731214610816) (-0.4815665993477472 2.784297826010004 -1.929678686217561) (-4.925283432518359 -1.757696172094158 -0.05493262277986855) (0.07556311732355298 1.6886867185509 0.5615301602792721) (0.7967575799717419 11.79981392494747 0.6473348362334916) (0.05884244549560969 0.1762817046199236 -0.434763504453446) (-0.1950355027975436 -0.001563517281515931 0.01582631690631883) (0.3041509472629108 -0.706516162151716 1.088566386190021) (0.2281954809621583 -0.03665898235731018 0.1965064075320725) (2.026435646585926 -1.148906844665687 12.24234806683778) (-0.04304335832398881 -0.003955274111544789 -0.0007671380937487315) (0.0153058553995899 -0.004901825065045945 0.08360386499112277) (-0.3229546730687647 -0.2708342030294528 -0.4273966134108803) (1.583538458258626 -2.044214634448307 -1.810017072063951) (0.3348855670554274 -1.365921056894316 -4.775353696128906) (1.133792357787031 -0.4375606891944907 -0.02412898577410005) (-0.5943717343775332 -1.298340901803629 -2.993280014713138) (0.1749534749807812 -1.371178119526662 -2.201053756248412) (4.028852187871506 4.312378433335091 6.620090561682773) (0.4566037838014516 11.27995082046731 2.266536248922892) (0.1677527367659705 -1.920023202757777 0.2372558616071534) (2.188974272848549 3.53039738966639 -8.530136712723801) (0.003745524656286008 -0.0008798028276191686 0.0002279615422371512) (3.765073496419731 9.287028049647006 -1.593496886965915) (0.001330065635027316 -0.01731139229348581 0.01421471065214046) (-0.007863985568086559 -0.0004807342834848728 -0.00126478904722584) (1.637005998406206 14.22730114711278 -2.834576528851522) (0.07234294522103202 9.861626436938373 -1.296754890519997) (0.0214859518469852 0.008832230693225265 -0.0004467953222604709) (0.0766699897512164 -0.01153104488226629 -0.03096499816534801) (-0.02613447318384389 -0.007515559650392715 -0.001668228717428968) (-0.01156605913625276 0.0008856745869357877 0.05513776952115504) (-0.0179777117317598 0.0003805800205674203 -0.001806474010587276) (-0.01685774387094703 0.02051074486842141 0.009494559059466199) (0.09286037557006839 0.0940864890355434 -0.5228893445261289) (0.4496813395441008 3.875178117434564 -0.391310487800451) (1.438638718145088 6.281215672834538 -7.154350002594226) (-0.4121074683300738 27.48126189253929 -2.195335297198141) (1.960217520952459 7.457134973079484 6.584063356039252) (0.1934555204152041 0.3732230188109775 0.6685522517087422) (0.4193756951336465 -0.7074581068654693 -3.323127276751562) (1.410527044369143 -5.379475849429157 -2.048458385574097) (2.554254339313529 -0.8056312131311562 -3.158165987812111) (3.692574357480125 -4.219219873124866 1.062934944723266) (-0.09858819532499018 -1.7189034635654 -0.3286865891342949) (0.1026506098315051 -0.5827831427969822 0.04924939336607514) (0.6953457486987715 -6.409365479719414 -3.032203031718245) (-0.0006786822030818165 0.001085912383318266 -0.0005835055613513361) (-0.6288231227405796 -1.653237957809647 0.7743582250062082) (-2.361947947640878 -11.39161672004784 -15.76422078246384) (0.236574110788535 0.2518987716785814 -0.0972562816700864) (0.1318017171417636 0.6149475447527583 0.03234178646831838) (-0.03204534960320476 0.06567640475184755 -4.840287534282224) (-0.3076367700717552 0.2902331602052731 0.4270843421239569) (-0.1076081852597969 0.6534694722900856 -1.878676748624661) (-0.8284907306635938 -0.5170359245674447 -0.1737827698883914) (-0.1697528121869777 0.1747194901099338 -0.166147955361985) (0.2991518343163545 0.1610416503163626 -0.04558445407958679) (0.00418046183126573 -0.03081369466384532 -0.01555773680100317) (-0.03139229408169453 0.03371361319122968 0.03796570982767541) (-0.03159766370134669 0.3463945217622918 -0.1889936513423689) (0.9403560347534707 0.6711389163277691 -0.2313933385899626) (0.01697072563235961 0.005833456364500934 -0.009134113897509968) (0.0172201816349328 -0.001311039115394282 0.0003867078366842731) (0.0244615694040655 -0.0002954444362794845 0.0128773756801782) (-0.004907110240846613 0.000821678909095147 -0.0004521217817884479) (-0.01135744758478817 0.002216053573024451 0.01051801064714446) (0.08204369344529894 -0.2481375878270636 0.2611199063516592) (-0.1913554160825522 -0.5767353903251331 -0.6174276195231683) (-0.3601654284384745 -0.1343183221822302 -0.2498213376240067) (-0.5487792321437348 -0.2520511204717014 -0.3636694920275181) (-7.363214951118332 0.4461675463328337 -5.117571407657392) (-4.248923791272971 0.8356024293771813 -2.433459275505538) (0.007799464020420292 0.01753189980197483 -0.02466647768254667) (-0.5290275851207118 -0.005043960538291176 0.1015069568029499) (0.04109642285387035 0.09633323866410157 0.1522779158791929) (0.07531198210660645 0.04041781715867487 -0.03227314424741034) (0.07174113708465804 -0.7234050793974812 0.02488358311515021) (-0.01105796549123816 -0.2093373687335132 0.2135738923151922) (-0.04018632741024161 0.03345264391878602 -0.02315276727159993) (0.1502182969450047 0.01489581839225703 -0.03191351505347007) (0.307997927543566 -36.20256140141571 0.4581184498691826) (-5.074112199571006 1.74851765464975 -0.3518843822196956) (3.542720393672289 6.754785247070973 -28.69563469650273) (-0.8735142291369926 -0.649476241151792 -3.360798121583669) (1.265692468711627 1.364251759837885 0.8907559290064194) (5.693889962990847 1.744903377757581 -30.64926006059225) (-9.969458416512271 -2.65389850152437 -31.3256176304409) (-0.9044510423791632 4.342110403358102 1.526527564388722) (-1.718668173870364 -0.2583160443806121 -4.405311562100239) (-0.6231027936058442 -0.1042011377218337 -0.7444984478720846) (0.01740749800658319 0.01534121836698375 -5.486230368072539) (-0.06842156598814897 2.080886867986482 -6.947713411158619) (-8.918940781534026 -36.50107986634787 7.725487120315215) (-9.898650757026269 9.676182253024436 -5.193783089114751) (0.7103608420572438 3.109937103593666 -34.22274574463064) (-1.122721200761762 1.216264387618013 0.1121164366605889) (-1.353010733803129 1.619421819504433 -3.313657994781518) (0.2339871519815074 7.720858143763198 -34.68393853381974) (-0.7481524350091544 10.7930304603614 1.278695938543684) (1.433073693971223 -1.449726491494932 -3.35837652952737) (-0.9797899196028563 -4.878166516243907 17.33100438979464) (-0.1990766666974843 9.809882682515514 1.731783252789667) (0.420757032702789 1.535217066978815 -0.384287040964709) (0.4371076090400521 3.938942605914287 14.86136075008776) (-0.1711805752274819 2.091409270788759 -0.831651757515376) (0.2476341192012152 1.738768692291914 -1.586872968663956) (1.443724073860768 2.250410196871062 -1.490020113840867) (-3.19956154243632 -52.8151850985645 0.0142306142427705) (6.787543674165787 1.996391777012806 -0.7473786970008037) (-2.763849647702345 -8.68237954771037 -5.247746779990065) (1.043839234660947 -1.643183765566074 2.068811236247546) (4.108064593901847 -53.67029207181795 -8.573390758869813) (-1.18545728178222 0.526586817858202 -1.712644300901073) (-3.674068896465316 8.380346027091489 -7.091272219411087) (8.97519254951691 37.53432564473064 -10.22280291459578) (1.829798565852707 6.322157350708659 -37.45547495146107) (1.858662054049756 -0.5693100722791765 -41.02155125752365) (-4.591724751621625 9.347857365326508 -7.445331039583989) (5.411263904815565 15.73571644506806 5.850510189446472) (1.607804552982694 -4.088182033216353 -34.6126662279016) (6.1841771961364 -11.02375209238613 0.4675073642453014) (-1.33914924936185 -0.04271785783049832 -4.372590434290543) (0.3843455295398294 13.26458866065897 -0.04032134923327044) (-0.9123399516618298 7.486102214047138 -0.3811049506837053) (-1.014973503583818 0.668169956992031 0.6532463369595549) (-5.331035407748507 0.8181750913654122 3.038165306563373) (5.557276679148428 -1.866279375059623 -0.7879098441986543) (0.1862132827342998 -0.2630596761670611 -0.2422467893423028) (-1.058154853183364 -1.111340658207843 1.634538217995314) (-0.003621756261931147 -3.420741054244294 -11.47165658035553) (0.7158990964510342 2.019858860359793 0.7281785777114057) (-2.148646968295412 3.030318910480312 1.243871692428327) (-1.053386733273315 0.1507120353321555 1.170214839210042) (-6.21232520191692 -13.98323101444858 -59.21936755307529) (5.47685536949976 11.71645074233124 -1.750939675405155) (-0.416797901262544 0.5890573082704886 -0.4351697718400163) (2.659988873925978 -4.67792606509301 -0.9439616386805474) (7.765168762887891 1.33679987215522 -5.554491801681131) (2.14238116786864 -1.629230015931345 1.074540490626321) (0.5654822778037657 -1.188248704587178 0.08247576292064329) (1.412404400577419 -13.58721670465427 -5.111504555094771) (0.6877397103745664 -2.92219116872818 1.531742169403365) (0.1208306190485171 0.3218911607955728 0.08711471761399676) (-0.59003787657998 -7.919645499077529 -3.43635633401711) (-0.9832282569541075 -3.222003459811145 3.492162080666395) (0.9013239887226531 0.1371404137997006 -0.4220639630582208) (-0.2801541348824067 -0.1025808155103493 -18.67586432217734) (-0.2699816887353447 -0.3383953548255553 -0.3677956861583049) (-0.0008332429541513036 0.05076104456468993 -0.02669545520084113) (0.4137034068997449 1.108853370972404 -1.652931173798967) (-1.503457582325186 0.4445057487450374 -0.7034318398323675) (-3.097040928193838 3.371249661330692 -1.659408840708169) (-0.7247399618087577 -0.2413218915775732 -5.828993736622111) (-0.9584205768331113 -0.003586660058374158 -4.120104752683419) (-0.6783333098427629 0.1206730881418824 -0.9919952858323122) (5.318378058187981 73.55537510667448 10.97475153557222) (4.047062668117698 0.403729310807555 1.530883133938878) (-0.01555508621116016 0.2514141126975199 0.2405144253455963) (-3.151385860784118 11.78798737134134 -4.099896425709609) (11.76041345157881 11.2487453696875 -18.30349196122217) (-8.540256019479443 4.422169529363429 -7.5888137965776) (-1.517852441158655 -44.39309133103607 1.891069623543814) (1.654988020032789 2.958689527156643 0.2092625426007317) (-0.8334936338939537 -17.84881726856237 -52.45881492921799) (12.88902894003854 8.02215237159476 -49.79156968527028) (4.385995446577531 3.325768229355197 2.176049287913533) (-1.310149886402924 0.5732611835688997 0.9886187868217244) (2.183711864757213 12.74422150672908 -3.328571496517084) (-2.911481756814968 6.935365953308895 4.444068489260044) (-2.274731984366495 0.5472454529946911 0.975501978826757) (2.941906666963505 8.399503643402118 12.61151770117098) (-1.005828361299158 -17.84202520030345 -6.005353119191286) (0.1585839894725856 -14.43039477294614 2.767652016130981) (2.885161447007301 8.044783557012403 -2.507690567071178) (-1.305733887643525 -3.771614660108563 7.43898662628543) (-0.04149165788526504 1.583113142943763 -0.2447499949254693) (0.2103393263477582 0.02309362886431232 3.686488653057908) (3.624736646920812 1.323714201505138 1.54843882320587) (1.692373055879459 0.6786503320789784 -1.351524139220897) (-0.3478045764283536 0.2386029475205726 -0.4461821136072339) (2.531019104454035 30.44492455032224 -1.75259968141854) (1.65151969634299 8.614539796907756 0.3769604354914623) (0.02298059325655133 10.95402797240911 -5.888801309714793) (0.340535662546268 -3.658769417917984 -1.521010922070398) (0.2421434989082424 18.46245505595899 1.56085436997265) (-0.1681243901444931 4.249765159554535 -2.062484517512227) (-1.757068123069615 -3.545242598157695 6.445056938074156) (-0.08621481171483225 3.011324120122548 -0.4708670964202636) (0.1101360778719369 0.1790700865809119 0.2599829358376219) (1.818822069832343 -50.43447930616516 -0.8273687861841736) (0.4241392953625851 0.1761957890255659 -1.147992438535566) (-0.8709564300721533 -0.6564522509661075 0.5265892106989087) (-4.808158191345368 -4.031640637038458 2.692841748872723) (1.48540366278734 -14.05190457212631 -3.636870222096034) (0.5666904448240195 -3.237097093556411 0.4455169274291998) (1.496639899985277 -26.71881082279118 -2.407576807296278) (0.07396860625432369 0.05457927507159836 -0.2749705789619666) (0.7577038846345356 -2.097169558745616 0.5414434858108181) (5.773826771089881 -2.494897441336521 -3.986109920988188) (1.212233007800603 33.93603556010187 -4.851072362986318) (0.3013301519123571 0.70769493034932 -0.1991009915787822) (0.4019023239250052 -5.722425283773464 -4.802380233200722) (-2.063237961957924 -13.7339951803421 -2.108498989814904) (-1.375908953571377 -1.834518688350848 0.2970069126346727) (-0.9178682521758683 -1.338773911294563 0.8410975840173178) (1.462245752334654 -44.61326161912395 -0.7385050611515278) (-1.82414543668701 40.42020721236756 -1.748619637036567) (-0.5818561383170942 2.310701352896369 -2.702568307782323) (-1.34259703295153 4.694679993683426 -4.164450773221449) (0.04645137649931153 0.5026243671858652 -3.331289567345952) (0.1736832967970559 41.82222916527287 -2.958738545586544) (-0.9799495124568043 4.28696106499758 -3.572386942226885) (2.480841615841145 9.41723326605417 -2.036511218269499) (-1.341736397691167 41.37456825014808 -0.1301981419061325) (-0.2796409580336415 28.19398300876666 5.16622509039677) (-0.2314881312107613 -0.06183473669465005 0.04357546901790244) (0.4561389639297481 10.88750778317177 4.080360750272242) (-1.067959957226977 0.2249389705388189 0.5929752635479882) (0.1333793670004523 48.15811958625865 -9.44182998220313) (0.7205180496254546 -37.82485138601853 9.218151150512183) (-3.107716883742007 37.10981907342348 0.9169456674460684) (3.091610564449315 -60.95712209356324 -10.88085232976563) (0.1077092853548592 0.04369385105267708 -0.04045089330357663) (-0.6534995481564564 1.621171597414824 -1.259306694151482) (4.887297541086173 -20.67694518420634 -15.42657618004441) (1.35130208834224 5.208844382300624 -7.486042132776267) (0.2682993655868762 -51.57509562724425 0.7458505729228773) (-2.155506844641939 -5.234840789287726 -4.053159089623087) (3.769772210931615 -60.93516635232261 -1.699194204071111) (-3.140877026106611 -4.56847006739685 1.035098879615783) (-0.4660970572267852 -1.057004897510692 0.4778618274943869) (1.422823751034131 -17.13593994020245 -4.631757988528827) (-1.411248600161891 0.1774151194589954 0.06451616323691571) (0.05065592810431447 0.01128184275982409 -0.0560569366760888) (-2.237388052683557 -11.73960282804357 -2.572934301127492) (-4.003431402762422 -7.472265824420399 8.130497343505947) (2.885016908454176 6.048947877597669 -6.997346788745542) (-5.652753624590292 -11.30617183171657 0.2653056750081568) (-3.309937098731414 -84.53522604754326 -18.99174651529037) (-21.5434695882495 -21.83989019167057 2.814621802425223) (-14.08638353520744 -89.6389269265116 -6.814910316032857) (-5.085286795440743 -72.17190956724058 3.003666677416026) (-13.67508959089351 -16.05852126459489 -3.23472439755531) (-0.9137004086982518 -10.86913223093311 3.285515425586755) (-0.836776268877112 -47.01278210317263 -1.843612588942521) (5.683090712994673 -44.89522242284335 -1.624142496604099) (-2.600836592400857 -28.27118570836212 1.641993190305005) (2.213348917071364 -1.126317100310923 -1.250120953105596) (-0.01627922655940325 0.3017318048815158 0.0826538335452776) (-2.128671334718296 -34.66779355352967 -5.725783339830506) (-2.48017747976148 -26.05217821226036 -5.13539944865043) (0.01078103335505431 -43.02722598744063 -9.965926750341993) (0.2661179753766525 -0.1360378799952704 -0.6497137352776499) (-0.298643800309217 -6.213261903889901 -1.845133138909375) (5.594421832985265 -4.895384352569333 -3.494212787927186) (1.726269445514284 -10.01800399616702 -2.817240722839956) (-0.6223499348543851 54.39021079123111 -3.073339376060825) (1.44184754924124 10.4847018528415 -3.513100159487406) (1.917288530439855 17.8872759703671 -2.272677660707506) (-2.633578445549446 -7.252235321007339 -7.095705464538419) (-0.1097560675622747 -0.09372841808974045 -0.1231503236843733) (1.433149787865671 58.04358714623267 -21.22506701469752) (0.1100912177577519 0.1704144113881145 0.08684429754093555) (-1.082716906892449 -30.16574325227356 2.279829629701779) (-0.07055572012273513 -0.1229975858228357 0.03668395607137725) (-0.1412179663007351 -0.08637515019088438 -0.03241559643193481) (0.8282321875126886 -1.402765307606754 -0.8409135435777306) (1.797452115579365 -6.84222784751702 1.597934271361336) (0.1106858369087344 5.956713180636748 2.061824211176096) (-0.4769985652892735 -2.012313546745692 -0.5972729722945023) (-2.226632794086474 -3.955778982873476 0.5931482903952784) (1.351126190015825 -2.414377254039054 -4.08081789242894) (-2.933699614389093 -12.35544128532023 1.331938455640251) (0.4406925715862415 -0.3630053313684933 -31.58885840797586) (-0.5780736462325785 -2.226247381925644 -0.4676250096811826) (0.4394523203191359 0.02346247231201574 -0.1777780938757441) (0.8183296562276031 28.95710103678363 3.448293188795704) (0.9207655662360112 4.202270782515251 0.1529437203319342) (-0.0599567940477328 0.1309087879737691 -0.112528645841364) (0.235675604758708 0.4472376561466396 -0.04656154424948758) (-4.309705778723144 -2.435819076063083 -46.18820287214807) (0.9520102027691488 -0.5108399613641744 2.970255069537736) (-1.60188117735071 0.7699106465992939 0.386195208946995) (-0.1263758286864786 1.142925645623884 1.134821657029796) (-0.1974093892960497 1.301881503510367 -0.002046074610044361) (1.062013481023383 32.43628961147351 0.06651379665888535) (-0.2599407033779831 -0.1924035199626988 -0.07093136019698816) (1.152051077538601 0.7084929072200642 -0.06239827135350937) (0.7395221356457382 0.4463753809045439 -0.3222535435688409) (-6.964137401208762 -1.358046740018008 -0.5556097985126252) (0.6122552917204042 -0.07126855994337626 0.3533463977390977) (-4.892572277423507 1.286851898213502 -3.411913940739544) (-1.620252190964462 15.95591853610661 -0.7576632832537035) (0.3665957560860247 -0.7846483735222476 0.3129972807508594) (-0.9209374100288886 0.1329496005520842 0.3767105676340239) (0.07258668787310085 0.0966070307686811 -0.01646915464712974) (5.869147492229056 -1.433154800808946 -1.595258741013574) (1.524572897096804 4.159411182498836 -1.536811671619985) (-0.5192248086319113 8.716501862977088 -1.732597289706384) (0.617275663597876 -1.692054516826405 -0.4000784577684812) (0.6658808749324353 -1.10966837983906 -0.3473405968758486) (0.8855011727363951 -1.331594823180984 -0.969308333262987) (-0.0515630872737026 -0.02177277584986809 0.09341064726472377) (-3.050503451050264e-06 0.003479083689656895 -0.005811082498824602) (-0.03178904942868335 -0.004462738743196949 0.03415718486815615) (3.546673619696382 2.020152986970913 -4.561738931107039) (-0.2546533927234715 0.9607295970923522 -0.5944341403208159) (0.005410902292085714 0.01074748058668139 0.004987581236554389) (-0.03882293581251303 0.0557187748083466 -5.104039040552738) (0.1449791544914012 -0.4972879313503819 -0.1566855841851445) (0.005251257126298758 -0.01270467622675749 0.00038251311239966) (0.07154701560404947 1.064841600286845 -2.930095928437325) (-1.0795209294369 -0.4724948758316734 -0.4750827349538385) (0.1807991343138042 0.2039429387617749 -5.256984633758432) (-0.02690360869296998 0.01781686538173975 -4.706986380080298) (0.004899658430678191 0.02639200656472111 -4.700870114693669) (0.839467087525276 0.5586282886457247 0.2004032380111645) (-0.02808991079343494 -1.017655332763209 -0.8117568958611527) (-0.1228381215479346 0.1908163332423377 -0.257386091626908) (-0.1782638054711152 2.575216789373853 -0.335414850077904) (0.07538998866352699 -0.01775383421232764 -0.3870348833486884) (0.826056015310235 -0.5037056641568913 -3.486699449252977) (-1.514154087573332 -2.256681632724547 0.4200806743723158) (0.1118904146255933 0.04892368021300041 -0.05195863662749904) (0.9505930348136467 1.738044633921477 -2.622429237894859) (-3.445130639617001 0.7573376076523813 -1.154402171714116) (0.694300083155347 -3.940625890014853 -3.377078085553203) (-2.167693971485367 0.5231561077856743 -0.40014836114496) (-0.299351615034516 0.8476085583005298 0.5219140114758608) (1.552182306938247 5.721259486150971 -3.419309507732011) (1.775123218656329 3.704699263975087 0.4028212483383682) (-1.43253184607534 13.94598488924401 -0.003616922220644803) (-1.287822289177799 8.698851832801031 -1.983513511515415) (-1.743568658497317 1.312460238398754 -1.083527391494356) (-3.779650744715644 -2.916339659052628 0.3999446019111725) (0.4474136383783787 26.4844280439032 4.012053810263135) (0.8170342862175392 -0.03611754305669651 -2.987496734343098) (-1.925124358578706 -1.983093714281291 -1.780751987793) (0.7999898152988375 -2.630015872069207 -3.074501562208898) (-0.1136601550601302 -0.01413695985185807 0.01389455931911494) (-0.03840799430170785 -0.08389782033791887 0.006590992312966476) (2.617731823180003 -0.6639128272852556 -4.572082643487906) (0.0597182000786876 -0.02191871053716483 0.05157360921166189) (-0.01537566780284436 -0.006975647083873653 0.005174611641028214) (0.009276890616568334 -0.1142364560196936 -0.4560065571639769) (-0.2272484301398748 0.570184286237329 -0.3128216540719914) (-0.1949271588210171 -0.02359867199412685 -0.8811906932210076) (-0.7789261127359873 -0.7077434797737672 0.03720399913445088) (1.190824253031409 0.3376329496104522 -5.312016418312687) (-0.006991442589118354 0.01101132647743836 -7.570892252235206) (0.2126932819915428 0.06005655213344874 -0.2533839177163552) (0.007690787557566799 -0.1018457291266507 -0.2901037225181604) (-0.1524421681914031 -0.3497921513856556 -0.196798339211211) (-0.3050359244172677 -0.5224928612261043 0.2187107413079516) (-5.865773923316797 -3.611894428411443 -31.25840712456225) (-0.2448880909064089 -3.700204980360513 -2.535050765483585) (-0.04663906587778162 -0.01206240832790886 -0.1736097289825047) (-1.266544600042963 -1.026271252160758 -5.638180690403553) (-0.2973999221910223 -0.9891239085015198 -0.361379423575905) (0.01203373255793387 -0.07965856289579254 -0.1300040954973483) (-0.01651372968182482 -0.007663143467671335 -0.02559260737683378) (-5.353035680097546 -0.9248282593272024 1.088904835978885) (0.7036456092598 2.271415008519516 -0.4374458938437016) (-8.663963188468607 -1.805837880481886 -3.106831736257937) (0.1009640291286069 0.03805722936281851 0.02282987603016365) (-0.03558696739859898 -0.02374660752550673 -0.1439083952091771) (-0.4460540813380833 -0.2765685248842515 -0.5319809874240432) (1.524233551768129 -42.99942108918968 4.950489863491685) (0.2303030600738266 0.09430163856751142 -0.2554842921125187) (-3.250721672065551 -2.125871887521368 -0.3576741060515631) (-0.509200009919156 -0.4524288605892099 -1.067360775576935) (0.03114224408620513 -2.712858476385861e-05 0.00724781192721162) (0.01659241212554947 0.1099026165983205 -0.04888394161350881) (-0.6247322230662801 2.058232778451325 -0.883634808524708) (-0.3109200890809505 -1.050488068536545 -0.9581441197150131) (0.2127049471186102 4.195583924276617 1.020888062090911) (-3.627899471287068 0.6595492503333839 1.073648889803497) (2.165406844206145 8.310695781603135 -1.471599954008128) (-0.03331906326962896 -0.07567040185256248 -5.940273235370942) (0.4651243942805753 0.590444352446084 0.5232077855206684) (-0.04335376969703761 0.2552822554810537 0.08682338446476087) (-0.09547611182722765 -1.250770969033989 2.232348803834945) (-0.004579782408868893 -0.002593241649541178 -0.004841990604626605) (1.447772407464555 4.257480659644931 -3.560408435587954) (-0.008940624553646751 -0.008630727563503139 0.008292309634799096) (0.04107093727872014 0.008681330414745831 0.03050515486939817) (0.0004948240813863507 0.0003216963849050024 -0.0002375352590813376) (-4.51512764163358 9.926001547989504 11.23139882061361) (-1.661004278747903 48.18036762725053 5.023559149752342) (0.355548584855937 6.755325447852679 2.687873168386177) (0.06891699869646795 -0.210685555633028 -1.522025215996185) (0.6587120152060653 5.59993957671194 2.385994321811847) (0.002823306240044492 0.001812251826347733 0.02239344947269719) (1.899199673726497 -0.1418138769193222 -16.86048170243475) (2.656963511349761 0.1484511865268295 0.06417714049630457) (-0.1201046771823914 -0.01900487424408782 -0.03965951895910716) (-0.4045134632462694 0.004017682891328464 -0.1094757043980421) (0.01384083775161241 0.02229933442609169 -0.05444178286164623) (2.54568948205805 4.153891474906247 0.1307031684372559) (0.001639650748353301 -0.02708895273587994 -3.998612316855103) (0.03087149215626776 -0.001885299324614531 0.007693229652361536) (0.07723014884971192 -0.008778637895114171 0.009291088513484121) (-0.06279060747194655 -0.08808470027049811 0.007943789483890698) (-0.003587555053334121 0.1376577659287078 -0.05614748187773021) (0.5530110397159019 -1.308718355616171 -1.203371160127307) (0.5373623094263976 -0.4044539998049742 -4.834264594846665) (0.0685991091424705 -0.05011319963767744 0.01494787533324093) (1.521199622532849 2.314661512571146 -0.5522451579363301) (0.06727406042428767 -0.008508350352935392 -0.04818022205881364) (-0.2193299959032067 5.258108440642891 1.235451590619552) (-0.0333678860432118 -0.03299428190407256 -4.902967552011092) (3.86309793693117 0.7709071639928504 -3.19816871767418) (-2.576647416443518 7.422637170917602 -0.2826484912411436) (-0.2546371658475794 1.222248783332835 3.347588937183708) (-0.5523551132881039 2.199433715427822 -35.57272284460072) (-0.01905276091359859 -0.01884410718677716 -4.933542190315673) (0.004457256153659786 0.1373649359454999 -0.05348822661301945) (-0.6220656344492641 6.071808160810507 -1.22797642153987) (0.6680486433586532 -0.5708183876066658 -0.9053836716765282) (-0.2416333068498488 -0.358512965762655 -0.7940383330577063) (9.618883176531934 21.42070239566826 -5.058441893194268) (-0.3902028659285491 0.03273094687380626 -0.1406175305541791) (0.0006025059179300112 -0.03377125639978625 -0.01611839311177824) (0.3600262766691767 0.07681363838483432 -0.3310872843119937) (0.04063910687297403 0.0278108344404283 -0.04127623299554567) (-0.03070853273597801 -0.02261642575111822 0.02210926354941577) (-0.5828269901051177 0.1002026947694068 -5.741595121772489) (-0.3001006671508436 -0.4324079780487151 -0.02645107336563735) (1.850702802201254 11.97490113380183 -11.15217629104047) (2.775342980242063 -1.425184577008755 1.657472783811685) (-1.142653616405905 3.366846088056398 -0.01270500810715602) (5.899780232035058 2.492102401065031 -1.280838832481318) (-6.128916656095612 -4.808444734642687 -4.762945252789952) (-3.290702058064376 -1.560506424877153 -4.90703341657995) (-1.03978871333407 -0.5515909465927471 -2.799039677280256) (9.742198065009434 46.2201618467934 11.9835392906283) (-1.89705795964878 -25.08265912749669 -11.06537525403396) (0.1136412541486937 -0.1270616838863521 0.1437859798984095) (-0.1311492455598464 -0.7855035629103351 -0.1117626705262958) (0.2301479051036391 -0.03777632388625363 -0.3568100758970507) (0.243530996446521 -0.63576348863978 -0.2404224563402634) (0.003103568635837471 0.01762684195306028 -0.01673309141179087) (0.002222714632202274 -0.008998836380107532 0.01894238409967571) (-0.03659045034295025 0.01935855414192816 -0.0176540461746709) (0.01485594688130834 0.0698151931489359 -0.0388151978283943) (0.0375556844467179 0.007441335948864636 0.01122360540600802) (-0.005442496767117801 0.02107786033299655 -7.97771822032695) (0.003118689579972885 -0.01046167984262047 0.006346930386399604) (-0.001964793581227265 -0.01213905155411105 -4.71206714807755) (-0.04039782241332068 -0.01538375526350482 -0.01551868610851034) (-7.668042164071303 -41.84162131864838 -13.33401593324406) (-2.023902118636406 -3.423701135920456 -0.3726971148010985) (1.654313996825245 2.029053055862323 10.40446374545713) (-3.887524620208417 -2.687007429325811 -1.610865732241799) (0.007903124352669547 0.03368019730221535 0.03289353113061329) (0.04742379880892968 -0.04498311572598133 0.01322105486683205) (-0.008180949423982332 -0.004620834948790011 0.02459933936023961) (0.003107316206649514 0.01523120343873161 -5.856595766749436) (-1.553954849239028 3.450661136824383 -3.667331724302659) (0.008403039193481513 0.01176449559225505 -5.891637908166397) (0.4740925062489409 0.02738091617604723 -0.02578574845560049) (0.0202361348995321 -0.03570989640904611 -4.519546656282396) (-0.1283034304607303 0.03885253532874617 -0.09045453143075982) (-0.01208515445673479 0.01203893671725957 -0.008577572983710126) (4.427249638001384 -3.288592318243343 -35.19421691308964) (-0.9587592444050005 -10.71478719946926 -36.48083753838828) (-3.888595804066081 -8.521513036940231 -5.660746981371172) (0.01550836787025184 0.02616289149179889 -0.03653965116785371) (0.0860490043959329 0.003013264813687142 0.01049158686218365) (-0.0007894670204204523 -0.009123132468821321 -0.006345175275602077) (0.5049942743896791 -0.4920302297797157 -2.102369398896792) (2.150253275257302 -2.113348821658361 -22.46782384094518) (3.441623749263904 10.03994844623876 -51.8330086579446) (-0.5218376952265822 0.2453723981933859 -0.4033122149233251) (3.006590657249931 2.338677240791113 -8.137132787613117) (-1.995984492580775 0.4090369333139598 -0.3962858924206803) (-2.841431215488286 -0.4472173787091226 -32.0279823209331) (-0.0418486482209446 -0.02288070903604206 0.04895102114612161) (1.364931507026318 7.280242555610409 -0.5742359484654143) (-1.591933896285226 3.551444367081083 -0.1392940568267265) (-0.001365282286197804 0.04429883315698899 -0.000339418406098746) (0.02552073153742152 -0.0169618576927512 -5.792461265899948) (-2.869566389073547 -0.4635241513203037 0.1251749690863999) (2.369883785464979 2.722776087720357 -44.27344107489686) (6.737509274038185 1.161726396111766 -48.39593971420032) (8.055941666928533 5.87941954698727 -49.66254615475274) (1.420373939725624 -5.033204863660709 0.3231106991048076) (1.151253994461118 -9.449299164040568 -4.669362475236078) (-0.01221899368063842 -0.02884984573001566 -0.09527109959956104) (-9.934929770815011e-05 0.03999817612657325 -4.986669095104595) (-1.248217837402144 -10.91349739165748 9.574556813139699) (3.532488071848224 -7.519416019355988 -18.33035924435251) (-2.84123242886045 -3.841339460913054 0.03458289701728878) (-2.293554744548168 -0.5583168929529085 -6.713447988887554) (-0.1260384196479867 3.408954774311951 -2.529253390340038) (3.151810984134756 43.0412666828856 -2.521842691519531) (-2.268775363937573 9.408382681678372 -5.33667865546185) (6.484968392921376 -2.448978323344022 -32.90621728842896) (5.216364818810348 5.839136398866167 -38.79408037829958) (1.209255137933821 0.6425079712710918 -5.576701839052656) (-1.446380355751955 -0.9087600392140182 -7.10709210292509) (-0.1876745014664791 -0.1249043707562244 0.01270802597598088) (0.005833377808358318 -0.000126737987463325 -7.63377265506288) (-0.1636888700766184 -0.2194084813125871 0.7278210749263608) (-1.007097434555395 -2.187299203821603 0.3197116985905425) (-0.06789613088766511 -0.005219562080228883 0.002766248405313639) (-2.013129696066557 -2.143002497679146 -1.612120535966408) (-5.197545877498596 -5.754451778448048 -1.527370475152739) (0.9919490032118543 -1.248372466872418 -0.5749287293582666) (0.1946722819764736 0.1237743456498087 -15.99702288567876) (-1.805565885544377 4.526369825078346 -0.8945547213991847) (-1.548250310837615 9.07736039724106 -2.344469874542642) (2.6754326494859 -5.112738915780467 -8.660866093361554) (-0.2906737346600246 -2.19390831709659 -34.60197880105673) (-0.01203145477802966 -0.00154544362825436 0.006302127200942318) (-0.004167913952422731 0.001530484967082818 -0.000755744746060146) (-0.02534590618589862 -0.008646351381966661 -0.001884344776797108) (-3.358895464688911 1.64004789883678 -2.862385273590811) (-0.01310402060333749 -3.305603179719473 -36.58287804631761) (-0.05124663460388137 -0.8613965565552097 0.1632324371774308) (1.142226829976149 1.573555215350003 -3.35916139143545) (0.08509170783806885 0.07336729436763637 0.04113126788641405) (1.205628126339716 -0.2937882025536394 -1.607582626610096) (-0.08113955426737542 0.02162137182447398 -0.06586614326866125) (-1.060694678050966 -1.28549169798983 -24.13714077123871) (1.747968587342897 -0.1292513979151031 -2.655311486384358) (-0.04341699022676992 -0.04648539881538957 -6.001298509225515) (-0.0003767330247681101 -0.04530234408546673 -0.03348708749609387) (-0.01707459239096258 -0.02302288494493686 -7.141950318849303) (-0.0005416612025021543 0.005123991603361023 -4.651171314745887) (-0.002193973263596978 0.002545704894565811 0.001031602652838194) (-0.03880532357184795 0.008208290625053606 -0.01064058938800446) (-0.1792447597828466 -0.06660569895665377 -19.48667451830583) (-0.8285249509981715 0.1986551239603964 -20.36485372962013) (-1.20089983600869 0.9794627341248452 -20.7768765381023) (0.1045193490779508 1.117844187017455 -1.760725079271146) (0.9058287224971402 -0.6144010062120191 -3.675609851883643) (3.559838609941461 6.873399498628089 3.804279107165229) (-2.454510510823357 3.889469345730561 -4.176289415965742) (-1.99128086814678 -2.941836509728592 -3.904606956847424) (0.4710951386481439 0.4344555433462872 -0.614508317362627) (-0.3769790953328782 6.016378190681279 -5.120615009447018) (1.216392049022553 0.3899939805235859 -2.56111933202904) (2.670682834463498 -0.2731766478108644 -30.03462001131663) (0.7065084139904039 0.70584490517242 -4.418272025701782) (0.02911868322760838 -0.1249300156465371 -1.181440885076662) (-0.3269303230287984 0.1215148506520051 0.6062081686420773) (1.425949202878283 5.210079716996908 2.080336754610256) (0.06611485560584379 -0.06583796792290623 0.05659155224898819) (-4.506704416649934 11.55067507038273 8.399975471067201) (0.3118251738636102 -0.2203829178284673 -1.099769477529032) (-0.1367355560485196 1.86421908531709 -2.865635777040331) (0.2832599301547352 -0.5924426093161175 -1.384253594977586) (0.01605394317396175 -0.04749189459890349 -0.2119452131015736) (-0.5462950003325308 -0.4993170757972326 -0.03108030932575009) (0.39371609243136 11.41309913294536 -0.1333269162810902) (1.012120329825061 5.675882554059933 -2.600342936249809) (-0.003241161392123569 -0.02982195333050157 -0.02950383313106368) (-0.006205422927838338 0.0001608823958322153 -0.01267092118987721) (-0.4461059499582338 0.3063947783636064 0.4189628173621983) (-0.323674335276608 15.70879470843889 -4.522911197923318) (0.2593815276841005 0.07335286023430174 0.09750847231083727) (-0.02123404592861348 -0.1680854400078812 -5.551368754571044) (-0.2502609074144896 -0.1012704657005208 0.1216116310830044) (-0.8960421180688259 1.098700457732151 -0.220193673669392) (-0.1829262589276041 0.163201986296946 -0.04640670534396478) (0.01585977479376626 0.0054988829656608 -0.01429925173073751) (-0.9849012533854089 15.80446113859343 -3.509459472515053) (-0.2429028997606987 -0.461693358648075 -0.04583319731706698) (-0.04845126849253489 -1.590012268487851 -3.27961994358737) (-0.2806440503352532 36.4865846630609 -1.691719777505242) (-0.3876973668887724 0.05517352900291256 -0.2421164626145528) (-0.9807533466368303 15.79193618307326 -1.490943353647023) (-0.5774977559104941 0.3418622701753024 -23.3826226379982) (-1.747054881665197 44.57163112624387 -9.470528080878122) (4.207781172662865 4.152216215567824 7.0245455269005) (2.696723569428584 4.826611062560686 -6.897521313881353) (-0.192192363866881 -1.078891826407029 -1.545062581948036) (0.3971230953616409 1.307343772277932 -0.498878613905708) (1.023050795471287 7.072653892954179 2.827007430077154) (-0.1172107956453869 5.971916194537579 -31.81624886518835) (0.3089530907107284 5.816074679294784 -2.970940429804034) (-2.119759080551942 4.279141164355105 0.5948151223141935) (0.2732786260689619 -0.2594367139908799 0.1835749243624875) (0.1586259495639213 0.9081105956351883 -0.7112110245003449) (-0.004112879188910148 0.01170684289430454 -5.505668473279292) (-0.2285936100464861 1.164734049045829 -5.780835712557094) (-2.501283921662331 -0.1748523867222203 -4.123308154287662) (-3.79048512729759 6.960704248876768 -3.813610469476141) (-4.567952336829984 5.555175534824624 -2.848920546832484) (0.971568705232752 2.542293458763645 5.058703813661428) (0.5913970156188038 14.01652212276044 0.6786061389825822) (-0.05206107150097289 0.1504715797000591 -0.5054186462897534) (0.4111969661097669 -0.06448334165721943 0.4937713788073631) (0.2224123362041012 0.546378328152763 -10.9620211668933) (0.5900402995128167 -0.4960815099958552 0.2204531175934477) (0.03304447767393663 -0.6141661920298733 0.6197960292787639) (-0.6634157316627864 -0.3815678443555675 -0.01138077885748577) (-0.09305708993046867 -0.001059929778556087 0.01868923867763895) (-1.525319512505743 7.696890873936642 -2.210477454465321) (-2.154847412978129 -7.374230068933915 36.99287306713948) (-2.095250284690608 0.5401728102748097 -30.45708581108869) (0.0161877960989392 -0.04117180094823737 0.06989274395826944) (-7.828046516034112 -1.636587301028792 -35.42459965919362) (-0.7115945824128853 -2.419454210094932 -5.869757528925078) (-2.616652833501135 -0.968832132899309 3.382397657459248) (0.1092301638853459 -0.2419858935342256 0.1548418571476115) (-0.01930652381802381 0.005330537381619681 -0.0056570003836398) (-0.4436558343565339 0.1148099288137515 0.08862653902980433) (-0.2909253146066004 -0.01625478273185315 -0.6010965718522071) (-0.1260304587458025 -0.03031034795019766 -0.04738454150308843) (0.3048027724467696 -0.1937278222534515 0.004889964480129511) (-0.7690558044858836 -0.2107063371905263 0.3752577501869501) (0.0641837046073559 0.2253860028420123 -0.03849503364202922) (-0.1127049242822563 -0.06179158364496674 0.1861575620770662) (-0.0145432428339918 0.02038745322657653 -0.04323425317339001) (0.2794078092015779 0.06139157987877919 0.1156167456991182) (0.7290713046452624 0.1291001402009225 -0.1446590167360207) (-0.7461338441571358 -7.616029936099988 -8.384471747654164) (0.08562807688834143 0.0005719994506442616 0.02019223208093187) (0.3463293051913967 -5.235571507008581 -6.560597340165421) (0.8529157424886804 -1.454803396335162 -14.55014325688832) (1.533806608897037 0.9436118453740273 -1.091275895333277) (1.140545149609941 -2.251983009880178 3.7353379037792) (0.06102272301950312 -0.003227558212548479 -0.01066027950908926) (-0.082649275476714 -0.3996558300706788 -0.01388876107105314) (0.09888168299255386 0.09076476837140533 -0.1718736341395354) (-0.03636762653600521 0.01260649807503899 0.01084412977579841) (0.007243149026533946 0.2029169562867391 -0.1308089183480158) (-0.1236430168236266 -0.03468139868731206 -0.0251280833694803) (0.4059820218721715 -0.2374886684433708 0.05466969993589631) (-0.5299123207425542 0.1304168868717187 -0.145802096683143) (-5.132758494160573 -0.5619526584916924 -0.3714965473959744) (7.069817608650641 -3.037911554879238 -14.48058052562995) (8.746470557789326 12.46766172987351 -9.533649844260172) (-9.69250556118655 2.144347669879348 3.694396286499057) (0.6079392149524598 -4.918730485224836 -0.9076565594878057) (1.255940728447794 -2.941930068553856 -28.44905865917598) (1.184165135669828 0.4733942123848145 -1.375664602523254) (1.752478444810341 1.714664273416529 -0.3749214815619689) (0.6919878567330739 0.177762450034006 -0.01186239764431156) (-1.635264369539097 -3.512956343793301 -7.724655363018643) (-0.3619067076530293 -0.03407244608414978 -0.1383520055748664) (-1.866908867984296 0.8387456242049925 -31.46980572886411) (-0.1238657578906446 0.1351778758261992 -0.133019451654708) (0.0252146896850755 0.005947509153909228 -0.03768333947575517) (0.05615377038593515 -0.004888881401255742 0.03122023474442938) (-0.005096475642714936 -0.009041067070026044 -0.01919659969610902) (-0.06111826155744077 0.03133686901098972 -0.0160865074174208) (-0.2010503410308637 -0.1952024928025425 -0.3062817080176117) (0.07008691367755947 0.03052377334124846 -0.08798879191782448) (0.1801147626152061 -0.1104167704979528 -0.1256866142327149) (-0.2650287152890192 0.8451543978044218 0.01429966960157752) (0.1697244913424175 0.009850634924439428 0.09348295758105216) (0.03009077815708877 0.003364625372615789 -0.01071681096760141) (0.01042061667831236 -0.05608943841565736 -0.05031897175217473) (-0.1471376389757707 -0.02292435466076974 -0.09185020431211677) (-0.02227776271302251 0.01101862520712035 0.003764679256098394) (-0.03993176584663526 -0.01098153822121811 0.03051031856227098) (0.007935228573444761 -0.0122024757390511 -0.002737283213403439) (-0.06065534134637332 1.441545266837464 -2.467421772751371) (-0.2547503428727991 -0.02069942981228831 -0.2085473973582203) (-0.004385525970326687 -0.0570635088502435 -0.03967667652023138) (2.466504289504633 -2.915959280473109 -1.784483583314904) (1.24945719256549 1.513759506989282 -1.226682655985788) (0.2325354427168693 -0.3489482324283358 -0.1752078655862196) (1.024812857264182 0.7106813077321021 0.234475384006717) (-0.8391255153526762 -0.4681821292932336 0.1105185213432755) (-1.694011727172743 0.5196890672870661 1.475280916655262) (0.005903006185544691 0.03548318827958745 -0.05869145578750559) (0.1063175328167461 -0.0192166008537798 0.0173655359309495) (-1.583559532479186 -0.1487210223981731 0.545492882646895) (-0.7591664716133557 -2.831425702554551 0.06782461293509631) (-0.003120097744538742 0.001894100819812111 -0.01995479013282493) (0.01159771848386966 0.0002030585256184095 0.005160265013538049) (-0.02594083974270126 0.01302901952066719 -0.1104454085855175) (-0.002252604149472343 -0.2714194998793666 -7.65917388922076) (-1.297008661444305 1.018112995100434 1.709469992716429) (0.0121661915168437 -0.007935388744506642 -0.01694501543484608) (-0.2646118608441608 0.7252185530047716 0.7326922404586637) (-0.8229261445864025 3.776898793164663 0.02252204953542281) (-3.431037363896396 -0.4411433332701076 -0.4565610145883627) (0.08337772317623079 -0.9508317373801951 -1.594477019802075) (0.2197662533379129 0.1755937158160749 -1.073533662288066) (-2.625880651004196 0.09770131510463964 -0.3797873535026257) (-0.6029421617608144 0.087848306745204 -0.2898117285424692) (0.4027782041880512 0.1594711064419627 -0.9715859636180084) (-0.5019388389658781 8.825646201030398 1.825537911880353) (1.305500496649427 27.99795743564995 -10.21335234830197) (1.563232917104968 -4.039544852546808 -2.925913501355828) (-1.466610147384602 1.656714407234508 7.451331199733235) (-0.3090034311508451 -0.1406457632813324 -0.3218798791654169) (1.705007594628264 5.347801481727407 -3.400094607033138) (-0.7557519039359106 -3.430478906277714 -6.353577483816709) (-0.003630868529714947 0.0006856435118235416 -0.009492383731776358) (-0.7197000039067507 -1.194908517033511 -0.9638703873984612) (0.005860712849106359 -0.06096446170177282 -5.280444905939527) (-0.2922055718468393 -0.07064551488420927 -0.04789803705996312) (-0.3434284357808461 0.139116647496872 -0.2431908740733063) (-0.1773576202433625 0.3346399483088349 0.755425825412958) (0.07002681307967529 0.1576345560659419 -0.07843587762161762) (-2.419404659087716 -5.824781722673442 1.140004116069319) (-2.732634632538237 -7.505965986633233 -8.900907196053033) (-0.07090371270487142 0.059528369204944 0.02404636822660084) (-1.123229678537121 -7.950136263865451 -8.645517040573015) (0.08604395170760221 0.1836892307925605 -0.3291662422867382) (-0.4226417381071362 -6.34276198098482 -11.27738706718428) (11.96318147262303 -13.77905965158608 -5.173752183854288) (0.05153079473735595 -0.07752292191819131 0.01989134327581495) (-3.050068175360042 -5.99883638394224 -12.1570513854001) (-0.02109201845566122 -8.646854817774899e-06 0.02967525156114997) (-0.974177204265034 -8.983239093907969 -6.74954460378766) (-0.7599544009339403 1.071018723587433 -1.236766076106193) (-0.03342841073993734 -0.04990490857524005 0.194852217112724) (1.266031131296276 -0.6463608998212738 -0.7906235307291267) (-0.1282479691552953 0.09287343952527483 -0.02279759673468512) (-0.7139707257403358 0.218825765583625 0.03496589604682931) (-0.1033061376798449 0.189996225928839 0.03294824404781757) (0.2956770521642872 0.5081165195445145 0.01191313796057472) (-0.5377058956499077 0.6400738938514785 -0.4341061720111269) (0.01059932482881128 0.02081805402946904 -0.03790124799053118) (-0.1423527296079724 2.924211892666641 1.023208895892407) (0.1684539284454897 0.08644184764431789 -0.0330928968390482) (-4.747148967393642 9.839912115105252 -7.506778812553843) (0.8758433140216051 3.741493795719872 0.8059608394254528) (-0.05703381436308631 -0.009966191496144788 0.002362648921023842) (0.2668868473226499 -0.02258343314655918 0.02049515491486411) (-0.04542868875504046 -0.1127481284025768 -0.1868807891403802) (2.689404655648683 0.6086868643924913 1.634015329606296) (-0.0026590567253404 0.0105074777011296 0.003899110047905647) (0.6062784644512067 -0.4721308785708499 0.2633144039019925) (-0.2783419252757805 0.1501878747228695 0.9125795830348822) (0.09101858617008574 -0.09849449139613653 -0.08750869782895557) (0.1794730037447321 -0.05000302893134678 -0.1066066989253445) (0.4637513120071198 0.0008836367839392401 -0.262919051209788) (-0.2083516404295011 -0.08125570746897919 -0.1978219644255065) (0.0680857733123221 0.0492363328233846 -0.04172366398210908) (-0.1005726477345039 0.2664835416950479 -0.03940440149881824) (-0.0319838755285214 0.01356852659683525 0.1225414457812012) (0.009755760043020784 -0.05803750464068445 0.329612611952352) (-2.018758495872396 -3.662150589999674 2.420747020912063) (-0.5413436854720213 -0.3987427946088582 0.1308081946890532) (-0.1519381956522478 1.498924350720753 1.31406167312218) (0.09698437020451611 0.8278144031318327 -0.3624076740286315) (-0.5025124103349677 0.1936720374393412 -0.1722086521577989) (-0.6869765563119401 0.1892551189558799 -0.9153987547995366) (0.009008035617817541 -0.05347809957588068 -0.1445044321202034) (0.01987883218779333 0.0169313725763529 -0.003321255729340796) (4.832468582164028 31.8431373516313 -5.112244046027348) (-0.1651388338338119 0.154399101266082 -0.6145091702927821) (-0.1295519240658387 0.9934124143692595 0.4641415098484341) (0.07169517970006412 0.4084111241242058 -0.0921702025751695) (4.523751609522028 0.68669081908953 -4.830318068617776) (-0.3248674373516884 2.966704295045357 -0.5323109020741652) (-0.1910683873606507 -0.1225918561945182 0.05562220761419025) (0.4319446704956397 3.336871060222345 -2.906610306468113) (-0.3371678279413591 -0.1451725477301516 -0.4921615379168754) (0.02544044530175937 -0.005473023111114673 -0.01734266130953238) (0.1753166931603254 3.171035532180294 -35.85736152403643) (-0.07384637702008449 0.7696271539223039 -3.510202928839728) (1.084549855189294 -0.6764688644490869 -1.132119069486085) (0.01672347190854683 0.0236113894111904 0.003762898916764272) (-1.304553279578655 -3.077857886792456 -6.145486836081645) (0.298150975897422 0.1024559814087477 -0.07954494354648546) (-3.434019675574436 0.978621400232207 -3.088722629769605) (0.02260364138776197 0.002632604580665289 0.0080961070809302) (0.2051099753755256 0.1029181362681574 0.04281510993668971) (0.006809689667763958 -0.003898591251346939 0.006827610492620559) (-0.9988638658670673 0.02152842544687009 0.03681814171417534) (0.2304190225019666 -0.06144125367506309 -0.07160636454258232) (0.1012356372811061 -0.05916102712152083 -0.04147216901355722) (-0.03470886474424793 0.03043956655323998 -0.02089792975818618) (-0.002024520104190817 0.02591670366221075 -0.01066413251066125) (-4.76551010838419 3.284711571175096 -2.863397656139192) (-0.1046700859306489 -0.03162318996897395 -0.06705045084140597) (0.2097610546264003 0.02472527664061337 -0.07462160922358971) (0.03277218534229807 0.009447810249447903 -0.02874830639970736) (-0.08221869507977138 -0.05915422726547269 -0.03396492410748592) (2.611705427356044 -0.7821243099453723 -3.349434878581509) (-0.04337097829985952 -0.1959467001152806 -0.09118211390786814) (-0.135391522435224 0.02207487327875653 0.01059660932902935) (-0.1201680635742386 0.6093407942091986 -0.9423573753995407) (2.041965030081957 -1.453215050769136 0.4792814530929383) (1.478048364792767 -1.561038144763918 -1.302525013028552) (0.06396058859070163 -0.1131664862118428 -0.03649441197174984) (-0.9791136916246048 0.1128299767556797 -0.2140433184220974) (-0.443302634455056 -0.3638119215025822 -0.2327406442239863) (0.5518183041577638 0.9048894726513441 -0.3477356573772091) (1.299571057744423 -0.7058469491860804 -24.8634174667689) (-0.7739424314946625 -1.493475280084396 -0.8503359463746194) (-0.1222895938205317 0.007837724490699548 0.1253995787652518) (-0.5063364613217401 0.407261334878148 0.3245879299642479) (0.1005935308734671 0.01704436814100495 -0.04879988413614145) (0.01711096219391034 -0.02483889933995932 0.169178851204931) (0.1502014963934274 -0.08229610461504243 -0.003419211026761668) (0.6326975073068414 0.3508475657632582 -0.2934200317416615) (1.203564326525454 0.5306475135159235 0.4646929512058308) (3.399176754199701 -0.5156519230693063 -0.6812206752357783) (0.8203441583266596 0.02333165693751724 0.10299287412748) (0.5518355572014801 -0.2084009168339131 -0.4571405346417264) (2.05294048647196 1.013110143592058 0.8408049939024702) (-0.1715746718859662 0.06146676431165069 0.01571867703298022) (0.01173293150727237 -0.002109079806395632 -0.01216757109539574) (-0.06069430242948597 -0.00156400223868861 0.01369053249099366) (-0.2942546953765757 -0.1174307047696959 -0.2692885727480467) (1.321935566670185 -6.00180615036372 1.775204512399623) (0.04648524406922114 0.02122205979056613 -0.03975454242486348) (-0.1618347173577166 -0.9302303734215142 -0.6085491240784109) (-0.02479166443074134 -0.01777578876852052 -0.05892486880600074) (-0.005674372919484479 -0.007561586648767039 0.03921388456431303) (1.154497963798183 -0.099547554567817 -2.021086314075988) (-0.1197393344834319 -0.09711463770649895 0.1505336018335188) (1.390434514750932 -6.624755469973922 -2.18274883312244) (0.006479075119754478 0.004322844489335556 -0.03150327018125281) (-4.351219243547392 0.1995399154337394 -1.776802411314454) (-2.002699312182298 6.172629153093032 -5.457802711304674) (0.009756727516207013 0.004667254084767544 -4.788745304898583) (0.2195205647691878 0.07944233470942086 -0.1017477556163921) (0.01059171807833306 -0.01203720255978444 0.005456169260202934) (-0.1394562086516805 0.06312952294927909 0.04662400633140508) (-0.01847274113279412 -0.03173069398252529 0.02902359747674255) (-0.01237087718988716 -0.0197328635783068 0.08855922971347462) (0.1120801744241425 -0.009163531671335986 0.003930435643833223) (-0.015597778492679 -0.01666043281188412 0.02315626287830824) (-0.02242609387150019 0.01596416256936104 -0.0142466404978849) (-0.00917125965073751 -0.00336359163346662 -0.003905991681393479) (-0.09964289352456623 -0.1376250409650424 0.1157945177728119) (-0.1109035657647525 0.6590662068410373 -0.1509198169144237) (0.009725979815601291 0.04772978715723519 0.001126730131443066) (0.1294064624503261 -0.2461221057404455 0.3742389222558249) (-0.2081265811687162 -0.03919011497323827 -0.4807570269296493) (-1.102758954527452 -0.3114537147648463 0.912273216293416) (0.280675476891019 0.1497478774197571 -0.8457451815155729) (-0.5459039155984204 0.3401157681273251 -0.1867711519484178) (-0.512519331979336 0.5220204172979179 0.1479854183006953) (0.02032898429382584 -0.00715988995008906 0.01413858687600548) (-0.01658943737691667 -0.03645097491584905 -0.01233727121961945) (-0.007813511260494843 -0.04297002369764814 -0.04250696503924681) (-0.07692951867976054 0.004708772694087413 0.04422398975815003) (0.8052377106325208 -0.2248221100112459 0.2224814056839857) (0.3089759035955612 0.08199209583614601 -0.5204303873158431) (0.07787279763756294 1.045776400533191 -0.1087861768833253) (0.02199576272749443 -0.005715526111588934 -0.01198710079255394) (0.1195723038688799 -0.1399182780459527 -0.3726183964575165) (0.08440401640715492 0.1618360441043402 0.1080552609829369) (-0.01067758453413031 -0.001927196386554842 0.0001782398156797479) (0.06317075187436286 -0.1592891904339805 -0.08001767907120018) (1.552263231058453 -1.688238933367525 -0.06423954274074919) (0.2910875439321908 0.196408596266404 -0.9293136801015391) (-0.788235375765822 0.7391738420514729 -1.21366998788662) (-0.1826197986310322 2.377058656425017 -0.7496515570393649) (-0.04700443269364957 -0.8315436918639852 -0.5376905129157509) (2.387149579691296 1.488138754589162 -0.09791808721165329) (0.008582480671925127 0.02894130776032418 -0.009053548381513442) (-0.001808597273978054 -0.0004032372078019827 -0.0007103944770427383) (-0.03459813334237051 0.03109355622538102 0.009711438096813154) (-0.002538638045515578 0.1674188413242273 -7.993864013251975) (-0.03845366415131746 0.1245605881652844 0.5403594259846193) (0.04936151039190233 -0.03355920150912042 -0.08067359616941593) (0.4332986609423411 -0.3294056085814178 0.7545684617635871) (0.01309618975079864 0.0007720238335608013 0.007374809972241114) (-0.4353704954210924 -0.8829692370117717 -0.8561827000917693) (0.3290413666465745 0.2698264394796036 0.07592974600502314) (0.06046926354993381 0.04638114164960506 -0.003722809246616826) (0.004014575496985196 -0.01621450352544814 -0.01611171202191413) (-0.005995255771481092 -0.004931879336183101 0.01051604455161227) (-0.01237306838644526 -0.03519918610815268 0.01392534191864438) (-0.02539032419989848 -0.01365412022351744 0.003081542573432804) (-0.01920615242618324 -0.007884103808090044 0.05850202625891297) (0.03815547710760496 -0.009626937953331825 -0.1242863145335737) (0.0578668802392087 0.03599047159518995 0.1677073276768429) (-0.2178707064881114 -0.03890223891370011 0.08164442311362401) (-0.01187735009105411 0.02004256598428091 -0.02209470459780834) (-0.5883024621625779 0.5306501028021784 -24.37606330827106) (0.172454576791445 -1.294484235597881 -1.598273871397293) (-0.1414652361807111 -0.02681382361894429 0.07891305227604578) (-0.5981622425202321 -0.02691452290699439 0.2145327332460282) (0.2658717478043396 -0.1322047720378515 0.2855891070320506) (1.302174033174576 1.407150703011919 4.118314673905975) (0.130565239911948 -0.1186962653767548 0.1993140894972689) (0.09434496972236803 0.1395730696609924 -0.05421785766040638) (-10.76952281687881 1.085947350531209 4.119610006214544) (-0.0459877560978712 -0.4654256820665889 0.3843494546692782) (-2.990155696657484 2.832102975101536 6.148800622872378) (-2.109614415517919 -0.1856706405465867 -0.2144140656022275) (0.1799038651251676 -0.1835581837641031 -0.1452946486818027) (-0.5825792067363968 -0.551370963411289 -0.1265041272955791) (0.07542561662865074 0.01479315148728709 0.06380030584881156) (-0.03526062794379163 0.05663028342083794 -0.008060320761773997) (1.483126795728382 1.602562981801591 -0.5695530343788605) (-0.6822338475130285 9.458989518062939 -1.703438756996667) (1.138941839203863 0.7478889286999502 0.6631275036843869) (-0.409044630343522 7.582111292463859 -0.03614177621835266) (-0.1695521949874628 0.04074961634196902 -0.06292686815780556) (-0.06610775549965921 -0.00559375950869398 -0.1191876387465271) (-0.03254365636538606 0.09339716638804069 0.03019622411008532) (-0.1819318120048707 0.1833224130162754 -0.02331103372320723) (-0.418053449011161 0.4197310009862814 -0.02516152544210035) (0.06423804118114045 0.01317633159274842 0.01172480302476325) (0.2928841852811043 0.1222118652158424 0.01701699955210727) (-0.01708375897213235 -0.02442971613393433 -0.005060489458866987) (0.07602917545101899 0.05862907291068023 -0.01863594180596821) (2.041560125082983 2.838419397686806 -1.562260310185891) (-0.1058141465157218 0.05389665553574635 -0.1229064771043328) (-1.078471059111986 0.3456238451884741 -7.277955202366673) (-0.295121159844653 0.07284947977767292 -0.1147783670375645) (-0.3552569500331 -0.6713403594728735 -0.1305435191241897) (0.02843187081411183 -0.02833145002171599 -0.01425805166136045) (-0.1711944492854563 -0.0726989899959041 -0.4259149663256671) (0.00744634576816261 -0.4755353786171526 -1.243227694219719) (1.994460229188127 -0.64555476221758 -1.735246887789049) (0.009358423367717555 0.1815184825355066 -0.1096229170778593) (-1.312594849563897 -6.466985712138732 -4.42535484088137) (-1.007502448601793 -2.206422533646641 -1.428662370951922) (-0.2783768159395165 -0.2935831625930871 -0.267139269328767) (0.4283767858205427 -0.9766174957989793 0.7818585321998346) (0.7563549049585019 -0.05925015231448441 0.8410981075732812) (0.6432290469937276 -0.4542320183588101 -0.1293401357102532) (0.04296195532535834 0.04863059972608965 0.05495700232176305) (-0.8146749024646943 -1.187368479771084 -30.08576806194509) (0.2116384496557618 -0.06199716147899708 0.0487770452839404) (-0.2295766646220184 0.05362635173024995 -0.003316128487272363) (0.01995766021250891 -0.04919020270914361 -0.09594827402884082) (-0.07233954315259584 0.00465576506582984 0.01039383791991189) (0.0002396495299454512 -0.0652430809112091 -4.908021771450897) (-0.03420585487168631 0.01197565391066904 -0.04294999432447265) (1.733365508635407 0.9759031543688719 -0.5510556614813265) (0.001362038644299958 0.1316716644515684 -0.02955757749477549) (0.7311865419732664 0.1842780136361188 -0.2152038885000942) (0.05354021939943792 0.1752615886423518 0.2385906109691297) (0.06844249560514747 0.2721755055871529 -0.4168230773499386) (-0.06087385676006882 0.1840999807552903 0.01851198727605703) (0.01984834745713352 0.01106916213216536 0.02918829704816176) (0.2054385201190644 0.1129345708905086 0.005173825482758685) (-0.07534520129287436 0.003350723427317534 -0.006354275393650855) (0.01615897113978267 0.1162325655342707 0.04744573570960031) (0.09469397034425302 0.05016602831156494 0.02726137594579678) (0.05026111878880477 -0.001157824058006955 0.06341788802631521) (-0.07635144157575796 -0.06883293169074962 -0.1065517477265525) (-0.4856161489198502 -0.1218525658745045 0.0009644149674887664) (0.2304863687917166 -0.04575052734635857 -0.1044838052933596) (0.01785765781241438 0.05300485382840096 0.01946392388233211) (-0.01372285517619581 -0.08463644240853806 0.05951189163035154) (-1.010305748075363 -0.2433785978718784 0.6678344577318959) (0.1601531356243276 0.4936759915516052 0.05581351774105561) (0.7441482637111647 0.3826204058293906 -1.78538132932171) (-0.3803172553037887 0.3935042000288178 0.170027453682279) (-0.05933081875312986 -0.032933663195331 0.03147892548915912) (0.9193722500085195 -1.24921771095131 0.2061499867128098) (0.2259197531395761 -0.1795446620597048 -0.5601720619267101) (-0.07428553922856122 0.02109968993201499 0.09804783690758305) (3.672622837806108 -8.144828634984927 -31.13807204068387) (0.2482612576639784 -5.020257950930254 1.783049951782647) (0.008260229412146085 0.01046950649482991 -0.0117401541586977) (0.7819937237463298 -5.500344739880709 -0.8217684488346441) (-0.3680922147865926 -5.045838137196689 -0.3124068820254019) (0.2767990554662875 -2.43584791442122 -0.8841885868017125) (-0.1539945846270467 0.3615885070146647 0.05400910706333498) (-1.196874901869843 -12.65289919425689 3.6247945859098) (0.4435754340178981 -3.462608098768139 -1.022888976320736) (0.07331849251573043 0.1111157412530703 0.05702378884568479) (-1.118845621273502 1.006887253434463 -3.207434677847001) (-0.8304972946370486 0.1592081359278401 0.2179948372218881) (0.0589001842010882 -0.1576244408301531 -0.1981718653785541) (-1.806090810585033 -2.142698027266389 2.94415277041183) (-0.05137565179536194 0.06015576226145456 -0.1124916112754453) (-0.06435242638074576 0.04778255067242548 0.2248742927326378) (0.02906156746384198 0.1583778601549491 0.411011758920829) (0.4056637061294012 11.43933562580432 1.012194411004247) (-0.2340086559727419 0.6107228380970856 0.05215401069380597) (-0.0139987922906142 -0.001583928070080953 -0.01752187075756302) (-0.1018001980961565 -0.01179105469372642 -0.2214280974878556) (0.193518822599736 -1.498707434082877 -17.17941019636088) (-1.7968298260665 -0.2815354111870567 -1.930880942372408) (-2.446913496313606 -0.09151580791980408 -15.26122570716713) (-0.0980522804490897 0.09364887250426246 -21.08946289111396) (0.5561315546211509 -0.7123128200156352 -4.795490112872306) (0.879723334858114 1.224020174570429 0.6742601248724325) (6.581963745195369 -7.138693469868665 -10.94521406012734) (0.6361863578067607 -6.684747747453508 -2.826032329893668) (5.740615497406317 -6.927377373287813 -0.997131800403966) (-0.001092168722891133 -35.26206590440817 6.5151842168268) (1.956962612746127 -1.660271140019513 0.4957946620727357) (-0.7242656270696597 -4.646216632636199 -7.177322495154987) (0.8033965324490121 -9.868141492496864 -2.378829819609142) (-1.040953328483423 -3.302567031976341 -5.757083293096212) (0.3345432454160362 -2.547678876934661 0.5903153006683688) (1.208232530970465 1.534252770173094 -5.103092461924294) (2.21374177358483 -2.348162166364795 -48.75043269754067) (1.32233865719109 1.940490687567287 -5.387749287848743) (-2.834484451489026 39.75787499198155 -0.03440644038036887) (0.2203880142383305 1.399855562181247 -15.88988788917156) (-0.4858145216896248 -8.168873408358779 -0.7216293603371894) (-7.151482030352288 -0.06522620610272001 -0.8986221556314615) (0.08618166531791246 0.7778762367231176 0.7418986194985996) (0.4345373718121729 -2.526184989529963 -1.68427852917666) (-0.8463931696730376 6.284987375125105 -14.63649225833675) (-1.952436428205348 -11.80021610179088 -0.1276987147593705) (2.739446860023806 0.5696822448139267 -0.2388097874664561) (0.2169878220688843 -7.771658838070843 -4.001585484906307) (1.696380936939097 -0.003726797072887145 0.5636744227424135) (1.519848099018415 13.92617266571745 -1.41130606265564) (2.694962407613613 0.6172965543009198 -0.1036973430589558) (-0.8448160240555223 -2.605370875082844 2.052604159085785) (-0.7435920594645327 53.81005444409392 0.8455343908051715) (0.5711716302606471 -0.02962869477722375 0.1338277749746175) (-4.076738851635595 -16.30562153354127 -4.679658107351934) (-2.404844518770448 1.205778683153544 -1.16318800039023) (-3.596059157482069 0.9417921775541571 -1.715212215154863) (-0.4172731993945114 -1.557585830453306 2.25654001028598) (1.374311538401131 -7.306751272923425 -13.23805620576155) (1.528335750334815 -2.915403759746547 -2.328236420159677) (-1.12069069257178 -0.8506143161504249 -0.1894786519229449) (8.809749536422451 6.168350191483484 4.767689410975493) (1.941584741498983 3.633650968233523 -0.6136347935856252) (1.335937059244839 -5.839338425096011 -7.101548590242741) (-2.602115525339521 -32.08394971119701 3.834062407030127) (2.675926583907966 -49.34502018145567 1.272890776039129) (4.509956348002794 -49.3559387682745 -5.284183776017785) (-1.661822330954909 -5.393482222768828 0.5248370522314495) (-1.314850658984679 -4.401727854880621 -0.347540186899061) (-0.2997510017299003 -0.4585749685546214 -1.05889448149587) (1.07075683641159 0.915581033274006 1.754519579895326) (0.8081717595570631 -3.914876949047904 -8.26722421234208) (0.3585568343681724 11.12297698922234 -16.11671091271597) (-1.215187050801482 -5.192387107128164 -2.729509029422915) (-0.04269706396125667 -0.02568556977109632 -0.006328461111149281) (-2.881919643731168 1.736330203414983 -3.465822098407743) (-0.6232411694621625 -7.781638676380579 7.510116400437949) (-0.5408498139556583 -7.85699278914397 -5.752168650600219) (2.61532428520171 -4.069651738576084 0.5477094641840583) (-2.329162219256171 -0.06290370631762499 -5.964566819154619) (0.431153472058174 -9.761873660132073 5.860850744230459) (-2.843868544371578 7.638780156439593 -16.8730645410328) (0.64166337531085 -1.518868883333086 -9.879100967358694) (-0.8981449495621714 0.00600995757663994 -14.53753816949129) (1.020758462429548 -0.946879553763481 0.3620649507550735) (-0.04776789767872933 0.1158560885651387 2.575453363826103) (3.382520657539619 -1.678532078394306 -10.12585849143243) (-0.4595029158538225 0.2548909374439929 -0.04375759254231908) (-0.436204137425357 0.262115447974812 0.6647495215606807) (-0.02555227545773374 0.0004726944888400302 -8.20728386685877) (4.258977390687736 8.613972323963768 0.6638148542113296) (0.09289105621610652 -0.01048024777558616 -0.01870347652695261) (0.07115360852758994 0.01761957470361398 0.02086555019857882) (-0.01992947890689987 0.02215414713190081 -0.03377302813320757) (0.07609441648804185 -0.07572958856189546 -0.006779431894401839) (1.627693855240385 -0.1239985236266474 -15.18274659568884) (-0.6006457015639093 -0.3337655808179325 0.1829027145173354) (-1.64053158158232 3.015932068032911 -5.590075455485457) (4.138192086822249 -4.288993129872022 0.375367341743594) (-1.348584093656288 4.060811299344586 -3.387128004104952) (0.1173384806491636 0.02225075379218291 -0.01702516708984772) (0.4432777792553555 1.388810243847009 -0.769765898573705) (-0.08114078527177737 -8.655968866903757 0.8811926295935327) (-0.1344921883585548 0.09246581465237599 0.117858760795113) (0.1628455112201477 -6.330694471907161 0.5245236254602785) (-1.222709710146009 -0.001805945147670074 -0.7543598835428308) (-1.940548850627139 0.3591341249736132 -1.08490637634636) (-0.9046747306448896 -0.9519938008770867 0.5319295237827261) (0.4259282854669916 0.06426292717338924 0.06528943620093486) (0.02895987682481006 0.008402755925450797 -0.008864949174698896) (-0.07625008324291395 -0.01902051883653406 0.03375375175100791) (0.01606913295665918 0.005568569939815533 0.0288105610751717) (-1.048376086221608 0.5094941746709596 0.2975881328621109) (0.08279332383440091 0.09312880136892682 -1.660019903562199) (-0.4148779031589985 0.209451147092411 0.00820804134107643) (0.2552573527549664 -0.03783348698299349 0.09632762109991973) (0.4855719393292514 0.1998840530228175 -0.08269099483270947) (-2.392724735256255 -1.42811832976989 1.626750004838404) (0.01806138667589584 -0.002857338493250951 0.007872484083181395) (0.8792048182889096 -40.26476818565878 -5.813568463149219) (1.879570985185128 -4.40876133073392 1.317336971687815) (-0.03894331951304891 0.03354679810974738 -0.03965209778984256) (4.133871321844714 1.890585201510235 0.5687959886457786) (-0.05180699245216809 0.02138486015073852 0.009850097192102829) (-0.03148284780794633 0.04378725154898525 0.1493879716250332) (-0.08216665457201312 -0.04926614531869176 0.005354454178474737) (0.2647642276004536 -0.009363670415078601 -0.4032717084754571) (0.2011025719694467 -0.8996609698071918 -1.938859095616377) (0.0569343696409132 -0.07949739579109912 0.07038254528420962) (-0.0600766359519813 0.02391858298483411 0.04967319601964884) (0.1161075855976714 0.2684231300942298 0.1493575907751349) (0.6825746113154667 8.86666924524679 -2.928059249999029) (0.1342430988673311 9.282814923770816 -0.4505674858327786) (-0.07400506465238887 9.203713162138204 -6.597296386267153) (2.072493454320269 -3.532756679632816 0.8731561142914053) (-1.198756702015874 -3.663088041635784 -3.66862053690043) (-0.6669710704318302 0.009857988753024349 -3.114969950520736) (0.4387828545031569 0.1783469653628385 -0.01659508893255958) (4.30398382189836 -5.928546824158129 -28.14774579634564) (8.40147156100408 -2.710835384024465 0.3121499673239025) (2.566391594602213 1.326239079908798 -0.9598727576133701) (-5.382758873517286 -5.065919127512721 -2.917338892477479) (0.3878675182006718 13.96085375790584 1.977017588965782) (0.8821817113095045 1.034234023515152 -2.623645730645718) (0.7696510448610907 0.6163801387195268 0.379456580280262) (0.5537343950961254 -1.691033839447486 -0.9912245836442102) (0.9020846497661223 5.584886678731587 1.9639931318102) (0.01767321130109016 0.02723193218227866 0.03696443832059548) (-0.4031266688338556 -0.6409213768567321 -1.307004893911827) (3.81144879055507 -0.4224177552655231 -0.4506665325189818) (-1.941523461298201 58.41791031576592 5.213424756080748) (-0.0260611132550935 0.6447960198959701 -16.66078215773658) (0.04256981786643849 0.001976100092044915 -0.1757047545486762) (0.03677545420763317 -0.8046067571862876 -37.6908916343522) (2.073238502357305 -4.761482556032581 -5.846141480353602) (2.096925562832616 6.587324670198002 -1.411737972662873) (0.7335451103686402 1.396444621934113 0.6152153216987095) (-3.839101132280588 6.872791084892746 -0.1641211272397234) (-2.780678205885745 0.9946847788369073 -0.1282998396094033) (-0.108788896086873 0.0529106870980791 -0.03618327241046111) (-2.388464773001037 -4.067465407780405 -3.080511238709899) (1.032858989655193 -0.1395662231721434 0.2648673214654994) (4.959385353729897 1.97091128045566 -38.20331036601236) (0.0615236287071828 -0.00403705230244544 0.008625882361389538) (2.724884324076613 1.627074048184943 -5.167425657446429) (0.003807042579254712 0.002454089726261509 0.003869980338962362) (-0.02284997040818775 0.01031025114692074 -0.007196445407728234) (1.099441782882797 -0.7972828392709828 -2.03950499619699) (1.598196956114824 -0.03152394965526595 0.9237618947335977) (3.439859779473279 49.98125253702552 -7.660364189908668) (-0.8946217131490515 5.032088642573925 6.010531876276689) (-0.07057813428978735 0.6742696603816729 -0.6028338152455925) (0.9040702820465463 0.3200977756630072 0.484079885552452) (-0.3783144441491172 37.33873768170442 -2.99861157928746) (-3.336667539677284 -3.437709959359449 -1.800699834430298) (-2.847738402218271 0.2646104378906474 -34.17680057461905) (0.7564348558291317 -7.130529538640095 -2.945929048726079) (0.1682476566069567 7.396484447191472 -4.226070582526012) (-1.546853327253027 8.177194571290007 -4.106449269168856) (-0.1141064450934781 8.996885388592901 -33.53428177577467) (-2.425142421336285 40.75854261968858 -4.824355331712216) (-0.4760093500537267 -0.006173441671852853 -29.03637904308089) (-0.2130253119435407 -0.2889343135659047 -5.820515333968379) (-0.06131535775820634 -0.03663721864020114 0.0564335879068138) (0.1582889389500821 -0.04438033134461584 0.01104516343429646) (0.001345852769235796 -0.09817489108170972 -6.542014165300775) (0.001753479863479019 0.001088935833297584 -0.0005925958576346416) (-0.1217281459545885 -0.1940641315942077 -0.1768351046045112) (-1.780733231906243 9.694384473938131 2.190476970878739) (-0.5489496879714126 -1.124679089033076 -4.78860379895168) (0.0004793528849903764 8.366917380225978e-05 0.00223249744958171) (-0.1545130702648354 -0.04433516932117058 -0.1357023199683567) (0.02423948103172873 -0.09647737990933931 -0.1053219678983646) (-0.1156205232145649 -0.06061733147335486 0.07228941312903032) (-0.1597230250060642 -0.01285643404847669 0.0004974092894048376) (0.01344078653618383 0.3138123503152455 -0.3648624976871512) (0.07881681117117939 -0.04939105034666828 0.01426069425160914) (-0.1454546435880353 0.2691460875695589 -0.3486515762994422) (0.005421325110391666 0.05621530243775421 0.03357265223552108) (-0.08534059440351165 0.0408324884209782 -0.0181689342892379) (0.1080979089654129 0.05936650769366755 -0.02483727532697387) (-0.01375246837675372 0.007549649791412658 -0.009994784452268205) (-0.01101594213694468 0.007099214107153698 0.005782560552505814) (-0.01936794100458885 0.01016865966707412 -0.008233165360419733) (-0.01708423383498636 0.02012459021815436 0.002953730490304479) (-0.007970002989118055 0.03124041917747482 -0.02299157121801546) (0.3787634572776158 -0.7306335779708156 -8.88119803259219) (0.2043561551981548 -0.04444656668679905 0.08193289613379488) (-0.4227334143842408 0.5300889454120533 -0.6081346562282681) (0.3255859647404474 -0.004883095595456327 -0.5457101030668324) (-0.3107212636766632 -0.00812138936120145 -0.1051722814018427) (-0.308758328434659 0.04039692821548094 0.6569750010734297) (0.01282256626284828 0.2885927500697141 -0.4446005001946002) (-2.002603377493106 38.06103636133604 7.087335958744899) (4.053464242754644 30.55641879843385 1.927757259454601) (3.06864653179446 1.335061338511061 -0.8523988090339376) (-1.790303088338444 9.80862674425812 -2.561893538983067) (1.080367582635502 1.294332323510938 -0.8951147891212821) (0.04472930384924534 1.133668447306921 -3.193919167289303) (0.2083746851065039 0.8981557290522432 1.391524329672307) (0.2597658235608351 1.080279253385678 4.078421789841752) (-0.03185203030145939 0.1121582131393315 -0.2392724957296823) (0.01454930720829567 0.04814042517313633 0.1578273041782628) (4.118610300890501 -3.801938452315106 -0.9395401146136471) (-0.03948496881775263 0.01965477585046549 -0.04470473591770952) (-0.1975584312365019 0.2566820451073629 0.0379913890123233) (0.1062459762461591 0.1606865467511051 -0.4700020586967948) (0.1467678882538626 0.642648894780348 -1.333940423815075) (0.1201034243103391 -0.05570394403500279 -0.01791418395056054) (-0.1601607814739588 -0.0571241533484065 -0.02614541305794947) (0.02236329868155115 -0.006022506407557464 -0.1013777976309267) (-0.1279543837525552 -0.01224559654912364 -0.03088174300657031) (-0.1154624012785249 -0.05924563369203273 -0.03053776287763296) (0.09485353042004553 -0.08979012731749904 -0.01346840551392023) (0.08487446316098479 7.758368891059357 1.480164190515941) (-4.14004280264207 8.495632792653964 -1.616965689810888) (2.545282594942018 5.507669021911723 -2.126976314937226) (-0.1066602842735451 -0.05505718419294481 -0.01286570115853418) (0.3338412861800409 0.01267951030266598 -0.2793282305338884) (-0.04985698891330118 0.01164984305343628 0.02624900233527277) (0.4569095937633445 0.003239937623587312 -0.03529352025213103) (0.02467003565731599 -0.001965052551328672 -0.03356834121147818) (-0.2363447172850088 -30.44635480409367 1.040003514210748) (0.2647726378120235 -0.8548459002986853 -0.195921165236916) (2.128704655975776 -2.628188427998686 -0.4885475015211631) (-0.3435970080020876 -0.02004551974394415 -0.007016790600529961) (0.6013630580238143 -39.03383996838721 7.044530323769595) (-0.002554566328833743 -0.003022747461299361 -0.02047899452504241) (-0.01506774678641606 -0.01821077860656615 0.005946924066382728) (-0.14855776679414 -0.0172231875442654 -0.003630335857023114) (-1.32032003159312 0.2512644560942824 -0.01139863933805152) (-2.218042556937119 -0.4155705314862863 -14.72789714533593) (1.037864344630215 -0.3337222708068062 -0.40616796522857) (0.3184522610397194 -1.190507347587148 -1.088021097818309) (0.009702090387995427 0.0003367603053598851 -0.006602463650810549) (-0.8428534047397297 -1.532002930878062 -18.29274403878129) (0.0550338430650286 -0.02411246764241782 -0.005206801824505111) (-0.02599283649635505 0.04779383499081809 -0.3461552560527453) (-0.6108990607406818 0.4046152039703036 -0.6408070041514827) (0.1768269394676751 0.0796966217260259 0.04920606219347257) (-1.033986131802286 2.625891450040766 -1.236352972800299) (0.604771077043462 0.07612439510956337 0.2018395668550901) (-0.007096443468048836 -0.01592160641608795 0.03020826628064499) (-0.03610946058205522 0.08794033329055299 0.02599223275437185) (0.01460421987484001 0.01783609206297389 -0.01733189967288976) (-0.004508226656441083 -0.0001294859998875004 -0.006354591340407258) (0.007151784041766807 -0.1488007163914734 -0.3509612863967986) (-2.664277286397239 4.048642000435748 -2.072494458871146) (-0.9985606672282217 38.45927111834866 4.150228307415027) (-0.3709819830872089 -0.3077425107148383 0.09205155593630115) (-0.3344474399235642 -9.795600380495703 0.8796744969538588) (0.7669449548282037 36.51980694101267 -0.3842313541069466) (-0.6875462068662069 -0.1790928288673378 0.2013428738878635) (-4.779256214639716 -5.8357473157145 -0.5841930808032059) (-2.058109679236055 -7.029340327523783 -6.313473683930747) (1.040258130736285 -2.622080378993079 -5.153442519163459) (-0.693112432242495 0.03748818867630016 -0.2665532840280376) (0.09495714125680474 -0.4048855655237786 -0.6217644977349654) (0.3556826159338246 -0.499019309792558 0.3867018165078713) (0.1471839569131187 0.2225212479537333 -0.1259911595465556) (-0.05549222226794669 0.01178408543205274 -0.05521490069285933) (-0.3668206656034803 0.5454018813245349 -0.1749233360381263) (-0.3700668465293862 1.765810123183217 -3.026582090699757) (-3.712204083837642 -28.23766831796092 4.902952998809184) (-0.6881946423901386 -2.199303404866696 1.027412023042528) (-1.472260439505207 -40.32063070296564 -0.9628722184072733) (0.04642149497317534 -0.09069705885743885 -0.1188764912588842) (-1.968962744523591 -41.82471688776368 5.490111325668132) (-1.885846579931001 -34.63771923729968 -5.331074522756079) (-0.7353488798799251 -37.00383077174266 4.908525656173313) (2.244114994442733 -4.897903702039536 5.826928735072481) (-1.273163911747947 -0.07680071953054526 0.5168688548233202) (-0.9295653530792028 -1.262466294484752 -6.229166575096172) (0.07441812327395309 -0.1214416210552734 -0.2732160367335178) (2.62066076370221 -0.5179606894255979 -2.245062423692849) (1.168544463688948 -4.43137233188399 -1.44468851670952) (0.01274169809604375 0.001763504524254026 -0.04868689764365081) (-0.09980181240782036 0.05672708767227895 0.108954326453187) (-0.255114711543671 0.002046983234339189 -0.3970643717676454) (0.08959166686414176 0.05894851284958345 -0.1324643207836894) (1.154924847462215 1.70084380620636 0.7387255967185001) (-0.1944232327523312 -0.04676253358131313 -0.06382558215189013) (2.200698493517421 10.86658247371053 4.691374492770024) (-1.231582902323591 0.6083720944120562 -2.368082899643971) (-0.1788238532149859 -0.04247123087344722 -0.0352055205704821) (2.183943761384827 8.251364045890012 -4.823931658671016) (-0.4305439975937208 -0.2705122795839822 -0.153554358981684) (1.294814366958985 -0.5760519110079394 -6.507876500939791) (-0.778285873028476 0.1179368892465922 -1.401385384747303) (-1.16314528818146 -1.685159110146613 -1.201891068147821) (-0.1436345132243643 -0.02348866384895205 -0.09461113358343276) (3.50510709931885 -1.853661363632036 -5.458594630094963) (-0.241327829375996 0.03958660149265723 -0.004458470536673878) (3.592040721870907 42.37009146555356 -7.373511544475953) (10.86461162085817 -2.439242805221654 -4.855932621454635) (-0.2593677178973421 -5.778250626694077 1.691258661867358) (-0.05334068373470759 -0.008679677799559639 -5.885783270309211) (1.32695168452904 -7.359442711303911 2.651727227300829) (-5.955772385013498 -7.296475785398737 -5.367139174204023) (1.07330370863871 -13.45025053687202 9.100467816304572) (0.02456039170100486 -0.01830860203473291 -0.04208018494996256) (-0.01208124834171195 -0.005357896075696595 -0.003125208832092594) (-1.562873017300291 -12.22330724974578 -3.812901975719128) (-0.6991554171238021 -1.855048327069065 -0.2903292068083049) (-0.4381182642498065 10.33459987138734 1.812927828571566) (-3.348684500337623 4.318241248939701 -41.88801378668869) (-0.7422325519136019 4.42163236279027 -20.01431744553658) (-4.319032881504013 3.787150284037405 -0.7903766790354751) (-0.7548010521411929 0.4367552363668677 -2.714836212909643) (0.627518893959698 0.4900505580470147 -1.6213660955775) (-0.3871258838116259 -5.081995022645381 2.349913610920854) (-0.2248361008001173 -3.708973675810926 -0.3645953913722612) (-2.719590418665573 -6.126694351228705 -31.79349209326407) (2.482004192937072 0.4203295863640317 1.071329340795712) (0.09651344376875318 0.03962108864114557 -0.0892201665832956) (0.117631112594759 0.3201065039936821 -0.4515140156812912) (-1.763793179202117 -0.06286654323375185 3.642355101405188) (-3.209655695867527 2.732663714532912 -4.810334068841368) (3.268346582483982 31.9202127103254 -0.45629893143656) (7.191130879802762 3.120682397961347 -0.2537281881547089) (0.07567991481547309 0.01209793838444236 -0.08893285229193035) (0.1172123465720059 0.251399403521451 -0.03680422902744401) (-2.589315866393653 4.779137056821911 -0.4968442672142019) (0.07651284358244029 0.03264923418965702 -0.05828017139062346) (-0.1752271566407668 0.09352492250846675 0.0499515838781452) (-0.06006435017787738 0.04966332597603981 -0.01319539410169269) (0.05026703291021541 0.06716614640697113 0.02216302816739918) (1.448582389004336 4.821076213031765 6.09355347571248) (0.2233071090837927 -0.01251700626357836 -0.09594993441366598) (-0.1760098539774064 0.2686731314064437 0.1649200331651781) (0.5087319237492387 0.6079201276544314 0.2528670823621051) (0.4145795510389602 0.2864884946918966 -0.09755129125204931) (0.5983585715374184 5.400665886659794 -2.774385634028036) (-0.000724077556471997 -0.001097504879888766 -0.003643786805256581) (-0.01777388005749887 -0.00985986389307 -0.07251629282831076) (0.06714126003236363 -0.01664145879061105 -5.323288896573895) (-0.2031022259946587 -0.009774851729711709 -0.01987134146796998) (0.1142668614728672 0.04378865957367355 -0.0211941311493531) (-0.02499232346057013 0.02471817181727216 0.07545591979355032) (0.0546351580478727 -0.0298323803770186 -0.01492435585506813) (-0.005393527348494565 -0.0006999697520136398 -0.01113533710953653) (0.005369120910023863 -0.000993843996585737 -0.02137966509922575) (0.1139858054147341 0.004185238102213457 0.03711971390660206) (0.08228300957881474 0.07447766660952702 -0.08817330749297077) (0.06107207662959775 -0.007569746390116486 -0.0332731544574429) (-0.005458590613964283 0.0005447744084096371 -0.005766355663511092) (-0.04521729018515928 -0.02196275210405842 -0.01722209479629275) (-0.001258106841844251 -3.003517284772147e-05 0.0001903499362327305) (-0.006286843032022239 -0.005189889000718057 -0.01175518190057684) (-1.620749644313763 -1.304410489036208 -31.04842826078915) (-0.1185673018020282 -0.04231700848478938 0.2781894810184425) (-0.4848271582237081 -0.2200276628682243 0.2799394184215738) (0.2708130601863072 -7.089880677597071 0.5411930341230637) (-2.307791943803076 -1.494170799269498 0.4957684164869858) (0.6579443406778323 -4.479841929890547 4.506768481539363) (-0.1039085204819472 -1.604516332490061 -29.40565393973493) (0.5355076097938305 6.063940697674572 -0.4809812146173399) (-0.08088380212755097 0.05381553024198806 -0.405951370280103) (0.504454260929811 -3.847128785266352 -2.270117508919167) (-0.3087628458427388 -0.17007840122255 -0.0742276604406954) (0.1114544200772269 -0.115088962354834 -0.1141231223747727) (-0.1348646310485483 0.05597440647330393 0.1318950706873416) (-2.022031268954411 -6.306281360834459 -0.071472942437663) (-0.1633132188066145 -1.546555272073843 -0.1172773810827622) (0.03758054929185728 -4.289721702107586 -3.046358325967606) (-1.177875526124478 3.51139684311534 -0.02598947517540806) (0.01690955001760064 3.82547907647743 -3.635931343757913) (0.7737783385265538 -2.843275038764252 -0.6456430219357108) (0.5851913411236396 -1.842991934290597 1.111122119950204) (0.07369419467669386 -5.226184967821904 -3.907716722505645) (-3.095887893359619 -9.740932948317445 -6.423032354941674) (-3.249826665624783 -2.864560924885652 -5.084284309286947) (-1.986279153846638 0.8134784269845103 -5.827840656510579) (-0.07110509845703414 -0.1277342855652002 0.007277674037801551) (0.07580659980222344 -0.1609180752674453 0.1191736500662374) (2.121418815873298 -10.76754045600596 -3.335334234495134) (0.8391889305998745 -0.1297270206863368 0.4149915313861674) (0.002612333579441649 -0.01635213868295612 0.008684204272729786) (-2.396494737479739 -0.2423592120967917 -1.601105256234371) (7.149121668207504 0.481733559467454 -1.526098763179401) (0.04543313361636891 0.2562712432945361 -0.4093149809264188) (0.231321829589564 9.158676311806433 -4.37546066313481) (-0.09668691008382387 -0.00892110732524732 0.03053031178934444) (-2.018225469008521 -1.250747567109253 -1.383897049080728) (-0.08850230502228477 0.02490434810257918 0.008085516786628218) (-2.418766910155592 4.375518176955164 -3.010680699012434) (-0.002934138552202617 0.005826866329270613 -0.01035427914612296) (-0.1241966801080516 -0.04456476459792723 0.05347360588597861) (0.02072672638076527 -0.01089517020225243 0.002762598206153221) (2.124881615503041 -69.22614359277188 -7.587305734603619) (-0.05057357466606768 -0.05313243429363784 -0.268540334369884) (-0.03145054468429388 0.03936965862348617 0.02842457859104612) (-0.01795360530014575 0.002590023965339479 0.05783641646933604) (-7.590278518627617 -54.94404602511098 -5.003423626045922) (0.4170590406631933 -0.2254612469050286 -0.416210913739195) (-0.3336772407921367 -0.8342734261937633 -0.1690477367507978) (-0.5361553657738177 0.01500402819464916 -0.3224126812948036) (-0.4412402630572767 0.1774830765586391 0.145613396248397) (0.3760315704754695 -2.225481774208409 1.243429041872873) (-1.452791342890604 -0.7608839541220042 -0.7474934265050471) (-1.509291474072045 -0.5439180033488248 -1.345627245206477) (0.6560880745933779 0.8984142145592529 -0.0218237149913372) (0.3378260699618955 -0.02680242862096938 -0.2837125170615352) (0.05340867188837549 -0.0395943563083618 -0.04785028422597165) (-0.1263971925352908 -0.7921503747710992 -1.137681298747848) (-1.348409436975669 0.8108745309299203 -41.87763596668017) (3.091936543928396 -2.942703928221995 -5.555331219787107) (-5.705408915806368 -4.745546470485818 0.2246749666050334) (3.028793735479892 2.560949877783585 3.837852695293453) (-0.01710633941358866 -0.009851781424497861 -0.007872952757444719) (-0.03419096019740875 0.008619066407062176 -0.002130034383913668) (1.110773828143777 -1.157701562521989 -0.9102442868896172) (0.03852240961596327 -0.007158748691376582 -0.007593757800763885) (-0.05768016593502762 -0.1150519328495475 0.0567247275071838) (0.02010797835335689 -0.005637708974305147 -0.01262064985539985) (0.03332419710642336 -0.0004392054951423835 -0.01125763484923415) (-0.04038030940560246 0.001522655669115438 0.06546241281007117) (0.4446818919974041 -0.1826900262619799 -0.4373954889981247) (3.502322543695889 0.3560620426001657 0.746638727225274) (0.08662424756975722 -0.8177109258636894 -13.30446228737494) (0.2210455636282223 -0.2212460156079746 -0.05071044572770549) (0.05232575471982093 -0.8951568381170072 0.9928580661757668) (-0.1260478475700161 0.0147131081019555 -0.008437689130690318) (0.9773656775933115 -0.1151271764840794 2.175556809999739) (-0.8113911534033516 1.221318049874824 -1.248808417088116) (1.741847785080231 0.1498702511337648 1.753995509105785) (0.4425774378947727 4.467293573904202 1.120126808924363) (3.276746767041223 4.846148382391752 1.031765797747968) (0.2871428650700724 2.314909704770657 -1.318304450446574) (1.475775819058933 5.797521974889524 -0.4131227387936112) (-1.142976991003621 6.11575560987882 -2.538031065399199) (2.884414119479222 7.537470617322718 3.823565994638435) (-3.146207972506063 0.419805047185137 -3.832154710094652) (-2.209015519841151 9.970103746849571 -2.626575678966643) (2.048716469056413 7.145081193154956 0.3841917513121796) (-0.371429789875578 4.583047316636264 -1.554935581796742) (1.520946006786675 -0.5786938193444798 -2.3473311520003) (1.449667939402642 35.26083432129792 -3.627075527555554) (-0.6660030172463253 -0.5356338065858929 -0.5107603210775125) (0.03699243273323375 0.06934341262774299 -0.02422243797835639) (0.07541931632587714 -0.06873005249222876 -0.04074647576949086) (0.009254057955934841 -0.06240405352359507 0.2707460974050616) (-0.04939291510230093 0.1435561069034554 0.01483504562539373) (0.07530233779971951 0.04666474364805581 -0.00984319082526347) (-0.2660901339284507 -4.661974163756865 -0.3319923096484485) (-0.02815218901123823 -0.1122358580966688 -0.2860200333768903) (3.106212524179462 0.02560838602800434 -1.983019909544326) (0.3586438614927655 42.21161813708442 11.19115900711682) (1.164236849917269 6.493216980656688 3.466706469970091) (4.045817167689319 4.592242126454867 0.02059174414059717) (4.893272075214662 6.049320089696138 0.855125816465039) (-1.564636564099031 4.069207278099697 -3.820758147538124) (-1.741810323495092 -0.9692459044103415 1.636333951542597) (0.070696806458192 -2.311302642889356 -3.103115080180248) (-2.81189756120808 0.9447518481148722 -5.805757720672683) (-2.153828957601189 -8.397181341766798 -7.400793030349165) (3.631786955312889 2.362480725519148 -5.337391349931249) (0.04538143388077019 -0.3470326522873386 0.756852327174057) (0.3276778819384257 0.9684515988033232 -0.8017664346384655) (0.4949181742825928 -0.6608967425116725 -0.2734393849507706) (-0.01499602089271348 0.02023724491366249 -0.01696723040118896) (0.0440169760270206 0.02691127272882701 0.05972598806232634) (-0.06788436173411429 0.0103899939742121 0.01018949123553155) (0.01915961092539134 0.02263075635558597 -0.001505095123377001) (-1.006441632130469 -2.202546891887013 0.7713876066587063) (0.101968756232385 0.2717566967301909 -0.003727717852209206) (0.04514317435834432 0.01256845482124223 -0.00845486992943339) (-0.2019981676877646 0.1393112213366743 0.4119641100404573) (-0.01172836105289081 -0.03179903590668853 0.01649091063601705) (0.2243276229694713 -0.05623471097303129 -1.153701817953024) (-0.1307141000532932 0.02508499503248379 -0.0286799116046274) (0.006386573296092633 0.01537162202900673 0.0003781200563471587) (0.3122243524813264 0.03784146598236804 0.005526829671198885) (-0.5994103824296587 0.2481816768704413 -0.7422109610516447) (-0.712826158916532 -0.01274955699241723 -0.293387200905553) (-1.083777628609592 -0.08710102027676564 -6.113240553219095) (-0.7244658369001926 0.1186965830774497 -0.1681095042811444) (0.01395740184356629 -0.01466478899017365 -0.08371221233489719) (5.464662300153089 -0.8021441851960426 -2.361682399651143) (0.5166597916864102 -0.5960481333661185 -0.176917876495196) (0.1317742842324832 -1.33517983854892 -1.51267693424803) (-2.837936878240217 -0.02340852578320995 -32.05355203076712) (-0.3424179930420791 -10.67223252110132 4.566038169617729) (1.276719848410111 -6.401030333377774 -11.31619766689211) (0.2378713540653764 0.09580864926425167 -0.05040287834301291) (-1.568995476534287 6.350662160582838 -32.56392278264726) (-0.1202868666590142 -0.2272123588234499 -0.3167522556257091) (-0.7362284376564593 -8.173333645750725 -1.524029470481364) (-0.2673299267362984 -10.34699310988377 7.649405972107623) (0.4840285404329306 -1.018262588939457 -1.336655195820512) (-1.053689980709649 -10.44273434677002 0.03107725185255572) (-1.670347889059187 -3.924798888136165 -0.2192377218753483) (-1.414029695308777 -6.55361151737699 1.067647318962085) (-1.935157404704454 -5.053274598535674 -1.157501911636846) (1.4939265165227 9.334762024726235 -2.890874652035776) (-7.67112414119292 -2.317849258523065 -8.507241082090298) (-0.5245223407746111 -1.362064668087313 -0.9094204019077614) (-0.3317416028451394 10.56009408592903 -1.355730909764287) (1.699242274916795 -0.432044304719307 1.800409222169707) (-4.979929420538293 5.719791809153072 2.845730431148915) (0.1366006239517149 3.418830187096829 -1.559456858912733) (2.428845411682553 -0.2188843623873422 4.440933964263413) (-0.03557447085544506 9.382568471306811 -0.008125438814522823) (-4.221921360995712 2.38854654610972 5.563016408152325) (0.03717284528570364 1.863877103963122 -4.872827689675308) (-0.4428166936005483 -0.4476368895398971 0.05689674535518681) (0.190524437185002 0.2392172059759093 0.08064121894407902) (-0.03400654932186184 -3.783574805829211 0.1464466157207782) (-0.5466568401849106 0.550001781413039 -4.799027333988196) (-0.08842242157815081 -0.005298218663596661 -0.03673002602187004) (-0.748006288768774 2.658680575710157 -0.8562440946138967) (0.06089882390731685 -2.548478564347037 -3.202786713871232) (-0.1229747822680169 -2.110030816398015 1.611518999773009) (-0.08327155977754233 -0.2967759076281518 0.2606756462394146) (-1.500149711956885 -5.602104415592263 -1.243973699079524) (0.08662424258056134 0.0768428382179854 -0.1283252479145494) (0.3137553723670257 6.048321203976726 -4.540371919041261) (0.3305753339375831 -0.01057016918625468 0.1452894192342613) (0.5100497446824149 -0.1213391760369493 -0.0715264314271222) (-6.340048658578277 5.346032840280943 1.299922409834187) (0.1179657722056585 0.7661496019258088 0.06109765294577024) (0.3399551054217612 0.05837358162414043 -0.2819919782752364) (-0.08115566716800859 -0.6345032393416461 -0.07059012310719111) (2.402671855332994 4.421054145802069 3.091597069033345) (0.08466354841259406 0.09920083744487021 -0.03906675157311231) (-1.172812186265762 1.406162837590492 0.5312153243577455) (-0.5865536869633582 2.311722935513489 0.7109626497142615) (0.5212908518379393 1.661259521879792 -0.768515419825056) (0.01695367342865532 -0.002512962470069706 -0.01898624142875532) (-0.3210145041226631 -1.046166495501771 -2.620167628262243) (-0.04756575675494461 0.07321085884924389 0.03498347614051933) (-2.820620056513366 3.239945082759339 3.64024019320433) (-0.4630133368858372 0.008835280041672361 -0.03186346170080563) (0.6135814387212037 1.115566836447143 -2.168347924983028) (0.681060959458603 0.2261914115711465 -0.2536258549762441) (-0.1338565567010297 -0.1550307644273308 0.2109903209118685) (0.06836000232898373 -0.05155577437388978 -0.007955915140025784) (0.07860876476184608 -0.07928006339487731 -8.842551000403923) (-1.031804746737113 -1.128450904968033 -1.55997818261995) (0.04205487611417891 0.4139725516211287 -1.697531601167674) (1.487579341451256 9.071844714773594 4.869984298915625) (2.731556879441013 -0.8889276278013756 -3.00945591720248) (-0.2761961083475449 -0.1541656446851004 -0.5398008395955367) (-0.1924038607155683 -12.44967328897316 5.449213953857418) (-0.5892534724485773 0.3101529498972042 0.05518953259380675) (0.2763717828148852 -5.953077347969177 -3.267892697369111) (0.04270283812165838 -0.006960510152354224 0.008708673949813475) (0.09014521432488018 -0.0104222860130553 -0.04022894316184828) (0.03571061980092811 0.0969854845830847 -0.07177467173429318) (0.08641469605260063 -0.03018194721160407 -0.03071846298322769) (0.0194504478558235 0.01146825304083984 0.006300520878332241) (-1.136701195681042 12.78505350978207 -2.048178937114985) (-0.4859655918509302 87.94210695649248 -4.098869392022047) (0.06940593167366761 0.04510160040434965 0.01345959561402641) (2.366337669273042 4.665282852787363 -1.491610089324373) (6.103990734858358 7.600811721359947 -4.141564747782208) (6.458659466060513 25.96858021124151 12.75816838333508) (0.1900500047964426 0.2830583780437131 -0.6373806416949264) (-0.04641482124852891 -0.004690246369064318 -0.004697014503358105) (-0.1093259563274815 3.112350653613261 1.180823276712276) (-0.2858723107813121 -0.237013663900136 0.2179180586401555) (-0.02479942455333878 0.01037556551773711 -0.02134587610261337) (-7.142310513625994 -1.331611450492391 1.68902198379723) (2.300633465817669 0.0009364245412190504 -1.587215613439416) (0.2823376888827704 0.4592438018087953 0.4027983958882012) (0.02138426634314269 2.056661623124459 -1.240350173322364) (0.6387821422856003 -0.5592495685492387 -0.5509235612704454) (-0.2083496648141864 -0.05448599853225915 -0.1069160552749633) (1.731200870404508 3.37045308411207 -1.133050347755135) (0.9665176800255919 4.647843546554822 0.8829608219833155) (0.1968340960695339 0.1968097594221266 0.3053196564627663) (-0.0365840524437581 -0.1075920300029907 -0.03152944238384677) (0.006451667887839799 -0.003345076526947051 -0.1097303594813361) (-0.006758989251371132 0.06236746476782404 0.07853590041307326) (-0.07032074433962701 0.05193872280933783 -0.1340617550519048) (0.4335400738948028 1.555228691406661 -1.126803206690438) (0.300076299861775 0.7609699719715343 0.1160118014847755) (-6.480004922446424 -6.415229541638071 0.4388006961343358) (0.1074636561553989 -0.07110530533742904 -0.03436204018079607) (-0.5827398127009562 0.014488431960013 0.3622144301305035) (0.07354775640515325 0.05172493119139392 -0.006576486661827377) (-1.462972570098196 -4.093390038309618 -7.285050748763891) (-0.4124274472427083 -0.5186368213138186 0.541879201327595) (-0.5792106341135702 -0.03687678822852532 0.04839402334345903) (0.02496710519274365 -0.03633648319528666 -0.1161970512036002) (-0.01615968687307297 0.05066955248628432 0.01824975004261945) (-0.2604033947838228 -0.4193714586928984 0.07856133534973925) (0.1179665373850375 -0.2317599419910036 0.0267071120913707) (-0.1090315649125444 -0.3326381769528215 0.1296127941753628) (-0.1572184586883944 -0.2020434107014038 0.2063545284069073) (0.004621872046863842 -0.00313982895637921 -0.006633255560964064) (2.891223222157257 -0.6113288218711518 -0.7379329523731786) (0.2300242495859868 -0.5583370591725784 -0.1795828038014253) (0.6096707779976095 0.2499022222890745 -0.0121898678187307) (0.0909626489658306 0.07322033825499727 0.1107122805043262) (-0.3270629545228823 0.002604904798172769 -0.10278997836277) (0.126767794761273 0.02983729811954157 0.01203533435145145) (0.0002563642740148666 -0.002261201543693585 -0.07072011531189262) (0.005175708242622467 -0.1057523388412285 -4.015748100067325) (-0.005516743997662174 -0.02569125453826106 -0.01623519605973124) (0.004981831658681662 0.02240141588201465 -0.01831043903762256) (-0.008327926586077703 0.003559037087354311 -0.007609475827008783) (0.001639710620771337 0.003908548716008946 -0.01364531314318784) (1.202065733378148 -0.806539924393244 0.3751869121180218) (-0.0923267238807594 -0.04355681810532759 0.1792962574618456) (0.2804574547638148 -0.1213876116913867 0.04223913495933623) (-0.05440197260173351 -0.02343114259260034 -0.06511593783095641) (0.236155003823115 0.1178573163774583 1.324345201274796) (-0.004047486518276756 0.002055741248256955 -0.008338030057664394) (0.01398395505114498 0.001298759084044615 0.01521589025000296) (0.002908841058181219 0.007710495626142825 0.004173833912264642) (-0.09213513031415071 0.5581827313598642 0.0376753480529938) (0.5808134821304141 -0.1212998972863505 -1.463627360135902) (-0.2194921097961239 -0.1037367404733263 0.09024131482214631) (-1.568542406221536 -0.7171573518443272 -0.2545874654729296) (3.858051605723018 1.50066221504466 -1.297046648706702) (0.9631046910903454 -0.1524520223120348 -2.57312979819478) (0.004042295470364617 -0.01863125459604987 -0.003722107233997381) (-0.03727258505708623 -0.01099068731469395 -0.008623210603990152) (-0.005815610300911683 0.1922476781006097 -0.4075330353990483) (-0.04755377206794224 -0.02570481220502054 -0.03577988262159971) (0.04857743231130141 0.003566162240764878 -0.03077277208493348) (-0.002189490121952054 -0.01112854378308478 0.02275152098533898) (0.02981008564360275 0.01152706794529438 -0.006114962847714652) (1.295160642721168 0.3135369335676177 -1.054582558003194) (-0.02021017220852182 0.01292580190925942 -0.00503013427890424) (0.133829904212511 0.04058781820604664 -0.6248794067462919) (-0.02880510187744612 0.01730996930145694 -0.03795150651644637) (-0.6877706031204951 -0.334646704079232 0.3264104918328721) (-0.6971037426770694 1.524501177586723 -0.5881925297275151) (-0.5236390608372263 0.4854573476987804 -0.4059512042445706) (-0.02143962286629731 -0.03474308698248319 -0.009252046526436243) (1.46761622757356 1.128909028816564 -0.07678534111719011) (0.5904934070426884 0.6040636796166092 0.7801899271125954) (-2.030502143212397 0.4232771706503099 0.3411193894631871) (0.2753188444758894 1.381598733708993 -0.1568120101697269) (-0.2089037671103996 0.3687738337191864 -3.496789429029923) (-0.003843671976318779 0.008356143510944771 0.004461951572093961) (-0.007874220745330267 0.007197781528018849 -0.003687794241653893) (3.413053827690702 10.06356393370838 -5.391238940664413) (0.03168862690690225 0.02326825192726981 0.05224391964004519) (-1.483124806771897 -0.5628629485402534 1.259580234477555) (-0.01294960230261227 0.01006724194108048 -0.04919181076374429) (-0.004983791182700702 -0.01223981659499267 0.005769321141427024) (-4.83811675794812 -42.31240899090424 -6.280321326144109) (0.2223886857018349 -0.112547772195055 0.0414066590174597) (0.1784670777030222 0.7227432133532234 -1.54375273198209) (0.5833424270358196 5.225964044141252 -1.916840346606588) (1.464635107502423 0.7089595012988238 0.4945375073165802) (0.2655829771861741 0.9815121458557048 0.6954434003411837) (-2.59571450090371 55.02841127242408 0.410110263246711) (0.03437934343027355 0.01756808127995245 0.03136760804702882) (-1.604350805862045 -0.2002000779445337 -14.24813385186287) (-0.2914547651974139 0.2451622005419694 -0.1965066689534794) (-1.164003140934618 6.239812662607573 1.069193093819151) (0.07023716365579222 -0.00561786362480849 -0.01854710811765685) (-0.1913498785867228 -0.03302182021315502 0.09735036460160967) (-0.00513078223057754 -0.01403866823294346 -0.0008522981932528994) (-1.163777051828251 1.627940433881526 -4.984136911550265) (-0.001143511202668298 -0.0007591777932954382 0.00301196969725516) (-1.063752288414154 4.084409056294549 2.743534447786364) (-0.7095423159031105 6.753470121662034 2.439737837663035) (-0.9176394074264054 -0.4848347112727954 0.3367960703928579) (1.591932826931373 4.542088196626992 -3.830457706631249) (-1.227089144538007 -0.6870220629851289 1.165090986080775) (-0.6406300386338993 -0.6161645947238773 -0.3071019687113049) (-2.821162195470742 3.528553420183323 2.559586831684768) (-1.063486958757671 -1.021570716031391 0.7347434369913207) (-0.9013832761254148 -2.354232815056017 -1.299073986755226) (0.6518328563931237 -4.378733123465551 -2.413630126147853) (-1.088373479609425 -1.548325234869317 -2.222232266327437) (0.07860499966092634 0.03180488660155345 0.2452617256984438) (-0.1055784419615939 -0.04429869351202149 -0.03184428965933368) (-0.01782177103684991 0.0002130987362854173 -0.008275644379219307) (-1.37097341696435 -8.309492968837329 1.375629972470425) (-1.290687627818624 -30.44753437409742 2.97381157932591) (0.3274017652278862 -0.3095881389297973 -1.473893038064505) (-0.2482186465547079 -0.3536905031574107 -0.6495354149177119) (-0.8990081425860355 2.020834072607203 0.2895200411340851) (3.466964190540081 1.535067093386851 1.171319973718279) (1.819322730215943 2.512783993949712 1.071387749896122) (1.294534216850006 2.131637345100158 0.9010877384087429) (-1.053543644133224 1.858709380840666 -0.2933726593602753) (3.593484491398527 -7.130134961973623 -0.2284768580301015) (-0.9472886618763615 0.3189068467462237 -0.08528093095358397) (-0.8066338070252366 -1.698220037109174 -0.1246976872376649) (-0.04739111518802888 0.1509481264195215 0.3066989159778929) (0.6535196779342833 0.1843727960421478 -0.02639358978788484) (1.610323672986326 1.131188536790457 0.1740735564626008) (-3.082221786375585 -2.43410669771504 -4.445285286737626) (0.263045301571437 0.01267246262993732 -1.512714424994621) (-0.2245467475202349 0.1081294699164392 0.2395036015787149) (0.8904358821353134 0.06152667108056209 -0.03747096061415386) (0.001915893557061676 0.9087627846283561 -0.2683998739104766) (1.73176075333067 -0.3734880157718612 0.515628964675012) (0.06010181970821599 -0.01570462691760925 -0.0006702870797045089) (1.269495527131499 -4.372871558423468 -4.18890982509128) (1.909042041642786 -0.3697758410231717 -10.47975742175637) (6.124969182790192 4.114915159349245 -33.24313431254717) (-0.00786102466261039 0.02197297833383481 -0.006030786196235803) (3.071282116296488 0.168653176365976 -4.995672838294724) (1.10049468222862 -0.3089771212332225 -4.259357493491603) (-6.123712617749092 -4.631469977821576 -4.521723686753911) (1.02063491310184 1.267459640951659 -9.102113058282267) (-0.08740230098722412 0.131743018121032 -3.020923452742677) (-0.846879818141685 -4.441532130582067 -8.964719367878827) (1.870369534560796 0.5035245369804042 -11.5275073722234) (-0.8691895317173972 -3.395062152903401 -0.05962697496790392) (0.5582587102726309 7.336849157458243 3.044746978881224) (0.3674728752960633 0.09103198182277616 -0.05362476896147436) (0.002663328740838505 -0.01648944675206114 -0.01019662788700839) (-0.2886097690841336 -0.1387829366291185 -0.2265167839852222) (-1.031593906499921 -0.1228449780800204 -0.1351520641814916) (-2.853426323111136 4.194499307947637 -8.821135719459638) (-1.952843106551686 -6.459905037369586 -2.102022480484386) (4.240300252662573 -0.287317952260012 -9.596840718393635) (-0.009765607291404931 -0.07392995328902777 -0.05087174537229965) (0.6240886793950949 -0.5850361636539816 -0.5699638475031024) (-2.742852647101372 -0.02542618854757591 0.9647348025948079) (0.1425942571859561 -0.2217317237944912 -0.04378208452474008) (0.120674479063303 0.03336189319476316 -0.2293932339265845) (-3.888176741091102 -30.64425838553834 0.7116278386511548) (0.1318392269472599 -0.06837203887696612 -0.04259422503388512) (-1.408986631712515 -0.6948322814224887 -0.5520915365897681) (-3.180551248578419 -4.452581601077743 -6.359082356043216) (3.26101491063197 -1.445053410752764 -8.477789776806583) (4.400925186863017 1.460599181258837 -32.86701131770319) (-0.001933778373503183 0.003893183723275089 -0.001623906435368874) (-0.06966581917614614 0.01042449390732899 0.02184003613180286) (1.950814587487734 1.582091557420564 -0.6750049424558402) (-0.4649791197360951 0.9166248429973359 -7.970226441231756) (-0.07015386842050421 -0.1625466617149059 -6.069253019242678) (0.7204259927068557 -2.505400311212588 -0.09848493834483107) (-0.0852409196535733 -0.05890443089400652 -0.05055788863762186) (-0.05857975199912231 -0.1622782391348997 -0.2079286046070216) (1.509297180100333 -6.196598614717059 -1.039738431307798) (-2.345351205031756 -0.8860357809081387 -7.614178207654456) (0.008118398508637985 0.00781260825008509 0.008284652616528842) (-0.04101797543190034 -0.02110746100252874 -0.00392613387336695) (-0.04167635851862284 -0.3950681162192161 -1.241017842591585) (5.35844756667241 -3.629554118238691 -20.49803729240715) (-0.5815079581804378 0.257401536575578 -0.500203417574933) (-0.09074102806541447 0.04111662853445368 -0.02020019754939816) (0.3505906426456131 -1.590569036403064 -0.6472572460536723) (-0.004274914076690301 0.001256875639710097 -0.001884073992470283) (0.1685662165671137 0.3704109589592167 -21.62952737292134) (-0.04888206401467216 0.05908678019703384 -4.942797268511141) (0.06539956364169307 -0.02938583847557811 -4.875952222711772) (-0.1442679761740683 0.152662026248404 -7.146569898399578) (-1.840723171598707 -3.826327153696626 -3.282379765659759) (-2.714835327486484 -0.9064908302937424 -8.268576933346745) (0.9186557950036808 0.4659898531216221 -7.312133520992841) (0.01748913208596505 0.02576852207178714 -0.01539002574296867) (-0.5628095292521729 0.06122464430375929 -0.6293737431416223) (-1.408575900177353 -0.08584025798870409 -11.00127908185531) (0.7252484002109292 1.921114428669454 -21.81460521227816) (1.566117044395141 -0.3628479547911529 0.7861006675100308) (-2.495297641282132 -0.01399954743443632 0.3107501715937502) (-0.2774724829949094 -0.8177282409344843 -13.39659222167059) (1.102767578742866 -1.500646591876244 0.1052690593229765) (1.056000675779284 -0.2532016110244399 -1.734836911444822) (0.1178784921074088 0.02934801740988621 -0.0171991938407061) (0.2174278028133519 -1.415754701692363 -3.596446720449018) (1.40407298859713 -0.1665683201202534 -0.9805537534784969) (-0.6341705993314818 0.02080148782188351 -0.2261627022247149) (-0.1723211552507895 0.01571250388465086 -0.08088257561477565) (0.2414975827337848 0.06117230281705102 -7.143876984024685) (-0.137603117703528 0.04165893795691612 -0.04149962552873164) (-0.03100331506623132 0.03638924867257542 0.5761248562595886) (-0.1154781983632101 -0.03672472839760844 0.004199094004171688) (-0.6730565984979366 -1.031073711705016 -25.13289252093794) (-1.730413950194553 -1.790797592134561 -29.80209042417003) (-0.07260411978211545 0.3112825432211863 -21.76401796767446) (1.881754728664748 -1.549745366422364 0.2934848269616834) (-0.03533702845195585 1.33959056269019 -24.71756505795162) (-0.8950283071291238 -0.1806767618655473 0.2682044312136589) (0.6954959198511409 0.08173743063292722 -0.384175279796075) (-4.684300500193914 1.960180583629653 3.547431448269068) (-1.436617281433165 -1.712132800070005 0.6746579840686079) (-0.7652403975426998 1.687928858671343 -3.325068284038305) (-0.6492736268643441 2.327076351768926 -21.64627160528687) (-0.3406401576872041 -1.725833226320286 -20.72211730130596) (0.3464859558549714 -0.1518780692373344 0.1208277597038137) (-0.08973176987356665 0.1209892681552111 -6.01743816321417) (-0.01121421545353851 -0.1938384008992402 -6.512822635936539) (-0.4662792415576416 -1.125454377301587 0.5612805263720457) (-0.06221361719897571 0.02256625571332446 -7.898953806797913) (0.03463421248813408 0.1370939847479323 -7.901068173764303) (-0.008775056685495202 -0.001865521633495112 -7.892529241406971) (0.2782197607333463 -0.3107407573625065 -20.95521184088363) (0.1845024244664164 0.4554283013733434 0.5469237599354329) (0.6121560006702377 0.317634015508324 -0.8902795836892988) (0.64360868804587 -0.1435941647975815 0.2101545133516064) (0.5467514629404304 -0.7170616429801216 1.455265208954248) (-0.1128229314372918 -0.01371228423698759 -0.006431252641457004) (0.005784312491638523 -0.005135463671824315 -5.965526607686587e-05) (-0.03239008829812566 0.04083120273967192 -0.01478271540556204) (-0.04254969114400764 -0.02367553283721722 0.005082955164679433) (0.5703601212798044 -0.5587097932784448 -0.6623718273652746) (-3.619622446868632 0.4121986984983362 -1.870629548877769) (-5.498335238913032 -6.165715285882687 -57.89579163073954) (0.07622416963162963 0.04956703713423912 -0.1174196076411288) (-0.04314609549055096 0.03135692527729794 -6.844946473914614) (-0.01569444532154898 0.01704138940022838 0.005468329687310432) (-1.960223673997955 1.158674094072019 -30.12132954031503) (0.3759361458757281 -0.02835610297073055 -20.22642198258528) (0.653670081557296 0.1711611313131246 0.4016100532780322) (-1.906065113261964 -2.46100175178707 -8.185253356796705) (-0.001604106207887313 6.513436979634982 0.7246422701311158) (-0.0941346322403547 -0.1383055419703504 0.238348269172639) (-1.872907715010034 3.452073239120293 -31.34330476766938) (-2.467645286574435 6.43532829111503 0.892187545649562) (0.7100920194309692 -5.471981720157088 -4.267979303875827) (0.704473471959481 -9.986640197140321 12.30976476196965) (0.8894656878991332 3.70945661896471 -0.3397759131013407) (2.483455699491113 5.623407593095961 12.94370905684648) (4.820107097475708 5.733310104997399 -37.81997304163784) (-0.5651910305057869 -6.127490528125722 -2.765268912869784) (-3.872853553008786 0.06743533650108502 -24.73864291813145) (-3.051598487061195 -0.956910929387314 -22.46576108698651) (-0.03598492668017811 0.01288644326682276 0.02659036613953649) (-0.9546272605360931 1.322875513173185 -19.16281420476995) (-0.05404325229327707 0.03372440700722455 -0.01482705010610209) (-0.1617253670531991 -0.05282761773161514 0.06413565694085888) (0.1003297162672548 8.098418513528197 -2.551240358576467) (0.01847141744856853 0.02332212482910621 -0.007997299549714933) (-3.854640499667135 -7.849536924999894 10.67859801532054) (-0.01393092238484247 0.001385582309292544 -0.003912521907618862) (0.3152279475704207 0.2617115250727041 -0.002975631756206576) (2.213410408953066 1.221379272238126 -20.24748805233911) (1.249039156693081 -3.452885471961713 1.054484594780741) (-1.027124248534546 -5.606701837709593 -2.681212864646555) (6.069289038421944 -2.869424912552331 -5.855374318610184) (-2.344036871552315 -3.616011751531849 -3.422717346448385) (1.375818359781518 -0.08196471080764506 -0.4877436746264141) (4.52114128088582 -4.49726514504032 -0.02405779276700715) (6.556486303168592 0.03383947295899614 2.262914825689009) (-0.04718124510748764 0.02279678416885123 -0.02377754207953478) (0.004462188054244598 0.009346211359060099 -0.02020687628697433) (-0.01721594686358013 0.02024368126111101 0.01837958512296237) (0.02904851919775024 -0.07601295657982528 -5.661485968044371) (-0.03451963095817667 0.02445936583703186 -0.002640028301326557) (0.01191023462391254 -0.04389261038512306 -0.05032232159477745) (0.00243491992687744 0.0008887970189202679 -0.0009044059279405557) (-0.01315540256900811 -0.0064911028343844 -6.873893304961208) (0.009856136941538373 0.01547927450652815 0.02643940308138792) (0.04466788118008456 -0.06470000570892762 -4.77892225596223) (0.005119330656919125 -0.008959018187349399 0.0114031802798172) (-0.01151667706540179 0.006537723096151136 0.002135846709404581) (0.004798656686035392 0.02052591116497759 -0.01046715734780399) (1.440006830777386 0.1107879245932936 1.474973342652783) (0.01276269418098582 -0.0552792779946821 -0.03391168721738293) (-0.03100888923359511 0.007365999864625315 -0.01791474551297915) (0.8053354871538679 -3.243673655518233 -0.1862587338813959) (-0.005139785089044607 -0.000606779394886993 0.005969316003424985) (-0.005053942661027103 0.01703009093453001 -0.03194619528449399) (-0.1550625598420564 -0.1516601156195641 -0.03164359840074071) (-0.08155360245912074 -0.09358540644844904 -5.429299094030037) (-0.0004679256906416976 0.03369596539860642 -5.430295507153668) (-0.001675229034444466 0.01103272263133963 -0.02331157203843407) (-0.01246806721962506 -0.02694239443588257 -7.598458679525288) (0.004910459263124452 -0.004217574357737158 -0.03718128773214475) (-0.006536233027254554 0.001013122447514056 -5.532311863396997) (-0.08195163369563335 -0.0117680076554167 -0.0471884541569105) (-2.546590307092672 1.460325761627322 -2.134634918955784) (-0.03398756986320633 -0.01255923567813716 -4.991342677891189) (0.002877750394477691 -1.135966651474472e-05 0.003564639938635061) (-0.004319683625725896 0.1050957612939517 -0.07246357771929977) (-5.341044200459685 4.253013035365205 5.98522012959274) (0.01964212777221618 0.05681505418414783 -5.032776626376668) (-0.0001223292558048886 0.1059877619107041 -0.03918083247139326) (-0.2248017043750215 0.1421763267513677 0.1437653473460154) (0.004660732801377819 0.06061389705554623 -4.857207945963974) (0.002362636237467849 -0.002581245740149418 -0.01098220017950537) (-0.009204254427000539 0.1053786394690238 -4.560604248851115) (-10.83041063495672 -11.91195178658093 -77.62889103051523) (3.105100641877856 0.4757150077541847 0.08786295740311884) (-0.04849011310265312 -0.0226150370480499 -5.199087447642482) (0.9181996313364866 2.32671145088356 -0.1052077683961897) (-0.003876751315273572 0.09518709823351225 -4.951676835353465) (-0.4861022723295017 -1.163195709482391 -0.1349247096122952) (0.2374502328000058 0.4948217417525027 -0.2562521286736296) (0.02509325141967599 -0.02303112570489657 -0.1015394765813297) (-0.0007554025971542772 -0.01374032516571456 -0.04591937191913931) (0.07943326846116652 -0.04669961959502491 0.225262705555055) (-2.135253672921582 30.00521972721934 2.205745777342081) (-1.326681956284545 -1.251759274528612 0.3453554072821054) (-1.601325651221053 10.00115696398535 -9.122988523673257) (-0.4912384790215349 -0.1474130345793722 0.1296625850673815) (0.8471606975615512 1.437870290135554 -9.711226959274258) (-0.3649864249343887 6.570840714651346 4.426201541973249) (0.7819642961935048 8.260847300430987 1.141177367340614) (1.153135236978328 4.01404315307578 2.30843043642552) (-0.1529425505166326 -0.4399627534763323 -4.353306015047925) (-1.356815025559721 3.150588359894401 -6.575058352244189) (1.101363185953468 0.2721512249095859 0.1968607785772533) (-0.07892339350965798 0.03737374491619973 -0.1541279525805161) (0.06529215531583832 -0.01314303247449058 0.0168608309827679) (-0.01367038476986629 -0.03212232462007607 -0.006652475805800164) (-0.01008524258765129 0.008722661470036759 -0.02459107263104884) (3.133034133592461 7.395303923499153 -1.230478265764634) (-1.578586786449522 -0.6704276317408306 0.1327271323211419) (-0.1096807621682517 0.0256258757192795 -0.005447750824633973) (0.03018743626047432 0.004991097545448056 0.01660309501377237) (0.1358091435914001 0.1247870750312326 0.1797243722765304) (-0.01066191484853176 0.06231033580811506 -0.1025233229019248) (-0.02276423595147342 -0.01556319217445929 -5.499893463570078) (0.2143808188216713 0.1418709343338722 -0.0489987108716151) (0.1372395782919383 -0.4892731827502949 -1.077263122846541) (1.646215953918978 -0.2044383062389122 -0.2888065611319784) (0.164302154359124 -0.06245572792715293 -0.006226415135783141) (1.889630266774914 1.214321085825189 -1.398571373653866) (0.4666927854274396 0.7533467087662065 2.140074843618455) (0.04629952102113082 0.01235143682859413 -5.423924200864779) (1.01249089012646 0.647203806887843 1.064386178569363) (0.03242735502602852 -0.2577836340240703 -5.538702045598632) (0.005803755848970686 0.03308056152724224 -4.398598138847878) (-0.2864180769478621 1.387031724211938 -1.238715302726298) (-0.1626249686375527 -0.8279806596730741 -0.3925188960890365) (-0.2691261550818265 4.145890558836191 -6.716702269505217) (-1.415815229843162 2.610670516625447 -0.2220750253197844) (-0.08972594646968264 0.0844971368190917 -0.2424668629380972) (2.309974256223554 1.876592534390346 -4.362543632586733) (0.890336328019883 0.9626496532047146 -0.04392385112289245) (-1.618269425542457 2.68707286820736 -0.06695493524355145) (-4.698611695952766 58.40891573799059 9.962422390963772) (2.657841915638694 -3.383804879408089 -0.5549998316101317) (-1.750956841200056 -7.202437808298619 -1.062167549785878) (0.02611897298771568 0.02394289527794457 -5.449951100704236) (-0.02550388259056473 0.006922739689817733 -0.02044811108266712) (-6.772284652440597 -3.187298118630062 0.5377578454556327) (0.0216066345200766 2.436827718675306 1.38097781626323) (-0.1007556849348062 -0.1865550072216486 -0.0005095767404983808) (-0.1602130061925596 0.1399119666901609 -0.04044210183768794) (0.6749868921738934 0.3764700409655173 0.3783916506250083) (0.2146362224258411 0.1087590096817877 0.004835833038002155) (1.503336088120987 -0.408411841534384 0.9700020932151259) (-0.008364651466450917 0.02364199255469152 0.008252502632107979) (-1.089117062135244 -1.397492776254875 -1.464724789304593) (7.642385871912056 10.21670928579143 -10.21297529228044) (-0.9072491470633821 0.142302749101179 0.1153215758397695) (-0.4310793224972592 -0.1276853286352386 0.931257071164284) (0.08179192364991469 0.02798836341462509 0.07234902923441081) (2.034912029604587 30.09311252067429 4.032368821951852) (-1.336665404059266 0.631363143964597 1.453148477466576) (0.08921826037395197 8.856195412441698 1.186523877256102) (-0.01405555140124797 0.01511762077416284 -0.08451926726323024) (-2.453320750922989 11.56249572573276 4.754982765711158) (-1.583747630437892 0.5265126477366627 0.2765221011412423) (-0.02428473127509219 -0.08258946715750264 -7.08805377455775) (0.7432865526693191 -1.272218374678931 -1.481073031123437) (-0.263312951376233 -4.12486785941482 -0.2119039419014361) (-1.903739664259575 -4.449281732763682 -1.487456863109045) (0.09447691873056112 -0.05860345233574188 -0.01565386885989996) (-0.9208151830811564 -7.135737281679279 -2.153683172256523) (0.09795797866140209 -0.03525414632507863 -0.05243932847702065) (-0.0351966351540493 0.1024868571139766 -0.1114308576885646) (-0.1899596214738781 -0.1130644444325406 -0.01883415225973695) (-0.1554960766857466 0.7518961952636029 0.2244319007825822) (1.048472660390726 0.7162621832821693 -1.072838727515204) (0.1315392464076298 -0.02747523448829947 0.0245417311675436) (0.2015059251322591 -0.002175153660968349 -0.1620992765365745) (-0.1548673665384994 0.113892654702873 -0.0512538297296985) (0.1367587227129667 -0.1183072278578888 0.0733391460810979) (-0.1778823345323138 -0.007344444869076511 -0.04848602009878322) (1.631741991289793 7.173507389855279 0.2182423694510187) (-2.388393731008178 53.85373347310752 -5.198067349137014) (0.7138301369606339 5.348830799165242 1.113689113142896) (-0.01665307282864669 -0.01856195353394124 -3.954107358928388) (-0.2880577862955885 0.1863541700787247 0.03997035046658821) (0.02535939408241002 -0.009436127527899948 -0.002563883119737861) (-0.09487473413508546 0.01654255004896817 0.02250765726020836) (-0.08853293486261739 -0.1527013111820223 -4.784869743335295) (-0.05347685375576818 0.02369269947635209 0.02166948429404912) (1.484754531547975 -0.5400199437361392 -1.192913388051751) (0.05136837834976394 -0.1040162398004297 -0.01426722548998349) (0.4623428138580709 0.9497957992421766 0.4240703975304333) (0.5400410033379606 0.6778018664357011 -0.5749415827924705) (1.198925401260819 -3.243561860917737 -2.831956905117732) (0.659706964201918 0.9715082800163269 -0.2043123879613051) (4.647255415851725 -0.4980350667134008 0.3327277535842563) (0.126929280001139 0.05819409002231918 0.2286281000217013) (0.3229411766996758 3.828147631381805 -0.658414358126077) (0.05788075735011985 -0.06794310717238482 0.02006253683803747) (0.0007490272147425842 -0.07066982849589057 0.003359987193264195) (-0.1446625904730951 -1.023803939360281 -0.7275926089494091) (-0.3660328956601703 1.164940960229688 -0.3138016410396632) (-0.01077759267566138 -0.07807083173061716 -5.914049613789455) (0.06336825511641672 0.3394027462865963 -0.2971196656969174) (-0.1224845517087221 2.806743988923092 0.4152826013841283) (-0.08493049677057393 0.002198370512914976 0.002792216419753413) (0.04403457503362918 0.1011756599171243 -0.1210692283330747) (-0.4125279574325839 0.2038339322022021 0.2000264698915916) (0.1629706862681646 -0.08512886632664565 0.02056372685483144) (-1.679742247407657 0.5316149209041412 0.3565758496198801) (-1.198997071618412 -0.05140782069214525 -0.2670025468757764) (-0.008451332571086309 -0.162092742780489 -0.01460363329623818) (-0.07860755491129456 0.8226495191305506 0.2371047459613072) (3.979234224660241 11.82905724782909 -1.815939449056192) (-0.1014216477740497 0.2736481307914288 0.01625626244259503) (1.818889055093777 -1.825212176843232 -0.5490812841926409) (1.049132497624121 -0.284480948985525 0.1504490841960242) (-0.03349352374472149 0.007560921068643133 -0.04878872663685475) (0.05590727511532934 0.01306660228260413 -0.08388151444413758) (-0.0704652613408096 0.04277425109648388 0.03932813994650332) (-0.0502971188849874 -0.1469631902860286 0.0882422861733517) (0.1121048981594713 0.1824960311722308 0.1674877205729323) (0.0602634047292543 -0.02045887092093979 0.01230748781667343) (0.04549053757571676 -0.1716320528973321 -0.3698590969027328) (-0.5409029322329034 -0.01072185737320336 -0.7879354688784558) (-0.2503706921784502 -0.119744304323326 0.06543269814488475) (-1.289229849585172 -0.9725233408383309 -0.2399005676571393) (0.01734104495493595 -8.506444399998504 -0.3625577707825818) (0.01136451888094245 -0.009511645964621677 0.1053158513997147) (-0.1155277531093928 0.04244148900152252 0.04824831576611485) (-0.6599923811750136 -0.87525372768251 0.0004774659316210406) (2.906297008218376 11.78936599332775 -6.330145606566504) (0.5031779581681207 0.004338746661209092 -0.877466697776223) (0.4709203263149571 -0.6234766669790295 -0.1798309299986001) (0.1398741634522827 -0.2067908582578949 -0.714433963337063) (-0.5615821773852663 -1.206846554070889 0.8909614919785829) (-0.1132193902304086 -56.5340101501693 -17.1139814036996) (15.34952971803122 18.72233299501233 -17.07264941399143) (0.2465949511309639 -0.03159386914024682 0.04828859529710708) (-0.4362964407442955 -0.1677052102346895 -0.1341630816597377) (1.203759211957059 1.619404133286806 -0.4511006472839092) (-5.161228400202542 3.54025187852018 -1.852381911425656) (1.777515856772459 0.5262084324268351 -1.066284746506115) (0.09967184647155133 0.08058625774764426 0.1382311623048381) (-0.5879973865609603 -0.0284778014946178 0.1463448978463875) (0.1830391099821208 0.007211093328973092 -5.439175596236625) (0.04349610756093731 -0.02822681430418924 0.03098454199726571) (-0.5872010886241826 -0.1628802868796061 0.1209505136790207) (-0.002951454228564653 0.02193787495098451 -0.01087180911915559) (-0.03322429952973621 -0.04145664358501869 0.04451199988437933) (1.540906608819944 -0.3706265268251667 -4.605855479564297) (0.2467772026572819 0.0989807523047908 0.3742886636399135) (-0.1103934198800536 -0.05269292947707976 -0.04512345027601816) (1.062006500711046 -10.327029355407 3.770191231904687) (0.08020684095077769 0.03504162977936705 -0.01512825742928993) (-0.2750023104489119 -0.00257212807518839 -0.2923157149616399) (0.06803937529723418 0.03527961300911588 0.1422564466024239) (-1.445133074786829 -0.6449738414994527 0.8080156091884523) (0.764589462915525 -0.08047848315645964 0.2020787237721309) (-0.00723777241325476 0.03603126502760147 -0.009390253968728356) (0.5029113329932371 0.1044463236523351 -0.1562893415852655) (3.084870199075513 1.831834702020999 -1.494399845315927) (-2.741952739489124 -0.5355062472645427 -1.597880267276409) (-0.5381422106969976 0.1052139010799845 -0.09733865652690107) (-0.364370310793438 -0.4376908915934569 -0.1621442113466138) (0.01440787338395778 -0.1035413915741663 -0.1498840000566181) (-0.07906229691156967 -0.1876931260403867 0.01214593694564967) (2.568744112547173 43.73663807528472 8.545572531557823) (0.0356280105987344 -0.01481424745939078 0.1218543955187119) (0.004307879508870879 -0.007533748597543754 -0.02730212355952937) (0.02510260987492935 0.02008358218055625 0.09431759659668115) (-0.02109808829879867 -0.0005384413474134835 -0.002222901945953172) (-0.183223597948719 -0.01800544465795501 0.1352152844927992) (-0.007439571652152128 -0.03662135558391 -0.00919254098317895) (0.06627622903623634 -0.04827852426941319 0.01740032199932656) (0.3061190292922234 -0.610135140751942 0.8481595844230342) (-0.2125464105749945 -0.008726147728056799 -0.1274741639629326) (0.1354625986645968 0.1072667862115649 0.102204485220037) (-0.5849190022308844 -0.05391759520197956 -0.3380526065517482) (1.420050499997603 1.6078630003741 -4.011487098739032) (-8.894476516542451 5.466794912426867 -4.86770006040605) (0.05350786852506517 0.06575664776787406 -0.02302009380299135) (-0.2753515638799212 -0.1544310437454612 0.008099969788729096) (0.0001802006372882414 -0.08865070618367266 0.3405968836337044) (-0.0181461119555077 -0.01729274094132475 0.01353508177855046) (0.02347329771050707 -0.02267774670021261 -0.006788446671331657) (0.0008529646619106768 -0.2211236516915056 -0.08142888555087541) (-1.450255227455161 -37.74835870698826 -0.7441687522390044) (-3.011623295746603 51.8307675437731 -10.57620869432531) (-0.04539594210469522 -7.114700395554459 -2.638283347609981) (-0.02408829326830779 -0.008580324931697201 -0.02903455568332528) (-1.434916990610518 -5.43504724888821 1.423668125584198) (0.001836460431631645 0.03141218375886053 -0.01667206674753038) (-0.0101647563290817 -0.05536153927116901 0.03204181084211509) (-0.1100290185191228 0.001809633056662881 0.1266478224217667) (-3.525449373349351 -10.21402086640818 -5.321985580760127) (-4.653711074822289 -25.63208009665183 -11.99913937705289) (-0.8525426940037971 0.1686211703060387 0.5288442151868782) (0.7211648620857444 -0.3293396426557417 -0.7649397108661546) (-2.129516445475644 -0.5340963113142525 0.5809414293289921) (0.5794042409220377 -0.4014657332884724 -0.06782954959982723) (0.03237511343218809 0.1620116585826476 -0.09961518372713621) (0.05440902607959068 -0.1189047183959905 -0.00490251281053309) (-1.085624527957229 1.221621337558941 -0.2687118806504114) (-0.02020493257818679 1.742177461252401 0.3654442078922748) (-3.210583557213017 12.01552331819604 -9.806785559175397) (0.1389848687429203 0.0009800810676261641 0.1049124376900126) (1.5167039257754 8.370654112880136 1.554003664531269) (-0.2216189590648731 0.03203840081222534 -0.1149996767893511) (0.342917341819183 -0.318542835307961 -0.5453802824960171) (0.01839555137496644 -0.1501263752979744 -0.02518643286257862) (-0.07485364647899591 -0.3520090463261862 -0.1501177186103604) (0.5627539654056817 0.1807365835342897 -0.009805139898330401) (-0.06861443164617835 0.00271065783323368 0.0003261479253466593) (-0.03352640167191606 0.1267150542532352 0.02137671102394245) (0.06627060060876136 -0.1242489482732079 0.2032901011545958) (1.028900636847023 -0.8390768927379251 0.08627507216188429) (0.1540045408056279 0.8777966269903787 -0.5429698830389585) (0.1741777945789519 0.02275852371623262 -0.08303276770776084) (-0.9111786608426009 1.439000079310876 -0.3953342605062131) (0.009540965824366201 0.01070878123937715 -0.006409634330128209) (0.106333893187574 0.02939126375257263 -0.03636224516196201) (-0.08338067702613886 -0.01446148899856127 0.02102099957253772) (-1.999196271498506 -6.341092673724717 3.774202899898614) (0.05901858763690401 -0.009788855829558071 -0.01604115782914163) (1.678840147030094 4.651170131547229 -5.07811030923718) (-0.5203739234606526 -0.07830907980581442 -0.05507852383414896) (-4.383064106159632 -0.7286982600320371 0.7667938977162277) (-1.345315112406117 0.4168352709357772 -3.554878111961925) (-0.07955130372739734 0.1401707101934678 -0.08574731301240025) (-0.9597393047997497 0.0360569043889527 0.2351289428480206) (-0.7757730406458102 -2.731178027692326 0.494062308294995) (0.2829387251460125 -0.413158916480837 -0.01842281887853733) (-0.06883078745787977 -0.2007055023528822 0.005562858664457167) (-7.570049842369458 -9.39008232801098 2.585553162991143) (-0.1282934251896009 -0.09327297494535332 0.04126499236111718) (0.06338476753776692 0.01523469287705272 0.013493672083996) (0.6671012363148108 0.4170251348411446 0.06650644249862153) (-0.2259827564135218 -0.1916637895172158 -0.025402574142698) (-0.1142317064731938 -0.1641076031770705 -0.1796296391359362) (1.167782111326725 2.929083665618753 -1.74270053928741) (0.01873012982252478 0.007500496624245768 0.00235572406019352) (-0.008706428522186373 -0.1091237245693304 -0.1099304689897043) (0.0103157951439655 0.008050077847771779 0.01518293345531673) (-0.08118863519296982 0.1183996222923139 -0.5467169263283849) (-0.05458507467275318 -0.01673591341417496 0.0365751977713684) (0.01874667493977056 0.002241908980939221 0.02924202285469255) (0.10569268656414 -0.12752824065037 -0.04955969554087335) (-2.025348928033081 6.878056725046998 -4.274636221947699) (0.005590936073423126 0.01168331156012389 0.03444839139008184) (-0.002266403559861845 -0.05731822827549349 0.003276245718227436) (0.04067545734701827 -0.003431085334065257 0.006646681387718113) (0.05319976460567338 0.7517906059714035 0.7393518108799126) (-1.380788652718389 9.657423308503844 -8.318812824630728) (4.064951597711455 10.03698159921829 -5.845096531960483) (-0.6743371032464907 -0.1964200923110421 -0.1462894865128821) (-0.1560928683370365 -1.797957782175049 -0.9433618760260257) (0.5075557735331431 0.2164523385145823 1.204944649670988) (-0.6708598469241285 0.1626005112369642 -0.004931184882260159) (0.2817818012983808 0.1408590254754948 -0.3666657651621486) (2.851799515503355 11.15158298553398 4.772866034112689) (-0.6963231834949063 2.359770561120326 3.95701014548094) (0.07558966444942787 -0.02399704028273637 -0.0445122105376231) (0.4498412016027209 -0.232710607867876 0.2576901129089103) (-0.5082872847453551 0.4342267710206635 -0.1789655793287233) (0.009292709668090177 0.07728355364773938 -0.0966024257208721) (-5.331324584667847 -40.4810140527396 2.557699280805913) (1.891991350005573 -2.012616929292648 0.4997821477011868) (-0.34599610087622 6.512916212919551 -42.11110245438767) (0.2627905416581493 -5.064118719985891 -5.290072527888467) (0.008941633913354514 -0.009023250377713586 0.05775691395152349) (-2.146746622565164 1.35906126291632 -21.93092662202876) (-0.3427525347551468 11.73851304093056 -3.319592872370576) (-0.5266621271289628 1.719110626068036 -2.658684573953674) (0.0344963441043501 0.08358486763435806 0.1317762397471324) (-2.811186213514989 -2.707778718953923 -2.641915920612671) (0.5574883699055238 -0.2006444199403487 -0.2510894679469919) (-1.021183708098325 5.708712647294925 -2.547689068342058) (-0.3709785932302425 -12.35857723921372 -5.117248692134401) (2.341037047077606 -9.030327685244481 -4.521108965095925) (-2.616283095264603 -4.720204496292238 0.04512375348892539) (-0.2951092986077948 0.06019237761356379 -0.2544687702608882) (-1.581323478558114 0.3176559092561868 1.724406141648056) (-2.909595589771789 -4.894726146969474 3.083754340114483) (-0.02955282417651795 0.06118432255775743 -0.05497411142252276) (0.07163781895063857 0.03466631267795646 0.01884435742910403) (0.09735409664042877 -0.1077356271768931 0.01219154903261499) (0.145744139640075 -0.02057978733852425 0.09039663068795675) (-0.02166895747771192 -0.02873583482852628 -0.02254358405311022) (-0.01168510078061222 0.01017440833531883 0.01257821510316291) (0.2830628976742378 0.2958860840515887 -0.169361310618867) (-0.08344072586807709 -0.03138988089131106 -0.0269289163057384) (0.1136133757625205 0.01613055172912241 0.006070809767946691) (1.606826982731475 3.462684565041808 -3.966887847598584) (-0.09867038000584796 -0.06712872947912668 -0.1741763556783396) (0.5062613542072909 0.2857473520951751 -0.07509124679821717) (0.3829355276185432 4.496052698647794 -1.302076649860456) (4.08762687736497 13.09506876523705 -0.129330639754009) (-3.597550164992604 5.015345181592687 -6.170856297335233) (-0.410619455271704 4.814502094180159 7.303914045592606) (0.2022350334728533 0.004787327343657964 0.01481111492542677) (0.04330872856835676 -0.002691292020838757 0.05675145831216927) (0.1122525463088166 -0.09539366124448725 0.007932696439154827) (-0.8832804369761798 0.7365792365776775 -0.007483467424657581) (0.1337963686685915 0.01979790179929784 0.05443069225682381) (-0.2766415077250614 -0.06932814143000246 0.03602753216613024) (0.3284522521810485 0.1123999520176064 -0.05112770161359864) (-0.003925743051182961 0.003021547980092239 0.0008343361407006714) (-0.2207994704685594 0.06179807759628007 -0.06140720202373254) (-0.1735460963834831 -0.04219369278367629 0.0322749581920422) (0.07056125290615911 0.02819758935407854 0.005368047460471655) (-0.006361590957454866 0.0906458509399473 -0.05135588658588841) (3.639383604328038 1.27020185036201 -0.5667977997852782) (0.09577812063679 -0.103110188067636 0.03681770340724622) (-1.371771004221249 1.264451496314725 -0.7131498447580644) (-0.07513064683653209 0.06972207070517024 0.04824570548523264) (-0.274340139132972 -0.1558277914533301 0.04502763392037096) (0.5094563655836195 0.08539228391857412 -2.143015593730641) (-0.1551688534551 -0.2490249119397791 -0.1481548568297769) (-0.1032371123771396 -0.004790874033479321 0.02102167912250238) (-0.0709856481368546 -0.007936259892465936 0.01920640099728006) (0.06921627592614668 0.01394530915851144 -0.01400799173734188) (0.03391950284949995 -0.01143367311773541 0.05677565647889658) (0.01806509073779056 -0.03396494739517008 -0.006130819396426315) (-0.01983487769084608 0.02001521531569625 0.004181054092113289) (0.09647346587073208 0.01834847084598244 -0.03433816741508443) (0.005353547575799419 0.02967959731077097 -0.009588775371521552) (-2.249576325225053 2.267267442300926 -4.069373776225977) (-0.105080575056252 0.04230563346640098 -0.1689818016628893) (-0.2875325442249582 -0.00580096454982762 -0.4434813961055158) (-0.2305772380957459 -0.2157737952625489 0.1290406417728716) (1.670779581188017 2.415186139002227 0.5038655540831183) (0.07011165288911764 0.006089992059970295 0.001304485584592608) (-0.07069513468895131 0.000150517592835471 -0.2315174705744057) (0.4904739424891755 0.9652272778329547 -0.149979944028466) (0.2607987593805171 -0.8011762812402996 0.742616216954016) (0.9015092020606993 0.02562643523442969 -2.375448233480883) (-3.3538659146784 -4.500859770936692 1.270286076405304) (1.46496221474517 6.277410550355152 -11.69964041397255) (1.718352632345807 -13.90457251242079 -0.8167489405970054) (0.02352255532918623 0.01601252979060528 0.008441009089975565) (0.06922959945318578 0.001555068030402321 -0.05622834130774568) (0.1049236501796312 -0.001746591963105996 0.007781282415517406) (-0.0551888273926724 0.02316067232333391 0.03304034129264685) (0.4790738378274905 0.05375242717312063 -0.4112450431329402) (0.09594545260523912 -0.07841015834563331 0.01853143565138838) (0.02406339391163771 -0.008857927870099175 0.01460653228253108) (-0.09440003771903896 0.03188859440485214 0.02150834763435427) (0.01046819352686906 -0.02293261982973814 0.01518135932805253) (0.05380739238906997 -0.01056964793061524 -0.03810552305109288) (-0.02861566036814758 0.06264724129044741 -0.3474198412903001) (2.801912344569779 -1.088125303399498 -1.174846388540755) (-0.6811640609074531 0.0196036805185114 -0.1635567474881873) (0.01953058472879129 -0.1340241221263883 -0.04443954722836936) (0.1326835169924619 -0.06374817950176821 0.0105602596201344) (0.05639823852318301 0.1915751558478983 -0.06467074993652396) (0.03708295011921638 -0.005189158759009107 0.02634253548232324) (0.03916092374352445 -0.02332442642360196 0.02669530100541906) (-1.261256732318644 1.659496132604914 -4.517912469528881) (1.82588396724538 -0.5935912196857925 -3.700872277121917) (0.08626724729121871 -0.0481585147085192 0.005026444798735846) (0.002312124564566936 -0.008134219700020071 -0.0002161014722460398) (0.06388811745125592 -0.01208739567343806 -0.1335429342386619) (0.04842484660003026 -0.02002785305275922 -0.02444592749685057) (0.1862294929108741 0.4904055454959364 0.1222505504542233) (0.08964853908302653 -0.02849545644980311 -0.1435537094864496) (0.1770469986771538 0.02716932209464244 0.0009305702494384303) (0.02018053146000159 0.004869598453854438 0.06780523401111284) (-0.4956654158476707 1.003207574530373 -4.705702156956145) (0.2476741002273582 0.6066158195688999 -0.6856840940179252) (-0.1406079108061443 0.3445353718647829 0.1447620721156847) (0.3300200330412975 0.19702586992798 0.1272252809663001) (-1.599867834552488 3.950659999926707 -52.93268360715982) (-1.610516592005026 -1.17848699422692 -0.2772844597689423) (-0.01530167000946855 0.2135545238064873 0.1564778607539838) (-0.368233513700909 0.08114304844800643 0.2366188792947901) (-1.41297352354035 -4.357302903595969 -2.643366964522854) (-3.869085900726229 -8.887281018424472 -4.203873755973287) (-1.880194836560269 -0.7792261361372188 -1.724134533708533) (0.3681056388227297 -0.9375589736736083 -0.9439876574498614) (-0.02285850553546744 -0.003214536313329741 0.03779452485767168) (-0.02058314239440794 -0.01264308523811151 0.01363655857925046) (-0.01655661729358818 0.09515881439022596 -0.1105040223629641) (-0.1507289693282109 -0.05614908597731444 -0.06129361853508849) (0.001151292236898034 0.01518947969674022 -0.001918921762969513) (0.4080729649332959 0.6743403798427126 0.2698546327126182) (0.01510522046525714 -0.002812061550722396 -3.495671253725352) (-0.05844265629509301 -0.009113282638335021 0.004238151163677428) (0.01079180039780675 -0.008755470876794434 -0.009299734493540025) (0.03605869490719595 -0.01702561786381354 0.001586374271260368) (-0.01247023185119799 0.04449358514649761 0.03451772590019121) (0.2418211546458666 0.03071677721780978 -0.004217724120585561) (-0.2960396384430525 -0.2800855278071628 0.1459209727098898) (0.1138185184601251 -0.006976004636603693 0.06849752928052022) (-0.02423712067542581 0.1533592304358853 -0.2481018320070521) (0.2240283383700719 0.3039681958963388 -0.1564328274699712) (-0.773559886171123 -0.5246816018205196 0.8405788696869048) (-0.4559832921760578 -4.014089291000857 -7.201934319542356) (-0.5491326521422415 -0.1526418453351877 -0.7662853773199373) (-0.1501902308513864 -5.395768080524155 -7.152970542227398) (-0.04331878057310057 -0.4493234500533706 -4.017610788963082) (3.184105058640641 -9.058655626742855 -3.609980570062987) (0.1144296286069594 -0.01091111283183569 -1.128527549000321) (0.01052568642305758 0.000383563869554186 0.08418464356720642) (0.2329828665401048 0.05148074576949904 -0.1001389816221659) (0.04711076832535531 -0.1678509888386302 0.2088136809106252) (0.01810937643857967 -0.02128591732440528 0.04641026065540276) (0.01578436102491457 -0.1203673993893017 0.02592241780156137) (0.1248673222172521 0.0507917122757024 -0.03307332786215168) (0.1316090918525236 0.3325463942594273 -0.1468641616783413) (-0.02906832439721205 -0.02917559218362047 0.01362314373161915) (0.2626640643876568 -0.007732002193328976 -0.1888517690827123) (0.0235228046563783 0.01407288477856756 0.02661647924262169) (0.1645414444758522 7.971263940160386 -6.111108331170511) (-0.9462294708776642 0.07571261324097667 1.022155163820524) (0.09656627567219207 -0.2495527632906858 -0.7284313016828095) (-0.5098332863496958 0.3016944060554322 -0.2086184782408612) (0.2077307629219543 0.1995934925036479 0.0481420504643166) (0.01796668891709518 -0.02347452096801778 -0.01235970204771608) (0.01753392210866037 -0.01221021100413403 0.01261756621101937) (0.9124459164436103 3.185829320844313 -1.691241950183695) (-1.558710053770175 -5.37690154113971 -7.179899307660549) (0.1659312253403551 -0.5805632158173155 -0.02205340147153102) (1.854207772108794 0.4037192393319763 -0.4321180901405428) (0.1014982329667718 0.1099782582472431 -0.02602419253502396) (0.3574619873840605 0.01934629340648786 0.2393832256294203) (0.03290719845682354 0.08514693589229186 -0.1405017959699469) (2.676757090651279 -3.939154168760969 3.182685206053236) (-1.54471193278431 -0.7210623782956154 -2.220735417440579) (0.2551388357054338 -0.02437562527186432 0.5203023235122048) (0.4379658061822687 0.9054999483920048 -0.09880548745778184) (-0.439521909824597 0.6637353985050153 -0.1848297229568818) (-0.07053352591665059 -0.02387864878092173 -0.009554090299871611) (0.2015760221323296 -0.05368083863909277 0.2008199424081489) (-0.07801743642125664 -0.06601437808471296 0.005625667222505855) (-0.282299922925822 -0.04882269078612889 0.1719708730698266) (-0.5186971108770003 0.645832164803249 0.852954726046077) (0.1023157172437053 0.04951515821711117 -0.129535240498227) (-1.412685764365712 0.4957316831453376 1.128502984055543) (-0.7989853138828106 7.852403489474323 2.040490165761952) (-0.6613259097474143 -0.6063196004432307 -0.7477890272120464) (2.130809609098078 -1.127718220038745 -1.902738291643425) (0.3441142677390689 -0.1732194324431478 -0.3146920937920493) (0.5144665001057365 -7.494504835006652 0.03653123040704731) (2.507837285714605 -13.40886716765879 -2.716850052757769) (-0.2759376757751515 -0.5902135954987948 0.4011323257516113) (0.1415053592883973 -2.091900548905767 0.8084754916716577) (-0.4205475704694973 0.4787478229684002 -0.03419947293653296) (0.08352747412702413 0.02854939568188672 0.05409014417903953) (0.9594663333721563 0.5072290679930279 -0.09136356509840071) (-0.1008986740114081 0.4096992551951806 0.6068252427678505) (0.1526688242576691 0.02707013411224064 0.08861538036183456) (-2.125138313329786 -9.761938154074054 -5.758329024065262) (1.191871172336531 7.337321795870968 2.517756178973937) (0.002242728035147784 -0.001227107113268153 -0.001311310974051606) (0.004511363415955962 0.03282247745130275 0.005710073047982184) (0.04828193115819751 0.0130637839944383 0.04233770484958169) (-0.0242699844780234 0.01922707059511398 0.04706610969868736) (0.01991347680043104 -0.0104571565380372 -0.01409672626991403) (0.0244526889532968 -0.01783225465860417 -0.01395680167771211) (0.01767848093597489 0.07204310808368507 -0.04787899175321222) (-0.06059455688383985 0.02603826887862463 -0.03982043058927476) (0.2099377923138094 -0.05610883127243119 -0.0517087803460583) (0.1519219564456894 -0.102431292108526 0.8824223227521466) (0.02277753436842366 0.01128719451780198 0.0006341105064990825) (-0.1536582309034227 -0.08329445845940572 0.1411226719076598) (-0.05856392343202166 -0.2514799496112663 0.2110622579638817) (0.005349613393852284 -0.03537052200023143 -0.007200718997622273) (-0.328889535588196 -0.04752186140579848 -0.4054004742454717) (-0.01877503344673193 -0.0257489667715847 0.04225833654103332) (0.03051770609362476 -0.02145091027941053 0.03136421348168583) (0.02745819220008306 -0.02277986146932048 -0.02692135427659276) (0.06805576129525506 0.009822962020748284 0.02372533378773029) (0.02294284883514964 -0.01713081336930925 0.010107173502726) (-0.2033093318363556 0.07113443543381204 0.03837407531574061) (-0.2741285159706964 0.3720791467466826 -1.065108128281397) (-1.010149793037591 0.8234243393256007 0.2193293743765709) (-0.1541610947357362 2.986848282260415 1.505392152663698) (0.6179210795678376 0.2477143934201243 0.2079933399028786) (0.01907362363422729 -0.02500108968065965 -0.01998828815168251) (0.05371946997953221 -0.1770440725282259 -0.03739237383644285) (0.03978643462863736 -0.03586205234336692 0.01066877457991541) (0.05692467304301189 0.01627122387319957 -0.01158644239016707) (-0.01197261599547539 0.02776448043080822 -0.02158844948962374) (-0.00163623534291579 -0.01372315060848258 -0.004368950967524785) (0.6092129904482647 -1.190392184998547 -2.533285226679495) (0.01195200449625838 0.08559155499268492 0.08650071112681879) (0.007173728711517932 -0.02322380099158679 0.06439929622902565) (0.09805729990182299 0.4228445564671901 0.2399942558017754) (0.7231354634823548 -0.289091305303554 -0.3744347786726732) (1.075121793810506 -0.3542892293379922 0.07606407674162879) (0.4252270543972382 -0.01746890104550905 -0.1208751105793409) (0.3073463418424446 0.1680609329798707 -0.1369261270870945) (1.786070453399809 -3.780902242539537 3.23793778458003) (-0.5374783633656678 0.007073961971310411 0.03492496382811135) (0.3687084958102608 -0.9635185872573511 -1.092774248505179) (-0.5403726254293471 1.342946373469405 -1.461333295118972) (-0.1326144780632998 -0.03930270931916217 -0.1806034063814144) (1.856512720119787 -8.12355807998332 -7.731066886435402) (-2.018825285074672 -0.8746073801646099 0.01588590616953794) (0.09644986008855388 -0.3061041751030409 -0.04981082427036206) (-0.08249517335390513 -0.6781797189553342 -0.1640694234238561) (-1.490798099245475 -0.6108967893683278 -0.8602469802175589) (0.07168741925697147 0.1024541513477991 -0.1216485549791697) (-0.2752001320242912 -0.3562023383656914 0.04424156627252207) (-0.0009486945438219164 0.002254129366118092 -0.001033960000166975) (-0.273859695266404 -0.08246866813626608 -0.1610579956160564) (0.05444761566231027 -0.1010581903724073 -0.461661830616506) (-1.731731669031621 -1.582134312358362 -0.8851975917844508) (0.3227810751562226 -0.1525186218093812 -0.3293795355094927) (-0.04765064614752146 -0.7841865217927693 0.3478307901010212) (-0.4277469478127602 -1.462329908637559 -0.7909955262339774) (-0.47202231334817 -35.06551961708865 -3.068227695932731) (-4.936757839644055 -5.365576363046819 0.2382265965085152) (1.037115598574337 -0.6532395277852493 -0.3937763064879918) (-1.475203393655645 -0.6627695581645421 -2.088294463611993) (0.3099855399614467 -0.3398129809270343 -0.3311966151431447) (1.317784258794977 -0.1389828954603284 0.0597397426656287) (-0.01335574280335899 0.1109514774492709 -0.1562734276186917) (0.5532028488090143 -0.3297967231275656 -0.178447946877102) (-0.646986612058952 1.263451437429814 0.9794124769228069) (-0.5308606417563539 -0.9747331685325378 -0.3291256683266632) (0.4701198922348871 -0.4284106495300064 -0.2451452326435246) (0.9900478665771588 -0.8493911705348152 -0.4658115873156215) (-0.009000828687402179 0.24540398461064 0.3972694601917172) (0.1486233730301605 -0.04654433723119027 0.02539834966281717) (-0.08444449671133224 0.01527428510706744 0.06527411901655766) (0.05238596000573154 -0.009861539222909511 0.0002183211392292259) (0.03535263970644599 -0.101907922680248 -0.03932819649827529) (0.1578301009972327 0.006430532104174179 0.005500349042956862) (-0.3516312342917028 -2.490937088480394 -2.308364112328971) (-0.2997959873320795 0.3470769050446934 0.1336693597683964) (-2.191324918532238 -0.5374721591586257 -5.840913052570796) (-0.1153606960033098 -0.02337274736284054 0.05853915554536444) (-0.1518499338723271 0.1641627796897475 -0.02024126494239936) (-3.597697136509458 0.9275210358536454 -0.8197922861484026) (-0.13230218329313 0.01529202495243775 -0.08694737099443711) (-4.121629754263296 67.14581241257299 3.143779685709923) (0.06207921668757985 -0.1038843413851782 -0.1431996767039532) (-0.07861677946303114 -0.06162978394950317 0.08120351726688367) (-0.5245333905774482 -0.3962407282438321 -0.02543043523212951) (0.1702714602099398 0.04064947751807554 -0.1827898109345026) (0.08939303450755751 0.05499677241215664 0.1413019302253197) (1.113084086229297 0.5458487898045226 -0.1296244352785098) (-0.1082526039840394 -0.06655727758892865 0.01558871734499365) (0.06705189572785966 0.1251027079311847 0.08018426427850972) (-0.07759081104994626 -0.139957553451544 -0.1937159643167244) (-0.2278946844925228 -0.04224718816959063 -0.006559902045998142) (0.1852491378625267 0.08470407891108785 -0.004873109740455864) (0.1254163095353945 -0.004247099440781194 -0.105360585906576) (-0.1369212206423654 -0.003620236728386707 -0.1134692162498034) (0.05604525772966864 -0.01340199127313376 0.004616446819936389) (-0.1686025405933949 0.0208841287498816 -0.01840012402683473) (0.2397726203894909 -0.7354684980241492 -0.3756532310681182) (-0.1109471150578668 -0.05070053864517765 -0.07716575807996003) (0.7511222092467004 0.03583715287137486 -0.5337733015020214) (0.2838787858818042 -0.147382040963147 -0.1249981010598779) (0.1831578864015183 0.0772598332544253 -0.03039947708691318) (-0.6715658249973653 0.0422578335162313 0.05097991942292351) (-0.3394685628920835 -0.3488548916225306 0.3856561871526323) (-0.1905354487178643 0.07243585192578601 -0.08544612568881073) (0.2174945539955931 -0.02309435073827062 0.05070941501954322) (-0.08986766679594843 0.07158340245666779 0.01511424582366501) (-0.01580062207787701 0.2146079994040123 0.1330006266523846) (-0.03545403274053514 -0.01061037824042259 -0.01667922922105294) (-2.189047549007701 0.3324218359521186 -0.2413546441612493) (0.02008187068658079 -0.03750123275870022 -0.03527528304361312) (0.1067433784818808 -0.7186434301856729 0.8030783047092954) (1.572135581599265 -4.641262747463117 -4.211311955713913) (-0.6130733294911498 -0.1843026665878233 0.006885460262526677) (-0.9906147201980162 0.2953901560580243 -0.3927333012820977) (-0.2472511313332734 -0.01966511702706726 -0.2941138589951458) (-0.08067370451656328 -0.03874006515811891 -0.109438571878641) (-0.1319439824436246 0.03392583302852478 -0.1759907704848157) (-0.5543314050983846 0.9087122675566737 0.5954849920358934) (0.4963432089022152 -1.186662101846693 -0.7783136525159557) (-0.135773861221771 0.2482869770690356 0.006060833451782821) (0.2562385840957505 -0.2547727911229739 0.04842897960377718) (-3.930140362861302 0.2442325974480888 -1.926783388718398) (-0.151906585703364 0.1170111439551919 0.04600445758546451) (0.3099053022904736 0.1399741916470082 0.1143115822239073) (0.1887976314846085 -0.4852457411847055 -0.04678483772912748) (1.790175416216771 5.227099168769525 -12.58759956517138) (-0.03296565561471101 0.3545528146984372 0.2012704144746779) (0.003153358558117603 0.1992302169942934 -0.02170732857007687) (-0.1252547543897098 0.08879738335729949 -0.063002355476377) (0.6819106943294581 -0.2457353789448956 0.8737093482358291) (-0.06730826833598348 -0.1027073267820827 0.007612053525225045) (0.07294638958330875 0.3905171699460598 -0.167362153324634) (-0.02443077217884716 -0.01938817661794553 -0.02147541547987384) (0.08998390635840627 0.1615948897332755 0.06622128249311703) (1.579604246680157 -0.143758269347962 0.004779574804524123) (-0.7846538674282808 0.1997961731333924 2.679342932009297) (1.496569166902283 -2.120056439455455 -8.320469214464406) (-0.0236817519255122 -0.05547454961734745 0.03354834035061175) (0.07291151792660974 -0.05138053834854917 -0.164580792794779) (-1.524345888955482 -1.656643255644103 -0.1763079677175367) (0.2053907563396809 0.3207522930403612 -1.430913593912854) (-0.07341663232801368 -0.06167138846437299 -0.01031683387208021) (-0.3446589682465027 0.1116784409355309 1.054538816008487) (-1.001192345662703 -0.1619531757640237 -0.4402157656073803) (5.880788094116145 3.278985673734868 -0.3192611752797601) (-0.3206315466560305 -0.1041575877250977 0.1603374558335005) (-0.6655986568697632 0.80802570772635 -0.8379416301778726) (-5.656671507513535 -2.086858571927832 1.441115648806718) (0.03086145528230865 -0.03403877109895435 0.0299873901410078) (0.0503804680498206 -0.4631351184761243 0.06634029409381591) (0.3134111076575444 -0.05493454239435177 -0.02816568444005829) (0.01393790297016879 0.0497382988767188 -0.03041475540984815) (-0.03643519314597568 -0.02806672300001951 0.005787816595527687) (1.383316778428252 -0.6877816923431591 -0.9928706095828476) (0.01100030216110686 -0.009938925436834943 0.003923386661767968) (0.1225056701286882 0.05324282278635978 0.1216421776087762) (0.1011307927235885 -0.0962285330140463 -0.07244675214261574) (-0.1661176658187665 0.007997526015227643 -0.1924794250206784) (-0.9031727554728877 -0.2512649717654142 -0.0965275042768145) (-0.00385257171953216 0.05768944474423469 -0.04468932066406744) (-0.6140339952190501 1.686483475062305 -2.343036905921906) (0.09022212021657462 -0.2252235953004883 -0.4616841737794104) (0.236408116902369 -0.1378868051963226 0.08516829954765333) (0.2018791452175738 0.5774302900924785 -0.2812446335446395) (-0.08242833445713879 -0.0007444485516772889 -0.04440142532990252) (0.006832287676625019 0.05369068399849634 0.03311740454106316) (-0.02749158496863444 -0.03892620902016002 0.02549382658039123) (-0.01834774681187887 -0.01202326785960635 0.01839195481214378) (-0.3118983525824003 -0.2414699105418696 0.03508696174614903) (0.4633815623183857 0.7267379705314108 0.1512579056693432) (0.2806924932857916 1.03671458088442 -1.030485119188758) (-0.890718844505924 1.690164353081788 0.7628994639712948) (9.472783546508577 3.200480272903042 1.706547625119547) (0.1977194075178832 0.009723089713611273 0.0916454219933428) (0.4527346404436009 -0.01997135368375095 -0.1115313848135124) (-0.006675756882650438 0.08165059703896445 -0.00789483574661984) (-0.04821799657252365 0.7040816384810227 0.1361972999427235) (1.946941231204603 0.2221915758126421 -0.2216450873747497) (0.08671071671764151 0.003525425500046919 -0.3538587137244461) (-0.3754779403083432 -0.03549797548913108 0.2640328342015109) (-0.8148497668080803 -10.854343321055 4.687548468356067) (0.6809071630152256 0.2407552768740869 -0.3230965532390702) (-0.5687537303186481 0.4818205253254986 -0.06798553697971987) (-0.9888915985966091 0.6857844052068818 -0.01147858068234313) (-0.177001857388037 -0.02815977717930621 -0.09850680135939155) (-0.5667864311029025 -7.650288433975579 2.358766349832523) (5.742017538450795 -59.49836240040116 -6.677067204585647) (-6.022047196162217 -5.176913888273016 -2.896612300101795) (3.943189655005733 -1.953819432514419 -1.77666428233137) (0.3113175589745584 -0.01653789193056432 -0.2100374489079171) (0.171989819202028 0.00933690550295152 0.1473302858756791) (-0.06777915666896675 -0.01075252467142514 -0.02390760082364289) (-0.6590171758474266 -1.647996315739837 0.8496943019782464) (0.0835428094332725 0.04731564151456261 -0.03861120325752553) (-1.267833957097939 1.28728947974669 -0.7738402131786329) (1.763926617309966 -0.6591391500955022 -0.9146259122570262) (0.7468943934853753 -0.1814018739255815 -8.857860352172297) (-0.03059179585507219 -0.01884428066455197 -0.04971108409959069) (-0.5699930967075268 -1.608414415210448 -1.851306023611284) (-0.2084277034749204 -0.1640165033413365 0.1752512216809665) (0.05032816824839227 -0.01521526130056918 0.1172862960414618) (-0.0490916429211706 -0.07364149443371434 -0.008711903471690086) (-0.08975184742030867 0.0008942613356767506 -0.02688375469581256) (0.4087690111702844 -0.3695627956344318 -0.4610208876063778) (0.8178135697637219 -0.1072783221103555 0.311531668785631) (0.7908778521220476 0.8149931078678652 0.7069333750423663) (-0.7520390673577662 0.05279668583792094 -1.883724996130665) (-0.9423582193337344 -0.1313019415526991 -0.5631699335398425) (0.5784400931744842 -0.4898167112243765 -3.37811036314764) (1.65631317239008 8.985597923945184 -9.47391583233926) (-0.9105799815831046 1.266977895765113 -0.9282962790357048) (-0.5623539924319603 -0.5473703024697921 -0.1886052042960258) (-0.3056453587527518 -0.2778724693492885 -2.475545733555817) (0.3507918011761976 -0.7948781035383974 1.624000370578286) (-0.02443007622914461 -0.4353468294263369 -0.3298810136625632) (-0.03949545842393896 0.01327648126971882 -0.02058182778978504) (-0.01100251234382486 -0.1069877062599097 0.02906571429556486) (0.08687083997540701 0.03160631722306532 -0.06443339098091011) (-0.1550222214151822 -0.02967257147490677 0.09103088285320296) (2.366791551409801 -11.25561433169957 -6.656451376088012) (-0.3424466333206675 -0.2050710481291808 -0.04661888402049705) (-1.165623788755157 0.2850199166786737 -0.5194120780855318) (-2.192948838069466 5.632939531926016 1.175154362565822) (1.913824279674711 8.208410355172321 -37.99781542005718) (-0.9457021556383253 0.6333581402028762 1.161288300993671) (0.01586186114858028 -0.06846705629245481 -0.02206768864488052) (-0.1235039716064202 0.06317990100455323 0.1186998545416515) (0.1533413737872798 -0.05658303936772007 -0.4603135026594484) (-0.1307264337316711 0.06809659131891622 0.1616971941902383) (0.2131559335960151 -0.03290749283481817 -0.3220533579260192) (-0.592634356887635 0.05733262747552745 -12.86188696832234) (0.0117112533684024 0.00165445788502944 -0.1360477560388391) (-0.006324240376899423 0.1487605383092327 -6.176951687919331) (0.01551273592072245 0.005626188094243628 0.003673346411766185) (0.09855825831352105 0.2468928983970365 -0.378931097097477) (-0.3328419927662244 -0.0272925259829547 -0.09472384974440923) (0.1082292740330688 -0.7872294651154583 -0.6759038825471454) (0.003088459085403211 0.1967348313111535 -6.603197688812649) (-0.2184703037271853 1.281251522347061 1.652925937860743) (0.1942942155256993 -0.01393427530218414 0.01968490248071503) (0.00618273798681291 0.03517126400229704 0.02330494529752618) (0.9911420903523976 0.4390599716826997 -3.421691670792054) (-0.05479238049823835 0.05612077406460529 0.1321799723064246) (-0.5237765798337812 -0.4584942185358634 -0.08598676434772978) (9.186665585153643 -109.3443157937062 -1.767667404765793) (-0.8887356833639448 0.008771879967189089 -0.03928396110986881) (-1.787593034489142 0.3106731158392333 -2.513208839132061) (-0.09053873667035467 0.06132643838011997 -0.005579221764555681) (-0.0007981096779269836 -0.1733950185507933 -0.02898649301446724) (0.7420376894968369 -0.2461713703883413 -0.1005243776263385) (1.365322140205368 0.2634755597273514 0.1210172775205851) (0.441870043199535 -0.601853118228634 0.4328942267211091) (1.806754377363453 -3.531634192242784 0.002348676810824957) (-0.01480882594317289 0.02647144696149011 -0.1196605204198115) (0.05792863113794389 0.0317978069589426 -0.176579857410746) (0.2340150534322533 0.8586092292953794 -0.9896657986164299) (0.05352521705421819 -0.008445576222977865 0.0674938972613375) (-1.173493212803376 0.4687342026166064 -0.07200606956790469) (0.1848403333898134 -0.1866131797640745 -0.005032070030271937) (1.654801250867717 -56.33215962482771 -1.639087326515558) (-3.920150022001666 -3.372787932060465 1.142637482412968) (1.507556400701914 -1.534099636355495 -1.219480317151712) (-1.474431429539166 -1.187088776487571 -1.352973678189824) (0.3469694591832223 0.5913277482211486 1.080470816794674) (-0.9298925909997289 5.507825467118066 -1.783759160683626) (-3.914355786797272 -2.436973758292333 1.735529865921521) (-3.864195860184877 1.825834221189602 -0.8584664718392467) (-1.486980651888071 -1.065823942320803 0.8414650665418084) (0.2316457392230475 -1.934376597847436 -1.649067447923555) (0.08132162902243577 0.002225462416594107 -0.004328674202868067) (-2.888594311031256 76.93463790540957 -4.050155359499798) (4.636811510854996 1.638110786801263 -5.79344848392699) (-0.6589083582321169 2.308645589151315 -8.89886545735348) (7.413969710748171 4.875521796499578 -0.3180632260073217) (0.1109829669685319 0.003011161569389853 0.06975247126468129) (0.1390874729835309 -0.4883807310515237 0.328971864962137) (-0.1487187612634133 0.2627753345794843 0.2251706469447516) (1.640188032128844 4.137819725383149 -3.243702411649322) (-0.3152832481809915 0.01881099517674206 -0.2234602403306042) (0.8474913283122563 0.4080555588774024 -0.7781311890966379) (0.06757464108659778 0.03493636342661662 0.06863578949668572) (0.3286320538043927 -0.03506711561856021 -0.2189221711796167) (-0.2554168736236846 -0.01280143493882361 -0.04311374081142738) (0.05548063137912537 -0.1090861130808932 0.1010097000429633) (-0.08827111906759814 -0.05519901237802211 0.01067500294924953) (0.114375030869005 0.01018689028837626 0.008761542897082692) (-0.06195303718495571 -0.1624229990620476 -0.02094026443416388) (-0.0956903509014643 0.04338034391033964 0.01535433401968971) (0.02194547322341233 0.07921929273593135 -0.01013198027596151) (0.2048046959619623 0.04119270839341756 -0.1258100255470293) (4.383735278546472 -0.3752826755454144 -1.457220271939621) (1.081091191184647 -0.01693972739492677 0.401932728907665) (-0.2462218774474759 -0.6760305117716099 0.3642483902658951) (-1.036390525808474 -0.2309617371610387 0.4434874231354097) (-0.1515831863050309 0.01166477746669881 -0.2407157208471731) (-0.03485267553747137 -0.02658192899719126 -0.03816830127901188) (-0.5819093810096156 0.4884726467790343 -1.12801157575997) (-0.008751423515556932 -0.0005468848999274824 0.002536336773291008) (-1.367531743691057 -3.865476368370393 3.812108100955494) (-0.01473793376113338 -0.05733158307227509 -0.04126686145799843) (4.075211399920734 -1.674576752678083 0.05485438518594588) (0.06093582190353024 -0.09465942519051862 -0.1145486547388731) (-3.434077126405778 -0.7731320855802577 -0.5369288740828495) (-0.2334307322280755 -0.4512202857709372 -0.6242947940507102) (-0.05451264529097276 -0.01839972296101185 -0.1228981340580517) (1.272943168925829 -0.2010338929503532 -0.9891875046193164) (-1.357954538558322 -0.3998438669090382 0.06691080417696475) (-0.5512013271067455 -0.9833651360107066 -0.733497822459918) (0.6374476464566753 0.6211801147386067 0.8463389617082727) (0.08893535796319602 -0.09039101719618353 -0.2039259163783682) (0.3148565062631166 0.1066625849214452 0.01168305064201377) (0.5964556740130356 -0.5526751224411441 -0.04849883902864835) (-0.05494631209735946 0.02692733064339277 8.153162697326077e-05) (-0.05750196963048569 0.0262190784391155 0.08231315389869068) (-0.1468196142713046 -0.08079990124735187 0.0345554980520586) (-0.01012471886347477 -0.0981503446912606 0.09351512298308444) (-0.003285182572463639 -0.01620268337473905 -0.1185887576841147) (0.0721247730698024 -0.1017978771096917 0.0214559293178652) (0.4806982537473852 4.58754197613909 -2.445890878284438) (-4.400373677950725 1.788855970677061 -2.227809248140903) (0.7348646196469919 -0.2056990240263684 0.5314300797389012) (-0.0116095214487248 0.0518338720044457 0.1048899947525004) (0.05533349651198108 -0.009623883696254831 0.08781874750930532) (0.1896477311412363 -0.1422181459825997 -0.005864985554747237) (-0.01063788004438612 -0.02733792557418498 0.06812658481022861) (0.432222108114415 -0.3001042522904063 0.3159124918593461) (1.255741291058786 -5.409026753440609 -6.379455212906288) (0.3732247741227382 -0.2060753328495903 0.1676069568738863) (0.007216023618117611 0.0235301508780175 -4.629943649081455) (0.002509543229553223 0.0004672944279118275 0.003047294625953678) (-0.3723677422852673 0.2987888320236799 -0.1089266738055292) (-0.2711387980624982 -0.08471014291413925 0.4476928938622671) (0.1056331452910328 -0.1164358013469217 -7.731089461451049) (-0.01643480456307276 0.05661328715844648 -4.741324644338154) (0.01052339544627395 0.01275053100124811 0.03355404199807337) (-0.08541028717824062 -0.4592434396939264 -0.01751074482794403) (0.02406341763646414 0.03056774496751283 0.01941275842461673) (0.02274767879305387 0.002419605302381726 -0.0006767960982430954) (0.002051048031063462 -0.01857748997507729 -0.02694790689675545) (-0.003527586806652091 -0.00347535983126915 0.008658187351356013) (-0.02828638730055254 0.004680219537069842 -6.139536782103888) (0.1175242778001596 -0.008015296834756434 0.020115269728654) (0.03530018932322691 0.04200539279235552 -6.3216572751416) (6.716973313819817 5.044032451453981 -5.633690313019493) (0.02301785803941716 -0.003501100866271633 0.01082997641514065) (1.670948663303629 0.6697427197336181 -0.2369268227517568) (1.447554261301172 0.247505668673425 -0.5557731006623315) (0.318757880138302 -0.08887935884102893 -0.1933432906025481) (4.648487388966195 1.137988680831688 -32.38900452177082) (-0.2637916699551547 -0.1134109334002418 0.07254300397158099) (1.445859778594251 -1.490278790181254 -0.8334458246682577) (-0.2314806417196708 -0.3094379790475623 1.13668235079769) (0.01626514590871114 0.0006496156122054097 0.04384848717663156) (1.055493810699845 -0.2972347763198102 -0.7423457198498603) (0.3363549949221153 0.7595243497616473 0.1624468955762312) (-0.2266618211926569 -0.7880941399494094 -12.99308432156547) (0.4237935750409695 0.6472492599533859 -17.67061954182135) (-3.229967109449514 1.10687289241732 -0.2757090197163335) (-0.2798161933962635 -1.458498574322142 -3.114196354318656) (0.6942586338410577 0.5286148733946567 -2.022288760082831) (-1.425692495004543 1.129237249399939 -2.261727898807727) (-0.9526471516699767 0.0311464268023751 -1.344106822931554) (-0.185556103688496 0.5636697157106544 0.12320889686467) (0.1140464947182339 0.04997555776174235 -0.001230833117868802) (0.06938062116902702 0.2026227653757193 0.3189913832539098) (0.3307599516489346 0.06058021008734626 0.0377113508447495) (0.06983319754367001 -0.0618652366127844 -0.06237354346404705) (-0.1406062671156341 -0.377142841820501 -0.5638588746348165) (0.07813667996618401 -0.05526148110116706 -0.151994909440701) (0.09975849318364842 0.05707451725543735 0.03295153618955791) (0.1347685114346663 -0.03958058422730398 0.1830806180935974) (-0.2552808688995798 -0.2052043778430078 0.07246395091999286) (-1.377010073068788 -0.005405952187389929 -1.24564622392987) (-0.9013551237216404 0.3875319238097149 0.5709686534393943) (-0.2117950658921397 -0.03935473549117197 -0.1075853557616091) (-1.883520993008874 0.06631451052801043 0.9137678005625162) (4.324345453655143 3.951991700292397 1.314146302106658) (0.3333148825366159 -0.09243539908945005 0.1488111364246133) (0.3833444376199929 -0.03436629915614813 -0.1489045438354677) (-0.1437876977240234 0.1267528565070626 -0.3502010478234129) (-0.08218625531337587 0.2631418286746408 2.805439187418493) (0.2110437633960481 0.1038612297538072 0.07327820157791554) (-0.05368636324268223 -0.03170704222619011 -0.06776951351028011) (0.6636401348107679 -0.012205465335141 0.2454190159701638) (-0.6354068913695202 -0.3704650242803633 -1.105881471647681) (-1.69855029775704 4.041627203112192 0.40601049616466) (0.4021166239188112 75.50230729264669 4.280162615408813) (-1.176182600977077 0.01879290929980088 -0.3985377285377844) (-4.987384077027893 8.545416145995937 -7.228843120158254) (-0.9769175227331872 0.6812162215339634 -0.02111930346439242) (0.8132555667906065 1.120882099071544 -0.3887314129173222) (-1.905816944142757 2.061038939069069 1.321670052644274) (-1.404279155053405 -1.596332086039877 0.5718418778746943) (-1.684479560071994 1.224974435424599 -0.6174081446619535) (-0.426441958805142 0.3687454487021672 -0.2035510329449344) (1.807598413975121 0.02255938428911938 0.4524472244066409) (-12.33655991812559 88.79615691509035 -3.029713463892168) (0.3495169647404722 -1.507716141674271 0.5079746977407603) (-2.611935688194691 -1.945140313722411 3.114452225087116) (0.06964979761910733 -0.3147560878411922 -0.6811346776729248) (-0.3297778710895538 -1.911243932225516 0.8192102139068196) (-4.582969793794151 -0.5896773589994542 -3.03254382690923) (-0.1461213489514169 2.046961857251708 0.3796365515369471) (-0.2577481803053244 0.637473090056342 -1.324973779634245) (0.756763319564724 -0.6771915610329429 -1.790006123215349) (-1.035101720666842 -1.83072256082385 -0.9122598192295732) (1.261581052126563 -0.6764225484953456 0.3803036210027489) (-0.1679893052505242 -0.524494621342775 -0.2208664901570049) (1.23055701583173 -0.4519951052807764 0.1665000743631971) (3.681679696201592 2.297320814101105 -27.372552164169) (-0.005152476706339618 0.008604426487163556 0.006168277537900498) (-0.0003809548993607423 -0.006207787396699561 -0.004842361835834099) (0.4389374306218974 -2.016645160775983 -30.09414822235151) (0.02814584769678755 0.007969659123324185 0.00800521096897434) (-0.178297290536971 -3.603387551599399 2.02521318812732) (0.15622117983275 -9.39322228772423 1.990320297381278) (-0.552020475956007 0.09318316956438781 -0.05050838551302682) (-1.40166771877814 -12.24784073178985 0.6631588716409579) (0.2152454470271283 -10.13459665253696 -5.002837292780058) (2.574394648498489 -4.214888169249263 -4.335495311603318) (-6.851708330997136 -2.258479081191234 -3.963457972167464) (-0.0108405186746116 -0.02446504924843863 0.02222138525148868) (0.01613016976852368 0.008074861887656971 -0.04198565590886934) (0.08958944690106183 -0.009009811023148816 -0.03595631966657307) (0.01701828681180523 0.03802301938629155 -5.287573704820846) (-0.5579406628598645 0.4051629166477193 0.07546685228820491) (-0.1788853536380274 -0.02086281405936478 0.08978938166325959) (0.2358183914465389 -0.9190399264976327 -0.06462294410470476) (2.97422802297169 -4.919528138719294 -3.799918126844551) (0.006921937700475042 -0.5233686368910441 -0.1353104799923743) (1.999557860700406 1.152706283268689 -1.401414910063416) (1.975987609733209 -17.18137918275665 -5.533158771408656) (0.2364148241973751 -0.3457242378281698 0.5207994825841499) (0.05788905234542486 0.177777782399331 0.1133780401455862) (0.02913076938608855 -0.1800038480928613 -0.2011087111090773) (1.247053202309617 -1.233003220495934 0.3647699127317019) (-0.2667361029077452 -0.2302538718146377 -0.538392220790482) (-0.1441779568515348 -0.2649718795050168 -0.114716253954984) (-0.4862366811374549 0.5748722143449112 0.05256131961383853) (-0.8038250279216432 0.1361023767395528 -0.1460164225740419) (0.1237312351830397 -0.0685072505656531 -0.02223979849456882) (0.07528587012855548 0.4404464464795458 0.3045815818691214) (-0.3403831909648076 -2.763250374115112 -1.389463980359238) (-0.02540482940756573 -0.02757916285338874 0.05641684075294436) (-1.675977821881856 -0.5240024461413051 3.00087339941229) (-0.3354716512925696 1.338138238889668 -0.2976945477340523) (0.2778378495216171 -0.2099471811512557 0.7501461052157059) (1.873686021743399 1.711342427149908 0.1373544186713369) (1.115013231812056 1.230255913258157 -0.4014766618713692) (0.3783664085573264 0.4066455179860031 0.6199613997083417) (0.6191042767872623 0.09661163688200861 0.4673217249879288) (-2.101728373552542 6.205557540019489 -2.202963680459973) (1.497469919903919 0.9642722285061638 -1.158096275163991) (0.8105772038635919 7.387517933318801 0.892165161384388) (-1.3692602832612 0.5732464131391269 -1.79621786287786) (-2.82872294748056 1.417032941317528 1.464715494169103) (-1.494922387991274 1.993389716774435 -0.5902308338031073) (-0.8361827949842964 0.4045596272273281 0.3412526726755766) (0.07219907461647342 -0.405869213214394 -0.4719610292054973) (1.412685207912183 0.6892173434294153 0.03525713065578867) (-0.8656052518213502 0.5562250064844546 0.7879672768095946) (-0.7383366365621529 0.2301903802771259 -0.2310374939084446) (0.7587097455024564 -0.2994680055191767 0.4569206852164793) (-0.006620696449385847 0.02369897835419017 -0.06040012556653834) (-3.992060907356101 38.95140966619467 -4.046009220277766) (-0.5925743165428325 -0.299397648798726 0.01072092389740609) (-2.196108877636602 2.571872622375992 -0.2026110471049675) (0.006351703189925229 0.3180093376747136 -0.3323155791277542) (-0.1590944506358052 -5.390509380710091 -4.162202094717012) (-0.7688812835728942 0.02923075495391569 -0.06258360378871243) (-1.085349341289339 1.730787770054479 -0.09631746263789512) (3.295186113158317 2.648802234811732 6.839379713933377) (-9.964673552256725 -3.326859778463189 -0.3264879817597723) (-0.02871492269915699 -19.25915623511922 -12.30407040365203) (-5.848388038519541 2.334238234778722 20.76829238013715) (0.02915866683961866 -0.01640547855076968 -0.1517867489907151) (-2.606946457580944 6.549038426706571 4.848811833479037) (-0.2555040961680367 18.17372499448746 -3.881816808348226) (-0.997786423526269 1.146337315327046 -1.074442164861142) (-2.400339506257207 -0.3836119683259409 -4.05818826429347) (-10.13781691676637 10.35947600473799 -4.431331887280042) (-0.005271106898678206 -0.01963415231144051 -0.04163034448167628) (-0.07509027436155573 0.05835350286095124 -0.01446128420274545) (0.3880557503266961 -0.1149523206918596 -0.182675624096914) (0.2229190906120452 -0.03581551729116592 -0.06305754552731432) (-0.5783624484305538 0.9112962201692243 -2.202280531201977) (-0.8135870430737661 -0.1608757265067084 0.04805233561326572) (-0.1753006326709728 -0.1078101726735138 0.00460246108399389) (1.477732693388167 -0.2606340358604792 -3.368114527729889) (9.584662686494569 3.653201816467295 -3.293231857843257) (3.477473979110231 23.77400124924517 -15.59986164667994) (0.05111584037890596 -0.05352683669398833 0.1269347260982963) (17.10333184804426 -5.223012577750826 9.749704714211694) (-0.8123953708714475 0.5581671243499732 -0.7596510499795061) (1.17967186386083 -3.613375801682236 -4.093778863943355) (-3.510077782168711 0.5065110815116247 2.968713688772417) (2.694876605292903 -3.804217084364953 -39.16575985393441) (3.462745672994516 -2.654503085066679 -33.36827879252511) (11.49185041428058 -1.639933336132108 -0.2674078873279473) (2.315916995630079 3.444043591738135 2.864248212628089) (3.586630203654171 -3.433989359627594 1.014818685170092) (-0.8778124570386522 -5.856294036789884 -0.5465801357074945) (-0.5529630871428761 -2.236310160779071 -3.755487683537405) (3.726151783572174 -5.209381151373467 -3.889081688222194) (-0.09956883406532924 -1.988136089870804 -1.010541723262846) (-0.2047225847799882 -0.1427878720947495 0.09826644432157899) (-0.6201059964765414 0.2200132213219437 -0.2322907614205818) (0.009028637040018942 -0.09173482285335435 0.2978174204564538) (-1.010102536289999 0.008437696877166459 -13.04593502591746) (-0.2345672991953641 -0.007758975780567529 0.06732716065511866) (0.1798933704580071 0.1629756465561317 -0.2763176181368506) (-0.08185443776305011 0.1562459026468544 -12.45516981017551) (-0.1446121880472061 0.3788542467382118 0.02995327999819228) (-0.3632246110397795 0.06260740135354319 0.04033761214041716) (0.6534834854670594 -0.09032410803246418 -0.03229023498947041) (-0.4460724784993366 -3.790050304188772 -1.466562348927597) (-0.9196239046488092 0.03485144950080413 -2.160167939724429) (-0.7680798221543077 -0.5860866095330082 -1.243628155051336) (-1.903825511331086 3.94597790026086 -3.611319481351675) (-0.6856668625794538 0.2004240829581131 -1.894778181508661) (-0.7473365087904627 -2.251111687174459 -4.530155952090421) (2.182902177165145 -3.979622409538534 -1.544807525311412) (-0.3076405895455707 -5.899876100448001 1.326984973487987) (1.080459187963001 16.33588050766826 6.365794595793486) (0.9831937243636094 -5.783906972676584 -5.697911622641698) (-0.8491309363828633 -0.6139805697614124 -1.729574175833891) (-9.092281379587748 -6.847979670173261 -3.13312930763426) (-0.1119221963382763 0.1439513697348607 0.4841194246911421) (1.857848440761937 0.7967406702749873 0.03617384684663227) (0.005290599912696613 -0.0167422946596272 0.01302337673594414) (-4.91779355929778 -4.520316680759182 2.021014786620727) (-2.72204302549146 1.428060933520471 -0.2543881618006515) (0.1817333337150251 -1.504411290313167 -1.257371623551678) (-3.422956233039641 -0.04789851414767415 0.4906467280575387) (1.279887336799732 0.6813095181100901 0.3060929987409742) (-0.03113847642410643 -0.1568234658712372 -0.1859933726016297) (-0.01272672997766839 0.5429157973413186 0.3522244431571152) (-2.023019524026254 5.557406938261874 0.3766841744422039) (1.76001717426748 -0.2646153563135009 0.1853344350708748) (1.65641657150483 -0.6814738488251686 -1.423383087066211) (0.1588413408801355 0.1227555563840952 0.2026604206095332) (0.1190875371819787 -0.007799678849891654 0.02122507630691275) (-0.1102145005835491 0.04878090569607099 0.264595110054811) (-0.1136078873295213 -0.07938028598197316 -0.1301381892399526) (0.0671975198598143 -0.01460250261594645 -0.03213192258674931) (-0.08003246076277823 -0.07092974271023884 -0.02940775922149652) (0.004544637219901164 0.001056399032072202 0.06734419765197017) (1.476628933217145 0.135870334302759 0.5615521332775875) (3.309769808399404 4.174280138092898 -1.568439032211119) (-2.453299496751405 -2.412035144108776 1.902117082768875) (-0.5468574589523183 0.00116406016388923 0.223174982037196) (-1.035582331317339 0.4212200245352697 -0.2148245336128497) (-0.9588251326767624 1.489388446836332 0.5920209204996447) (0.3811024153487046 3.764168253260107 1.736064178242705) (1.608052861729677 1.12355523277958 -1.623313483848667) (1.902395052021517 -2.125679029285187 0.1388921361139701) (-0.1512143388280951 0.3661052688542534 -0.3665411831827967) (12.3592282666377 15.39351332836729 8.09796545321214) (-0.4370662280942227 0.2068503951328872 1.290707547831915) (0.06991214727287863 -0.01094814316863083 0.03910505768362459) (-0.05362706838930092 -0.1362314345995205 -0.1012767486825181) (-0.002192364188208128 -0.1208988243804432 -0.02521766913112866) (0.1164617595094661 0.1751955934012815 -0.1367233966917899) (-0.007553590309654377 -0.0590985416855468 0.04576441622142306) (0.02974290567532542 0.004647583422264748 0.03647666073014021) (-0.0569797015553558 -0.08219245331846015 -0.06213984323436778) (0.02384701391719917 -0.04914890161309631 0.008439896665822719) (-4.685841451492487 -7.348496518188404 -4.457440275256817) (0.09971439205794538 0.03400118273700597 0.04398290037053876) (0.07990743205949516 0.05719362810038219 -0.05470927431740742) (0.03558903356210118 -0.0283240193903225 0.03540412131019487) (0.6157574315806553 -6.408825121335822 -1.144148954784567) (1.460930901945169 -1.051006478889861 0.8249942713157684) (0.01961309674281949 -0.02110167418398887 -0.02915628111434789) (0.6314020880140301 -0.1666428737774349 -0.6388587230172369) (-1.934826449598287 2.241636798123183 -8.63929694668534) (-0.09967556478767564 -0.02745353487410781 -0.02160691558883044) (-0.04618245242222991 -0.02902644666282616 0.04928341202349333) (-3.660737377746152 -7.406774446909195 -5.608646005144246) (1.292037235101395 6.701112897310006 -1.022340739909701) (0.03067530194501505 0.04459920029689296 0.01389035528475518) (-0.008957172649301071 0.0289897801191413 0.05238694549362742) (-2.289958141935394 2.833522845291425 -9.184584986541939) (0.1315655592376289 0.05475758682972465 -0.0660745023099136) (-0.3759432122962476 -1.533352538650142 -1.962183211438644) (-0.009056541700324661 0.2602323695798542 -0.1010663645156625) (-1.308481684852532 1.577104976949118 -2.366008548594694) (-0.06312233244468433 0.08958549358059023 0.03535141681631881) (0.02239202731532797 -0.01833315673144535 -0.0156288869198073) (-0.008995105387838681 0.04591963652454205 -0.003540191861849486) (-2.088644554994977 -4.661452744666109 -2.176112277411266) (0.007777165738860274 0.1232069589279657 -0.1962827877751756) (-0.04449153672475799 0.04194227114469938 -0.04180660946965245) (0.05026124352801702 -0.06537800124946397 -0.003474431433320539) (0.2988658471421872 -0.1105269279769308 0.438510329917037) (-1.064937591012467 0.2416019153896907 -0.7431266325530469) (1.287500815701165 -1.339959972296069 0.3494750600099582) (0.06896312677680559 0.006897638255199927 -0.02914316521580192) (0.00984850206576968 -0.01433380152684504 0.005306779866655457) (1.988624777622838 -8.328282545323853 -3.651498804898187) (-3.503845885966737 -32.03181137187303 -11.89954691453659) (-0.02969466641821778 -0.03359738759920157 -4.678955592791535) (-0.06193206951994248 0.01648260872672499 0.09459047479863905) (-2.786625033529111 -55.29834700668274 -14.42175558261745) (0.2921343356145201 0.5591578513569488 -0.4179785595825061) (-0.007709962726444235 -0.04489327103807386 -0.03718799099542807) (-2.00808978975941 -0.5061613484651279 0.09050674257946578) (0.2761248984938432 1.04006787520713 0.5145936580081654) (-0.1227594265973544 0.003528066871978843 -0.01422782656121168) (0.1776819541332578 -0.181772921040506 -0.3471290497838717) (0.255168936501495 0.1179429362422231 -5.328662199343494) (0.2761903230212402 2.046279268684521 -1.440098813946123) (-0.04483267042053803 -0.05212919469876126 0.2388580019730165) (0.004494429100384579 -0.01548412382150769 -0.006967516236935031) (-0.1876231797115534 0.06170638441965476 -0.01781536463156312) (0.1613339054475199 -0.4668188456007384 0.01111931365993121) (-0.001643364425941798 0.006196959123052828 -4.840310309841261) (-0.1270271504176076 -0.1253802944943127 -0.1292147902621628) (-0.01239485709415122 -0.0108113962451438 -5.01709827340262) (0.01461417199033374 -0.02629289586773273 -0.06773887700560044) (-0.006565038447222688 -0.004407737505373733 -6.260481681370778e-05) (-0.007203902267728449 -0.02897894617869423 -0.02136129510454679) (0.0366855547480166 0.006338489249148161 -0.03311514554793921) (0.006888761736827946 -0.01748495249950859 -0.05135310447072983) (-0.0007658448447258239 -0.01430388430379383 -3.735898325887316) (0.2979748287908756 -0.2624171529447499 0.1502368952120824) (-0.05733633496535286 0.0078173408157651 -0.1275476756855226) (-0.001033411359435954 0.001027253546471211 -0.0005659617645273965) (0.808608190851959 12.82497719838632 -1.061017977360016) (-0.07729878093917332 -0.002073374163203325 0.009405904563819239) (-0.3348389669530934 0.104276846825716 0.2637945016854323) (-0.33241033532176 0.1640701437170772 0.02565696093504871) (-0.4150844887859894 -0.1132774110144446 -0.138809261137453) (3.638642660145534 0.3703322839483191 -4.219683595022258) (-0.3144642426227675 -0.01163952081674494 0.1415712848625321) (-0.5467867172295624 -4.086819827435249 -2.216677749846971) (7.9634739808885 3.020960193217428 -10.61507807184467) (5.137235910494125 5.388001183644687 -7.660418087809976) (-4.326334453506565 5.277350821031983 0.03563122055384804) (2.386695724786374 45.87354874021878 -9.876079369108806) (0.08998721643173629 -0.3460348898349221 1.031682760813359) (3.050911608514491 -2.476778021750321 -5.5025157074893) (3.972128065602113 5.499478216704296 -1.20792005736141) (0.01879734794286339 0.04571680562059748 0.0333468791963638) (0.1522351916409774 0.1130022278676599 0.1437216539449344) (-1.325418284166936 0.3304021108877642 -1.28258753362628) (1.016065333548839 39.38553045123501 8.186662818848442) (0.1956131201585855 -0.05745435956212433 -0.008501477702896422) (-1.518543094279867 31.04225652657737 -13.8431294583976) (-0.0583584654954354 0.01811862334948673 -0.03708345698664889) (0.04684072763380367 0.03518018517591774 -0.03491376746398663) (-0.123922682564408 37.2166668877063 3.095805971683385) (-0.4212720802965069 2.090514827191571 -2.658772887837139) (0.9738642112449065 5.282844699673589 -3.542032061443581) (4.060602144529367 0.4940596154725232 -39.67206585286588) (4.313630765672317 -0.5685856275267592 -5.037280615167582) (0.1835462019965188 45.25950487765726 -2.438575916007789) (4.799184117940872 5.832590482604383 7.966689598653681) (-0.02462679621110797 0.01431165897290325 -0.03942781469377117) (0.07893300105163252 -0.07093703730984083 0.02683931459687) (0.007885588652596212 -0.02773352279131884 0.05010854779378152) (0.04624777675140902 0.01091125279837334 -0.01214647320525714) (-0.3001205178415581 -0.1529898526709275 0.123364484764736) (-0.001061397174074101 -0.02099172627439323 0.007087782426959996) (-0.1884318488308845 -0.05015396298200003 0.05013482674624807) (-1.406874584305446 -1.046114100369388 -1.115260654342102) (-0.2886401802017231 -0.003626094670221937 -0.1023123931451432) (0.00296345752836508 -0.001111671000361096 0.002657910690439884) (0.02821358426442285 -0.07682121357159258 -0.02544889326447105) (0.01480988633042597 -0.09475266700621408 -0.1802441771053388) (0.004877836496478442 0.06202864281199706 0.01215256732305916) (-0.05433539831486525 -0.1263046975954207 0.1854832403741928) (0.02477851197640862 0.03382774474252957 0.04772548536118898) (0.06929039413420367 0.02281092116327673 0.02670088512084347) (0.1431894135363657 -0.2413703361597381 -0.8110543748800227) (-0.4363301521037892 0.3919126536502503 -9.951981329508985) (0.1023255087039766 -0.1227828453504835 0.04069307798858918) (0.002545604796072353 0.005069496598581614 -0.00639434945102233) (0.111161893681136 -0.1814400168296591 0.2056243432512436) (-0.08885532056727387 0.01385029938176845 -0.02570318813570283) (-0.384970811418042 -0.02911605315901747 -0.04630775957578039) (-0.2084182488639181 -0.3103404046879306 0.2043599194321151) (-0.6687190816745548 0.09794357339689252 -0.4197868612016507) (-0.08290478922595669 -0.1437615168964066 0.1761162794697877) (-0.7239562554847541 0.076069011188203 0.1830173036174784) (0.006596516103663009 -0.01592817616013575 -0.04894844067055711) (0.2423972355076855 0.2684755396307548 0.05372860098296869) (-0.2523249173489024 -0.1746598815291817 0.1693965610619091) (-1.20706573167174 0.7928537748516824 -3.173337686422454) (-0.613525559923881 -0.05683889241907563 0.0643002967336522) (0.09997157114200732 0.001255130189581652 -0.02133227214634118) (-0.2040620575217973 -0.03642097942546609 -0.181111589736755) (-0.06650036047358701 -0.05131628206471298 0.03062143365387256) (-0.7867180352939787 -0.7183758882129962 1.176780067153215) (-0.4281482692298586 1.365032678957429 -0.2648216935378077) (-5.37971044581751 1.408116140990894 -3.945062868669579) (-0.2348290253863283 1.211177605213526 -1.067129034619868) (0.1504169826774664 2.252139824843816 1.31251007176243) (-1.062780720976342 -0.371058498189631 -2.433916999304319) (0.09284899728808203 0.01296679185846638 0.008266996633556482) (-4.75089070908924 -0.4111161035917614 -6.775263202081022) (3.03057645321218 5.974623644217455 -6.557249997878196) (2.393834449931494 3.881346601602524 4.232426437811561) (0.4780705026104319 0.753782367134941 -1.630685017951286) (1.449158161808417 0.6536276914554349 -4.214595587923363) (0.4698445364158084 -0.2120771558502891 0.07066731253534006) (-0.2019599735080354 -0.09014738567242492 -0.7208270527699917) (0.2816878689921002 -2.10591582600146 -0.8100365621316138) (4.964025266017838 1.709558407473768 -11.89329569779581) (-2.49460377400808 -0.5512352642747895 0.3671755422924261) (6.643648615936893 1.586254177079287 -5.413976225103427) (-2.581673968700601 0.6765054852908898 -0.3834837084100524) (-18.42040468725309 -1.294629524515591 8.757442385717379) (-13.19940899778485 21.02919699956254 -0.00309494513997155) (0.1589866622189697 -1.540193264356533 -3.069234648879077) (-3.301592070860364 -33.35549193689631 -3.612593185948317) (2.465772728788545 -28.58799439225596 -2.137721107546958) (-1.421123583180664 -34.23862138231477 0.412974714112615) (1.580756280060476 -8.180433066931613 0.1562731888423719) (-1.519145858445254 11.05909584938883 3.972632373652789) (-3.65125567483379 -3.086670507198245 -1.527925316742032) (5.019590793551747 -2.555780280535747 0.7290669151800262) (1.010946659328588 11.34336132126218 -3.090746117065415) (-6.936965960297513 -0.8199186561115304 0.6819332790934881) (1.829382256636558 -0.683312775343129 -0.3042129114435499) (3.522918959264322 106.9010543883135 -13.2790206495766) (3.343157985746476 45.33301804855679 -8.24186186160963) (0.6645188888885218 0.8184185659497429 4.069279198276396) (-14.92325625725153 4.9608833777153 -3.576851753842092) (2.621375939662133 -0.2012977796807176 -4.718976397121668) (0.5251080786683633 -0.5180180886192027 -0.6954743117374838) (-0.7242098185477831 -2.539946264252157 -3.610511062848619) (-0.794958248070143 5.998346610193255 2.808946792606878) (-3.312006915134777 44.48650726748805 -1.569414866611434) (2.540541942346858 -2.31604933950146 0.9874330229856458) (-3.683074791178587 2.612844953140448 1.421931864611127) (2.851041162600906 8.043421529150709 0.8455206968904139) (1.152081334221779 -0.1166739535291639 0.07194573186709349) (4.416524457478105 -0.2951989530292685 0.7474585306562963) (1.765970816059159 1.730124478331267 0.6250490127655179) (-0.009181361353672906 -0.3154577758307731 -0.01781419720742811) (0.7501971030326371 -0.9378040398464005 -2.079293682258043) (-4.919043416563103 0.5438023442065252 2.340279150175207) (0.6990880592338996 -4.206775512228651 -3.109760750806542) (-3.601834411863014 10.36056156959776 -0.3798093071253659) (2.577799509215386 0.5402216136103162 1.324239163179914) (-1.351338972974767 0.0382505617531339 1.187198084213557) (0.004286274006619822 -0.1303321618621502 -0.3597823306030502) (-0.05076831082470001 -0.3955822673495329 0.1632807075081205) (0.8807615973925407 -0.6173493552205671 0.1090445486511967) (0.2690886069423473 -0.2515496783398124 0.2425955087719434) (-0.00502014533635374 -0.01385389388202644 0.03271298101976724) (0.2064939033941826 -1.210011266863253 1.894497523211562) (-1.487788784477347 35.22902181195146 1.199827855057298) (-0.07954226500282541 2.114650883887413 -0.2807256601036177) (-0.7109702757989647 1.164330727975969 -0.4712496948628872) (1.316590593285714 -2.010554078742224 5.077386538811446) (-0.3367533254968802 -3.682024926236311 -3.891926428808752) (-1.149833013286386 0.2079741797697092 -0.4147418866837059) (0.3467455836923682 3.932253355716278 -2.103695362036472) (0.5448488043984303 1.02580477457381 -0.6026279108520786) (-3.330020894403878 -0.8143804365434077 0.469906321238879) (-0.01626097559942214 0.004262030048968492 0.007819394851640796) (5.894452281577435 -5.294756436123897 -9.798042129001672) (1.742812273742495 0.3653129853452354 -1.106560366193007) (-0.3385078206480292 0.2020626667344456 -3.190962756264073) (0.3092528118341586 1.975418539413301 -3.004576056213118) (1.319435619113024 0.003703120122817427 -8.130577333845341) (-0.1132298035386781 -0.03438942841133778 -0.1828024891027917) (0.0564873470975403 -0.0400066965961996 -0.2578757970231098) (-0.05113520541637413 0.0003466993336020277 -0.02119503915546286) (-0.6440762914692679 -32.61087999005156 -1.945056634070302) (0.04037490906908839 0.05835627143056138 -0.2223611494335175) (0.2190062064544724 -0.049891067241729 -0.5154562455023093) (1.23272236873483 -0.120545159017467 -0.1586799215686104) (-0.4177910275134762 2.861394484943805 -5.641303059491893) (3.582994798505671 2.151120478820615 -0.6228708575329346) (-0.7478434095310116 -2.043487824407701 0.4307722361741925) (0.3417479667250829 -1.654753182298341 0.4839276421143696) (0.01234431826937765 -5.030727170191705 -5.810217161904569) (0.3445047473052565 -7.465043753192578 -2.840479920977914) (0.1218507690941984 0.0108953162969818 -0.07512508128738152) (-3.470306184651344 -0.3810872327181052 0.9226151642725464) (-0.4808179467892054 -0.8447567626994741 -0.3523475081142444) (1.535425770522872 2.177838716587575 -0.3543104980755846) (5.954495949152562 8.913188829800648 8.277367248637301) (-3.858694278036879 -10.25423178792092 -8.134995959364399) (0.7990017791414196 -3.566211140594069 2.41521033928616) (-2.353380880690803 -49.30765542217597 -2.705916036491264) (2.539471087797774 3.081186318968471 -5.843042371536891) (3.894111163981041 -58.16623887292844 -4.451320604390454) (-0.9138354169543828 -3.555215941333806 -50.78303692933265) (1.083336159857205 -4.222364009768004 -0.9569140175357205) (-2.582367455939964 -7.610573113262298 3.608759551570345) (-4.255463787489676 2.854157890230374 0.1649709573610173) (-2.365777164558045 -2.718840394631091 -6.80441110732564) (-2.172742287997952 0.7230971082451967 -3.509152779965191) (-1.403820697604637 -32.17055946500236 1.724059598918115) (1.793422925513581 -0.2380465155864445 -6.617109071495443) (3.302162632184085 -42.3947686308908 -5.508677138463302) (-0.5342247537951204 -0.6112700788902203 -8.373208052813803) (-0.3713800920519293 0.08186051791871132 0.01791896889665229) (1.873631782830546 -4.9853395094408 -1.283307073335378) (-0.3691990901666892 -0.1314053441708628 -0.4536884962553899) (0.485202406413565 0.1958125431874863 -0.1977998158325078) (1.467164391284568 -7.059901344871728 -2.028175026811294) (0.2997142476159132 1.637314158655121 -1.107887762107352) (8.859492300127876 -52.2814124261539 6.208164547692944) (-0.01636182506085854 0.005498543030349217 0.05806096013208362) (-0.729960621034457 -59.8927081195503 1.029015552248066) (-1.767678472300894 -60.78738089346589 1.31951378244925) (0.008602389713635916 -0.7895536368633965 -0.1789484107936634) (-0.2083034537413606 -30.89692786400901 -5.678258504475501) (-0.9559184925168651 -4.520579950950089 -3.006808571023722) (-4.882025029501095 -11.9296241998975 -11.02105381389907) (2.651762295452945 -0.3695534450404305 -3.197726562686526) (3.01857170453305 13.58062375778272 -4.693098486220067) (3.236068794306028 -73.33007496136588 -12.22022221825653) (-0.8955729512073711 0.2266488474122018 -0.4858367013976789) (0.7553052397316466 -4.648018494330159 -4.236935574236101) (0.06590609290868465 -55.64077460886767 1.129545632924273) (-0.005986543503052347 -0.002853045905378701 0.03301551778998327) (1.206465615725099 -12.22147693720339 0.8892821190302667) (-4.020769172677659 2.535197405401688 0.3209334889766804) (-9.650693040271378 -7.460683856960027 -1.72234470187269) (-7.428563270647989 8.145398132285649 4.687151294674676) (4.964100669651049 1.649668615756404 5.596314895572409) (-1.711986267720856 -5.635899829911117 -7.555675614009671) (1.160694407683398 -8.282662290269892 -0.5993602384716592) (-2.244605868790116 0.7481997080936293 -4.773527371400541) (0.2731796526501178 -0.2814573988981711 -0.5245442330782845) (-4.800806419743788 -5.266430876954338 4.037441097011333) (-1.139902817735374 -3.825399646664244 1.803602072219427) (-0.01976574869794511 -0.03388383706104997 -0.01488076578283099) (0.2795229075967616 -0.277377777475721 -0.08804697644725484) (-0.1726965971647885 0.1930107398076686 0.2342017294213584) (-3.408677322383661 14.70226981801397 -7.489689098449489) (-1.03647133378671 4.41816443497224 -1.052351202662985) (-1.619882108408387 -0.5884615940204783 0.2064263347021351) (-1.328680666763753 1.052995586286036 -8.208326592935054) (-4.18589267296564 3.049979210971252 -8.802973549611082) (0.5618808009917755 0.04104566036778676 0.03266796102494145) (8.351822949132512 1.699089822935179 0.03299242425633686) (-0.08505759664997203 -2.129308642827197 -0.4353726398484836) (-1.423461609771319 2.133168344224829 -3.444751489749329) (0.9517047744985501 0.6406845165040009 -0.1624784126540932) (-0.9601691269172419 1.407128101761653 0.2499058075631809) (-0.585742656428019 -0.3259921685016401 0.5275542948980021) (-0.09101390469434527 -0.2290616349710774 0.0891771147191902) (0.4992695984825654 0.1194391239180839 0.007692969008625417) (0.06332626268417868 -0.0623601692413155 -0.5491139552229023) (-0.4090187983550854 -0.6116649772474764 -0.02293574476066019) (0.06815819707276191 0.0132733443011934 -0.16904610751086) (0.07333068928206515 0.04504735336212967 -0.1190456526355299) (3.094583215726914 -57.28796599595762 -9.351260160949256) (1.882671487831366 -8.730116016453568 0.9893674975858548) (11.077412292799 -99.22549486050615 6.996919737459814) (18.44664109039511 -66.03349345032544 9.374649447796715) (-11.46813090590772 -21.30459882581897 3.24765284796518) (0.283319360143383 18.15984932953259 -13.99659966968694) (-17.98131753036058 56.61632759912599 14.78514772266253) (-0.09135923284884312 -0.03779515816793461 -0.086428766730185) (-0.183092861444356 0.04949055697250723 0.313916181125239) (0.0288074716911942 -0.20247423067688 0.03902133586247304) (0.07915672812041805 -0.1276624181586198 0.2511359494084511) (-0.09389504373759361 0.1709730388579712 0.1365579482632324) (-0.1441938749389895 0.05519077801845017 0.2703500520397439) (-0.05927746067455301 0.04033523939552067 0.1057434112581903) (1.371136517831251 28.31054708885638 -5.309348019629279) (0.06940085470952356 -0.002816730568346568 -2.472929567602636) (-0.3771813491442123 -0.2762613514263436 -0.1396751120238475) (-0.3695508902652883 0.01149022479483289 -0.5085254887723913) (-0.6757587789254369 11.90741715925297 1.147159464366215) (1.931021350853586 25.30645244802456 4.796638957370557) (-2.671054693977342 -31.10637908541025 -0.2593195004794358) (-0.01192084960512218 -0.3619333751635128 0.4079424900143364) (-0.4437283573538002 -27.20399458553171 8.015682157049214) (-0.425634013661784 -0.1975625050022312 0.6906981273026694) (1.265410967919418 2.666003591036086 -4.245197387486806) (1.572977063384666 32.80054013055246 -7.137791006876983) (0.4224695256644958 -0.1006373923522828 -0.0005369124533176846) (2.460565658507987 27.60422045778057 1.256025603830005) (-0.01048752072004744 -0.02862254859710127 0.01628792292298483) (-1.61179730003446 -1.372858295939884 -0.6297473469857603) (3.24325022801079 4.292466978125647 -0.3286138349580342) (0.02534318208397378 0.153521122441033 0.02045789294450834) (1.741708917482784 0.6930869845220863 -1.848268621436286) (-0.390858586760407 -0.1825497467243538 -0.6482470548839984) (-1.830366289513333 -0.5376581028881893 1.568396713406866) (0.1455384327501749 -0.02208595235071572 0.02271302831805943) (-1.526238916598543 -1.461823792245942 -1.626088592458544) (0.01406075810550922 0.01520747501446587 0.002219013638342739) (-0.004904123436618628 0.1819363383605977 0.1018534499897431) (-0.0009699577554031034 -0.01096571016429837 0.003441227854918693) (1.156671924471875 -1.230195485350311 -36.42872879725891) (-0.1253352153693778 2.389697400280716 -8.282335034446799) (-5.293889337715729 5.627104305929077 -1.937638634868703) (-0.003109308570515988 0.01565217723918559 -0.08513079565720121) (-0.9056939340445682 0.218575116177162 -0.5759868627810864) (-3.702628494282222 -11.26176682037783 1.332026149445015) (-0.03983684149264163 0.06373606655515143 -0.05382983547377182) (0.02835105858527119 -0.02504961993726677 -5.302723047807101) (0.3624897065214159 4.023898720961102 -2.421975395424984) (-0.9783784305556285 -0.5050082635547366 -1.414140863332662) (-0.002498252888325898 0.04872232688971156 0.05580597688356161) (0.1156931889145922 0.358875581858781 -0.08938308956325543) (2.196533000421002 -37.02698103251728 4.192836228703474) (0.003342811432716402 0.004529440819411609 -0.0003920070617097439) (-0.0720897316525243 -0.04779532655823877 0.03517254911028986) (0.1171289815293403 -0.1396432741484074 -0.2153312764429627) (0.03764311551767086 0.007357726437146868 0.05321947050579083) (-0.05169711359876589 0.02351011668849999 0.004829586315139078) (-0.05129317972190015 -0.04146286458351792 0.009602157247494809) (-0.003026781434934366 0.005855798524135295 -0.005702324204009739) (1.544114255013999 -4.086562032878121 -6.181143188771101) (0.0282176915191726 0.08981378112052323 -0.07916028847610002) (0.02076618218488499 -0.0687594180362513 -5.484665172399303) (1.12673725305849 -0.3392531791730254 -0.2424394950248256) (0.00968981962741315 0.155403175800521 -5.612183872405668) (-2.38499080320156 -39.50569783505398 -2.748951404866735) (7.669900974782106 13.07287765278772 4.946259004760918) (1.605105536242366 29.23704054249152 10.92993056699106) (1.72210782568801 4.398066501392439 0.5267413359181531) (0.1089200472441211 0.06997198805018288 -0.01032316453259141) (-0.07779122304104136 2.525995800982035 0.600140764459974) (0.6937254544766974 35.37985084090964 3.074850723232178) (-2.6227410921445 0.722887238396531 3.750491828996348) (-0.9345210465901637 6.484372037106857 -1.148970315033435) (1.188141503828406 41.32973336098861 -3.252971771099492) (-3.201549787864303 -5.285718708810331 -8.674664429674182) (4.739438459032018 -1.507732330465833 -45.48992374676747) (0.5413391003180936 -0.3080493661449188 -41.37505318044824) (-0.05556652572619504 0.1048675937455089 -0.01886213034721864) (-1.476010356067821e-05 0.004211146380762239 0.000710178475906988) (0.1929593833511314 -0.1778057606286021 0.04388081372531284) (-0.2342018813997357 0.002969315001554389 -0.3951028318212046) (-1.665614568681882 2.695162891451032 -2.069044637688957) (5.749928166636185 39.32361968084096 -3.211511774566062) (0.6503029401292014 -0.4895412063352128 1.947615792976964) (0.3137896980521219 0.3186015353215677 -0.3050593851271593) (0.1667406795001977 0.1799862411306686 0.1392618810543879) (0.8019047010623521 0.4851787573717343 1.20278317237635) (-1.561986703680386 -0.8594479432147637 -0.2503244334793915) (-0.1612087922646692 -0.01653325541698785 -0.1033117776410888) (-0.1478747778944228 -0.03180048234447853 0.1292328114671874) (0.1185594980519564 1.296743991772752 -17.98065732224697) (0.3870468933733446 0.08831833850649096 0.5419200592681805) (1.148524377915143 0.3938775818489834 -0.419996481922326) (0.06043119103159528 0.01672139851690493 0.07982601628872041) (-0.07709185577443461 0.1329764692950237 0.1238348575991418) (0.8016372804932367 0.2555261406010564 -0.9237677009475813) (-0.1930627414855725 -0.02368871444361403 -0.03918036591834272) (-0.02015891573283025 -0.1162151730460048 0.102337736262619) (0.5193358234993836 -34.56076020083442 1.340819789232559) (0.009420959378551474 -7.456485508597508 1.012599620683588) (0.241272484347236 0.3157504922678517 0.2451358122016547) (-0.3906949078904728 0.01816466828518682 -0.01023715118619317) (-0.2972458896507136 0.168691874337365 0.07691145816274411) (0.0001563197387976631 0.01292686221571584 0.03622869930842822) (2.066122284527144 1.870919624022569 -0.6849083272170851) (-0.1220123457379448 -0.0901186995903108 -0.01467741858234156) (3.196752545597357 2.694992233425442 0.6353394901450814) (0.3158921502161952 -0.4642581169925909 -0.4708059675071111) (0.106959156986117 -0.3534839485255968 -0.002405178130523225) (0.02827813478793873 0.02255602701182322 -0.03439907431902044) (-0.6334577569375867 -3.189896149635489 1.157656525575612) (-0.007768409069058393 0.006666617444263546 0.0004112978893786581) (3.202409196512384 -46.46237465254122 4.972507516772092) (-4.386808422543329 2.555485521119633 -4.136963305128791) (0.006735671308806659 0.0281965828371192 -0.109345182652089) (3.747453552088838 50.1341176676601 -5.245119430394055) (0.2366195227057798 0.5661024393463567 0.7344667282656328) (0.3431236142284601 8.170180129843823 -2.077213914110075) (-10.21118579810666 -27.22266317355689 10.74378723856005) (-0.3139129815612918 -0.003944547904220663 -0.03245076904191072) (0.01812592084925686 0.0211617489893622 -0.07574545740866) (0.003096309439186776 0.006067689007941706 -0.01777741044187658) (-0.05252001200213224 0.0187826004398121 0.03085635296712557) (-0.6114195221041405 0.04589757002600196 -0.2462404617377235) (-5.967001087618249 -5.785756660365916 3.594182597841654) (0.7808453586406111 3.888269704729277 -4.464401467531893) (0.01373051821726155 0.005855233216503468 -4.537985288265533) (0.007481967567125936 3.550057678058273 -4.363090453583713) (0.00606349941209914 0.004823288638784523 0.02034243966060677) (-0.02468666494195625 -0.007091146732529872 0.004330420002622985) (0.01580120680556711 0.09845937965955084 -5.334401445690458) (0.02312420218972373 -0.08395129186424126 0.139066921958973) (-0.007948460828939317 0.02898505737517589 0.005409289070663908) (-0.01128678532948857 -0.01660937365298094 -0.01630629473964358) (-0.03206369582479165 0.003995662645927982 -0.04859039625567987) (0.0346278109209946 0.004074143767961915 -5.40086895859833) (-0.04066282753218022 0.06703070668026501 0.03627441527338503) (-0.04613896536812388 -0.02703106734302154 -4.9067754902992) (-0.02531712310497538 0.08567737885307597 -5.438732574125423) (0.05532083909153027 0.06153688970531768 -5.476896197663387) (0.05105392628922625 0.0596320805504 -4.857094537137134) (0.02583837494896842 -0.007181484348117197 0.08049269426942862) (0.0004460094055784548 -0.02399707547473027 0.07911568288402734) (-0.0128555783162312 -0.004760638006307168 0.002624842363093532) (0.03548369246763509 -0.07096255732568096 -0.04994610527293204) (-0.01017954517367655 0.0005088659074884744 0.003033855261873493) (0.02141920653268543 -0.05388074469496312 -0.04423645785714105) (0.02296036780150598 0.02003157616930691 -5.426386811356977) (-0.006897520138425244 -0.1729562756524684 -5.533933539187162) (0.06685044483831999 -0.01027755181270597 0.006844782325420234) (0.07162080377785227 -0.00254295976494485 -0.2134065239483533) (-0.1462584183621158 -0.01945281004558859 0.03713177507690106) (-0.4229742674677772 0.583506970728128 0.2231557008345383) (-0.005871983174016689 0.000182678852839506 0.04140628682679117) (-0.01587434380232985 -0.03881680796847728 0.002756206045548652) (0.0318171531135521 0.05807032371775407 0.03187334627866479) (0.08153558483231665 1.902898101967811 -0.06835133381553804) (0.1042282858023033 0.5235902167409322 -0.5247094632125623) (-0.0003908307475318719 0.0290914438311238 -0.03755427074266517) (-1.107897083767999 -45.03932414059126 -4.396577357557253) (-1.820601320033201 -2.00915534153587 -3.129737258826192) (-0.04944992430013356 0.07656385294101253 -0.0308965744944132) (2.888292409239554 -4.845380125756929 -1.465124673957342) (1.34415655798656 0.2154502064607154 -0.08385522338987392) (0.02431751405332716 -0.01372266856265906 -0.1748372281165716) (-1.509637499636066 -0.2537059937450044 -1.306449125545818) (-3.335127213112242 5.994634755436249 1.720071834218338) (0.05906045569408646 -0.3225498740992134 -0.1543492166064409) (1.233762838750223 4.101919738040655 3.102707390787292) (-0.8989917446771917 1.608475338862523 -0.07144116664490086) (-1.365809765233172 -0.6897262992104857 0.7102954714464149) (0.6059798235439855 0.2835279513352953 -0.2502914408285412) (0.1308206982120291 -0.007667456910145958 -0.09006846776292618) (-2.666970369675001 13.83623670954245 2.063313467613669) (-0.01254656327761647 -0.0153628554022183 0.003523544768976631) (0.002057485518298296 -0.0906575977599232 -7.424648260381708) (-0.03021663847987009 -0.01225930729542188 0.007411463545781766) (-0.02265002350883834 -0.0555331433630129 -7.579273648763831) (-0.001867995658030366 -0.019383638581378 -7.407211993893502) (0.01339339533215159 -0.03591050173658225 -0.06755728123706287) (-0.0431225648470946 0.06833895520960692 -4.792455717653161) (-0.09588433003852445 -1.09685222890179 -1.153354105292311) (-1.800059037489253 1.650731517401931 -2.592362549713871) (6.109973036808338 37.10837068955367 -2.923866243466681) (0.01517546728582772 -0.007140535181745081 0.002900419217929689) (-0.6338262141098044 -3.757266720150376 -3.381309530902054) (1.465084768243628 14.3003383649882 12.70776912596594) (2.358537897666821 1.703269237097872 -1.755310710893497) (12.68687852210926 -13.64700210108584 -12.86564529000446) (10.90371306967475 9.16135724571707 -20.01038477731403) (3.272197511174343 -19.07053972798603 3.380938700331682) (-2.896640732278312 -16.30584251259722 -9.989951536117488) (-0.6982816927264588 -0.04998153882875589 -0.368926490712555) (-0.3614733693450631 -0.4557040127725834 -8.488619114943425) (-7.276383887295702 -1.477532344132977 0.6139844025301449) (-8.089489938301961 53.61042717360979 -10.07514680046613) (-1.577169355674628 -4.928329679211866 -25.0769757072929) (-9.595335904256602 -21.47026624897479 -11.76541305975389) (1.595512663214407 0.7595540389073404 -3.513626501627492) (4.637636210226972 -0.4996697697260934 -2.95633789888668) (-3.124754801837737 4.199180901556444 -6.507319881494977) (-0.7101561081741141 -1.856474962744984 0.6501980653677368) (0.8951648810970707 2.311536197876439 0.2912335191890607) (0.02233103080287698 0.0105139880219479 -0.007920299841737406) (2.098457832970248 -2.552943739305658 -3.249499873286514) (-4.845493122300548 -47.87464380948067 -4.91866578034457) (-3.247059435707568 34.2470270619295 -4.695854268489454) (-0.6204473903425411 38.35011055577952 -2.406007031515192) (-4.445799199069823 -2.470818379752278 -35.08500096345715) (0.1420961506144612 48.6354462726701 -7.574263835254548) (-3.66949646686277 4.306629905207332 1.924778852130384) (1.362563460910587 -0.05990144608278664 0.2666037490358351) (-0.2075752820020383 0.08538737520752221 -0.1064731855285491) (-0.1658095309688976 -0.04018386614084919 -0.05807068878848638) (0.3707444552148634 9.193294409075735 -1.409264288992095) (0.1117107068582448 0.02930001679738119 0.1067041335448102) (9.121481880004975 6.515414981809707 5.144488790236529) (-0.02165388825318933 0.03278914141376279 -0.01101207924524591) (0.001882430339745229 -0.001268273346582497 0.0006722449873605638) (-2.485892246225962 12.8820393268188 2.475399775708453) (0.5514638992439687 -4.022149499330442 0.05762566405634378) (-0.01170762285101035 -0.002491182665193411 0.004593525418237925) (0.1211227667949938 -1.04033198332409 -1.265462492194222) (0.5621200838350379 -9.467527049245692 24.77253910889683) (0.1816442126390888 0.06342453477451351 0.01442202427616641) (-2.022666927857868 -1.264149922657558 -2.261165227963629) (0.002881607563182187 0.02023643742858742 -6.401116850510351) (0.01204661321688447 0.00486459481512469 -0.001874957429256266) (-5.879093267843675 -12.35557023335947 7.638662520298336) (-2.205351510910139 -9.150812601398801 0.4942512375910177) (-1.612143346848868 -5.61317178150137 -2.042001413010735) (-0.08519068255694906 -0.1247975488574938 -0.1126726341625929) (3.089654212277304 -0.7481848824335913 -26.57699127822202) (0.05668821910032434 -0.05638370263306509 0.004260560866760327) (-0.3492035612871672 4.256083006293495 -2.787289046507363) (4.393640405249654 -60.29359161093413 -3.834418112736905) (-1.75676624588673 -1.777469069644023 -10.58554557329547) (1.422723555158885 0.9405536087589708 0.862428171883747) (-0.179178271780413 -1.643212838021277 -2.418012928751687) (-0.1086523212051717 -0.04664572635280217 0.04811709842312406) (-0.6331017684850448 0.349274507092365 -1.922452714711804) (0.05060459592330961 -0.005450585364499246 0.01341881990898057) (-0.07726004061841157 -0.07051840109822226 0.01763113952389704) (-0.04647104127768635 -0.006879225395326313 -0.04391350734441155) (-0.1742013674533391 -0.0868170525605259 0.03134934445046628) (1.082201505081945 -0.6716912929334722 0.1281240414070113) (-0.5911648259398197 -2.984981163701695 -2.477353091155349) (-0.04953169332832964 -0.08742336838297789 -0.05360735160036659) (-1.621646027205104 -2.341606299153029 12.78865191678933) (2.744609984760471 8.001360776598084 11.14164565154554) (-3.648654944305695 -5.190888592292568 7.58032708453905) (-2.940431844188979 -45.92831495733301 2.601832241771318) (-0.02576661323386717 -0.02597686059252267 0.03085356771412117) (-3.665951911686762 8.135046751412132 -2.331283230939105) (8.160031197274185 66.38164743550141 -4.614299152828) (6.140122692870276 21.07274458088722 -7.510147481524792) (-0.1653325219464774 0.1286635572518306 -0.1060779353833614) (1.630775125829607 -9.622573405770451 0.388173959120259) (-0.02147690514836322 0.2923941772526639 -0.1184077628637151) (-0.1121566619685699 -0.050731066367471 -5.310667673298244) (-0.02064668821948701 -0.3094833090683471 -1.209551088331209) (-0.5894784478350492 -4.242210137649814 -1.438673643314752) (-0.4929121567900282 1.047919806767335 -3.527270985042137) (0.004474084865241063 0.4497509866902045 0.8579096414285449) (2.688754059060175 1.377158449862604 0.7626486060629611) (3.562530383751243 6.177682673487075 -0.6839786857072873) (3.414730903084902 10.90365660272922 2.626794085030727) (-2.332441583056665 13.20226800143169 -0.6694818889484218) (-0.7087298319082154 4.035794444276625 4.330070457305097) (2.712247597421969 -1.175545853378205 -5.551171488739787) (-5.910630348807763 7.133643338965492 3.240519666118438) (0.01535769520234742 0.02758249313500818 -0.07883440841700681) (-2.345263896164248 0.4279721550136599 -2.107532951516988) (0.4108497499534836 -0.1027592012586677 -0.07097365968780574) (0.9695802306250807 -2.047542826140551 -0.6753684827776594) (-0.8796871439717554 -1.124253659585519 1.010406476661306) (0.339957235665138 0.1247983680539811 -1.383655178025273) (2.559682021947866 0.1835816933668202 -0.1925256616923187) (-0.158198498451911 -0.2619065269219201 -0.08161723119194303) (1.478699081910706 -1.195586908069428 -0.1721696727866282) (-0.3313727488789765 -0.3878798061041295 -21.82549457423839) (-0.1813815611863062 -0.2927770791177411 -0.2585810733892696) (-0.494103079606601 -1.639023362390551 1.119290609204445) (-0.03623694645250465 -0.6526658159906804 -15.42604013044419) (-0.015231260007132 -0.01811510472865143 -5.341848415308839) (-1.64982338126256 -0.3352124590411906 -2.572858742190319) (0.3710711894275367 -0.03917877286445587 0.3037409397988969) (0.01562702754452092 -1.163609921603461 0.1277271087682837) (0.1782728523489576 2.506543143008988 3.045449221200295) (0.6833264871543594 0.8502011293844741 -14.77404317356967) (-0.7262511475594704 0.02152237069729106 0.2064703723679249) (-0.9204908557051805 0.8990058078118095 -2.112889631797666) (-0.05486699288042439 -0.07176417742238984 -0.002180000316322082) (-0.2270360660562908 -0.7465853108487732 8.689754812515882e-05) (0.1620778142834959 0.2126305734335577 -0.04351459839606681) (-0.1219961346434853 0.8842434631758304 -1.114895743400463) (1.691412102532561 0.2521447362572384 -2.387597543187519) (0.001634266611057974 0.008395101656310541 -4.636715561263755) (0.6196662710611467 -0.1804645115961391 -0.1929834972418487) (-0.3779805677693178 0.1510286475144124 -23.89799704958257) (2.648869870292681 33.16505960289153 -3.318207300986106) (0.1989364522777586 2.26325017337961 -0.5464127584577265) (-1.989568339738637 1.051024698335966 -0.4576243128721375) (4.778530697149849 12.65641593178457 3.637607279267283) (0.4156369227816131 -0.5240142058018369 -1.081719444378565) (2.451619625847301 0.01814673537314285 -3.218798146787742) (-0.5925629997767504 4.288452240881319 -1.061471772862776) (-2.044109583622188 -44.27176337004672 1.592087879614077) (-0.1064727782970935 0.03792949219336234 -0.2456337144812038) (0.5287184483880805 -7.135719912843737 -7.596255744629467) (0.6836858691582767 -0.9484563273851152 -12.87564968751682) (-0.1614662342043376 0.4258309312386127 0.1819794427564734) (1.452189347720809 -2.18321470394247 -5.027401662758466) (1.216468486935267 4.364273557888888 -32.56458329464354) (0.110038438773624 -0.1544152733229597 -0.1144508633676281) (0.8724421264104878 -0.4727408868805666 0.2149196803850079) (0.8379652839639424 -0.4554614865631272 -0.02518117625018584) (0.001282088148516589 0.1035509399822676 0.01577731615643536) (-0.009595872898162643 0.0001195567851226382 -0.007584219727695282) (-0.8788817440884336 33.33173210094677 -0.2182728470718374) (0.8419032434632285 -0.2905324685738773 -0.2528156667872966) (1.237404979926199 10.97202438598768 3.242173473724367) (-0.03067731493748915 -0.1823836124108656 -0.4693657874753991) (-0.5103299310072491 3.647227218381215 0.2110161400691005) (4.840911373350023 -3.007669985308555 0.04674830032610267) (0.8282703928504542 7.61423441719632 -0.3159421414685921) (0.07319244226948127 0.0806939455616946 -0.09584153243585641) (0.0144733208040546 -0.002044184291725356 -0.003199648956249677) (-0.007359069305244325 0.003169712147133812 0.0004841002004489249) (0.001283349600792422 -0.004257760063074755 -0.0006906175206415658) (-0.1802946417936907 -0.1179605344815461 -0.1156669836969434) (-0.9020399456877688 -3.909706517279207 -3.231201636452532) (-0.1105579847658442 0.04241250734391332 -0.001540588775437286) (0.4899017556539897 0.03397222758361265 0.01819813046728912) (-0.5001040927955438 0.2868013114946885 0.09611605138585519) (-0.4091302289734199 -0.4330297260210836 -0.1802217339742653) (0.11852729217882 -0.0563077108507084 -0.00336919988832539) (0.7054509020495614 -0.3149872881498411 -0.4193065687004681) (0.4778128077501729 -0.05174580967011159 -0.2743394743196162) (-0.0226597777497285 0.006050936609619365 -0.00423058801488459) (-0.01275667304716941 0.004722692125834965 0.00906997705056322) (-0.03314308156408061 0.008381728496747429 0.04372589194319919) (-0.4050969757690503 0.5577473336025671 -0.4127870313701329) (0.153821504272229 -3.79648087560758 2.025105219562829) (-2.027120025781817 -8.060658609585925 0.2085970522878898) (3.377311954042241 -8.799123656343347 -5.666836201080438) (0.004319907569155914 -0.003509343153256762 -0.00502268019155689) (-0.01462945452058019 0.0007856178876584781 0.01452095834866472) (-0.2494808628470283 0.04578985678652638 -0.3774589028893217) (-0.7253706382056834 0.321262089871385 0.9610790780440007) (-0.5354699957237518 0.6724275417577874 0.3097028695038669) (-0.1360184212908179 0.0423953418633705 -0.149960288231577) (-0.1642217846389115 -1.899230994936454 0.8857478388627166) (-4.143907074366812 -11.79542152242927 -47.25448717090633) (0.1930314735963963 -4.930167603956323 -2.715226577576789) (0.009705524182236275 -0.004273261830624507 -0.1846707072267996) (-0.2975675680882116 -2.021765203728712 -0.3671611072920944) (-2.460933994986658 -7.000123626606273 -0.2054737472494228) (0.2246253824492534 -0.005920489240941768 -0.1688814708669775) (0.6516175067503628 28.45011066504857 0.5787148485710671) (-1.897046206656337 3.79645726615139 -0.2342207970903343) (0.9528810739952476 7.367582772848819 -0.6254790460458386) (0.05476198862889625 -0.2332963737187807 0.2119144098779751) (-0.2451308602769122 0.1095337647266655 -0.1165325599952817) (0.1909675289181502 0.4470020300090821 0.224574533070382) (-0.006328987624538577 0.004138258775524304 -4.469282478855997) (0.2408405923456752 -0.01815680825555309 -0.1572825492465924) (0.1102709459566499 -0.01462992191009772 0.02532713300834853) (-0.07485714989483883 0.2738172516041602 -0.7210340941270488) (-0.1563327033764224 0.01906988495631173 0.07757370980583281) (0.07936712448025256 0.05506824568580902 0.0114539440219335) (0.09441104470663522 -0.1033859738029025 -0.03015866378217917) (-0.0911030763244248 0.05514352994302903 -0.01812485332348437) (-0.03746459642063749 0.01059692763938545 -0.02418926513694433) (-0.07070822730584768 -0.2419329679108937 -0.07216934319738341) (-0.01439561872336679 -0.04258345914808272 -7.009708607819743) (0.08305839303430285 0.3637613237452836 -0.06031263578339402) (-0.6586786111668557 0.1058354292134552 -0.446085945337526) (0.1329389141428475 -0.02236906660732595 -0.1269911449616829) (0.01909279756960795 -0.04614406203265643 0.04664006570170233) (-2.687041322059065 2.007850185209966 -2.48228336409966) (-0.2016027667350571 0.2211170717520759 -2.165456187595927) (-0.2508376219708371 0.06517046997474045 0.05820031516200456) (0.5140969915008483 0.1231983665711188 0.1655538666427809) (0.1384664877493877 -0.2984574764965234 0.4252483857404936) (0.01988351524198347 -0.07497729308279888 -0.5361755697233507) (0.4493868815607495 -0.1802697376925338 0.06657256465932523) (0.1945265773376342 0.003872336783968634 0.1727808684188695) (-0.7734868115469216 -0.04494806165861837 -0.1938899979830763) (0.2301061066109985 0.1625129241008023 0.2544175103437363) (-0.2240285913945499 0.4374921014038813 -0.8291117496667383) (-5.646921676405378 7.733256173859253 -9.87218617238112) (-0.1089350794786509 5.371312028705934 6.912143165996448) (-0.1329044925253574 33.33538126077149 1.89611346785993) (-3.569002968862064 4.849092939841887 -1.265030694182713) (0.07711107979814601 -0.1230340295826163 0.5090338653914622) (9.576945845147179 -41.62952481043098 -3.874074767171564) (0.09690209144907219 0.08793320403844192 -0.520132049493922) (9.150490234091018 14.0324656363557 -2.240430468957304) (-0.1633146977281532 -0.06768147268790868 -0.4000251647899846) (-0.01544795406954278 0.01019249526838201 -0.02224575922244978) (-2.106538223040052 1.498014287549276 -0.7982435549809594) (-6.2530969683947 1.425844195888641 0.8493176923548327) (-0.04748253275196399 0.0002332452895304109 -0.01439476085508555) (-9.701774993357629 -4.699206231858275 7.997252572801261) (0.7458861929505144 -0.7370355787934164 0.423165018284788) (1.306443515380181 -1.020182923426909 -2.092904672308816) (0.1021850507642525 0.002039200049132326 -0.0138156996606111) (0.1020265574302519 0.009396046396990753 -0.01558699857358169) (0.4007386577279508 1.756539805007068 -26.83747731469174) (-0.004584991322316392 0.01326151208621029 -5.5781066484349) (-0.01091503181478101 0.03697819898150707 -0.03763739266244281) (-0.00955847146325392 -0.02329974491923041 -0.01579262977709692) (0.06410207383070213 -0.04218691432412844 -0.2733251063525692) (-0.06263284799188129 0.01783690528178677 -0.008351425517297503) (0.01617210153848053 0.005949709518546309 -0.02028713755714956) (0.06370036978432081 0.01883223564426223 -0.01157776764614685) (-0.01148141687135434 0.01205653582810267 -0.04515030771935777) (0.07411199787649486 0.002550090124297565 -7.872728768524868) (0.003803553335982385 0.07334904329264051 -0.04069488670168334) (0.01214578542270362 0.02143389760213765 -0.1797891704465872) (0.04697955579002346 0.01808210568816241 -0.00590003124991628) (-0.02045353172450638 0.03169365603423563 -0.05396897901579393) (0.001660825900041698 -0.001109484197877484 -0.002421061365290174) (-0.1016423358604087 -0.02020893429777121 0.02344777769656876) (-0.08915436960193684 -0.008367164034045145 -0.002775173764505489) (0.3775967644523879 -0.04055950788521052 -0.04791981161899254) (0.2467442743576996 -0.1493197605957577 -0.0007538563557331138) (0.1574109010873393 0.03202962709003612 0.03405542299951866) (-0.04743320082240971 0.2070244410596317 -0.003037025150610431) (0.953233776866625 0.3103430943084221 0.235311469578722) (0.1987011248398416 0.293026717234944 0.1608205400652994) (-0.02993032319723463 -0.02262656210899213 -0.02358919920577415) (-0.2139994425557597 0.06142414636690646 -0.5372707298812957) (0.005116717543982758 0.04072551221462218 -0.08704202280502607) (-0.5469571433955319 0.5339132292227271 0.007528637787104142) (-0.3804552910889218 -2.413354498079627 -11.7167466944618) (0.1164310198505414 -0.03834889889580394 -0.01345799581729797) (0.5370239629558109 0.1980391072012084 -0.2428842782191815) (0.1633212673914648 0.09717583841792893 -0.173265780797236) (0.009547571364479285 0.04380378548448771 -0.04779492993620756) (-0.1381052468921194 0.1476309837763715 -0.214550167523916) (0.00104667377789039 -0.001955469493546289 -0.002069667232408257) (0.4353659471969819 0.3240324530340749 -0.2821147847817013) (-0.06817169493221939 -0.1005411378885727 0.02131416897280171) (-0.007745869229708628 0.01996855027007818 0.008500677044801157) (-0.03738063679503028 0.002569735428556314 -0.009354809919348858) (0.06012013558187205 -0.06274045853159071 0.2086671180672902) (0.06426511998286032 -0.0290809302349512 -0.07578158903552788) (-0.2165469704887193 0.07610245189574705 0.1707326953775092) (0.0004905003711946814 0.02725330693632297 0.01264449459832296) (-2.101208853606505 -1.008954893982263 -1.766212484023029) (0.1106425954931867 -0.008281880251568299 -0.004406169481334433) (-1.390535635821173 0.6032326652007881 1.764307215208711) (0.0550456599665274 0.01795190218890449 -0.01689372203104629) (-0.02750379603934263 0.004939102064635893 -0.06391804991740146) (0.006107782231664038 -0.00732791685447659 -0.00505582323356652) (-0.001290908693149233 -0.000679553995144891 -0.0008078038260715317) (0.007041266956700282 0.004141013620879512 -0.01472728684205944) (0.01472494933164295 0.02963978426690388 -0.00119099950531605) (0.528768212186321 0.07139767771186555 -0.06315261171379553) (-1.459171492023254 -4.317183658668066 -37.12008539290592) (0.1107343878944761 0.06751299454320264 -0.04509919250942687) (-0.06694800368764471 -0.09947438093820261 -0.08823547914425778) (0.006343937844091452 -0.01877884960699914 -0.02280629437052726) (-0.01659494924962858 0.07872061977720043 -5.282365515696871) (-0.01369339606469194 -0.05496168649612233 -5.378873637916902) (-0.0002242677289576063 0.07098028579002716 0.06710247563448027) (0.0461195523190318 -0.005019628168687907 0.01095520842102866) (-0.7309204424829377 -0.1182339313770241 -1.042743817858731) (0.03539204026260812 -0.008208993060784889 0.004010535111571427) (-1.287421259778312 13.58087137584128 -0.3403246885144574) (0.02665255583489922 -0.02374934691709447 -0.05418774897669081) (0.8720138609816201 -2.334760453121193 -4.324790108936826) (-3.118985501389631 -5.814373379794895 1.578579861761016) (-0.07424605346570304 0.1781778624614902 -0.3114215373211621) (0.05411315975942949 0.02062447178062237 -0.0139602293940677) (0.1452842619056667 -0.3653280360439181 -0.2961323993323071) (-0.05788358632180941 -0.02199827074972862 0.05139573202463125) (0.06324730690744718 -0.0691372278284061 -0.03730088553997127) (-0.04929373764477322 -0.009920308114696502 -0.05459259445132943) (0.7440188028444988 -0.7607566846429537 0.02949081611734811) (0.02725403001352023 0.1455180023112052 -0.003406950438201897) (-0.03324283621022318 -0.03836802212927046 -0.01679279197985054) (-1.157781571654851 -0.3992640186574424 -0.5299240261207985) (-0.2349960490786741 -0.1011050139470624 -7.996775139088847) (0.07273973039946618 -0.027749180045528 -0.1271133110483436) (0.04325152967997802 -0.06315461429807426 0.003777669091813804) (-1.064179990788068 -3.147991462233564 1.004726866631737) (-0.03683874925851 -0.006950916021027362 0.01019303571231297) (0.9333758909307321 0.2760700490498675 -1.157732532441442) (-0.004338043627878638 -0.08818485192220109 -0.5172177192614178) (-0.4788628395577501 -1.453162359201412 -1.711874510958305) (-0.3979850156871176 0.2340354123824678 -0.1723136590679827) (0.5958505244719396 0.09041681268046284 0.2714090560975712) (-0.1887505204854893 -1.919087834613863 -2.030433203466465) (-0.06358524163452345 -0.4026435380725346 -0.1040642579180146) (-0.5033763864065911 -0.1465356368995729 -0.4352627025109888) (-0.1789457138780098 0.6869694818640747 -0.8833806381889076) (-0.2449045903677821 -0.08564639755652825 0.009193431147640263) (1.161448671378713 -0.5831518410153558 1.845970381018263) (0.04178377559205796 0.06821426628792807 -0.04854557864044314) (0.2051543296495356 0.2708330642787037 0.1220642723320259) (-0.02277398613668653 -0.004964814313030304 0.009926479174292235) (-1.484682600429024 -2.815285812307647 -37.06654437955249) (1.543765866864494 -0.04322556246954301 -3.205711094700848) (0.2094935760172715 0.4720077757169165 -0.5099157863690088) (-0.04491135554367952 0.03291177080763773 -0.1399492230217832) (-0.8557995090512363 0.3136103758468307 -6.438241722093979) (-0.05687826308201384 -0.03149000479877141 -0.006577462447720228) (-0.0822641770084163 -0.0404380543144319 0.07337990363196714) (1.085626353379706 0.2642002528405722 0.1045829861071066) (-0.02469280426600939 -0.3042710800991734 0.3431187394743209) (0.2513793859141638 -0.08699183658342813 -1.166778039798035) (-0.07822408628908223 -0.01092338124052261 -0.08524738553368709) (-0.2461479647140701 -0.06988107639996066 -0.5592018680778975) (0.06895790079210011 0.07971420013148042 -0.03623719915092039) (0.9401744902545464 -0.06415144146487223 -0.5603907794703524) (-0.02300609983836619 -0.01095202513531374 -0.00385055917248986) (-0.6857810822054204 -0.1528763714770812 0.06917723343487363) (-0.08957529049631688 -0.1779783225807934 -7.88949123654717) (-0.2217657103917706 0.4832259959113082 0.07525707247471126) (0.002997003356196001 -0.001814573447262902 0.00187112368487721) (0.002489432537784697 -0.002296967329065205 -0.001137359727131472) (-0.09202497410584654 -0.07081499385166734 -6.912110955014866) (0.3948471684931917 -0.2098283103310423 -0.3497811366779862) (-0.02704609757343686 0.1411152410968038 -0.5913301356440166) (-0.06220709522199752 0.05455318005598424 0.06720417233253856) (-0.08552176412241862 -0.228049479730743 -0.2210074699463977) (-0.3184645220165919 -0.8917633861385508 1.301421927444544) (-0.1583673687453898 0.1236980356928987 0.4927705904152319) (-0.04209373628768784 -0.01197532247785068 -0.004550673871116816) (0.00832430297170305 -0.02332187935498008 -0.02985610896833199) (0.2175097275754054 0.1558856307452484 -0.3977726556859135) (0.7189921368048134 0.4616101225675079 0.2858085059762282) (-0.1677680577892696 0.295220925333926 -9.07811624835503) (1.963987471913111 0.1298741918565503 -0.6017794675258399) (0.3437671644025415 -0.1462231411123416 -8.445489269531352) (0.1193572757445827 0.1359794108661299 -0.4029246256862133) (0.1460893270088113 0.2085522554920236 -0.5625378669294328) (-0.697361430059418 -0.2625399833024887 0.1914770186416704) (-0.0888592255577067 -0.03499229096186673 0.1851593402291952) (0.009556283626246864 0.008851482999530237 -0.0008614383811419825) (0.04517330618575315 0.04257060254479589 0.02354184285821487) (-0.1079493794690792 -0.005155483317567017 0.04091662242372202) (-0.0001549415462204877 7.23266212740558e-05 -0.003814451904238336) (-2.417577624142552 38.28132751858546 -7.752114909013039) (-0.01417782434679565 -0.1043743162833899 -0.1253127504694341) (-0.2117257591215385 -0.09729560019260076 0.02011934661223234) (-0.09019605014405759 -0.1076152168239941 0.07309967395245828) (-0.008744216327161439 0.001950975427188131 -0.0006259524648833119) (9.154277779251586 73.64109198145471 -4.77229547936234) (-0.3577499641491964 0.2028471861907453 -0.8550927409715425) (3.630406595317106 1.789856769584179 -1.942905070906398) (0.0009867670569145023 0.0005556376694155097 0.003201988695979798) (0.02431056300211049 -0.03443768403849286 -0.03755279399922999) (1.581150678830748 8.079308117309106 -4.642375719284062) (3.288017552411583 9.211704477579865 -7.266129699326519) (-1.230927983989442 -0.03879428995654999 1.001245044456732) (-0.1849022414349611 -0.040315382868951 0.06705333042501994) (0.001092261754502845 0.0007893667461519255 -0.003376915601689111) (1.285034459531164 -0.2234057008089006 0.04288979994269081) (9.015692056417699 3.024617864262775 -0.4634330406216576) (0.04529426381907917 -0.01748041737052972 0.01300028310633542) (0.08067334472255984 0.06824867341950462 0.09130553952532076) (4.85471545932832 7.200708265937767 -8.909169304152558) (-0.1808657766058368 0.06486927951569073 0.203246822333687) (0.3360152091589708 0.1585259542162529 0.2038638076826761) (2.552585003251465 10.14825359615859 5.057140282779859) (1.814831809046798 -6.225028008215418 1.207530128604562) (-0.6320717754993115 12.94413247108207 -1.83989915734657) (-0.5402506668140392 0.01490658833745774 -0.07138368315472993) (0.003489648800543062 9.894772149776339e-05 -0.008555425587911969) (0.2880176115250044 -1.130509791648872 -1.393168112001352) (-0.03140216753145753 8.956448343249658 2.916435744498174) (0.02907457859902699 -0.02875648405887528 -5.335991564995769) (0.4058216619975315 -0.02588464730293161 0.9876397692892656) (-0.06494742691166284 -0.04328917417456735 -0.03882590617868303) (-0.1176961273788399 0.08234582419978015 -0.002393904216139478) (-0.06613702298862123 -0.003073085002207694 -0.07456864137426701) (0.04686500242792276 -0.01634322011820948 0.01484287523264842) (0.1633263379822054 0.09774639182205683 -0.01023212253187302) (-0.0177417683432127 0.005178941110035227 -0.01180604446243847) (-0.306532275820559 0.07030982869074134 0.3051090167280753) (-0.03107698618537127 -0.006732449599385352 0.02677708019867867) (-0.01968554754117628 0.005565674266330565 0.005990122761756086) (-0.5489660361516999 -0.04426013272055664 -0.1966773160746031) (0.3129089141052848 -1.002415951266593 -20.40219472633043) (0.3157012046116143 -0.2182851153233778 -0.3306751005724881) (0.1133774610523285 0.08316574295612848 0.1331905660467989) (-0.1238602053789454 -0.2156737922030901 -0.03726426845510951) (0.002233376442758312 -0.01444730177658996 -0.01669884856597135) (-1.48989779478071 -0.5189410156692407 0.4161633775305005) (-2.728204657764717 12.38013805198797 0.8999721711770015) (0.4580932863358467 -7.739444999575229 0.5587500389623459) (5.291465073147572 37.26990557779253 3.360516868372128) (-0.04808774152370365 -0.1078534517779441 -0.2865604274765201) (0.4368552816605886 0.6673584377080394 0.5761457159101687) (0.001471075447218365 -0.0005802018692827787 -0.0002480349238040255) (-0.007954829122877661 0.01562923904643018 0.1126200606465039) (-0.09091479134451004 0.03655015532393874 -0.01415975825414504) (0.01692449036622656 -0.01593575587143167 0.004102284081132342) (-3.333678203622688 -0.3088024546895451 2.072387458638367) (-1.606267008910328 -0.2355968338733011 -1.010237524244962) (0.03613641660825109 -0.01338393156350682 0.06060955269128714) (-1.111695081104025 -0.1989084850980609 -1.454049036022479) (2.298235974200937 -0.5030708437835572 -1.889431352546808) (0.1924600995868729 -0.08900955867868585 0.07211888528102457) (0.04715599750085828 0.02295897338156641 -0.009574735145142293) (0.05340549721015853 -0.06167234471553496 0.02388480710357991) (-0.6096956934477187 -0.113410468665521 -0.038988032384694) (0.7841181947735962 0.01613500007074112 0.3218580448408298) (0.04723384713867244 0.1811209692427449 -0.1260797337659594) (-0.3555504204778926 -0.9170865246262885 -1.12827442545293) (-1.649010008720155 -2.882932171089153 -0.5946243173436256) (0.8392513981159713 0.6419605597819393 -2.819222838048678) (-1.165419209667499 -0.0005652087290290708 -0.1143379179962766) (-0.1989346668867603 0.5061589739582885 -3.48192610462116) (0.3016819105647145 -2.856434202544885 -4.593403145135757) (0.001246349758204585 -0.06679547309528601 -6.195428545723439) (0.008234108696785074 -0.006683640183041812 -0.01053077346423784) (0.01926424880232958 0.02247219212974051 0.005242611257306455) (1.339320639957143 -0.03331496997980003 -47.5767278264256) (0.1586918331523154 0.2963143981954257 -0.1930416327599226) (-0.2780401452877637 -0.42074972901338 0.1630123846131936) (0.5585673830629145 4.842489984677643 -34.76194486354115) (-0.1345586746993978 -0.04158912286608811 0.01151109602067916) (-0.09554105038614674 0.2432421574759077 -0.5394118110709899) (0.7061705535291244 -0.1781580627580325 -2.295591175082537) (0.03144027351018339 0.02351713264840374 -0.03319818073544428) (0.1555773539916752 -0.03295950862561681 0.06269874462556141) (-0.0002709762732984971 -0.002097920070239331 0.0007505513690188263) (0.025221447024737 0.002949462400714831 -0.006310345010147366) (0.007324912352240634 -0.003215114484473724 -0.01632572872776513) (-0.1141449414691446 0.7976068246228751 0.5377790889774789) (-0.08929392188655913 -0.01408464088245133 -0.1330971228650333) (0.2044705522265929 -0.05521721671402678 0.1537553289126563) (-0.06688883075898405 0.002253189377488501 -0.09750412960486152) (0.02420930199028994 0.02732485466936515 0.04442363607082846) (0.1104948756162581 0.02089007339795367 -0.07714187416519105) (0.5123243775771629 -0.3034918469354984 -0.3042002202867837) (3.373947552337494 6.300583830817122 -4.324825148298489) (-0.3615114522763352 -1.115088347819371 -0.5987075388894321) (3.234343789673725 2.256122381973963 3.073163470135446) (8.237905087499991 11.5269668284348 -3.788972141938916) (-1.838806907847867 6.173590886016231 -1.212523872927003) (-3.412686464999688 1.77701921602496 -0.4682967421042113) (0.1128459223962684 -0.008123515504419351 -0.00568490486928875) (0.2588679181581833 0.02053341899876958 -0.0832626944612213) (-0.01177350287585563 -0.002257869043772146 -0.0133115075411829) (1.172575988291267 -6.575893000830371 2.015268029021835) (2.059794529723888 -4.607071608118555 -1.63368323626862) (0.9583448090262144 -11.5729848661151 -0.9526462884213924) (2.964914593094187 6.361685579476235 -2.580534724772694) (1.866935008444452 3.293186114506774 -2.144118022716151) (5.831941676964304 5.524962924167498 -3.421022323836502) (1.424744587630185 2.987756358522341 -0.2617058004660495) (0.005762172010171271 -0.100323158408113 0.03423717337883039) (-0.05684541052617183 0.03992474728236104 -0.07367187553095525) (-0.01979008501433503 0.1085570694004818 0.01315765525635153) (-0.209243546674046 0.01549646379020557 0.05343432467308423) (-1.453633658961059 -0.1377396497755742 0.3135241732148145) (-0.8629260866277074 -1.110753631316395 1.41629942752865) (-0.003157416308821502 -0.005534692793901144 -0.01918619770311022) (0.06321583819248863 0.01576501929826103 0.009475165844144699) (0.6237351370945756 -0.383159238919017 -0.03350866037129377) (1.41703392103581 0.7144723087357309 1.289360895068951) (0.1115803787030822 0.1122918023614232 -0.003612814836275284) (-0.8897145625398558 -0.6841290563402347 -0.5230547979273963) (0.1023517374455254 -0.128478452620112 0.03502306180205954) (-0.02761374101115119 0.03507070725720329 0.5348268609957755) (3.519503722387944 -0.4352287899173201 -0.5995599087831508) (-0.5170390962433721 -0.8265735728827753 -28.23444427139549) (-1.595184640355998 -0.2368453208844405 0.06943044157949549) (8.03349807604363 -0.3537995830176948 -0.2280670971288244) (-3.577129141085887 4.899326607151725 7.110797135913241) (0.03843846656236707 -0.006632733835458609 0.03657716604194745) (-0.08798494478926738 0.002791217613066825 0.02712093280309757) (0.09228502499429486 0.07761538352489811 -0.05901156743978424) (0.3091236473708919 0.01684218437866784 0.2718804605888858) (-0.06166057272459272 0.003326943345769294 0.06791240921493635) (0.07121598964327622 0.03170912681257018 0.07514372267798181) (-0.7371616013605565 0.1270031188171192 -0.1557610231513733) (0.09095847178372253 0.1535481858732975 0.2269022833678239) (0.05010362085324048 0.1276745736630968 -0.2648004067510298) (2.404852286349909 4.060909467259882 -1.572641987109609) (0.985546847326092 0.2748876345296893 0.4739326318195674) (-2.387353860270212 -4.460333865025001 -5.831416302236963) (-0.04394838381720097 0.0820908910692298 -0.1351159887127206) (3.094118353672569 11.46658944200319 -3.793413881932403) (-1.233224464759032 -0.4509401406636396 0.4619991698029168) (-0.006696150465211232 -0.02082023372783835 0.008024988493308755) (-0.01862577294916139 -0.008576459300089136 0.002284588466282716) (1.557648583639759 36.3325472419246 0.5813404883798454) (-0.536278180588515 0.6473602435745708 0.176082568814704) (0.0732749317889434 -0.03151829725162869 -0.02267758919270331) (0.1183086837732258 0.01614124957291516 0.09814876988612056) (-0.1142551880985381 -0.08414288903294022 -0.1680774618336297) (-3.445241618379743 62.71139544728202 -11.52894380460357) (-2.387037715954885 68.95020059316903 -16.22853549514119) (-3.287381842090817 -36.918734231504 10.01332378896487) (0.1226060084520319 -0.009527008592979405 0.04559640076774815) (0.01011909860873084 5.54873281081375 -24.32541397886202) (-1.137305630511298 -2.295455352224265 -3.637488739416205) (0.1969443973704922 0.02031747871890303 0.06459469649043115) (-0.4253356870229841 11.82239895154216 -6.548057645852351) (0.02690527912455133 0.009196148873206808 0.01133776998026702) (0.9550961115860144 10.46951287802629 7.345513350179897) (-0.4230366694545152 5.170680052311923 -1.973705102198235) (0.1030701226176334 -0.03203299095026867 0.07616072889013681) (0.08371170606099954 0.01383259972039403 0.04949381272128096) (-0.02417759693511334 -0.0428192486565069 0.1807731228171419) (0.1848116282197057 -0.05721687188022346 0.09121128175357862) (2.012581965060317 1.184098050912539 -2.256948918760205) (-3.917889100467621 -47.93897276875006 -9.864691610897196) (-0.1098035783809541 -0.4397722002812203 -0.09459968014929979) (0.9546396848164713 -0.1379821564113127 -0.01517035488161285) (0.6582253693630955 -0.6890769788934431 -0.9015964370631668) (-0.3400347664915294 0.3892158954060491 -1.212539181911481) (5.534255755148923 2.540643328262139 -4.407133580124115) (-1.447616760952601 42.00594791068649 -11.74148318869744) (-4.529535923976976 58.791130156177 -20.82426732578352) (1.963839441818425 -39.75059168365362 -8.295795912654627) (-0.1000743416511596 -8.148805871288506 0.2299186296196598) (-0.505061738032643 2.168398184585307 -1.239026522739016) (0.8383676571592993 2.319644892142858 -0.1967853853133678) (0.8735661805325345 1.032805429610538 -0.934780536960196) (-1.746397290488956 -10.76421288198211 1.318859376336191) (-0.04221583545289354 -1.587824852143107 -27.40315868270859) (-4.878467953314995 -46.56691143844109 -1.346597937827521) (-0.181398293217881 -14.63760529871633 -3.291804511496221) (2.398077015574984 -8.851729462801599 -7.727478207399206) (0.5421317969903388 -11.0458429510351 0.7414045606344484) (3.595764711798297 2.171733450734742 -1.395028310039791) (-0.4008370036993293 -0.4882303966030129 -0.005742753259996796) (-0.4345895315895076 0.07397607581973169 -0.002939818391783755) (-0.09915441280152537 0.06708331164310953 -0.01977947178998486) (-0.005887546715068836 0.0469602371189918 0.0419176041109936) (-0.02602931177722752 0.02757367004400365 -0.08501920219088117) (-0.0317489267468599 -0.01152338940399983 -0.02605466462561288) (-0.089599921559504 -0.009316337269181747 -0.01078957178145108) (-2.898489480053244 3.755660265417878 -4.203654195112898) (9.952001864166467 12.88762069958447 -11.30464925045398) (8.615350902907897 6.900344779143993 -6.445307728755217) (-0.03703312885285769 -0.01620308994852778 0.02661843175013866) (1.95769079297281 7.929305413219671 -3.720665021995743) (-0.03247141704712042 0.0813982019431165 0.05046391001062464) (-0.03761226493495894 -0.06223880072263103 -0.1974688116720381) (0.1427297123143205 -0.0964549228027913 -0.3945300414274423) (0.1924441691943815 0.2096091740410261 0.7507907446323479) (-0.8250275427506871 0.9284667428236258 -0.734177295090067) (-3.711041541044992 -13.61628902222231 -6.125203783422658) (0.1610625896442334 0.8679910718122014 1.580012576105991) (0.05228265505007043 0.3079548315295934 -0.3263358871974773) (-4.785843399922231 11.61590669197093 -41.1167026679227) (-4.779765033854943 -2.988257546549814 -1.378409835591571) (1.54070006149895 -3.248566782913914 -35.2765074052667) (-7.923896121584013e-05 -0.02143302154855847 0.01245459010389206) (0.4970591374666711 10.50426389773757 1.208391280617223) (-27.97181496972714 -9.967450272770996 -33.26633667802572) (0.0003274001549359425 -0.0007793545710434558 -0.001553058395189846) (0.009980916954158694 0.07079467619295879 -0.0035184556597104) (-0.1663646642704715 0.1074341782181338 0.07112871326854257) (-0.463941957565528 0.1912627746076647 -0.05488804506766028) (0.04283256665751316 -0.01282482258487787 0.02799666315302916) (0.2082756255496785 0.1515837105726393 -0.06580821555148818) (0.4242743600768177 -1.428753537056414 -0.275792510179123) (-0.1689537507957234 -0.3561868801606496 -0.2608348818262483) (0.006598825320856976 -0.03953655982870306 0.03412989424421355) (0.1523006712972975 0.08457389814867607 -0.09002078919807917) (-0.7752429015585613 5.256314302956829 -0.5691133099823675) (0.1313815783088564 0.03564209536912073 -0.1245984295184258) (1.793983978463663 9.960908171782973 3.275102772894067) (0.2153432629039681 8.288275577965194 1.865923278462304) (0.1275136643986744 0.01565319563381448 -0.1599178391865516) (-0.01271454523539749 0.06396713416634006 0.05988151007440283) (1.79804776226217 12.18065090232027 -2.975345817375088) (0.8252140832547253 5.828800866344351 -0.3470273148965517) (0.6237544124187742 32.68857259636338 4.226975059511565) (-0.08467952891164704 0.005179473400143381 -5.552070327350339) (0.1243638195975428 -0.1029940940966915 -5.482650907567816) (-2.669660891830763 -14.58885429129433 -2.674931755529258) (-3.233120498966987 -11.77097662521844 -8.646595675185484) (0.04778534313009419 -0.0463912850995042 0.02355053801756941) (0.03975077399207012 -0.01252527721767707 -0.03342195380365295) (0.1037132820157102 0.01650967264373287 -0.004856245474090352) (0.2381567793563881 -0.1548646604456829 -0.09415751280316038) (-0.1014681562567899 -0.01737382306114392 -0.1048081588646124) (0.08789542662794722 0.05231538983614001 0.1107568826480334) (0.2872944837734348 0.2790414644988118 -0.1818657372045789) (-0.1293240054645001 -0.1567261514648001 0.06920773427163671) (0.01250521441239132 0.1067087595717785 0.1595712376398954) (-0.2286423122251573 -0.03591761460204881 -0.04231594417051537) (-0.008053742355053944 -0.1897255754695982 -5.623588647117263) (-0.486541536084259 0.1426694153995558 -2.236196453721587) (1.362116818045748 10.415654374768 -0.936516878363248) (-0.06008288466105215 0.008056481526026976 -0.02298715967392619) (-3.694774609376273 5.298370844636824 -3.138845183611092) (-0.03037791609425277 -0.001652638278372954 0.02990527671966775) (-1.074728216354005 0.3608189473678866 -0.3705597735691474) (1.406444742376507 -0.05341298030068746 -1.763773724678412) (0.3842444009404994 0.3730892834247661 -0.6849462672371043) (-1.669564124687334 0.4086082103005902 0.4832614733779688) (-1.611511110886536 16.42173604054726 18.64906600301875) (-0.8510041835007957 5.285770121533663 0.4070077444592345) (2.206666633984629 -3.834597919929759 -3.703527858937591) (0.00856835465084349 5.685670091836919 3.114899092669677) (1.533397536123072 0.2345001585579511 -2.571967768959146) (-0.136115730812406 1.456019368731805 -0.786221986134342) (-3.571854926865903 14.79668728665975 -0.4762987964339167) (-0.1246168283669206 0.1483808658135888 -0.0493558332639589) (0.7100156589123886 -0.3155217793562051 -3.149614448601168) (0.09047086712055584 0.07942816169266642 -0.153957962090097) (0.0739447626440564 -0.2119681209534532 0.1509414979202147) (-0.4567917590671087 0.2512004422813302 0.33948901441103) (0.003955560631312079 0.05387409131635595 0.004393596432197264) (-3.188654582120091 -3.870931750434117 1.36269604133329) (2.16216892352154 -0.8909423348016094 1.666166232995461) (-1.109491859332358 -4.547557403786844 -0.5966479578753939) (-1.195179524162178 -8.524976798514706 -3.716495545081977) (2.770429137721563 7.031025086865884 5.505446968851146) (0.9250410075535653 32.73124303083275 6.540621530494879) (-2.891259845178922 -43.1912522054001 -15.55779514696308) (0.1419771889843622 0.1340536942920361 0.005514634267960491) (-0.07452610900083417 0.01529789851228002 -0.02153936419463976) (-0.1972182787307499 -0.07717694577201603 -0.02593013994558554) (-0.06359894110656956 -0.007095148591367791 0.05404891108811978) (-1.683795248580231 -0.22829474511208 -1.180724529349225) (-0.2260727283844672 -0.01882170186227159 -0.01823542075682936) (0.3188700030630335 -0.3006211965394803 0.04382709750563835) (-0.1008130601063496 -0.1019582083312514 -0.05814543839744328) (0.02940314054056059 0.009641845405765678 -0.006200283380790678) (0.01367986710490349 0.2193780106849607 -0.111690884994024) (0.04347183295961432 -0.05590577991320227 0.1096794925093789) (0.0007652233248835877 0.02386331774630722 0.04344157261470531) (0.06238440915561258 -0.03114755994681299 -0.0289724005344851) (-0.1779327033247818 0.05612184120164491 -0.002586596343517711) (-4.255706203393436 10.16264240758249 -4.985300851755452) (1.30609987301975 57.07862988226987 -10.96020703318212) (-0.6026272111295365 -0.08203664663499574 -0.2957495800902954) (-12.44338949031341 58.37693154974589 9.409496269536763) (-1.293617820889587 -38.87813746254233 -3.507489247773092) (0.5227728226884558 0.3787310827688793 0.2038322148823839) (-0.384873166660278 -0.5182205276459235 1.168050954446765) (0.5905087699340281 0.4223945200126859 0.1258391271265253) (1.099971811950127 1.091251878138482 0.02945207410951156) (0.9693343281623417 1.090528143461199 0.6940761487610412) (1.198743304928358 11.35857008379401 -1.186625376147616) (-0.6262329436507574 0.07254606272996802 -0.01650845156011906) (0.5274050001330493 7.317483159474178 3.215595745992303) (2.919539432103785 7.062283705844115 1.051639667517085) (-2.019675815139377 42.9376816985414 6.743239624625069) (1.691115409228148 -60.92719943518389 -11.22560437613794) (-0.48812419079847 -0.4133023875205277 -0.07408609042224844) (-0.08494745778303139 0.8210958475861421 0.08381627406011899) (0.9767167136293879 -0.3706463580629997 -1.431560288298905) (-0.3762400440262353 0.5937371895428961 -0.06634297421213331) (-3.300974926137661 3.414628063584286 3.332175497439744) (-3.137228700806272 51.19615259446027 -3.119820639927751) (-3.260963763299599 -7.516020555217883 3.904497182545387) (2.63248295011284 1.491445227548218 -0.4519375091364881) (0.06961206205783413 0.4335344796046717 0.5670820507384363) (-0.7496503514631973 1.099063014778699 -1.028414709628034) (0.379160484734865 0.1466663547154911 -0.7059933904342861) (-0.4828650565491644 0.6517173214707204 -0.8322184904242061) (-2.016673456589531 0.3498111633101139 -0.7754476801783089) (-3.779267092253391 1.697517404240022 0.8545017669017058) (-0.2523118079030785 0.04457805145923517 0.07400306541263346) (0.9780633417358775 10.73791901033847 -1.975175576650202) (-4.189404596460193 9.004538841194698 -9.854003874372276) (-3.797930781332375 46.70313041024313 -14.4990830552614) (0.9536634486475585 3.31312571174417 -0.2406392450182159) (2.342051713395144 27.99147768243096 5.327855301264553) (-0.4025499234762965 9.09355292424476 3.599429186406877) (1.265919727502403 -10.85676467179792 -8.61242197650412) (-1.479692419341838 -9.278162482168486 1.013391593154525) (0.9213890038244141 3.833297914883103 -5.935754739227517) (0.465419072444127 43.41378230082491 0.168334027380387) (0.04202640336286634 -39.92981233907318 -2.91034049584089) (-1.125158679626696 1.962120666610104 -1.578338354728188) (2.858028616737132 5.71765269958019 0.009430590824651031) (0.1586199611714045 0.1411675107220349 -0.1224188183477137) (2.07296478660349 28.7727668047794 -1.986918271515789) (-0.9577143525338356 7.14581426337565 -3.156431748306581) (-0.3307921198004946 -0.5549207885962834 -0.6315922332888293) (-0.006837935341080336 0.1012632777486464 0.2439549130221195) (-1.006857701329247 -27.4297476216592 1.068281390921541) (-0.07794258698035667 0.09399955953576311 0.05364309181248426) (-0.9182766005561469 -10.20723976637487 -14.24611820610639) (-1.967402445590335 2.798465477332863 -0.06271678039144413) (-4.726528736439032 -7.80651316233075 2.110261709983887) (1.048666602132682 4.981335637577242 -1.733320953329361) (-2.011417747739538 -32.73533743803583 2.49098334767711) (0.5739680622363902 3.647292673627585 2.636636140251615) (-0.7323385435197975 6.395909074755499 -0.7403394617620878) (-0.05171031724221764 0.8079723756905207 0.33501249232328) (1.549595951093785 0.342179674097389 1.352961439911992) (-2.412027429648644 5.690241655520258 2.501015679652627) (-0.4784867644210796 1.137139921465707 0.948176254575692) (-0.0461401592472325 0.03394465338217446 -0.05308760359032558) (-0.012559629648605 0.01656501326831419 -0.03218392169948476) (-1.647552687174923 4.69647182620448 -1.554236989840224) (2.007497497109067 34.77890299298537 0.6220571054522036) (-0.3585502887554071 -36.80295134317908 5.94180214457583) (-1.034693688054421 -5.166544339685157 -0.706273921305834) (1.566961244779755 4.103726399273217 1.77807717378881) (-2.233705944333833 -0.04745696138853273 4.723770468422079) (5.382553382499581 -62.17759431856105 8.947226383898119) (-1.522153194958871 -6.6955075961653 1.426683891198663) (-1.37603276796378 -6.443934359403538 -38.50699414464329) (-0.858422720331789 -1.70650927512213 0.3561856971244192) (1.052707886964642 0.3732250945502845 -0.8503035447266396) (-0.3939005262849919 -0.1824693073060646 0.1934149458663906) (-0.0002922309297157897 -0.007142913228702136 0.009705401360786294) (-0.4328729371982455 -9.689474874832197 -12.86607347533186) (0.3484407949207531 -0.1255314475440599 -0.2371455706156775) (-1.021973405218497 -42.13390273485702 -2.267835251375061) (-0.03695605809302785 0.002195270765710589 0.01381113797997573) (0.860611523542449 -0.4085244846428732 0.1040963636844658) (0.7034308425412881 -1.107315652712848 -1.361627099074327) (-0.05760105001760384 -0.04293912393162944 -0.07257079553559745) (-0.1724940704036106 -0.07696056533428094 -0.05142755128883501) (-0.04964484506275738 -0.7454174560793524 0.104988780667045) (-6.622373972878661 -45.04063740651356 1.618307187452999) (-1.11918079854497 -5.560848983285242 2.589992395224492) (0.02744125444657172 0.273374040765229 -0.1554584540274095) (-3.091912270876999 -0.04712481109233635 -2.407060325295816) (-2.187363449636197 -33.8805459358105 3.603301387386303) (0.01429282646527427 0.05024699513309808 0.1206793600141069) (-2.538455800347835 -3.583679922190769 -1.929906590817479) (-1.813424082632989 -8.936932536929094 -1.985320318741518) (-1.130223230308097 -37.45258371512188 -4.320818459780646) (-0.3363093515796164 -1.409062862157808 0.3609521247012441) (0.2036694617528567 -2.150178796657801 -2.182021224407455) (-0.8334953787975479 -10.81260100908782 8.4162220975225) (2.039400847070662 -0.1273813309445987 -2.330868038911409) (0.283480888567847 0.173016825979119 -0.3281039143836433) (-0.005403004424723606 0.0001973713763856455 0.002191754683999304) (0.4230555540958285 -0.1251634366370326 -0.2603205267196104) (-5.620153990841007 1.993115802772299 2.772657822011756) (0.65107853222542 -10.67923549725865 -4.806755118409066) (-1.980787938750971 -27.26936966110806 2.662418107246217) (0.0112474944437583 0.001096834926225701 -0.002177367141827975) (0.127310141077901 -0.002544982176928334 -1.38434585453599) (3.94289997393655 23.22605600034423 -10.33069267940117) (0.02387398823933144 -0.05376294054781249 0.07078923735076625) (0.02109791023792821 0.01342566371696945 -0.03142738291042316) (-0.2108729012108774 -0.08638383007335336 -0.02097435410415597) (-2.597139215864737 -37.82294033850606 0.3670055598726271) (1.424831020790797 -37.28242807853341 -4.300600672024578) (0.1570872213819825 -7.349205395117819 1.488598423019571) (3.43629971472374 -5.267953401651723 7.926577942927272) (0.7193140406544212 1.935051692072757 -0.7958548514402649) (-1.74858250507303 9.699510324888736 -6.196102520703896) (0.2479081329330728 7.630246529290114 4.149575728258164) (0.3770533991130754 8.869213886064605 -5.40906533932834) (-1.836898180440953 -36.32142996221273 6.992504141246305) (-0.07410467031538659 -0.1392410194809183 0.005436508813956104) (-0.1972936012822157 7.509578554377681 -1.877790367045303) (-0.3242472872977942 -47.58557749857037 -4.258444139431345) (1.14879092947102 -42.84031143152949 -4.1850329918802) (-1.340810652185211 -43.27069379233526 -2.476166440537142) (2.294139761031163 5.788434653888139 0.9414561166649117) (0.7546580157788834 5.067909409592734 0.003922308877916114) (-4.751361625763674 -10.16753509684408 -0.8961651368874806) (0.3555377343465824 -0.2842067111081231 0.4103898330096231) (0.5627427312589517 -5.011379150470725 -3.444243171330057) (-0.7654522624955016 2.324281758140286 0.597664233452029) (-5.403343417834899 -40.53559682447189 5.822824648028837) (-1.592363093630875 39.31544863906027 -4.162296627992088) (0.8252505258456435 8.327036524297389 -10.63294920575007) (0.03601348370848194 -0.008920481851123659 -0.03790724826622453) (-2.08093566962848 1.133733457799516 -5.425615579141876) (0.05755463303797542 -0.1979253744170063 -0.5956382949911918) (-1.944043795685184 -1.298097316609033 4.261286365311054) (-4.465758720379212 -7.392398071344736 -0.779248005619873) (1.521141002725499 -37.364272042477 -6.937405711797397) (-2.872156864204596 -3.990895869504226 -1.302457374340063) (0.007422200518340538 0.02345734302228237 -0.0281258650541569) (-0.01936362593117481 -0.01812740003740681 -0.008367243825540846) (-0.1133501084341926 -7.00304282023015 -0.04688461205880468) (0.08327436598930715 0.0619115516743723 0.01325634993716976) (-0.7753160068665739 -8.008317372673581 2.383126432932049) (1.368462180338366 -37.19976379074151 2.248124512859434) (4.540872170405213 13.79258712685931 -5.608489500888446) (-0.2659610547443 -4.070542220494074 0.05707026569189694) (4.21773510643161 -37.52804454051647 1.374469795677118) (0.3077311197891599 -3.142918932111086 1.592235552849465) (1.248033319949316 -0.4496289393323271 -2.580479440358801) (-1.876689003018761 -0.2890625937828655 -1.271191160032537) (-0.3630364900823729 -37.8944407482465 1.818479324610955) (2.956905799826328 34.716144105673 6.541738581732837) (1.722292048154173 2.035904475470399 0.3131120105763887) (1.377162224694067 -32.4953531415338 -4.262686465815741) (-2.024286933057716 -6.925788467184851 0.8695966519607943) (0.006962802584373566 -0.01153703761423655 0.03802832647218839) (0.134218983734253 -0.001297467426631083 0.02198835011657099) (-0.03592054770553731 -0.01380719277257865 -0.0005379501293822043) (-0.002277775503362258 0.03220795951010733 0.03792160595075263) (-0.02376805631521348 0.1027629049767803 0.127967423075789) (-0.5498447427794334 1.602327727210457 -0.6768643746433287) (-0.3482735589266676 0.2422685905646789 0.189563792647936) (-0.1944705148513807 0.09295073511867948 -0.1358743669813146) (-0.4944564741764552 0.2550105407624629 -0.1193394615774581) (-0.02333895875789507 -0.01703011421418485 -0.003101037453161841) (0.003577024187424446 -0.1059248637091814 0.08265892400072786) (-0.1159282282798784 0.03082872767626708 0.1087801005532646) (-0.06818915133095395 0.1031285538608366 -0.07740786573653573) (0.008958418378825966 0.06346623617412284 -0.2613772232429121) (0.9860806674319105 -0.8505454018299399 0.3790801409304309) (0.02621907159288242 0.2855145021641187 0.8217010471852786) (0.01514999953406985 0.09617875929945778 -0.1319165619881903) (0.02535976511822748 -0.02498661120835603 -0.02552196556698364) (-0.0122721069895527 0.001672644971833443 0.03962412893265893) (0.0002862390265764223 -0.007355035635652932 -0.03085168918096252) (0.02395206872789979 -0.002043916497914097 0.02220857533051562) (0.05209863526388554 -0.005304031789131986 0.03577476328217995) (0.027462137438663 -0.01867602763206952 0.01855692959108544) (-0.2266130795396943 -9.343976568351852 3.527072960382397) (-0.01234453636009493 -0.01133237174250855 0.02421990181582055) (-4.110140847834742 -10.48598233542309 -5.184818999707787) (0.2331165376534083 0.1456190178925704 -0.1793545554834486) (0.1317349842481066 0.2427014289780657 0.02930392131685131) (-0.289717338685 -0.09206860090683919 -0.08971397322035339) (0.401335007875962 -0.6168340499253574 -0.1733529825658052) (2.716683886760462 0.961666966009278 0.2518678991946739) (0.0214232609970082 -0.2326206394453602 -0.1203561952813054) (2.74728464067743 -5.317043544719527 -5.798605054023908) (-2.171586917915706 -9.373941526807865 2.562328100246162) (-0.04868593957944459 -0.08364269563427483 0.09459940022638305) (-0.02421852292161864 -0.0486246968097275 -0.02504738164919818) (0.03272393713473088 0.09504622847573541 -0.04331847430211571) (0.005985437351006082 0.1132425107735939 -0.03791733157518339) (-0.1608930132226286 -0.1243668105076542 -0.1497959302916178) (-0.06015563104266668 -0.09040583175591192 0.0280565709456427) (-0.01338711471621264 -0.01864950524456294 -0.01261421959763507) (-0.2052654899232741 0.01989256381469483 -0.1393846281742999) (0.07473112564660475 -0.07122870680690142 -0.03844999187977534) (-0.08188361081856931 0.01484913860461093 0.124369429479629) (-0.06327827985296597 0.02053457694055632 0.09665130206531079) (0.09188421268131966 -0.04003011264897571 0.05462171927769585) (-0.05846275069117516 -0.01468938960705994 0.01479568902879105) (0.005146140511658015 0.2039946901674495 -0.1517738236759302) (0.03179519455352806 0.0275813379380966 0.03785790368623444) (-0.1782730571379975 0.08721171279270115 0.04611123709708782) (0.08617533485000817 0.02465311431274873 0.06626921434663474) (-0.1294747349851391 0.006297307222888068 0.02242775533293728) (-0.1324570368528945 0.0876694216063659 -0.05141842417516207) (-0.006309391251154245 -0.02946764213489191 0.04717995413289686) (0.0339871859911573 0.03459938520786604 0.008605965533685304) (-0.1148468307045772 0.04393674905614571 -0.01395128700272818) (-0.0959445252372246 0.06129009669884333 0.003258122186237892) (0.3157993774297613 -0.04381556617586424 -5.640075597099258) (0.006544305049262945 0.0163139188902819 -0.005928837159116475) (-0.0596439741307366 0.06602802471414451 -0.116414491501539) (-0.004177450535563004 0.01882088308659053 0.00875196144943393) (-1.025629423680728 -0.3019791149075631 0.423772975439181) (-0.01877914677294471 0.008428743112442154 0.009659855671134053) (-0.0133383347009028 -0.03321899071762234 0.0008392517649866062) (-0.5791493689296243 -0.1884394140364481 0.5269249765538788) (-0.02018285154235779 0.0122272097567637 0.04869633550785919) (0.09771027684364288 0.01793560155473841 0.173185405571315) (-0.01001907936132715 -0.001445006693359849 0.007511503304610284) (0.2547986094042325 -0.03484909934726282 0.1633955333576229) (0.009583324986765396 -0.12490209000404 0.2895438636471416) (-0.6246100926362806 0.2267648942457423 -0.9150522367598758) (0.2129045375341504 0.2216565781873617 0.0254361290285427) (-1.914719078729612 -1.177850925651456 -0.6289090286114324) (-0.5178948728849208 -1.210891730745367 -0.5179813638350002) (-1.68718678824461 4.375731922246189 -0.8855427540011572) (0.1687996435485971 0.1503821226035779 -0.5509373282491894) (1.041191364840433 -0.6265313868312872 0.460080442857847) (0.009251895303148301 0.03021227735045032 -0.04777058887619526) (-0.2957625006049243 -0.2157408298336712 0.5815873741163485) (1.912922029015398 -7.49411825291202 -1.915771525304958) (0.0001031273056291415 -0.00045587279608807 0.02549342073763481) (2.94191135474643 4.644357455415474 2.143122734648433) (-0.3787873277581206 -0.2208487927299006 0.08740872565455843) (0.4076389748811953 -0.3895399380321941 0.02111611941246641) (0.07615165795047552 0.1610575012356671 -0.0988665310187259) (0.3924359464969138 -0.2137625708205427 -0.1227470510124968) (-0.668841071255164 0.3340788072463111 0.401132090112582) (0.5737017690587634 -0.3746078301271624 -0.4726751004798572) (0.8233946109351371 -0.7541675961193983 -1.102016352499194) (1.043527103596452 -1.714982597441624 -1.012369820029007) (0.01705827467760318 -0.02361596168329983 0.05063334583552928) (-0.07265097069628165 -0.5049921391159656 0.06294408595576147) (-0.2195213573891003 -0.433193176521505 0.05532611145309585) (0.1989255834822889 0.1375816178703826 0.008739654131350916) (-0.06287289205923381 0.07560274634911854 -0.02435972219138994) (-0.04112832226107366 0.03644160714627501 -0.2845352637544793) (0.01780892696818436 0.01512452465695563 -0.1142688481930236) (-0.08320192831672396 0.9200688615109014 0.06896119496862407) (0.2269138347150929 -0.02112313145141584 0.05346351310582888) (1.127209490030973 -1.379305137609783 -6.94013079682372) (-0.2312028519050432 7.502671749957887 0.4718258008771631) (0.5409549037621069 0.4157105022096881 0.006110025872608201) (0.05436329053001951 -0.02853304169715228 0.03080632849706457) (-0.1191307812013565 -0.0178716733331382 -0.1199949640323355) (-0.02025347726738258 0.01573220058187768 0.05086326009031017) (1.375664303747113 0.02655757006776295 -1.080868174564624) (0.01871096805163089 0.01430607599122798 0.01756915485234036) (-0.003506990000988548 -0.002121884377122631 -0.02403739970377565) (-0.1080289362432649 0.09271557614291792 0.02825041743485922) (-0.09296226236745705 -0.07494833326612932 0.06547897446940962) (-0.4949288991113854 0.1879320185114759 -0.05249147276517956) (-0.2946452406908217 -0.3409022862585589 0.4267773375409634) (0.6087873121365071 0.7930246811345663 -23.66832612859211) (-0.02272357344095466 0.005115565847915728 0.008017507809274824) (-0.02007600013921516 -0.02406865293975203 0.006828386892352327) (-0.08111543934980867 0.02880834390702905 -0.0234825141470807) (0.4328129614669971 0.3101756757982574 -0.3567944402024348) (0.1341305164365368 0.05777499056827545 -0.04684610224991863) (0.1082792377574699 0.05509545056864125 -0.03319255214720183) (-0.0199130325752768 0.05908459475633011 0.05106755800862201) (-0.02274906350578086 -0.005447673153132326 0.06510601222836429) (4.071210600621749 -1.356234784026051 -39.87935776390024) (-0.7281933064085399 -0.09915824479559304 0.05000268168948152) (0.004381738299867766 0.05618496209385877 0.03318037807268652) (0.777292780566216 0.4783639131852386 -4.217419525917083) (0.08708020553363974 0.01169729228406265 0.01309463535749974) (-0.9554782529223789 -0.6937405597157255 -1.336744404574871) (1.710077280997738 7.47491152829067 -5.411545722383091) (-0.7471873391281914 1.016897907544756 -14.72166948832075) (-0.1558504456797641 -0.08609452245525184 0.04450243075688922) (-0.003349890322975673 0.007800252032701007 -0.04427764790974017) (-0.005390138868659813 -0.01194104546730269 -5.356000047303065) (0.8698078107386937 47.19737121396469 6.209746794218598) (0.2460105181445902 0.1113987597481708 -0.1761628136816755) (0.02423122191984772 0.007870331951207286 -0.04302827720826348) (-0.4227608980792804 -0.3286081425918247 -0.1355139768371691) (0.007864907514360239 -0.06141036136487318 -0.04499468993952713) (0.0007429527252847123 0.05917127803881182 0.035057650254766) (-0.05274973248971059 0.01685780981041805 -0.001744323230895479) (0.01684516309414502 0.05596835538366658 -0.05987350820101307) (-0.01599929790901287 0.06043514422591205 0.04737786659273634) (3.604867408369961 -2.035420726366959 1.592808519925027) (0.8485327172599415 0.1821770938530652 0.07970822178055544) (3.777491503153566 -0.8606720027385042 -2.018300642827335) (0.03679339856008458 -0.02384918036977718 -5.106521391591303) (0.2252777880009472 0.1954061168541888 -0.04413217939765843) (0.1165813137968914 0.03174951286251002 0.2550388808195459) (-0.1106589239869782 -0.02866592913029909 0.04171887542879166) (0.07351053285119646 -0.05121857417250042 0.08340967508750774) (0.2030325197985054 0.1296994717513727 -0.06952982215203696) (-0.03834263426036875 0.00420932071019987 -0.04015484164990781) (0.02415073230073617 -0.02209914817052494 0.2025462595722899) (-0.8971043336311807 -0.2183914033831615 -0.5106083279843195) (-0.9653381962521332 -1.414452957417405 -1.510795393508468) (-0.1009631041114347 0.8968435971436706 0.6594259145943053) (-0.9433972967938472 -0.06022952684590865 0.5547150779878552) (0.1329836050362043 -0.02039697131092174 0.04180880667261983) (0.08285886664965825 -0.008867568023441613 -0.03199451022786535) (-0.03003133354220702 -0.02335083273540485 -0.09917676762470909) (0.04694514493069699 0.05921053370656842 -0.03832144496917303) (-0.2474791751258711 -0.03452863155052993 0.4664627317969582) (-0.5603708464008592 -0.1529886629659135 0.2299759206275037) (0.1277209762686039 0.09905001451092763 -0.007185216181146026) (0.05868191484558118 -0.003487493009118886 -0.02195237769929522) (0.3136652043665475 0.1826046780519774 0.8056327399447789) (0.8113240393671914 0.2087169368193867 0.3290859835066476) (0.8042763962041364 -0.7293669680461342 -0.07510948503554388) (0.1123881494570055 0.02479438806146333 -0.05248792169038678) (-0.07529715295822514 -0.1798706027552486 0.05345596996014235) (0.4407343176473947 -0.3026579623841494 -0.1808512021776167) (-0.7674211572862197 -0.8596991711659361 -1.39711086745712) (-4.29439701393979 0.5562301380816979 -0.4453548994897458) (0.1838908494384865 0.1668491090674218 6.029541196408124) (4.667326039634268 -0.3687583636911248 -0.8220440430717051) (-0.06752625551300459 0.09814001091783517 -0.03862682773562341) (1.893905047005562 0.5617144585042919 -0.6549117987871201) (0.1749800639318962 -0.1969291207175175 0.667647783756015) (-0.1088687988888975 -0.07628122621354259 0.06887270087402068) (-0.04415201382459644 -0.241189762063415 0.01691112722350797) (-0.3743802173184876 0.5932433139682597 0.9686977146020022) (0.6344030840082714 0.1757908329211751 0.2642271811509577) (-0.4800113582959223 -0.1550088573333906 0.9793719374080877) (0.1472383398782228 -1.048213918305269 0.03099854138430636) (0.2114414493464296 -0.5123847884992264 -0.4119947027677645) (-2.641431700481229 4.859522349894156 -3.190095072290468) (-0.2389125849874341 -0.1117720769127504 0.03037657856307792) (1.092857531984347 -0.1145265147163682 0.7387909780800445) (-0.03656331900615833 -0.04779950497819509 -0.08124927311888137) (-0.0003199776504689931 0.04328230494465225 -5.199223688784186) (-0.7248017165768819 -0.131562073579033 0.2901980583705061) (-3.918143363797014 -11.28089086276466 -6.234660947299442) (-4.84381548128504 -4.205809405381419 -52.50766470950212) (-0.2369054164828267 1.729019617285468 0.159832549334897) (0.5491122513124762 -2.185771370277631 -1.274482997155025) (-0.139739720416391 -0.0435176630229691 -0.01810750929587378) (2.645542305231523 0.5983452560937309 -3.978425256798053) (-0.3557333497371485 -1.853487747866961 -1.280653516374138) (-0.1787346041779231 -1.127532815705854 0.01617171366277408) (0.5451887600342703 -0.7039878733470872 0.4074351522171229) (-0.001202710040708779 -0.02230943562217309 0.0262513840443044) (0.7408479883215402 0.2214765682605567 1.695306560745023) (0.01493750738163425 0.0008871012825969853 -0.006380142477393151) (0.1153851143250706 -0.006682437881545081 -0.03683242595308933) (-0.1054183297327652 -0.6347158520413216 -0.1640776616811645) (-0.05024379767888166 0.02390380560415164 0.001929401684624532) (-0.001417805497734723 0.02367056391194945 0.03818120217208762) (-0.001684815445480882 0.0469400969324474 -5.13574514568058) (0.004206590540691897 -0.03822164786653629 0.02715655543061844) (-0.002095156141834356 -0.003232847831076256 -0.004093836669074339) (-0.003175989797274979 0.007712283301745366 0.02303879453033222) (0.06331697439857738 0.03220038897637187 0.02541893997287466) (0.06008399335489457 0.02578151101641532 -0.005078092412903063) (1.208738887756927 -1.029289357089025 2.641539831177466) (0.935741079487509 -0.2225016867570808 -24.78965391468331) (0.07856987303650489 -0.05803918589853688 -0.05967955505743722) (0.07869600414792716 -0.0138080570944628 -0.009025056815731014) (-0.8415259114446612 2.417083844341992 -6.617142565623707) (0.08115169945283786 0.05778568836234503 -0.01508759349033554) (0.0246884958496383 -0.0936725804162051 -0.05022795705507235) (-0.1307120501750161 -0.03044783989767873 0.05916914546855426) (-0.01181932619809173 -0.06067686446106058 -0.0408140164431809) (-0.07528124208094288 0.01628019701625147 -0.02254097209810928) (-0.0929208647960226 0.05782321825766279 -0.1405888739484933) (1.312964649420706 0.1948611023709326 0.157733288559245) (-0.1253106380291433 0.08626090093510248 -5.608431642647467) (0.002333494918282386 0.006653180441719421 -0.00321705234638936) (-0.04503222319415923 14.48658873832327 0.7647766462184151) (-6.053327466815031 36.85726757806572 1.059605793395086) (0.7790910488580887 -7.044066663363439 -0.4630368930223252) (10.35041548198567 0.9821084234371216 -39.89036646470078) (8.617054846399624 8.383574662479882 -10.19539714657481) (-2.760417945070708 -7.642290648520377 -4.501544966266237) (18.90910582195063 2.29531221926135 -8.127828162167596) (2.202296592194887 4.070441015752453 -3.411580234994612) (-9.94671758804785 7.836236053669055 -1.109587010707005) (-4.387834980501164 3.717380125577395 -7.266265162632132) (-0.09227494959659788 -0.08140401647640391 0.1073202079339003) (2.01212857430602 -1.608357714594034 -3.834465668049947) (0.3610332457134 -1.573529896173706 0.297484078067879) (2.475996066105222 -7.938414140746807 -41.15414223832639) (1.526008635484995 1.245113815547781 -44.05882437046554) (0.03343882162112376 0.03286713075026063 -0.07496419586726817) (-0.0007717561926958022 -0.02762050999917167 -0.07052917087967556) (3.349745962713523 -0.9935844092960369 -12.40735944183057) (0.006998146420391848 0.01080384690069272 -0.01396300185592646) (0.2236125872674645 -1.411242993934406 -16.37192775161645) (2.205333501062408 -1.525036770241689 -2.199034351473223) (0.01625283565714827 -0.01421553290119746 0.007719386360088214) (-0.006525039651317753 0.01114833771662542 0.008322351015441001) (0.003484208059827781 -0.01475789707496536 0.0008241338293004266) (-0.02036579849110787 -0.005441037832282243 -0.0005472905861943801) (-0.01701022274486643 0.0532949165908861 -6.202034989913153) (0.0060587246752077 0.04147561325637494 -0.04132362208211678) (-0.0004587990471548228 -0.04534295289851699 -6.29105066505067) (-0.01082947798497929 0.03361729987804703 -0.067905046965646) (-2.486880699656741 -0.2716777517624311 -33.39244611848166) (10.41376260045002 7.087129641730982 -6.810443592018085) (-1.306437020987776 6.19082880540004 -5.910526319086516) (-3.662726292982304 2.122613961564939 -6.61821462435969) (-3.981240702184995 1.180906565323697 -50.75493197327596) (1.546837988302268 3.513952973364503 -0.6580154074177) (-0.9088290966768837 0.1680239903145284 -0.8443021351127211) (-0.1757706763778147 -0.1137928484295418 -0.1582725920271374) (0.4595506777013326 0.6615720346690472 -0.644795346620601) (-0.05321002961882381 0.04534582369930389 -0.03289220081871305) (-0.01704535033725954 -0.1664092720057556 -5.478633550319433) (-0.09834141475591585 -0.02102410429438614 -0.1886687910808472) (-0.7978887219645178 -0.2326835328476556 -7.451309801249589) (-1.015771763723772 -1.727954142622118 -36.87691984986235) (-1.98817282962152 0.6187704952048358 -1.182099499306348) (0.07857463582038883 -0.03756261522824086 -0.04143011137102486) (0.558883174177464 0.4876124809281403 -1.019860182525902) (-0.8404161462001474 12.99976041435003 0.9389847630668635) (1.233936064093631 1.506883045921796 -31.38988629138019) (0.02597781176239657 0.03270577756293693 -0.05807671695266771) (0.08669864817760624 -4.312598183734448 1.112418566326819) (-0.1351035385552568 -2.43080585133114 -32.58849420900284) (-0.3724087296053074 -0.07331196917629745 0.1319752498928677) (-0.04177733937789894 0.04825691312229587 0.09738331814096746) (0.009446483801439533 0.004785803566532027 -0.01221165617968725) (-0.06319772054682414 -0.05328995142811854 -6.061846465001715) (0.09917862582268612 -0.1896567596408817 0.0684969321031544) (0.06003746989444185 0.03429186982436443 -6.545285813105203) (-0.02288724116471655 -0.04368069564104623 -4.487770536564048) (1.054417088050027 0.6119075579319805 -0.2574754035717666) (-2.265320379283016 3.643604760496483 -1.748866113864574) (1.359085408425903 -0.2371205112748737 -1.65260546139652) (0.1218617392579346 0.06606347063762286 -1.498351007827636) (-1.998787261423646 1.481197919624336 -24.75685993691322) (-0.5210567009844267 0.112283371963642 -0.1127756809208684) (-0.3363374730044846 -0.2403567069053544 -0.5982584476311661) (1.82123201025885 1.642645030284224 -11.66377597204591) (0.0112759677886098 -0.0312408383405717 -0.02488047061282345) (-2.303799412185827 -2.34973682960035 -0.66114935626791) (-0.07111572890170209 0.002074504933363072 -8.236117348957603) (-1.180517453191833 -14.68187809859685 -8.361139205460393) (-0.01234357287039935 0.05709289646254008 -5.954364718883137) (-2.884734000361989 2.890632621538884 3.458883424482596) (0.2791193828562967 0.003029684054994583 0.1039481684996843) (-3.718123976014855 1.594469959759196 3.503620577978477) (0.04021036282668345 -0.01623133799394536 -0.0279346486303556) (-0.03892511304636406 0.06119640401772156 -0.1059381235293482) (0.72569320594742 0.05767712153851007 -1.722849296183123) (-0.3975368024660757 -1.763404853720596 -0.7812531562941323) (-0.04077919533674029 0.05429364944607588 -5.61961929820959) (4.674583016764301 0.9564613671276372 -2.126665386688757) (0.006191093304276428 -0.1203820066170064 -4.759567073992748) (0.01261889674109471 -0.01778533352333666 -4.557460418512299) (0.2029282009081602 1.531164873186097 1.545536891808742) (0.0816692753359952 0.9542489946076701 1.571555100159373) (-0.08045138344052638 1.346099507151665 -21.51488380661649) (1.189331900541081 0.886893595888238 1.794575496493475) (-0.1354071470976426 -0.05898936434057736 0.02311270701491899) (0.725022832404929 0.8997370509982412 0.468333769031301) (0.2768288136542824 1.077165758884256 1.306170035710821) (1.945788194451324 -8.335202835812684 -40.55741763609362) (1.943142120992424 1.49191013261536 1.773705229896535) (1.392298357833025 0.03464487942145644 0.6622257393577773) (1.226667338954031 0.2000481113693174 0.9690657021148982) (-0.2817011506856789 -0.8184732212194199 -1.255062083211812) (-0.3188286650583738 1.494638882024107 -25.26808841059228) (-0.03499390800766378 -0.003783141792288093 -0.9225965013163652) (0.01329167887034696 2.135928816219657 1.792906702770158) (1.121577349867347 -0.8814068731830403 -1.187007055934706) (0.02069473983811058 -0.02995195510111195 -0.04275125062696251) (0.04125066892606045 0.02714850459009458 -0.07195429820191901) (0.1796153080827436 1.5422065999335 0.5732320551322777) (0.5254974790101411 0.009047541871736814 -0.2852368099019597) (-0.1827299064407055 0.0659302791595056 -6.60113924591409) (-0.08242750104252833 -0.1723632141391955 -0.000254331579640898) (-0.2736439191531866 -0.1774176323081776 -0.05017381521434842) (-0.001073701691472443 0.0419003384814841 -4.485742671863219) (0.005267607493292505 0.03070597334974004 -0.06728724667861051) (1.27336090800235 0.04289005105658721 -0.7046382773651896) (-1.715682487063501 -0.0134741961682841 -11.27499170574481) (0.1383841866712245 0.0432410106560453 -0.7099561642998292) (-0.04547973382563867 -0.008249765334324408 -0.01462640775897894) (0.0007760359146110618 -0.05938186542358936 0.3447038773418923) (-0.3338251849753641 -0.101103583255777 0.01254437258486692) (8.190393232253948 -1.887936971997817 -1.142311906380774) (-2.895637296386632 -7.657069061698305 -3.68641893071068) (-0.04902782105233758 -0.05652169192531865 -6.656778100524185) (-0.09688299562816818 0.0003563646155762198 0.03454658824716083) (-0.01198262394451868 0.09552148490082883 -0.04907806457232975) (0.1388448402604898 -0.01065112823082388 -5.427571792166265) (0.2519212456081634 0.02398011877649535 0.3299013768111038) (0.3232681398665355 0.4262445414234389 -0.9021248105812416) (0.1173503638903911 0.1823816323144828 0.01842269681694436) (-0.4729532428507073 0.1587772387852008 0.09359756069404035) (0.05370562424219683 0.1497044386494091 -0.06884845984640103) (-0.820897501011089 0.04960164363123556 -1.07846228134549) (-3.255849412448771 4.110676821601868 1.619459140068618) (1.073495883792777 4.610974251101275 -6.973336688294812) (0.7170120347413796 -2.831040958496015 -32.65298579790959) (0.6354761870547381 2.474181707068889 -0.6188458013180973) (-1.169388765038611 -0.0899358857577115 0.9518874434009378) (-1.231905736516314 -0.2017707842873348 -1.375953441903562) (-0.01139891265781375 -0.02311870059942004 -6.078351249018175) (0.03348576396661415 -0.01527012510376288 -0.001067897241406601) (-0.004612545978438043 -0.08417497319877927 -0.09818395217045806) (-0.03706302039030601 0.1137786149213916 -0.05517289556085668) (0.4310477064258066 0.3168440695166257 0.8542318118858943) (0.8880335372282242 0.9159350977675941 -0.55458321167238) (0.3565744884547031 1.297075837982159 -0.8431585677024132) (1.579104732931335 -0.06484052880669623 -3.15863816744594) (0.9466736870879354 0.01059574900911092 0.3213602924257461) (-0.02406770342299857 0.009153692100165506 -0.03199115829199958) (0.1097767708707931 -0.06966668368285639 -10.8656070976608) (-0.5506693165181105 -0.0491985568537896 -0.3856224748437099) (-0.4014694965047132 0.2475438771725317 -0.8840682569435268) (-0.2016272129990879 -0.1749655785334512 0.1369208192750102) (-0.3310959208486128 -0.01999787581539092 0.07179506447213255) (-0.1553107709695541 0.5596528617915822 -17.90939744131369) (-0.2606173803491645 0.05037632227278679 -20.05464081752415) (7.736838421043775 -6.766331138847451 -35.54919795971092) (1.129983928318953 -1.208968707674849 -2.451383790551694) (-1.518955501546245 -1.320233216056595 -0.470142868406628) (-2.010213080176252 -5.126671639143338 -18.97427840378768) (-0.04877989570559413 -0.004928439312949784 0.03943474251603275) (-0.643209702912427 -1.182679755651256 -1.040897978744109) (-0.420107148159733 -1.30722198704495 -0.6591717320736667) (5.278908452526174 -11.95792755698476 -0.6747584667901174) (1.246428208990719 -0.9223525907543934 -32.694799427648) (0.8650306280314061 0.9679411000226188 -0.9670664718171298) (0.001750791656094423 0.04291448464474338 -0.003935645496683016) (0.2923671007139101 -0.01448892870927879 -0.3276004073329815) (0.01350384839051652 -0.008092677626440781 -0.1068834922416506) (-0.2041177223912472 -0.252818272550959 0.4140882495262602) (-0.2824561221324208 0.2327362841236469 -8.876556008201463) (0.09175279167464249 0.03149556789400086 0.6625354516430184) (1.503961902311756 0.3163716261221099 -13.5336945194598) (0.9490877351955855 -3.283305381641762 -29.93465886963833) (-1.217688204979611 -0.1184718160307677 -19.21662636702298) (0.1882656331744131 0.03379154565037555 0.1593853451403127) (-3.066209728777931 2.580700339445416 -23.55127572128008) (0.01497325164544827 -0.04871295960945696 -0.0738721628690568) (-3.290643224341532 -31.80802039475873 -6.639909283190922) (-1.458990302357668 -4.751569752542323 -8.037048494964136) (-2.832210690806638 -0.808754111751786 -2.462784007819281) (0.7933430849772507 -1.262246855056828 0.1123287736717032) (-2.187593934441427 -0.2418175735983322 -3.933524647062078) (-0.05674057916756804 -0.03834536480162172 -0.07952893810396661) (-2.908278380943502 -7.592575246811915 -4.150271842462305) (0.4215980647826312 0.1118615864591963 -0.583984189854746) (0.1965693003607611 -0.4638743532227444 -0.7559426728383321) (0.1887090751675166 -0.1433040279306476 0.2654969377363502) (0.2139727839864955 0.2567346382114886 -0.2736717222279356) (0.3027316194779544 0.04729991757452396 -0.008719386483485553) (0.4152242091916968 0.1568575090814336 0.1490008834548798) (0.002160533184643809 -0.009523551308888578 0.01165644815330436) (0.006372874325284062 0.009790814160578778 -0.02055884260139083) (-0.1749207032034077 0.4034073169317135 -0.0411275152711128) (-0.04860649101267939 -0.04714101719127477 -0.02662056120242261) (-0.01756480161840087 0.07943806525174626 0.0115358044324451) (0.002707865371732361 -0.01498067208873304 -0.03658028026082427) (0.06272565412230457 -0.1330751378958446 -0.08784859306640826) (-0.1003090036767555 -0.1142332347528123 -0.2716123729724587) (-0.01496883712847924 0.007502618897173504 -6.027571642148366) (0.09701112654406222 0.005018977266392843 0.04461902209205017) (-0.01632428506409798 -0.04363716769897526 -0.038383698918603) (0.002506796042234688 -0.02072383559279614 -0.03662047467884468) (0.09615879048568679 0.008336567342738393 -0.09560976021399308) (0.1955951349429158 0.04983252581087737 -0.06987033729997179) (1.864333551309984 -0.4932981833765351 -2.856728932076082) (-0.1916920796658969 -0.09226016186427036 -5.424793945979364) (-6.646637479434018 2.41974868423034 -2.443063115318101) (-0.01197739023753215 -0.02067614036621922 -0.004276045222530458) (-0.143674501407148 -0.03033851905678838 0.1317403430525476) (-0.07195640608551435 0.132278333670229 -0.1355667907915754) (-0.5804030737101483 0.1588631125087236 0.1279237250557118) (-0.008295199934000012 0.005165381152258152 0.007628247282812172) (0.02169206030565269 -0.06164001449257402 0.09311967714850304) (0.070561054076985 0.07191502450229878 -0.01112381218082016) (-1.466350713248464 0.996936430592045 0.4970475662121059) (-0.06963118120645115 -0.08316833340854096 -0.134173733098908) (0.2790618616084374 -0.07664224853465548 0.5310938413249676) (-0.02445764434691549 -0.004767353213918392 -0.05919957207985605) (-0.0007272314401089329 0.005977964690050756 -7.272903367768379) (0.002581838883830487 -0.001235101566052344 -0.004632404054412758) (-0.01758967206503446 0.03832814239650926 -0.00634535217498721) (0.01570552276163743 -0.01538934908763423 -4.989751447873819) (-1.616055865814036 -4.379313550467108 1.228330048398698) (-0.5987844084790477 0.7293783990348092 0.8755841134621631) (0.02475437606033398 0.01546349651545944 -0.01063055043045452) (-14.36582448567562 6.662946394695884 -3.474611148245775) (0.1402458676607925 0.03812484841608543 0.1642724601295051) (-0.04247469191206008 0.1716083876014757 0.1750319341619402) (-0.03084705060809796 0.002790989159541415 0.01374452341148443) (-0.09495656796964812 -0.04666619262705146 0.145577480142449) (0.0633535175380901 -0.03540683306622211 -0.07614664968292266) (-0.8501611780013059 0.5486811965755591 0.1162932709825903) (0.4611484347451716 -0.5981354070390154 -6.739439505326458) (0.1251813222558218 -0.001641804438103321 0.07093651556385222) (-0.08005248539694146 -0.03218416227684349 0.02373804955828369) (0.0368111870111625 0.1287326234090277 -0.1485575129163934) (-0.0003099511065764499 0.003940299843405721 0.009500401867357349) (0.01889816514189543 0.002299229199286627 -0.01662582154327367) (-0.02684855331808868 -0.01521507128525165 0.03708913291382992) (-0.0004444343439531425 -0.006979758833193226 0.0006996689011435613) (0.02083193359608656 -0.02435792757420383 0.005618352747370124) (0.02745862249275951 0.1353450738341067 -0.2133984261031671) (0.2633954516437975 -0.08766739238004445 -0.2479891205365577) (0.06569423443222244 -0.4689818093426608 0.2341123531580904) (0.1750165538881088 0.1077032469581632 -0.2512038871025125) (-0.08828786391470955 -1.285113674714044 -0.7384555347490669) (-1.71172843708994 -0.02738363841875535 -1.530122293459674) (-0.05811581385290329 0.1674519527954968 -0.2391104115004429) (1.238614234205266 3.173520875059809 -2.93443913212706) (-0.4139210088748905 0.3547401551238948 0.4908141902218542) (-0.2235131320451704 -0.1487165682433023 -0.1553643802187803) (-0.3280375515574843 0.7797538060887412 0.2850095137624177) (0.0005600162328309432 -0.006317939686284605 -0.002998061917877911) (-3.011104383794032 2.316395102659768 -38.65282098187654) (0.035400571111353 0.01125746902570172 0.01982405309275506) (0.03075834986141502 0.03067578100566382 -0.009079757997497207) (-0.03098566570787083 -0.007290994234386268 -0.02501022509937262) (-0.0950144572807505 -0.1057875055335274 0.04963685263174043) (0.3714060818723053 0.516979728889276 -0.3347998563082749) (-0.08142265964242636 0.0110738286806192 -0.03030181497047255) (0.06992174773386661 0.01281079579245337 0.02135398412837605) (0.03717483793384341 -0.01058259794529603 0.04101136129188402) (-0.103979658875231 -0.2186030088429783 -0.01775668105357322) (0.1704750682898685 0.06547351247239561 0.0189018161404939) (0.2632349625868733 -0.09436964310850349 -0.3401492466654542) (0.1370289731055557 0.05718548146798672 0.09327277415829541) (0.08816908944394375 2.92503730276425 -2.855997832126048) (0.2779877767423715 -0.3508765807760283 0.08047000998239254) (0.6467760045238777 14.74153079129002 7.341322492162632) (0.02054505323884104 0.07969580623314618 -5.402481974228429) (0.2522411094915661 0.1120438417900271 0.2888039556899326) (0.05790883632236257 -0.08313469656791132 -0.2472740416662764) (0.01027372367794546 0.007602616230991673 0.02788670297456644) (-0.06773318692324279 0.1784899870723856 0.177263362069034) (0.101833349825395 -0.1491505880290558 -0.1802730688252777) (-0.1109712513003266 1.631444248036171 -1.021399207375944) (-0.2944753728921652 -0.01827104238219632 0.02334606958266421) (4.472390845557754 -12.14161807184535 -2.278420909432342) (-0.6474152517536463 -3.277578650149015 -4.629251547862566) (-0.5039971983253753 0.3192578917975944 -1.287811148689837) (1.449396440166194 0.2807479591356619 -4.053664013856717) (0.03135012428050402 -0.03502882371019117 -4.86381175604282) (-0.3324477524404194 -0.3656420725732143 -1.269903205385261) (0.03378599421820144 0.0275705059719139 0.09181268100992969) (-0.2997649376429071 0.05160695857126862 -0.4331861363064063) (-0.01636596664577293 0.03523752844460525 0.01543372796556503) (-0.003061612660159284 -0.04116543311810632 -0.007937384229162618) (-0.01477607383480264 0.0006898707583692838 -0.02889657497563724) (-0.08010605555707438 -0.03787147127530101 -0.02649312616176018) (-0.00924193125254285 -0.04784726922259515 0.008904461713501295) (-0.01859281215859031 -0.05347172768148408 -0.03701187865358543) (-0.01458131997768062 0.01507512161804776 -0.00483131741275304) (-0.02049051095183743 0.02499367124807737 -0.07910147728018666) (-7.812452441328896 4.689072552662552 1.45396436807328) (0.05215341775355428 0.03356165118241385 -0.06426425425438786) (-0.3404544183503334 -0.4241936794968131 0.4030238074734367) (-1.009120641808477 1.122594698633203 0.2080036216933535) (-0.03042446628204473 -0.04163490244488661 -5.807921168702105) (-0.26740369382094 0.0462981598888033 0.03223330855747129) (0.03455955998458345 -0.0270833373208498 0.04523915093777556) (-0.08584793341409486 0.08550306965217494 -0.06905287556346229) (-0.04463035978051566 0.02976454796479604 -0.05018324350405926) (-0.08007082030175658 0.01518288624737902 0.04277430226839089) (0.06501670803972746 0.07088622437143766 -0.02728536306695888) (-0.4647221341865778 0.1140840695549922 0.2718877562821885) (-2.580471862132721 0.01916087496739458 1.010584432202479) (2.186222167798872 -0.6352837492513291 -2.233698717184384) (0.64638083856314 0.943773092835277 -1.254398436457979) (-0.03867725595334449 -0.1450558289507961 0.04891204744189472) (0.6516541766046411 0.8900579289693488 -0.1990945326249334) (0.05670764294907982 0.5723261536349016 -0.3735599391670695) (-0.06263014463898782 -0.01268517454788427 -0.003214570587763495) (0.3191940805039974 1.6636419238283 -1.200115074097031) (3.318669457775973 0.677582776085251 0.4528359634882455) (0.360912814269621 0.05523481232207345 -0.1032438356049354) (0.4949294034432667 -1.98725747150018 0.04837104967325603) (-0.001310807680712996 -0.02224815075310576 -0.03294884422296736) (0.005155406378830068 -0.02087474301542388 -4.547849267176848) (0.01176773473895081 0.003870711253634862 0.0042271625453484) (-0.2405455742831121 -0.1079376230209234 0.4121733616586676) (1.162321571684083 0.09335882306930286 -0.08346033452236451) (-0.5743983832763744 -0.6473903103259767 -0.2486922092894095) (1.805780980555336 -0.4976417259891868 0.8222519567629483) (-0.003995016515852948 0.2188418955725819 -0.6707814533202753) (-0.002447204456234092 0.002092734709759934 -0.05570319048669282) (-0.01064379651850711 -0.01855896693644552 0.03426643264964339) (0.0314970720020491 0.03460135114804717 0.01510127107157142) (0.008960280218548736 0.0199920631489739 -0.02727423226194668) (0.02029849251931325 -0.02459185080494939 -0.01676432110456732) (-1.20313931573129 0.6230020191435761 -5.971306985011593) (-0.038323704896477 0.1214143037881344 0.04772901691305126) (-10.39710319937611 -12.12816484874456 0.2188452859090344) (2.677593517482561 0.2536427558022206 -20.46976484586153) (2.467171742253346 -0.9898929005803314 -25.9418027561984) (0.3012880316182822 5.629201524737056 3.142416086236863) (-0.09838224574380317 1.298102094811375 -1.363151250991045) (-2.731852518446639 1.22037772997304 -0.3884763929994433) (0.2878851221132415 -1.836355237669246 1.503333433518618) (-0.003080958746828855 -0.008134222195591897 -0.00950538859737796) (-0.013533105212721 0.007980233766559108 0.005666922218918955) (-0.04211917476941215 0.01878397548643491 -0.001120344983866373) (0.0008252977603944851 -0.0005917096627448917 -0.0001311911130205183) (-0.09049579432204669 -0.8003900334228622 0.6204284088603581) (-0.2691856099696955 -0.145037746078873 -0.2006073921787309) (0.03635203672978132 -0.06341542663987215 -0.1163228384063308) (0.0196926233264541 0.01526804287014821 0.005551018115926197) (-0.03180473770210604 0.01884420444536186 -0.3973031594513072) (-1.620188033413918 -9.330790431711371 -0.7184462044532434) (0.8787105648914991 -0.8573028169717039 -0.2075513814398038) (-0.551898580459208 -0.3916207305845054 -0.363585415252317) (-0.3533084395646137 -0.06886177570696987 -0.02266544890692317) (-3.239807645147077 -5.561773477101733 2.47735035552373) (0.005437335277607898 -0.00237058367993248 -0.0115196624592143) (0.006398747065668264 -0.01734469808884231 -0.03824919445200507) (0.00598249380322578 -0.003088353315274527 0.0006713290923685021) (-0.01082067086842225 0.004146461456259104 -0.006810682022229488) (-0.003119953390335926 0.004055361169644995 -0.007654789424814695) (0.006882675839185965 0.005313019829868669 -0.04910138848390425) (-0.1391561830077031 0.005528532333568474 -0.007671052688461357) (-0.01829132974275217 0.01254175391856978 0.02679808080631208) (0.02680595947135215 0.01221659511079683 -2.423027470828398e-05) (-0.1487099819752315 0.02214520190181399 0.02467099337890949) (0.01619507550365654 0.04199364055602584 -0.1260775335094467) (0.1435478430000285 -0.2873800309497902 -1.068881417533219) (-3.347761023849187 9.34337083818078 -3.455006496288163) (-4.563580138286556 12.37754252960194 -8.070030548219941) (-0.01060374082067186 0.005837742164740634 0.02171463738758108) (0.1004157864417947 -0.0347049746642524 0.1697233822666292) (-0.03186105724214061 9.783739699968958 -7.253481296345385) (-1.448912241916765 2.826701320792972 -27.63340395519669) (-0.1521139472403272 0.04484341393288419 0.2688858874471996) (-0.1007651370275515 -0.632747025201808 0.499836430364219) (-5.354022999336962 2.093623096101751 0.7861763401000665) (-0.5128689518638725 -6.56989253248779 -6.514763849219711) (0.5910369428337072 0.08619842577297276 -2.176853564861982) (4.110465649746708 -0.2277421451410082 -3.294625644146216) (0.1066253404836165 -5.216502710529038 1.604840950757645) (0.4417634488593493 -0.9635629413619847 -0.1643676142922619) (1.170771531931041 -6.891656701797126 1.514221399084468) (-0.3010071032659003 -7.59448965108285 -6.423339017314689) (-1.147406823969816 -6.898964382070522 -10.20686223714566) (0.3243074229661503 -2.262088044571216 -1.939663151285943) (-0.7243241001060301 1.257801624529252 -3.293058540492651) (0.5491195840423395 0.5249566456248813 -1.684896105969283) (-0.2431618111282204 -0.1266614915996434 0.4292679501815502) (-0.9739329977532947 -0.1323432797970531 -0.2401043954144853) (0.1007638539779233 -0.1794628179357927 0.05611270147484432) (0.8523424968503998 0.8656372233359694 -0.4490801210999198) (0.1449472680485448 0.03156447405612824 0.04706282518465726) (0.00886808149668333 0.003734012598119844 0.01100806545998228) (-0.5479167098485213 0.2791202667403001 0.2436934782828515) (0.05877559594185808 -0.1098653586476082 0.008630636086106439) (-0.06804526834060122 -0.1563442056019152 -0.007341128285226067) (-0.4968691035494838 -0.005985236231463964 0.1716988925470545) (-0.04684814755701643 -0.06283931071772764 -0.04763960256792298) (0.07231720175472042 -0.057083992003706 -0.006300659724826119) (-2.477153138918747 -7.967669389298083 -1.472013472941612) (0.1516678021190261 0.03157646696693969 0.01912316973723875) (-0.06676856910288675 0.1933612224386334 0.129472987154257) (0.4601089369691863 -0.1805301461939536 0.02933141725774129) (-0.0804718785747012 -2.120754500410852 -1.971297598578373) (1.326421575399937 2.831154095745571 1.075193746101686) (0.05863781747618757 5.175939889856832 -2.203987716247687) (0.0411419791184558 7.556207914716923e-05 -0.03242847736026243) (-0.08688697822644599 -0.02265709930581834 0.06542531014208464) (-0.289385841576577 0.1626994700044716 -0.02419689573051262) (0.05294005180676882 -0.08928389442346815 -0.008559353524529245) (-0.04782660491368161 -0.1249143311433878 -0.05406359554900921) (0.34114861986213 2.692646191060571 -19.13510780465122) (0.1436101734551106 3.16303066286707 -1.017450217252275) (3.273391190791225 5.192004999579149 -4.051241266019797) (0.006293092842115688 0.003285639876752578 0.02165423628696208) (0.1471193896177774 0.1684990435134966 0.121403239945372) (0.009073054175947871 -0.01693216404768263 0.03010412689361849) (0.002445215178000016 0.01524785191619965 -0.02234923714166523) (-0.6033561927169695 0.1009469152516672 0.2309923860745137) (-0.02433296073171721 -0.004966353246023715 0.06319168037485538) (-0.1398168698643188 -0.1351702647764546 -0.03553827177385609) (-0.08811522158449211 -0.03062960225565919 0.04920399501026962) (-2.625633099418538 -2.23928277830863 -3.839669188158187) (-0.23016653367801 -0.1528032019740823 0.007553484689068699) (-0.137075626074077 0.1076795328229542 0.006827203836290726) (-0.8460109810738794 -5.045438533469754 -0.7387187464053162) (-0.1910130111338087 -0.1047173381607815 -0.243025642342979) (2.223295862402215 4.922079012606916 -4.593131086855719) (-0.9057772151575048 37.02730833105161 1.552293005660139) (6.095253775499113 5.511071876716608 -9.663096649400979) (-1.745151941860814 6.507045094567548 1.536766927073961) (-0.3594552513984857 7.869043027222201 1.957936524205404) (0.18766120272345 8.003038222639718 -4.568470288366928) (2.069656163511332 0.6600751835779439 -1.870643728457881) (-0.7367728228563818 0.1039591508782473 0.5323352186276452) (1.651164440254541 -0.3225228545356166 0.5807506058921215) (-0.1356096894548803 -0.2216426452225399 0.3966362325525591) (-0.1023380713336812 -0.05446253655678314 -0.07547923985068039) (-0.8546722279101771 0.1594396089478006 0.07138027372277796) (-0.1724973478297125 0.437526847568767 0.264537366809475) (-2.565297484333862 -3.813877449275516 0.09141039528093975) (3.15571081219656 -27.83631715705978 -1.598256013532959) (-1.486161741015484 -6.550899390297074 -8.971496010110517) (-0.1298603213818807 0.09351352451784306 -0.07698322710294139) (-0.4572773066917425 0.3386134628956325 0.06521443917874128) (0.5962907824807686 -6.186172989979917 -0.8628247741066233) (-0.2016232856316856 -0.1290234338939651 -0.02132950585564825) (2.497017252876788 2.467447430613114 -2.934928289336862) (0.1506419164255134 0.00861682609125082 0.2021299295562612) (-0.276534044148615 -0.2445355797184231 -0.33747483550715) (0.161882075816537 -0.1603711404152468 -0.08187027831955355) (0.1750055945574561 -0.08708768909429151 -3.064371345190061) (-1.449328868821563 -9.870354646988286 -4.607822646577276) (0.2776263620009188 -0.1731147291291711 -0.347121668422895) (0.2308085637779522 -0.0389511205469929 -0.02826375801386469) (-0.8254426795991476 -3.038417618336935 -0.4817711137257808) (0.08602807412231733 -3.411531660050449 0.2298642407816235) (0.1857379724922152 0.08320398683355607 2.551940845246985) (0.2185680705362413 -2.486171120172409 -3.69735575197214) (-1.743865753215556 -1.803994251946832 -5.254427926098098) (-1.780739062550612 3.655292891006489 -7.438695161784615) (2.024894800278753 -1.531373637177809 -3.929602659799762) (3.495936315420989 2.141896181613843 -3.088459034019526) (0.6250238773871697 3.728975806615662 -7.909975470473143) (0.5932251174792311 -1.931100769733827 -2.869498502113208) (-3.184488723383698 1.244720372752296 0.467455160554699) (-0.1083378493747853 0.03622301525978527 -0.03204805947183612) (-0.4958255526477479 -0.2848183035295151 -0.1068192816518806) (0.3610764191625975 -0.9256151692313637 -2.912775049653528) (0.2694049032156303 -0.1639101651282396 0.4939260096413592) (0.217481574348663 0.04173316601619012 0.006964284526496653) (0.1195302026429161 0.0168301046187202 -0.01447665270135475) (1.244983793067082 -7.269164837954764 0.4601314102375796) (1.581239878763295 -5.225660316059069 -31.29634626330483) (-0.02181159586765302 -1.871324876881084 -1.859583402755567) (0.5997275096645867 0.6770942865590227 -0.4524511422971302) (-2.295414292472495 -1.696294169868246 -33.00601396174369) (3.494965951057862 -8.169944381654163 -5.203414254786063) (0.4395484855751858 -1.19416206858762 -1.768301718451717) (0.0715260931826239 -1.286427588560854 -0.8700588919231922) (0.009003478401735546 -0.05577352799308047 -0.0176876484779535) (-1.629558598457378 0.3643956182152442 -23.44891169537804) (0.8947352137277942 -1.190991490760344 0.2496661685648139) (0.5568032085888381 8.929065238361654 -2.119357120089798) (-0.02701910409143802 -0.1345867167926439 -8.226423503530778) (-0.01602203997657299 -0.001333950606406409 0.1084256535195084) (-0.002703613124759825 -0.006274567358920689 -0.002656013436210845) (0.8113678261773698 0.3499845790100254 0.4022721678719491) (-0.09588001083937989 0.2244426451854234 -0.1285968960864156) (-0.2219077525626343 0.007704394601993191 0.06133742165067432) (0.2831916662012969 0.3273167478989886 -0.1509182329138229) (-0.5493902116512029 -0.5228789613519855 2.721372385063576) (0.1616008137215385 0.1230850882978424 0.1824731049010221) (-0.7112729363033009 -0.01815183709630463 -0.607165088819858) (-0.6406967130446179 0.3258988711181774 -0.3332036447701947) (0.001941579095300657 -0.01404850151419557 -0.003624567347410361) (0.08170728415156131 0.03803106670904526 -0.02285068365210589) (-0.07077652752039834 -0.05082016582851995 -0.05666850506636412) (-0.168063575988501 -0.1507501908112215 -7.249709690159746) (-3.4161342974774 0.9264139451189962 -3.191468460900683) (-0.5591215892708707 -0.390334987312382 -3.398656902304587) (-0.3310892699775648 0.5943365220946979 -2.003764395460299) (-0.2491149085138669 0.09886466053657542 -0.2728780427704742) (-0.6343539129946 0.3365384187717188 0.03054144482823834) (4.870693538122975 -1.83043671424402 -3.970033209919864) (1.717653879342578 2.607922084696505 0.4009164950566484) (0.3229734685165744 -2.968451400768413 -0.1685210600136861) (-3.237580557251865 -8.76611566853633 -1.895289727036112) (2.828194752439639 -5.53475188284767 3.601450237224435) (-0.1097477944544868 -0.178005945062122 0.6462891684699054) (0.7416853050039686 0.6809328743008605 -2.663941540619294) (0.4983848626123886 0.0563350396512749 -0.3933664713488315) (0.04242030052765812 0.3340435987963795 -2.407104805159993) (-0.02941702210681805 0.1446535935911374 -0.1760969845399565) (-0.04795596725128558 0.1452354506044878 0.1724733938648319) (1.421546907463275 -0.3641661237564322 -0.3050921772393507) (0.1624273983170286 0.01134531467131372 -0.02245320231545269) (-5.251831741203404 9.605253807035645 -4.560552907856462) (1.12753324890205 0.3446639190361214 0.8603200947748245) (0.4801790786916246 -0.07368650537182997 -1.0507641169873) (0.001866678820936469 0.002061642713454577 0.003255713080647337) (-0.6395748208989739 0.06250206028897921 -0.1779429675875893) (-0.06413842154630066 -0.04791893404264723 0.01323361033665402) (-0.6585387562531884 0.08381172821270583 0.148018708092681) (0.004680081405693204 0.3842040040603422 -0.8645798510292992) (-0.04411844014066735 1.180607496303036 -4.284507960956097) (-1.493288590842611 10.03037932946367 -4.803437944575264) (-0.1827715839875967 0.009874128945783399 -0.3744019512754555) (0.2783647225980284 0.06607447979479458 -0.3217188783606474) (4.66472676088958 -2.857272125443758 4.809714762842334) (-0.08945029427912402 0.1744821405568456 -23.50108435248003) (-0.3743080511506198 1.010598786178168 -0.1592610371201774) (-0.5646133560899614 0.3948623386698039 -2.36746322382213) (0.8404134884146255 1.630954333247583 -32.26740160391897) (-0.3917803145296388 -0.03602024076278948 0.08064283954742932) (-0.4006310588080635 -0.07676842384347332 -0.1875061945922199) (0.2837905187744996 10.66184340644511 3.77952340059256) (-0.542062131999608 1.954294072983346 0.1697038509849796) (-1.562954920516867 54.7546514832772 -0.8945184394766981) (-1.644274661965095 5.249868453925901 1.918038724836577) (0.6202867182064928 2.761252097052131 -6.137311771730638) (-2.628340640851325 23.93556844806947 -8.473094034614169) (-0.8631958419661885 11.65873010462582 -0.7524970573496335) (-1.352411345018852 6.734751861041707 0.9013414355646538) (0.01955653007918179 -0.3075448626732876 -0.009655895323178329) (-1.834350232338278 4.168168225379749 -7.010358493203654) (0.9166475651399787 1.489050233792411 -6.321635806446) (1.560994667826542 38.13539427787335 -1.929502183117273) (-0.09359448269980014 7.636704892261865 -2.339784112361126) (3.043024298853143 5.85126007399187 -3.097899973772754) (-1.10256756196134 -32.88838410456599 1.311634524804898) (-2.875260369188355 3.311886266310907 -3.569901905694238) (1.080372179370794 1.629223846205586 -2.585090924939109) (0.4350602946513356 1.578269793845898 -1.452222125949948) (6.34454812175554 1.233864861720583 12.25503756136119) (0.06312597458619362 0.09102997978552137 -0.06032778668483224) (0.4941423140128588 -0.343102557730786 -0.08591730114777356) (0.8845828054690728 -1.352317891270416 -0.7042976775746211) (11.26776823087967 4.719001419914624 3.729512845203559) (0.0366018342586093 0.04809460436133206 -0.2965757762932984) (-0.002442185545777117 0.1101668392028089 -0.1865869511699392) (-0.0340348452431295 0.04133701376855765 -0.1101298546160067) (0.2818239949049417 0.201033011137316 -0.5441203879242467) (0.424105771722904 2.511147030890011 2.815505036376317) (0.004183692998450547 0.01204823531688215 0.1705350975878649) (1.669667840759476 1.94663685748621 2.474912951794861) (-0.4558271096874543 4.669694308283581 -1.703881745839508) (0.2748921408347881 7.823224792544555 0.007606456391747535) (0.01458903538414449 -0.01034890833607531 -0.02501796160373922) (0.01288673705370739 0.01215267748284317 0.01077939037971353) (0.03740604850386316 0.00735900792356001 -0.02449954391900616) (0.09744278381745425 -0.07212736562023309 -0.06589570115096258) (-0.05409246656535482 0.0637775062720444 0.1224545799147943) (-0.1631275540075753 0.248319729687991 0.1910543993685743) (-0.1247055615558743 0.1484221662435685 -0.02270667350125972) (0.04666742359783565 -0.02374477256239732 -0.03301597347521714) (0.01970806011235945 0.01955632022519301 -0.01430346119252889) (-0.1197645576429671 -0.218649990867229 0.02468799830704664) (-1.855815708216516 1.656472789453318 1.359326564374307) (0.1789003436760434 0.2987913791197502 0.3095403244337219) (-0.5493825521452804 2.239392257500032 -1.757566840413889) (-0.02231519338433663 0.1300914135966431 0.5052069678325835) (-0.2741015857446752 -0.2146096021815525 0.3627004001664534) (-0.01886109698862309 -0.1888881041872422 -0.3518213296324495) (0.8758072477640458 1.392605919235335 -1.66426720449526) (-1.147748580601642 3.450758333804924 1.430104225869061) (0.2636894064331873 13.03859494114973 -6.871588143842232) (-2.226712967637311 16.98788674421276 2.850083380513241) (0.414785823798664 -0.09517329838904406 -0.03132397749874911) (0.13291901047138 0.03905444135765596 0.02628152563699145) (-0.007703885192882042 0.04322729133955777 0.02551663047132691) (-0.1946400083082807 0.1541748866516289 0.1854813776780145) (-0.7853184912562192 -1.340269458555469 0.1313146964781047) (-0.1673902196265451 -3.318874892596119 -0.08079632708585208) (-1.021768713186179 2.630104529828978 0.3434848137062988) (6.096940888002145 16.66857550747491 0.6537181162306221) (-0.02127097447832759 -0.05452351866040391 0.02415508071517506) (0.7377939740064275 -0.3211553553016808 -1.676468007085713) (0.005155891455087285 0.01124266507210806 -6.186735851342616) (0.01112255560049712 -0.0655878534523123 0.1986247503932135) (0.07293122710128669 0.07351671790134917 0.07647730732591479) (-0.05787846798919998 -0.0170553739769571 0.01151283508124733) (0.01693681767869538 -0.01451072269384553 -0.02308082729776807) (1.798015102139609 27.76408425102059 -1.778558159452946) (-1.922764297420147 7.61534237825865 0.8397659078868649) (-2.669606887906091 7.144433526990758 2.538849157102626) (-2.843047743846212 1.176041549659558 2.114999752898703) (0.1149341872627477 0.02924687310380075 0.4160193684571988) (-0.0151339570256157 0.01332912759389271 0.1892089877806621) (-0.004281521886229224 0.02399198378247172 0.009403782246324034) (0.006738080481420449 -0.05071305734596699 -0.03879426846619344) (-0.00889087792175761 -0.02298807184176629 0.005264025301023732) (-0.000726016362379101 -0.02764061344887612 -0.002441442282165463) (0.1331504710715028 -1.528789739935228 -1.778083183536288) (0.3978168565643316 -0.6208701393053035 0.3100217486793274) (-0.2019195589538131 -0.2535062936604532 0.01181258004414838) (-0.07064121382633889 -1.12849041391453 0.2748702298084446) (-0.05671659280266839 0.05555010004373006 0.06949295440299103) (-0.008856715252826285 0.02188591058121287 -0.1254947594015453) (0.06644202961757545 -0.01859992074988871 -0.001668620299216883) (0.6962104739042224 -1.023159323704711 -0.03818607029713549) (0.6979109237554922 -4.95921175345085 0.1246539673223004) (3.225587099617636 -0.6559110004752784 -2.36280893091453) (-0.1200022024466239 0.1952004031920427 0.01727652793776535) (-1.990400069232028 -4.675148228043423 -6.556741861326894) (-0.8566126436060479 -0.4456275365860339 -1.339648906495968) (0.106015654905456 0.2512626047992311 0.06035391158951103) (0.3159232064968143 0.06008359316232132 -0.4970629844753285) (-0.2224961730714198 -0.06642160422245383 -0.002195013229824232) (2.445740288226442 1.074347378176217 -12.02269895542156) (-0.7629171086068446 0.4306378334444337 -0.1510590873954953) (-0.174211845008719 -0.2598594243097312 0.09266854426086199) (0.03538096391140194 0.5847218700878185 -0.3689411964068808) (1.278756834218402 -0.4430158623676544 -3.002245503848158) (0.1390005554636363 0.3649675241837111 0.2677187371080492) (-0.1671637096916277 -0.01155663471303966 0.08192222714206293) (2.967289551759182 -3.176826087102785 0.9770933662564929) (0.02254459060419577 -0.01411801200151437 0.0110112563833298) (-0.6692372837988292 -0.03204611656154566 -24.32524642573755) (-0.106201708535863 -0.02115655757025436 0.9849753778409756) (0.04487864909438999 -0.02763784269008713 -0.0190879498362154) (0.3710961694455437 0.3381533865875713 0.09744705595900423) (0.09122160181035945 0.01640756023609521 -0.002729788077918613) (-0.1087835186329691 0.1419094724198472 0.1434622142494935) (0.2160197568385163 -0.5201480236184824 0.2800602859452176) (-1.178300446385486 1.126287519505455 -1.233501241487095) (-0.2762874989819267 -0.1491278305509754 -0.7254049210067003) (-0.1140739895759259 -0.04633642968894471 0.1464319450185794) (1.069818305583855 -8.77470289758732 5.535835934105677) (-2.7054265602468 -10.5397165924871 1.261702592434163) (-4.038710277676604 -23.41272090018563 6.816889186515974) (-1.519709071877533 -2.61748888956425 0.1444472253188254) (-1.709312241527808 -10.06305021203102 2.049224250793088) (1.305383843013768 5.022201960832952 -7.512675860159245) (-1.149930395857471 -9.238477695225106 0.1406242560540283) (1.217221068363941 -7.634914371978553 -40.02896929441356) (-0.85460816558726 -0.9969019036893028 -1.767380535673763) (-1.781814880112341 3.600124905920252 -7.431895818794906) (5.437284373677356 7.965319846989413 -8.310821124135385) (-1.41432456612454 12.64343848879064 -0.7356126276151074) (-0.1346773292918385 -0.07475348018047305 -0.05099926597704243) (0.06137135087282632 -0.037820509070682 -0.02596259256523261) (-1.001663536555577 12.65115412872369 9.719210442462103) (-0.7487545967124257 4.429709789973992 -0.609405597792805) (3.783402706671538 29.26170287462006 1.965551358257865) (-0.3740647645675301 36.71406772413692 -1.564849144167929) (3.378124178970499 2.976139559254897 0.6440027632499181) (0.5797722079326346 -0.3653051443170291 -0.6331896194331792) (9.28887444638522 -3.862838741490632 1.701648394526206) (0.1413436954417476 -2.076930189322476 -1.530379201468539) (0.9835507479480177 0.5916530083418992 -2.562545455165603) (0.1684212619438784 -0.3471085436987302 -18.37375511139184) (-1.331729628919754 -6.774374913838952 4.666844642708073) (7.024969966670549 -60.26936157655771 0.554452117980049) (-3.277794907635197 -45.36876967795031 -7.815353070227138) (0.2317413263731257 4.617762696860486 -5.293576682821872) (-1.032614064357851 -17.84624879378895 -5.317416258168908) (-0.2310472598076287 -11.23458046419051 1.173950463776421) (7.315316121281927 -0.04319043021009517 -6.363109409497381) (-0.1859336778241587 -3.413794854417063 2.288826109041635) (0.2532404517393703 -0.2730645852546144 -0.3124369422009831) (-1.087841234187074 9.486809586374457 -10.16170147723529) (0.4108520176557861 6.652519493677781 -3.846191913580926) (-4.370507547097315 5.859574001739949 -1.796137066139622) (1.53424761561262 5.159986290462786 -7.189228604490662) (-0.584136986742259 0.07709984960399818 -1.699150758883205) (-3.038615766536794 2.326684391721047 -11.34337124040654) (-0.29609609132771 16.26491645385279 3.664616145191851) (-0.695783524375932 -0.1540969236679818 -3.04756373093589) (-0.9356787300154714 -3.518665935466815 -24.45896381967669) (0.07474786592823676 -0.01019548864689101 -0.04046801450725942) (-0.0813161921844321 -0.04229538758222598 -0.02540132384079338) (0.2485272209177815 9.737629715866092 1.707789000573118) (0.8249204424413485 26.94854074282573 3.625065229875808) (-0.6609685471637577 5.291162889784452 1.088360895949648) (0.9161544873742752 8.535481742644389 -3.867263227206984) (0.06496595389486302 -0.01500000345215017 -0.09033654704162467) (-0.05803185014652838 0.01372734994641047 0.01694452655525745) (-3.255593465103961 5.347180345593572 3.528453439065554) (6.491803330048764 14.86037333056209 -51.17657578545803) (0.07468022466957432 0.0264364769788058 -0.05063683987510592) (0.02950752603322735 -0.04078963312800364 -0.02876543751572758) (-0.971930332218951 0.007629236153214591 -4.287334627632735) (0.2295377282833018 0.2706511532110625 -1.569764433510985) (-0.05283994173077007 -0.01626191743603263 -0.03623374729787208) (0.03791729121796433 -0.007585688596493907 0.001810419841511873) (-0.1558189641062405 -0.1712498079080354 0.08039345207470941) (-0.2861922374455809 0.09054725834361525 0.008128904110435251) (0.02612122630768218 0.04919944671893574 0.05420916449377679) (0.003221253697610664 0.008118117822742358 0.01173122699988853) (-0.0524520381065372 -0.00318176990159243 -0.01445817869063559) (-2.978353447092272 0.1276131975701389 -0.1097754075134403) (0.3748693672094036 -0.5690884772015945 -0.4763712886466328) (-2.002686395386962 -0.4459214059692146 -2.411684044799019) (0.3066322863106444 -0.4280805955832471 -0.008597116713894459) (0.6394738308535813 -1.162615988435173 -0.9134854046550075) (2.786688197437063 -2.295832928051929 -1.480720153415224) (0.6876415509970155 1.537014724122558 -19.83200620366299) (0.2084067222469937 0.1019917026691398 -0.08907826179062608) (-0.1998164482500591 0.1238279674138343 0.04669779113648771) (0.1133716836316189 0.2240753134108155 0.09101105367055767) (0.08471552976189389 -0.3847348505948174 -0.7013332890011315) (-1.242355886954716 -0.3469434759240294 0.4304886319005081) (0.9875263256959972 0.1368861174257007 0.7969271167532619) (0.1677597267815654 -0.2858783770911594 -0.3352680074142573) (-0.1271759040068825 -0.04804656613380724 -0.02435458952853991) (-0.7368530537892406 -27.08638859440941 -3.23077408376823) (0.2998585492940786 -0.5932761780002445 -0.3021742230744133) (0.34749936966394 0.06996033890911758 -0.1955820030499732) (0.05132834307551043 -0.08811474798746342 0.03838139865461451) (0.4443372506977709 -0.5389416874437511 0.4263737463111922) (-1.899452341851096 4.838750046420316 2.552945260120822) (0.01195562237606962 0.9375165407983602 -0.7177550834723379) (1.987492535617121 3.07405762953915 -0.5816506528475145) (2.169553325245329 -0.4834698530989878 4.874376703143095) (0.6361715672449404 6.180448383588304 -1.365411652152726) (-1.479788366218771 4.14925804255402 -5.020891150318441) (-4.734320494760962 13.61303508876238 -1.319783962368591) (-0.01055279256981301 -0.02926001222310157 -0.007896096758151248) (-0.01479587289472641 -0.001372957391554953 -0.0005813550053512147) (1.931271741309356 -0.6926086893204815 -3.287521473057682) (-1.095130814424296 -8.276358571972249 -5.632578465396345) (-2.569016226178349 -6.20633065864637 -1.372980486468298) (1.428124402604128 0.6337305562979249 0.0904463341691859) (-8.179192100584146 -10.2624660410261 -0.7899698840475864) (-6.919106686622349 -62.27914408824085 -5.176146230699738) (-0.3431793559358939 -4.87716419120826 -1.93343277377168) (-0.08981939488986011 -0.193923102717135 -0.04442385470101638) (-0.08009190865792559 -0.3240169416981775 -0.09830160444887258) (0.02897247090946337 -0.002007936218065547 -0.0110934967475209) (-0.007830976856435991 -0.03031117269273673 0.007321649374147449) (0.02148140339613402 0.003042162958590146 -0.009735568936139943) (0.1442218508349274 -0.1120260527075955 0.08012704710234755) (0.06981134719126945 0.04239665729247092 0.0413554449839638) (-0.08552242684516201 -0.04394543098214423 0.1066986111267342) (0.06731979888773351 -0.5671825830318739 0.06131107638726221) (-0.1419178791042458 -0.1094863167747736 -0.118293145589524) (0.194821711357353 -0.1593592747720427 -0.0009488838673822331) (-0.6973549390326079 -0.08652440605769933 -0.07737069599091792) (0.07812164713714628 0.6679696009047695 -0.3885638205446127) (-0.04205677527572457 0.02639113637247886 -0.01835637930760193) (-0.002733147228606672 -0.006182537494470864 0.006594075084620453) (-0.009954481930961519 -0.0008259441238765285 0.005325950765971207) (-0.03645439739956702 -0.01156195585701954 0.01802996456255437) (0.03024830764991863 -0.0143869230981768 0.04962172593523598) (0.0682559092224016 -0.05424174439589806 -0.0001749678058355769) (-0.01761618715199671 0.03034721306256426 -0.01210960139196665) (0.05246142523555577 -0.01346159569901142 -0.02541684677729725) (1.86075754747492 -2.641317453154947 -2.716938222041289) (0.9055740740101551 -1.850286898356216 0.7493229208276944) (-0.05830532497812144 -0.01656509257547035 -0.05175398330996162) (3.476505814161875 -3.58181545069953 -1.486596156237486) (4.678189595780722 -1.56009125185267 -0.1100878880357659) (0.06919880387443136 -0.03424049958235441 -0.09328096073307826) (0.004480977589391019 -0.0100129514127044 0.05419221807165265) (0.1708938678766937 4.943619642167324 -2.376865456134811) (-0.2646449433346378 -0.02646612501791064 -0.1691586258714157) (0.1849549934730174 1.384064779038095 0.4712779967211867) (0.01740271720794029 -2.886663339928067 4.338861597270986) (0.0557895143085434 5.486057383283041 21.9950968487103) (-0.2753398948944031 0.6980414552876691 -31.58246219290243) (-2.405217145456279 -0.8765158793324032 -9.325621899953195) (-0.09863435389805295 -0.04990329792756987 0.001006744148497356) (-12.51646936924876 -29.92108857248296 0.2149048740118285) (-0.02154940209043901 0.005900072015559869 -0.04019020106394962) (-0.205196313152897 1.440024139272588 -1.251440568218659) (-0.317705028126038 0.05273361290116085 -0.04130863009915367) (0.4093427268898396 5.327284724605382 -0.5563416366465184) (2.6819439769036 9.428280904371833 -1.386727014839694) (0.9919002507471175 5.475263880085547 3.144558015513531) (-0.1908935106729353 0.2162371262615529 -0.132424569194262) (0.5363878590169336 0.5990849238111099 -0.2009400359504721) (2.129933018967821 39.00566294543306 -2.362647705728423) (-0.5835628209435102 0.2601714790498114 -0.009376003401357108) (0.05915024464221157 -0.02753576564619865 -0.02342142631889974) (0.06948747034714857 -0.03247971814744516 0.04876624230273875) (-0.3969973517441431 1.268803572196306 -6.093958011533939) (-0.1526276101709783 -1.759089584840201 -4.387615210704811) (0.5662526513078752 -0.1901608781127725 -0.07158802959920398) (10.02584548369998 5.308832407592545 -0.5851519859454856) (2.968676862705404 0.06570821983455236 -3.615097469340877) (0.8820876219050767 -6.172082198391449 -3.295578935493558) (-1.496900995945318 6.402663566637874 1.801238711045083) (3.81499483501191 3.52700412027497 4.52984195333586) (-0.1842427365356176 11.45557729087147 8.842768560661993) (2.834255364462189 10.74678668321173 2.545290999666499) (0.5822301843009741 4.569709710706307 -0.7862686506873785) (-2.881249171100713 2.63667742632704 0.9080646693750967) (-2.157103999880255 -2.007756702412482 -3.973990690101373) (0.05268358274938401 1.25515033324077 0.2486840154107158) (-3.965632704927369 2.231328008428102 -26.41971667714623) (0.1882258070108684 0.05100240209096184 0.08198386633768323) (0.5052650476530733 -0.1678860166919278 -0.4152534877307353) (-0.4735674598379235 -0.05327167105252814 -0.137010540829532) (-0.3957569628720157 0.5577565801763013 -20.86179618429649) (-0.1325355118439956 0.06408168741706305 -0.04012187869567575) (0.27000047034542 -0.2761385245264743 -1.858589882908298) (0.2215080621172663 0.06000051767158338 -0.006181448492226738) (-0.3185654017556322 -0.5786160962389991 -0.3813188955035668) (3.785535749151103 -6.245621352906182 -8.124150176771352) (-0.02265341123394102 -0.0001016138813443035 0.009767967982823395) (-3.48041937948576 -5.382789294850872 4.364335660225815) (1.72256291239655 -6.264297776704722 -1.354731785717589) (0.1839469681235099 -0.04858134110358745 0.1608681805333552) (0.1057383111850745 0.01626745497853868 -0.06011941376495582) (0.03672205035256959 -0.004388380695932212 0.009742046393428166) (0.7324885746035926 -0.8759869970414131 -2.303199761639021) (1.356627820334807 11.99365717604114 9.358842717626253) (1.786412361848989 12.23396094129202 -1.741999078477258) (-0.2119852530195905 31.61511155669179 3.861857382375268) (0.09655023805813842 0.1300197077928636 -0.1584392545363603) (-0.152398498776967 0.1675405561679314 -0.02518655147602918) (-0.1134107199466419 -0.08486597976247245 -0.01191037401901029) (-1.913152968098803 -1.045003014690885 -1.114464533470979) (2.32824307774764 -1.272059334896691 -1.511187559405748) (-0.02456549540979142 0.0122935106948458 -0.206990574513844) (-0.8244850182930628 -0.1364661418937712 -7.833160470996894) (0.1133004369362997 -0.02419112056032983 0.2551184487268202) (-1.631653991607017 -0.03211658697066122 -2.248664585948105) (0.02320552479798988 -0.209142244977374 -0.4802567793079915) (-0.2409339766118568 0.01404742864933394 -0.0229570270480086) (-0.0497516884042527 0.1043945997561732 -0.001131731534740804) (-0.00942628725265961 0.02542617805305094 -0.06783972390752872) (-0.01006142244792945 0.05486690056518478 0.06924923266440959) (0.2160869460709834 0.07116173338266985 -0.1569483868675031) (-0.1941029296209212 0.05907023150017641 0.1334233429896241) (0.1480834389760398 -0.04888353807381649 -0.2045774364058979) (-0.226538256707329 -0.02861436247582824 -0.08340294089066422) (-0.02871902838972461 -0.01553672006705883 -0.002001678879147692) (-0.1734973579721251 1.107844767196158 -2.491586153442604) (0.4006770955386201 0.2215591990436219 0.1489689758879994) (-0.002481679365753893 0.004347218068493161 -0.0009264130175596821) (0.08432094744342578 0.06037217860915639 -0.05127354203928149) (-0.1604696970925032 0.1508260753363542 -0.02332580486697569) (0.01751181878171432 -0.02348978645256471 -0.07172580660847282) (-0.5654009203209267 -1.00252056662051 -0.2021005618991107) (-0.4433620645610173 -0.3560742069260899 -0.404314223386037) (0.4645849061333052 0.2446333222001398 -0.4500209300540366) (0.2030926345260064 0.01351464643748199 0.1404066176178864) (-6.366457990339466 -0.6112792806019637 -0.9733974714546403) (2.382972610967896 1.644624312628028 -0.518656595406001) (1.643357688127339 -0.2987326278705391 -3.822147317673406) (-0.07243079579262575 0.007015175154817824 -0.1439045410476808) (0.08736428649732135 0.01110493163851259 -0.01109296149060714) (-0.04684650975353152 -0.1314553667675261 -0.002597270853843606) (-5.497261590249797 1.328903001869119 5.944664127348203) (1.06330390626531 1.50136441495493 -2.746852673423138) (-0.3862677007321308 0.5728686761978142 0.6899734662040068) (-0.7029255370579472 -0.5074459335986103 0.4462533033366728) (-0.7936160874335527 -0.4918331913293887 0.2773906976475261) (-1.166435177165298 -0.489153025694697 1.439123709204357) (0.1799655968131 0.1203688191495655 0.08018756767230789) (-0.1410971554247614 -1.060240636359524 0.3949067891932471) (10.57179428918558 -6.476625956038185 -2.072705934777064) (-0.05089000624695843 0.00658845950827251 0.02657791852670553) (0.3263722851355291 0.04484083809155071 0.3730236365733054) (-0.006139013236212311 0.00874213910420671 0.01949430815436637) (-0.008519614503171818 0.02345509238748828 0.01986569990506781) ) ; boundaryField { front { type calculated; value nonuniform List<vector> 45 ( (0.9427097724775211 0.5018046458878513 -4.809427055502176) (0.04203454457625312 0.192827677282161 0.005026444798735846) (0.4778982801338399 0.2643480607336723 -5.640075597099258) (0.2921729496370528 0.5013026816481223 -5.143005996325869) (0.1198123063676362 0.128652179127643 -5.482650907567816) (0.6945859923516412 0.3276441293678469 -5.659049139218054) (-1.407987867930782 -0.1359407601086355 -6.170225831240485) (-0.5050939299658244 -0.3749687444467917 -5.626553227729535) (-0.06145825631850693 0.1527299144418281 -0.116414491501539) (0.058038041085424 0.04735929648011221 -5.224803255277763) (0.05558729771634126 0.03804503377241442 0.02058317418692948) (0.2129381444718851 0.3446812289410694 -5.328662199343494) (0.6831322480232533 0.2962643954455471 -5.679592179690097) (-0.5311637358614604 -0.1346472242326544 -5.741595121772489) (-2.568319454578539 -1.024187666961601 -6.68066762135885) (-0.229110928644133 -0.5128997323664408 -0.02645107336563735) (-0.4049003786264121 0.3157845181600059 -0.3456266129756991) (0.05340026289773459 -0.0913520163731481 -0.09269118468716007) (0.1735268665938234 -0.07930691472688588 -0.08917236753156033) (-0.4079411390661699 0.1908571935639993 -0.3072187631593292) (-1.109738475208994 -1.736734498873747 0.09397460346305267) (-0.5914105061221328 -0.9469233511330549 0.7447243882860466) (-0.2487450800305487 0.08216066785686144 -0.1803573533139806) (0.08921988091271599 0.02010983150755792 0.06517336851996629) (0.003753549170105522 0.01042476520292293 -0.00321705234638936) (0.03904336919389274 -0.0006822315127675937 -0.007659161230303966) (-0.06470466262382948 -0.01383695182991772 0.03008062736347221) (-0.05572890949432617 -0.01072795898123624 0.0128949999667459) (-0.02597533518499835 -0.005141785586138304 0.06619762733294729) (0.02690766066367374 0.01655092138450004 0.006983892378910145) (-0.035608119621607 0.01117074548398367 0.02212271174370599) (-0.05670725098428249 0.01131424629074957 0.007072303144807603) (-0.009830499576451379 -0.009649754212656831 -0.003204248717525994) (-0.1948014409196998 0.02512308070366752 0.1140012670030311) (0.4811307355012837 -0.08724228056809913 0.3315635404283639) (0.9691557541926208 0.1534339768845944 -0.5509373282491894) (-0.01680667297782967 -0.01518467642857869 0.03988061935361709) (-0.01771275443448364 -0.03859250775639812 0.09341064726472377) (-0.05564934148558445 0.01381983810271752 0.06243336480869438) (0.00831748881175437 -0.008228547039994863 0.0007900414683073035) (-0.04152051934711094 -0.007693062106478639 0.01971551873765304) (-0.002149248201173293 -0.01377343459721464 -0.0004173820726728339) (-0.6619522366677526 -0.2619247547717156 0.4187085718227415) (-0.05053782220049167 -0.0006333166818421956 0.07633271121748816) (-0.000847507439165205 -0.01829638508258111 0.01429648804345885) ) ; } top { type calculated; value nonuniform 0(); } inlet { type calculated; value nonuniform List<vector> 65 ( (-0.9584205768331113 0.7386657006195689 -4.006533046695559) (0.007892821932726482 0.05986955963010675 0.005197267628010383) (-0.3090038031843768 0.137290526689485 -5.241104242845844) (0.08626724729121871 -0.2414571296100486 -0.03891539724228592) (0.1849804134737421 0.01660977995202802 -0.001261229423583516) (-0.03331906326962896 -0.07147202471319884 -5.967945347138111) (-0.008053742355053944 -0.1865231780889092 -5.690250462645297) (0.02660572689985615 -0.0602781986733993 -5.532139532170324) (0.03242735502602852 -0.2635657940031277 -5.601708624307353) (-0.02123404592861348 -0.173014539699834 -5.640652870165049) (-0.005415230537171335 -0.1542717996807265 -5.601556897927006) (-0.01063726018858585 -0.1492627498094439 -5.602766530035222) (-0.01918207827231657 -0.1789818331233507 -6.103793140527529) (0.01204085911389644 -0.1069376150442324 -5.227901683852599) (0.05595589247632431 0.1942007339846681 -0.1357626230399292) (-0.03035480397779099 0.1330643147759844 -0.08572064839454124) (-0.05492219065801125 0.1883853767027331 -0.06025124599127749) (0.02295357452535777 -0.1970845563001125 -5.660666694312952) (-0.02668642194679891 -0.1029015043063583 -5.578823737430602) (-0.01258569639623119 -0.1976708017883038 -5.730963790680264) (-0.01593674550798781 0.1999160369486929 -0.1203667118973866) (0.01485594688130834 0.08643237510329813 -0.06448472896242739) (0.02746464141951942 -0.3252307281049511 -5.644165484018981) (-0.006897520138425244 -0.161590290881343 -5.617957224185641) (-0.01704535033725954 -0.1451230918606332 -5.5751195739594) (-0.002189013825812054 -0.1503323067961852 -5.811139240554257) (0.02375369217083231 0.01072377540876161 -0.08335557528702515) (-0.00780175231258276 0.176573353111124 -0.1496313162967591) (-0.05955754652503212 0.2776870488729807 -0.1657857191794178) (0.004457256153659786 0.1695230974146938 -0.1130439578885619) (-0.003587555053334121 0.1765929677445367 -0.1024754623916583) (0.004141356189866233 0.2032549754562963 -0.1072580357866127) (0.01775393746595814 0.1085374048345829 -0.1041866961301789) (0.004439271565757838 0.1904727896206419 -0.1027957562011323) (0.001683451037422443 0.2070199141707801 -0.1023885838640787) (0.01659241212554947 0.1390003964404971 -0.07621169317145723) (-0.00634860022272711 0.1753696184878138 -0.1099148262179998) (-0.00194720041084416 0.1863784098618942 -0.1519395412955663) (0.01600467841268765 0.002616377017080652 0.01447631628986167) (-0.05756095071219368 -0.02787452027125748 -0.0008309065217430855) (0.01115102449839232 0.0002546795454962574 0.01638358021033047) (0.04929819065600602 0.001548892755947603 0.02901163997297969) (0.02272427156399532 -0.0001891592772531817 0.05825983128119439) (0.04107093727872014 0.001508862195595539 0.03092942418142216) (0.02291261203125253 0.001212842514104597 0.03491086459012128) (0.01204661321688447 0.001954519681850135 0.00413111295605759) (0.04903296849529204 0.001452550729939136 0.03124301667979865) (-0.008401501654186074 -0.003897482312066037 0.002657146170850925) (0.05316848244912881 0.002664268042341299 0.04257249048886533) (-0.007863985568086559 0.003871570014571133 0.003062929565105585) (-0.006565038447222688 -0.0005559858667506488 0.002596884920237561) (0.01409737696427714 -0.00346549315147517 0.02729238640421666) (0.03708295011921638 -0.01683145143942739 0.01972442846920945) (-0.002180249461725819 0.002292427751566742 -0.0107209250066286) (-0.003012594274058252 -0.001357329813834952 -0.001609557287369116) (0.01092144337437664 0.005245017675136149 0.04581375123451874) (-0.01018625819105934 -0.0004552897283629787 0.002803803038637187) (0.04314310623643765 0.002236608521440224 0.02930690118908803) (-0.009611035672085023 -0.002068497476914377 0.003114784694696732) (0.0300149803422681 -0.0009746277456123475 0.03128206333866647) (0.0195457038891542 0.02217248928868459 0.01636383496123052) (-0.03243412994104063 -0.005371996086455456 0.01796785486846009) (0.002961883015579493 0.004158536147767705 0.003388075983307649) (-0.006106615325859475 -0.004918955367984654 0.000940881253573265) (0.008627466482726673 0.001441985751266332 0.003688123856848615) ) ; } bottom { type calculated; value nonuniform List<vector> 1128 ( (-14.84541047001182 -1.636587301028792 -34.8167627523366) (-2.179881701793154 3.426918775142719 -41.71913243789275) (2.283254199359053 -0.706168879293704 -20.36166505224629) (0.7170405710446747 -0.7201365403236932 -18.63277823370551) (-21.86363070259091 -2.65389850152437 -31.5474581395392) (3.452055299077464 -3.611894428411443 -36.32241555246296) (-7.832484810274053 7.255217256509174 -47.43326627531003) (-24.21811557060315 -4.829783183391642 -11.38598120143426) (8.573039453209912 -2.687007429325955 0.5896194622775446) (0.7556345147528327 0.4817990333092939 -0.7064885139128072) (-0.1386449297929324 -1.824812697868083 -0.7058306775025144) (-1.715517984724608 -0.003586660058374158 -5.016549908251119) (-0.1965708971623226 0.3714879696575947 -7.348295552691139) (-0.2396896915787474 -0.05827283276034817 -6.234686752412347) (-0.09046755185156727 -0.04213350467534588 -6.303875690291082) (0.02154746310583906 0.06833895520960692 -6.461578929097576) (-0.9574535668112543 -0.2073009182387103 -6.214448222491221) (0.1955496747260469 -0.0693319400929942 -6.461491825456799) (-0.03725598331050566 -0.07567040185256248 -7.935667346245849) (-0.04448290437420469 -0.1211831960063687 -7.343181392950048) (0.000204467751149507 0.02028406184183731 -7.702337967960401) (-0.01002709223171401 -0.1897255754695982 -7.582841929337804) (0.0591052567633186 0.03105672800748322 -7.113535096403779) (0.0541878076391853 -0.1341644717873482 -7.494302360368231) (0.1328216641737837 0.01558685521245469 -7.106176111052578) (-0.0486645501997461 -0.1363111539704183 -7.364836671905677) (0.06112897676838727 0.05429364944607588 -7.325137446984598) (0.04900296844041355 -0.1712143391360474 -7.438200927698056) (0.233262526223353 0.0007157120644281437 -7.111161044709105) (0.03849554128418087 -0.2577836340240703 -7.517579088428431) (0.1738887955833137 0.02394289527794457 -7.043560984907506) (0.1350872679502031 -0.2167104293253612 -7.51257155141262) (0.2519753408873123 0.01235143682859413 -6.89930427822677) (-0.01492069804763945 -0.1680854400078812 -7.435463003002566) (0.06695259443175525 0.03571325999144992 -7.003241365556078) (-0.01517390160797422 -0.1729562756524684 -7.427660678437939) (0.1326784570084365 0.02682739816500425 -7.089765786653826) (-0.013125307838877 -0.1667036553199127 -7.394211336632802) (0.1468568297937791 0.02003157616930691 -7.034410808156456) (-0.03154121477775819 -0.1664092720057556 -7.353273493765779) (0.1400463604742334 0.01999234708939602 -7.019194023131801) (-0.03101739059783575 -0.1785063490586284 -7.427693156758261) (0.1281935206428815 0.01228400053371793 -6.963882806287463) (-0.01645799773078358 -0.1726546087520162 -7.711579877747515) (0.1543125593803902 0.004074143767961915 -6.989707468716968) (0.002434658607349614 -0.1643578274173764 -8.123300930790906) (0.1490751158309527 0.004573195691903724 -7.275120668571135) (-0.01271632337176015 -0.1394899375129827 -7.093743743486602) (0.07573291117723675 -0.01100611228250883 -7.673996426447741) (-0.4865750560489501 -0.4208175751708524 -6.680003278019482) (1.149414080848644 0.1222433518816216 -6.163642141780849) (0.1201687277144 -0.02384918036977718 -6.700897902062909) (0.4658815759414382 -0.04381556617586424 -7.294081729714284) (-0.1429141717855356 -0.2889343135659047 -7.665622003863891) (-0.03841981426374171 -0.008977826294808856 -6.951606910618262) (0.1237626848552855 0.2039429387617749 -7.047259277531769) (0.2385446353795722 0.1605166611282416 -6.629382051653452) (0.1827088908624475 -0.1895730212242655 -6.967776919453649) (0.4415188975779853 0.1179429362422231 -6.966196321703808) (0.2517589942743901 0.007211093328973092 -7.278432069065328) (-0.2498331405800212 -0.1029940940966915 -7.177004472680723) (0.1126959537031857 0.2118895157229884 -7.48140449323248) (0.9244675257445134 0.1901449214957099 -7.462635882271771) (-0.006546831090370436 0.005179473400143381 -7.50485054633094) (0.6772443198789114 0.1585785531382345 -7.436832851595153) (-0.527112254761759 -0.3585443814652075 -7.481380380213217) (-0.6041436981739536 0.1002026947694068 -7.817503711108242) (-0.1840076103990758 0.08626090093510248 -7.604844890774423) (-1.740097182215123 0.8198059000300932 -8.77219179170797) (0.861851979254159 0.7304769932328696 -7.776056002414758) (-3.173185465110928 1.463561619470892 -10.12112281403423) (2.616598845599395 0.4374937126802106 -7.37784796679605) (0.5327939199221829 0.1909127989884077 -7.952591241314469) (-1.621867331005756 -1.345730568887206 -5.490364965905084) (28.11885597854651 15.71574160113121 33.60142782407397) (-1.120255278349616 -3.896771485782609 -17.29514472913991) (-5.263921077863641 4.656696231721613 -2.781599619540456) (0.3959931228757095 -0.1252959741588353 -7.379061211522135) (0.3410913427787226 0.1913057047161831 -6.514358637558905) (-0.07361839697564986 -0.03359738759920157 -6.202384856158396) (-0.3439813574743464 -0.1527013111820223 -6.149003203433872) (0.1422511439214738 0.02587634621617424 -6.521056915305614) (0.04039064104639323 0.1390167064527089 -10.76571582056314) (-1.395787329970866 -0.2413218915775732 -7.641045477489801) (42.69449334448593 26.96615982360233 -82.42744190527752) (-41.58085788551159 -9.96745027277111 -31.7547187402757) (33.88468786213499 -4.574221798727915 -46.51430727088709) (59.17465528523625 3.463610287559492 -53.42629726332316) (-18.76957166766032 2.334238234778883 35.80616678636948) (2.22945893092687 1.43787029013557 -9.667115946790728) (7.136301820347365 -7.519416019356021 -7.986911306819943) (0.02836104418786642 -0.02708895273587994 -5.304020761824048) (-0.02150969272364672 -0.01856195353394124 -5.200686919773276) (-0.2231952980292009 0.02447640229523189 -6.516547167455653) (0.3882604883108282 0.1628240401052574 -11.47078345435149) (0.05747968087252068 -0.04503189399792052 -5.627561533910042) (-0.05712705125141775 -0.019383638581378 -9.82572997568041) (-0.07151079403105788 -0.06042554577693895 -6.541369429059952) (-0.03517105412988998 -0.01255923567813716 -6.610454029932487) (1.333607270261782 16.03600609195734 -36.45252551572523) (-7.662004614365715 11.61590669197083 -27.80152941522605) (6.740382000313086 -11.77576225696657 -48.55828280377768) (2.053997058240749 -11.09807306469665 -46.33018914933082) (0.03602321616616201 0.06567640475184755 -6.394936324091359) (-73.67300904493156 -44.2243830320295 -29.53842832659315) (-54.76641538270708 -1.111451259177302 -65.48169921526244) (0.004915184570264188 -0.01430388430379383 -4.961395769312303) (-0.1954785181927288 -0.02623233285958635 -6.907457515980281) (-26.86408284319 4.020925818759194 42.74682075865758) (-0.01491356307788602 -0.0555331433630129 -10.1134545092335) (-0.006361271145115093 -0.02022619777986761 -6.360847787987834) (0.02871607606481893 -0.07807083173061716 -7.869559463876799) (9.098927447667535 14.91440224623892 -42.39296545981778) (-25.65200225395078 16.15199902305495 -26.20571331310207) (-0.001688314186396809 -0.02895490513667579 -7.344209976470275) (-0.002652768619654886 -0.127260821479728 -7.236587689551511) (1.185541751206108 -3.804217084364953 -53.64546065966075) (-0.01738914903586699 -0.02252828501974901 -4.264023400963824) (-0.05254175350370608 -0.0108113962451438 -6.668811274399066) (-0.003786423725268835 0.01016303321495449 -4.227141045081121) (-0.3092661629339795 -0.09226016186427036 -7.164631747271984) (0.1122851736681914 0.1369556260677519 -6.558020094882401) (-0.08032543959721064 -0.04648539881538957 -7.935806629845162) (0.06245131531839031 0.01660385792018615 -7.133970425645828) (-0.03412505109976512 -0.002929136654985439 -5.959652046605787) (-0.01536212323147258 0.01162833332680934 -7.907216699560116) (-0.03894878319796709 -0.05401158380612548 -6.686261658425313) (0.00142971427851064 0.03308056152724224 -5.9112004774222) (0.0257406820475599 0.06133383206461697 -6.705325170336781) (-0.003031882088277198 -0.01058086484277225 -6.558021185097047) (-0.01740439905648639 -0.01327853366023299 -6.555162408283309) (-0.02565576643282644 -0.03299428190407256 -6.543058272399084) (-0.0558252142601459 -0.01884410718677716 -6.547361447176802) (-0.04828327659602967 -0.04668531100269303 -6.49924010717838) (-0.03530787177835747 -0.01109078223062098 -7.30896791483574) (-0.01152671757701757 -0.01660788252754303 -7.220450933031165) (-0.06279153949437008 -0.02703106734302154 -6.516211582977269) (0.06667892488072691 0.06153688970531768 -7.285596352048989) (-0.05119968017258184 -0.0169903149182032 -6.405585942835979) (0.03580389362092208 0.0596320805504 -6.480154099091523) (-0.02278559703926886 -0.03828085779891047 -6.702722533615431) (0.01949447664135116 0.01244066412295303 -6.386541785816217) (0.1314416135410181 0.04853286731611383 -6.665530500005193) (-0.02949627472738084 -0.02248185114553695 -6.649442578136698) (0.03676420642530587 -0.06096446170177282 -7.047721845131541) (-0.01049081763679499 -0.0007072321636606323 -6.839579594520173) (-0.02837796000415817 -0.0226150370480499 -6.967886048638831) (-0.01837473860919125 0.03955077818297444 -5.58243023230127) (-0.01086142276819446 -0.02694239443588257 -10.10893789926325) (2.30001807549372 -5.613682958456959 -23.16939744813838) (3.506413454446746 3.683343653835396 -60.55994947689725) (-0.008138828234776109 0.01781686538173975 -6.255529881629603) (-2.308811873467237e-05 0.02639200656472111 -6.285458110067697) (-0.003064246650346394 -0.01368268522287508 -6.055464795536182) (-0.007423166754782787 -0.1308720072248786 -6.286902914319596) (0.04464401380442934 0.1179844472518686 -7.081896760019855) (0.005143443625417092 0.128599861620019 -6.123311685541363) (-0.2466300142508487 0.02475105406422498 -7.099033337995782) (-0.05692248517681915 -0.1138802816780798 -7.283484033441561) (0.1306171533892654 -0.04414430563831719 -7.189066871987722) (0.1101437150671076 -0.01014215772968357 -7.327819693570258) (-0.03188226529589661 -0.02327468244482786 -6.968671218370362) (-0.01875404243388255 0.0490524090776822 -6.994526313354393) (-0.06708262723235209 -0.05847921829200765 -7.177024118376925) (0.002904490639896572 -0.03372278652644527 -7.324812278278714) (0.05816555816998151 -0.06626048503734781 -6.854423100272085) (-0.0009579836862390226 0.01996538038488622 -6.905268593832386) (0.4450929484674822 0.227457186801714 -6.816918145247451) (-0.05487626084078883 -0.05160455028936767 -6.806870266077821) (0.1288033094826661 0.174826566012445 -5.968073682127558) (-6.022998601521984 10.75121627549362 -11.35776739095304) (-10.70401165542501 5.709709356113637 -14.20254629097332) (5.614003891439705 -14.68244891781407 -23.49402998404486) (-0.04161586310981046 0.01577319415356376 -5.296814861438825) (0.05146489580629102 -0.02875648405887528 -7.062209934254578) (-0.01468826552979712 -0.01556319217445929 -7.324755954188912) (0.3455875160695654 -1.587824852143107 -32.73752201948887) (14.36251069046823 -33.22200867188703 -20.18874288532859) (0.02711181784312489 -0.04463758133301622 -7.631118648201257) (0.03358760373677089 0.05681505418414783 -6.677424255958117) (-0.01329252948760054 -0.07377675022695671 -7.893163830111818) (-0.04039086039440649 -0.01080494298853376 -6.291241494410087) (-0.03291056483419166 -0.06409015449261514 -6.804065264571306) (-9.392917168381466 11.441109818872 -51.69427278494356) (17.61162732732201 0.9821084234371216 -49.44637899087192) (-0.05135344608590883 -0.01893291289857509 -7.359374224767551) (0.004113125212177327 0.0513394294682161 -6.385434051370062) (0.004756983952028795 -0.0906575977599232 -9.859833914097484) (2.350637821203979 -0.7507018828822356 -42.20888975805916) (0.6668213185214288 3.109937103593666 -45.44264704429104) (-9.403206912557661 -0.4467721492727059 -36.75797585363257) (0.1432385123492884 -2.526184989529963 -1.005009072971137) (3.523488436753922 6.322157350708659 -48.56976078093423) (-0.03175480097132929 0.01170684289430454 -7.310169673354413) (-1.567468047503061 3.822559867397643 -27.72689714781093) (10.20557638290327 3.353812773770435 -53.65773335717534) (3.800383305656218 -7.135719912843737 -8.365547928916016) (0.01631106962724416 -0.05524935625448447 -5.509132037361651) (0.8858129036893636 4.364273557888888 -45.17085588562277) (-5.594873614569129 -2.169712319615779 -38.38989882661225) (-3.221743663507504 8.247456144025879 -50.67877256287444) (0.08905625066966227 12.42724686393453 -44.68293384418432) (7.356155405245113 -2.654503085066679 -37.24942459905748) (10.00833894155249 2.70713689530506 -54.40262207161477) (5.130901564400491 1.245113815547781 -57.57724723975296) (-11.19220417070147 -1.126631090496218 -67.83027505458809) (-30.98223522769018 0.06187791513368612 -62.91282328177919) (0.004918419427715601 -0.01581463659427879 -7.833034119161935) (0.02612903377137532 -0.009366027102671455 -7.699210182465601) (0.368997246683911 -0.4865034907847856 -31.42279889650144) (-12.40852003151157 10.44550993283917 -42.32701274558391) (3.035992156036369 -7.938414140746807 -46.84364539135529) (2.14530924076927 -0.519416414692118 -41.93494488227999) (-0.3764233786367969 -8.38226329149569 -6.236047178625938) (-0.01244248002572403 0.07584163854550222 -7.732003131176429) (-0.08181348362528079 0.05414251807244545 -9.732216575827737) (-8.10282173520935 -0.1797944153436424 -61.78850974051167) (-0.03627222486450996 0.04590481086452351 -5.49825857624901) (-0.1794260644299576 -0.03502882371019117 -6.382128779629689) (-0.07022733451281017 0.0098142812346304 -6.974122749290697) (-0.05614868424106274 -0.0526838306857663 -6.912063948495708) (-0.004120824206702518 0.01523120343873161 -7.845977337302682) (-0.00374248403837384 -0.02218668310252095 -7.691643364701839) (-0.09166471650233302 -0.0006915131946272505 -5.771022393653947) (-0.0004719340148338514 0.01176449559225505 -7.776621299638604) (-0.001697152598157154 0.03999817612657325 -6.642614336693517) (0.02652621810812961 -0.01538934908763423 -6.604130246688497) (-0.02544193518553416 -0.02662756317684218 -6.436211953760687) (-0.01872578304401175 -0.003312020821181419 -6.128817073826271) (0.04423291822634341 -0.03738795129928661 -6.446678734955171) (-0.01986266207732446 0.03602404219628159 -6.462497169823513) (0.0420708541487062 -0.0846534203374817 -7.223462633309862) (0.009625349170393656 0.03782725548977593 -6.377389492517077) (-0.1232258448841072 0.08567737885307597 -7.218216452168557) (0.04108782510526527 -0.02504961993726677 -7.010222227631246) (-0.1017139940019108 0.03894111023880378 -6.356872898393172) (0.06811652368351534 -0.06470000570892762 -6.312831008800364) (-0.02664850325369247 -0.01213905155411105 -6.260893277684188) (0.01250806128091073 -0.04545244119256756 -6.286695796068282) (0.02409323068973035 -0.0652430809112091 -6.508731669026147) (-0.01783506748292571 0.01037442265525739 -4.718711248093659) (0.007131530895120169 -0.008656839777803595 -6.853984663447427) (0.01429235401755101 0.006999964914407678 -6.197457848208852) (0.004289670994515014 0.06061389705554623 -6.413606759625303) (0.006149250718590737 0.0213198023915902 -7.864152035556764) (0.0293046728967141 0.0470131315923732 -7.85135036621829) (-0.02030979098070278 0.01101132647743836 -10.06692484712941) (-0.02521317301955432 0.0959395045991602 -10.13232535234057) (12.15873526358391 -5.242147837072642 -76.50773580382078) (9.720711864373568 8.944680754138307 -74.48905818373942) (1.33218316025702 -1.100815323230622 -60.54245564835299) (1.313612397525095 -3.248566782913914 -44.20423973897832) (-2.414649578126519 0.007979970778787426 -27.14662868931071) (-0.0007664983482746851 0.01249474583221375 -6.123885567493788) (-0.008482678920810232 0.1053786394690238 -6.134754276206538) (0.04768929347078246 -0.03570989640904611 -5.921542138878004) (0.007424976410805858 -0.1441055438894845 -6.167117134767425) (-0.2082847227868443 -0.04121268809290125 -10.99868603552182) (0.04801743287375784 0.04040747270071082 -7.378592608509646) (0.07580859273419491 0.03369596539860642 -7.18660653203385) (-0.05644080401695323 -0.09358540644844904 -7.209778868868971) (-0.03044479921679148 -0.01839895540125245 -6.890339798613469) (-0.002043395671812095 -0.08226614614275717 -6.990967964260388) (-0.05516118574641651 0.006666318352564071 -7.340353472128476) (-0.01669092390503042 0.0004430723279745096 -7.332052575312618) (-0.01820671062031751 0.03802200964732431 -6.85561919593124) (-0.0618645381401389 -0.03499880217806814 -7.297723643023378) (0.01637963522748058 0.0557187748083466 -6.821816379704795) (-0.05910083737681825 0.04811760485406448 -6.773926017441365) (-0.6247376816616863 -0.4399627534763323 -5.62250568738556) (0.1628644350080458 -0.06959450711120593 -6.084029934439839) (3.562110479303621 -0.5693100722791765 -50.48161722587073) (1.871354811601723 -1.362452841144933 -61.88528996859115) (-6.333032899997379 9.57489242506314 -48.14554309112667) (-14.15171740032673 5.448260635406093 -56.75645843692503) (-0.006113600525798394 -0.05496168649612233 -7.171660609653653) (0.0182813219455874 -0.04835746735747299 -7.052586477207748) (-0.02910102589594123 0.03296268007725036 -7.069084997849939) (-0.009188723435763792 0.001013122447514056 -7.333334406694183) (4.658924001671675 5.463614207223407 -52.18093515643039) (3.399166183659049 -6.692618639708436 -45.38100120672031) (-6.664808346506275 14.03127556543533 -62.63555540446841) (4.726029718041387 -2.859333542320931 -51.73629232938968) (-2.017088758919189 1.161726396111766 -65.73674930910084) (10.62525070031449 -0.317672246306955 -50.79283502519107) (-7.889801094317409 -2.219785293238144 1.30439048558702) (-0.01460393980170438 -0.03162905297619011 -6.627586131122208) (0.00629692854493634 0.0469400969324474 -6.789455754987659) (-2.063598196767161 8.22285050555287 -35.26691690854428) (-0.8609808395428376 -5.225660316059069 -31.90114535868011) (-0.01664524330192802 -0.009004200740301675 -6.161189236546003) (-0.006082202274292165 0.04328230494465225 -6.919147260150667) (0.02328642141109142 0.0196370479202429 -7.003968253649123) (-7.492196545360937 -2.470818379752278 -35.45281850841746) (0.6903841987863971 1.60527608877284 -29.52256113151194) (-1.285977131242407 5.875308556117527 -60.87540410148842) (-25.0773620988782 6.740436157775592 1.654197586586167) (-7.609988955718837 -8.703436555874051 -50.80960600356082) (-0.6184883210585486 -0.4139745439388536 -41.4379608543031) (5.379880475187674 0.9074952186470204 -51.09743277411346) (7.360044388465527 10.03994844623876 -53.88411016883944) (19.21344165410751 11.26842357590757 -57.93749596835758) (-3.236631640833478 4.595783995019275 -45.79020356390469) (-1.058730431133164 11.12297698922234 -22.30544966355774) (2.728480174468597 -4.760183798443389 -8.359913487330402) (-0.06364987265168838 0.08427258212785783 -7.31223870303393) (-1.233600929789554 1.655006954741263 -69.61538005368183) (1.442276861198783 -4.114701432734327 -68.76960466400163) (2.778215509197284 -0.03331496997980003 -55.17083380427947) (-2.182002029691596 -9.09982010650965 -53.83602588647997) (-6.225807301738433 -3.555215941333806 -58.94178990787832) (-8.339678739795986 -6.165715285882687 -78.16199053928266) (-0.1431381773359429 -0.01534552990154772 -6.525797024806175) (2.862758458988552 -4.088182033216353 -48.08867129649887) (-12.40252976174725 3.673057938251329 -48.13677247017348) (0.009475142801347888 0.00354088661834589 -6.10212367460021) (0.001572117637618381 0.002526984144672884 -6.484264855652285) (0.009903841806989539 -0.002933726847695629 -6.637464856102533) (-4.129881810523863 1.180906565323697 -56.99662867267737) (8.311223911436326 -0.3080493661449188 -45.87781324536031) (-0.6072630505956358 -6.431701577314961 -49.29139468007659) (-0.6882839371595719 -7.276206897932701 -37.19614445164222) (-0.3269888538001506 2.806737376284512 -30.87106953043917) (0.18631610094124 -9.65962634900397 -20.63051225243467) (-0.03299337383616337 0.0002258417779985216 -6.475374813193234) (2.332638447317132 -2.348162166364795 -66.83896518484597) (-0.2096107256153609 1.569490580047332 -60.43646892250914) (2.400940509652609 6.96339138773092 -56.88185629900535) (6.317596445884024 -2.801087415095056 -33.39001735075064) (0.008298936201542557 -0.02117644500389135 -6.507054260461394) (4.045044740806421 -10.14771904749008 -19.72941071744317) (0.01068284210990519 -0.01778533352333666 -5.940199169406256) (0.01824740202551364 -0.1203820066170064 -6.190409061538769) (0.01708869454739806 0.01586501855674131 -6.674609574047692) (1.500186171355823 5.876328622293434 -44.32238803989927) (0.002118019294732016 0.005123991603361023 -6.212817157840404) (0.01383678591112481 0.0002039132657812807 -6.511877165106539) (0.0454661945373367 -0.07012905243142305 -6.108867042341049) (-0.005541820636207775 0.09518709823351225 -6.589940240704808) (0.01499661140920217 -0.03873433825387804 -6.10419218150839) (0.003683474288564879 0.00781143667009042 -7.037434661418445) (-0.03853774424390662 -0.04163490244488661 -7.716655736776333) (0.01456942291176164 0.005855233216503468 -6.010847092511943) (0.0157009136591043 -0.01430474070833961 -6.075717921153316) (-0.03210961867877511 0.01412701663850736 -7.681222958124856) (0.02786439488967302 0.00638722973211314 -9.716983041640622) (-0.0009545167505059697 0.005977964690050756 -9.681180079705843) (-0.02629058917081721 -0.003761663306779746 -5.130311018747626) (0.05216189408141693 0.02199681393760203 -9.729174027514308) (0.03603107869662127 -0.03617424562015796 -6.964162912113915) (0.02612782982906683 -0.00481768585780124 -7.003805582180886) (0.006446859781239782 0.09845937965955084 -7.058379886490329) (-0.03534692875969567 0.02922392586196129 -6.867102893940124) (0.2218299707372889 -0.1015028357248045 -6.417634909291562) (0.02006979059422197 0.05289639087518931 -6.304921875280108) (-0.08166339662644956 0.003676453214609181 -6.400744963337301) (0.2117718153418912 -0.01168418015649671 -6.020092026624597) (-0.08511095649126385 -0.01963368615523526 -5.97464519920277) (7.173528797420757 2.722776087720357 -61.9848782614761) (-0.007423000500037603 0.004138258775524304 -5.929941212669722) (0.02712405746999033 -0.02135332169868785 -4.616868474232511) (0.0001709516513239929 0.0137630679029266 -4.596868412428268) (-13.39630676179518 8.388895382391835 -63.09191071629079) (8.210223303462199 2.648230411171664 -59.16872558347771) (-0.124844547708949 7.131862771896537 -18.27120842564243) (8.547412235396372 9.907647831972547 -48.32831513805649) (7.291077965603844 -1.507732330465833 -55.75986812125171) (8.737591310816224 5.87941954698727 -67.11985069089222) (3.567006835351354 4.388843416436519 -65.3030424898659) (-0.003795661433163324 0.02136814422264827 -7.523416460825342) (-0.01230740836269725 0.02116509917600145 -7.507983546879685) (0.04173665856385067 -0.07601295657982528 -7.503751753136647) (-0.008641684741324467 0.155403175800521 -7.404981387079096) (-0.02709323832938996 0.02732653976630154 -8.557374335557046) (-0.009705399801230301 0.02023643742858742 -8.511479937429606) (-0.04623552941929787 0.02401475043597272 -8.324345527786116) (0.04033869272543586 0.04200539279235552 -8.344289687008237) (0.00357720460107896 0.01124266507210806 -8.142151339390182) (0.009078497496430971 0.001964773268451868 -8.27997539057078) (-0.04171638249239508 -0.04323056124336694 -7.349903872337617) (0.03322429123070073 0.08690952634653967 -6.272043929200625) (-0.01248038819154522 -0.05672707318227124 -6.700537230912215) (-0.02228873450337621 -0.09041560418474612 -6.88152910886231) (-0.05862570857715543 -0.0357120028626649 -7.023002292039895) (0.06052148511907586 -0.01664145879061105 -7.129950717741863) (-0.005030977032455319 0.03802301938629155 -7.016610377312344) (-0.002003374963293437 0.0419003384814841 -5.998680049189719) (4.993768016356884 4.236783833719159 -64.77191673429918) (-2.165368136961064 2.133588472851633 -31.43118823515993) (0.01897418424578763 -0.08609991238801816 -6.592538242609812) (-0.01841359372699183 0.01765891463271218 -5.995472843037295) (-0.02121808421756301 0.0009989518663276117 -7.356698341456752) (-0.01089903127020981 -0.01354489497601356 -7.260858689801166) (-0.00815103086860498 0.0001367921486197287 -5.817353535589216) (0.01462085388809839 -0.009873620035680885 -5.885757589324888) (-2.062211854202866 0.1663219704986192 -32.26666956808685) (-2.612254979293137 -1.696294169868246 -37.49374335842591) (-9.286630058356472 -5.363013477522971 -51.48097474354179) (4.981932161982878 -0.7481848824335913 -31.36389754220257) (1.964994649783234 -1.230195485350311 -41.68137378045441) (-0.001857856118128861 0.008395101656310541 -6.12889191678079) (-0.01800325527511895 0.006196959123052828 -6.405854884571728) (0.09222727248706819 0.05991867814947667 -6.510191755862254) (0.01291163487279416 0.008726370314161853 -6.607566224422663) (-3.808057885239153 2.026306594954192 -51.70836965412654) (1.422925079715315 -3.229057480247721 -34.8848637133656) (0.7967144423642696 2.541503509378486 -70.21705090087821) (6.815274854678789 -1.356234784026051 -47.25624771052153) (-2.358499647012063 2.826701320792972 -38.10417929271047) (-23.05787081128959 -8.789725135254605 -33.45877712091602) (-3.897227696419656 -1.727954142622118 -46.16874265942668) (-0.0094872808097785 0.01276030087751952 -6.378856927355578) (-0.8915281966284749 -2.427741245864623 -30.91114490789525) (-5.909322167615024 -6.909292199596699 -43.54013553023012) (-11.96323011249282 0.4478511485077079 -41.85443916067722) (2.79054650074708 -1.727107081230084 -50.79205825820465) (4.883880224491828 -4.797816725751639 -36.76956132688282) (-0.548742772279885 2.921648601644072 -58.24975586958379) (1.152556098951939 -2.619533476543888 -10.68504799376278) (-2.029726851104976 -3.404288379440563 -37.68942989413979) (6.353812953744501 1.323360163369682 -37.70776765134794) (-0.02367444713668743 -3.423234096148529 -36.01615466467742) (5.065425783486652 -9.178978606309546 -34.46145777495476) (-0.9311509605578602 -10.71478719946926 -46.12324218348798) (4.361827885675851 0.4940596154725232 -48.43502092770124) (2.728093495584162 -6.110559644852954 -32.29078318646424) (4.200696144183755 1.573660262765709 -47.88852011611429) (3.104521947532861 8.247786467999104 -49.91054658183746) (15.01874913695964 5.17397595666815 -36.60085301824056) (-0.2544480609782034 3.355636072292191 -57.92170768257157) (-7.162903070947888 -1.552171220444885 -72.59653629149864) (-15.50423237116639 5.681889695198632 -49.99353233884168) (-0.01225730500166035 0.07872061977720043 -7.048973525857869) (4.723678735806558 2.351334806038158 -35.5343777241075) (2.230696030525558 1.137988680831688 -41.9650092717797) (-0.002350380511196576 0.04672296626566035 -7.151321162940734) (-0.5308507225600254 8.996885388592901 -40.70698802864003) (-0.9259942045808605 -4.258939376966307 -48.64818230802936) (-9.867605172606185 -9.564553773392227 -66.14967675428366) (19.60246440178366 -3.828331116996231 -39.67692628032015) (-9.795936221505062 1.50660892756186 -31.22905253638059) (6.608952594778875 7.432090464839414 -38.7149916596809) (-0.1732400151996069 -0.004058565662870137 -8.118663486553526) (-0.02335281574300227 0.04845788078838596 -7.039173081306413) (-0.03937022603745909 -0.003343702143518095 -6.918742181527189) (4.421957165632373 2.546285438235362 -60.11134666738742) (3.336002715317572 -1.601346911047811 -60.06904647860013) (15.47164783715359 -3.283070926422218 -41.55906615951177) (-3.289235821099192 -0.2716777517624311 -40.10736234587457) (0.459833231976063 -6.443934359403538 -45.98145435780365) (-0.8339246903619736 4.059327075236059 -46.24676266199614) (-0.003745294199159633 -0.002372361862665793 -8.123738352643299) (-6.155061073402279 2.4641761378733 -40.14356433740316) (2.565089357540087 5.702449718867719 -45.63280596750463) (0.001780098469654065 0.004440668022794912 -10.59667474005487) (-0.002351489133957337 -0.01535354637641587 -10.57460639529481) (0.001237466341672094 -0.09892353983183315 -6.445519234312476) (-0.006952537047678726 0.02107786033299655 -10.5878791043974) (-0.006249610681174781 -0.1160844553294717 -9.709888957283416) (0.03907688538629867 0.004667254084767544 -6.290316350849759) (-0.01607962634706941 0.1334566268174989 -9.715224635389866) (-0.001882724868797469 -0.000307026796220728 -9.291066677659611) (-0.04001899689655249 -0.09090759687468554 -6.859006051406429) (0.02867803152574319 0.01031884286989388 -7.784970585229257) (0.03683570257532676 0.05559253490875364 -6.834806883850101) (0.03222882828311194 -0.02242454299835214 -6.783092679093326) (-0.09347924678064026 0.05661328715844648 -6.271521662478174) (-0.07462959390774088 -0.04255744874423724 -6.236871347832962) (5.008859498248473 -9.3467102870127 -51.91856633242917) (-1.787303553745496 9.988895701541143 -24.53217796415927) (2.52002680559846 5.868274631537325 -57.99116400745508) (-6.430930550074883 0.01929351450860706 -52.5757279098313) (1.644424953996545 -7.622152928019114 -51.38813169560086) (0.4658162615352328 -3.342826791698197 -28.40148834657447) (-0.01859773923166565 -0.01933715118367572 -7.483712804288209) (-0.07059600855752829 0.305644363061082 -10.19461117497497) (0.05964225139782091 -0.0687594180362513 -7.159411845921861) (-0.01733605237494985 -0.2008563902060715 -7.522919932017309) (-0.001683508986527315 -0.01406568290706099 -8.542440732217804) (0.0146166013238529 -0.02545889821179968 -8.589821037329013) (0.04548870427790521 -0.0945042634242841 -8.41026504437038) (-0.06801319124048419 -0.09517969391386349 -8.544971017202929) (0.002337836156345217 0.004680219537069842 -8.117245323108365) (-0.07998368626666978 -0.1145883603210215 -8.222360466570288) (0.02698784415734457 -0.08612452812838091 -6.298393764204366) (0.003458140082056124 -0.1194292253128921 -6.426628555745866) (0.00807565754839141 -0.07145350878628383 -6.439200772237468) (0.1229895655505319 -0.08374302615874191 -6.607704282561466) (-0.002243637840189897 -0.01811510472865143 -7.08961092319735) (-0.1142115951975639 -0.050731066367471 -7.09624128924915) (-0.01897279885064243 -0.04835182993843521 -5.309844394032022) (0.02315323963441591 -0.01466181177337824 -7.947265853944666) (-2.774079756824047 -10.29110948045361 -43.25588859101897) (15.41045689181671 10.98772663571081 -57.88427798408014) (3.53210203958945 1.744903377757581 -36.5730815148057) (-0.8482363334284606 -2.19390831709659 -42.64089541268915) (1.366077562780013 4.842489984677643 -41.8104495133518) (-11.14136513631179 -3.885453044124162 -40.24383688493537) (0.06424184940782371 -0.0354579695449255 -6.004591244590711) (-0.06818926071600777 0.1015532273016783 -8.199195114907214) (0.02013663123218844 -0.02032847373548217 -8.04753876615619) (1.325068343694574 1.195962789238907 -57.22069939077642) (0.01772230930530477 -0.01634559166712512 -7.055454098467743) (1.277177922138498 6.392435346799759 -52.81002319080326) (-1.273636402536078 -0.8402055768415461 -41.5968531047868) (3.179363709232168 -1.437034281545504 -36.96892159109569) (0.02144874570363886 0.01006761279976185 -7.996859106105134) (0.1512885447536578 0.7547650060615119 -29.84331465057433) (-3.461954699836696 -3.45797246417979 -55.90781127489389) (-1.46944487799305 7.638780156439593 -15.89372496941891) (1.820794664514046 -7.669713965596568 -16.23899836523963) (0.9542253491704427 -0.6104804450485934 -41.29709226506566) (-5.318091479802356 -1.628150150956854 -26.2924277875648) (0.1211428363654532 -0.0548894152384834 -10.23279795223939) (-0.1131887003301134 -0.05659858553460566 -9.344635887000456) (-0.4127690321400014 -0.02745455690461159 -9.915501457562561) (-0.5908036490676221 -10.2690590164067 -42.39931602258214) (-12.3260199461862 1.715037147599788 -38.48371283500635) (-1.944703075668134 -1.304410489036208 -41.39594375139612) (-1.536080913251259 -0.5648188397884524 -30.17662087280061) (0.001566092257835402 -0.04534295289851699 -8.390206107626257) (5.899174075996778 3.924048174196869 -27.68407274964339) (5.572304066330945 1.97091128045566 -49.48843278299853) (7.764245099171378 5.839136398866167 -48.38237069091653) (0.01324173116720592 0.04629761619323621 -8.370005170709712) (0.03309502080443819 0.001228256132790053 -8.258443663440007) (-0.01871184014858963 0.01907741309623606 -5.243622496563406) (0.04940482279240348 0.01384534869063063 -5.816888219003542) (6.439494451599302 2.171880122713988 -39.84989004521725) (2.736983197376162 4.547465830790692 -37.09567127281322) (7.807347920033316 5.733310104997399 -38.91783993211006) (6.84008029573547 -3.288592318243343 -47.73520530780304) (0.008770706570537997 -0.02087474301542388 -6.076665226858293) (0.01210670310111285 -0.01564366486526104 -8.381692575934265) (3.871912272985995 1.221379272238126 -24.97050968204664) (-2.927114818890121 1.481197919624336 -26.86747366492088) (-3.297240439526146 -1.310143351115874 -44.50078136060984) (0.002557520036821864 -0.06679547309528601 -8.213753634629795) (-0.004882189804555431 0.06740535815641449 -6.034913388593992) (1.903875623746182 -0.2360146765694424 -45.52342114923326) (-0.5027337240886747 2.141060228333328 -32.15404765926526) (-0.0009331802938303426 0.0009800256582317053 -9.296643482118638) (-0.02017561623897447 -0.04258345914808272 -9.322704002549242) (3.300762441691798 3.171035532180294 -49.63583891881218) (-4.1127681292549 -4.317183658668066 -49.90588992180737) (-0.05574138831560776 0.0532949165908861 -8.166297146695836) (7.650554470743677 0.560257116356599 -25.91378681440906) (-7.833817361308672 -0.9054924836578884 -36.16937721744421) (1.874894741823499 -6.164971818829704 -26.81151687621621) (0.01987919233349052 -0.1590674008203241 -10.59511481485115) (-0.01264068680136633 0.1674188413242273 -10.59641892214113) (0.01171427076905966 -0.000126737987463325 -9.968884575162026) (-0.05136137772668084 -0.02302288494493686 -9.496126802810462) (-0.01096109011647923 -0.01194104546730269 -7.163157222167445) (0.01612515262001452 -0.08987715668654235 -6.402142909128531) (-0.02317348382959546 0.04452559161011603 -9.561998585232462) (0.03818515254774722 -0.0169618576927512 -7.677029304660753) (-0.07683988661447294 0.08743084348057729 -6.317080414166718) (0.04200361327520981 -0.1131793828464098 -6.240233988664786) (0.02138604449471696 -0.008308514380843859 -6.265535645430966) (-0.02810663547731665 0.0003346599408998088 -7.497758552593935) (0.03182043291871993 0.0235301508780175 -6.070959910214317) (-4.460346590230075 -0.8051244854104908 -34.63869263499904) (-0.4483940428762606 -0.006173441671852853 -38.86047299141794) (-0.007249981141129236 -1.604516332490061 -36.41671811791909) (-0.04338061881040528 0.01478749184703868 -8.376103712059576) (-0.04264603231928227 0.06953175685157335 -8.416108729846954) (0.8955263697962725 7.720858143763198 -41.37301150176214) (1.273612251666013 4.42163236279027 -20.99736992411357) (-6.504990217367148 0.06743533650108502 -32.50293598403281) (0.05518879438904767 -5.285880776570357 -37.28074840026422) (4.412252040174154 1.512046602017817 -34.25587608796077) (-0.02653091623935629 -0.01950584349393411 -7.921291769116688) (-0.02012358739555111 0.06119817918837728 -7.982602396252612) (-0.005731050498994032 0.01645688168467657 -9.338250753889129) (-5.399326054589912 8.042533732714329 -39.77601642544637) (-4.083383199482333 2.014935900603906 -38.72664180030461) (0.8189800261797315 -1.289181285677316 -32.2921540939176) (0.1393198594835817 0.02198730612717858 -5.608746877642567) (0.1228367581168012 0.1701205300240702 -10.20411813449144) (-0.0143078017233037 -0.0064911028343844 -9.128072798653077) (-0.04494244825377671 0.2767568749645754 -9.517029352062291) (-0.05281698621967962 -0.01706591434495151 -8.863831273426243) (0.02730847881719586 -0.06155541804699645 -9.139449301364408) (-0.008172640555246007 -0.02669467294348973 -7.931972771810569) (0.03251699156280707 -0.07395877766252738 -8.088343649036743) (0.08108736029734101 0.01801597200427166 -7.219272236806733) (0.06361184545134882 0.08144293854088445 -7.266526897986895) (-0.04785971409132169 0.01175030590000335 -6.539932852505628) (-0.1400877915602438 -0.03364927615710485 -6.54010917928027) (-0.01277128723328316 0.1354326658041023 -10.88577715245477) (-0.04275171847203195 0.01842545450180254 -10.79326708838657) (-0.1003604914486657 0.06683290970644735 -10.3680990605389) (-5.01255285251753 4.78604715100678 -52.8818262821004) (-3.237069625990561 -0.8046067571862876 -40.78609417548138) (-3.676518309809856 0.6046300350660812 -35.57341924717151) (-2.958710747112798 -3.305603179719473 -44.68768162307869) (4.509367470269027 -3.393342806097881 -41.62710105061071) (-0.01541624610070199 -0.06744480140074094 -8.284794835138239) (0.1211934298806382 -0.01328363191245935 -8.030364005920029) (-1.951943072576198 -5.76019173249091 -47.29300525301089) (11.14842754727287 -2.328825682128431 -44.08215443230657) (4.155533244866412 -0.9898929005803314 -36.50256069974055) (-2.736930180733839 3.454759344093531 -36.96549917373676) (-11.51296043018519 1.180997598433413 -32.50804975543153) (-8.274818063097994 -4.288817350650996 -47.79808862479877) (12.20830897773859 -0.4479910327554739 -42.47693869824154) (9.66726914110764 1.162476947917708 -34.36352158342486) (0.103689676403419 -1.042267456682566 -31.35527947938323) (0.7082365731524689 2.400984747576545 -40.14382291953342) (-2.808700325704627 -5.5601443867482 -46.76213818529147) (-0.04904879006688628 -0.08157778837779975 -7.093306520979679) (0.01595498029506895 -0.09817489108170972 -8.732938086568184) (-2.426211254857036 -4.928329679211866 -34.0220189704405) (2.779963473630304 2.297320814101105 -32.20383180201615) (0.01766185163156925 1.630954333247583 -43.18828863180996) (5.763070852561745 -4.202009629031274 -45.07342033663556) (5.881714783969526 8.826402481704836 -37.35235525874282) (0.1869640589655819 -4.132237664018119 -40.99859463549308) (-1.361951772339765 -0.393311044922215 -21.69427610731273) (0.0561496177663815 0.6851051123091199 -25.41460495151211) (-0.01427580846953519 -0.12330179606844 -6.821264879121188) (-5.536677858701283 0.2646104378906474 -43.34167390415067) (0.1318625754208552 -0.1164358013469217 -10.30640945174829) (0.1260278957690648 -0.04643861000503105 -9.94955478377368) (-0.00376477237975316 0.07647080720769073 -7.599368023380565) (-4.170792530884478 1.158674094072019 -40.10076451543046) (6.344759098156666 -2.113348821658361 -28.21177927256226) (-1.501489934265086 -0.3460612383187548 -26.37353241298857) (-0.5182520877502921 4.434222315878639 -30.00717046758152) (0.6431133676523935 -1.863748426592683 -47.90826027669558) (0.3733372635152672 -0.1109360017088118 -38.87489089437675) (0.01719968598873083 -2.282484423472826 -34.26289117940028) (-0.9595589169575465 -0.4216489393881411 -33.39992955874104) (-2.320498368039901 9.633118955095814 -59.76959877175049) (-0.08544341671448541 3.699211387696101 -38.04939299464334) (-11.04350438581428 5.608968995229029 -57.24464572214108) (0.009082268326943591 0.009651842096179227 -7.383370633355179) (0.2698649984634429 -1.715067039118554 -29.86579929452948) (-1.602728412819353 3.452073239120293 -37.22938842216448) (2.2662059611697 -4.835759217946382 -44.65533688899012) (3.152597087659101 -2.049864629973349 -51.31122412936633) (9.451245479737938 3.397538816197692 -33.20223851950937) (-0.02879633477954758 -0.04400237672919099 -9.247358850766011) (-3.329312321392993 -6.446586211991867 -17.47111880956622) (4.919323676969981 -3.238384445716168 -23.99826193774713) (-2.884142742767928 3.615559047427082 -31.09029897453792) (-4.842086026519572 -2.383742925320304 -36.38733843432233) (-6.136857550802436 -0.3493790847903689 -27.59794469078264) (-0.2058358884478082 0.8762028399721457 -46.49454341227802) (-1.16736727980556 -2.946634619861949 -47.11391708579879) (-5.758795056116208 -0.956910929387314 -26.35210866049574) (3.473960263753515 -2.016645160775983 -36.66854872246147) (-1.522333118246065 1.322875513173185 -25.79584248489789) (-0.3468155025823094 1.341977974586415 -48.46093493456254) (0.0274823387186053 -0.06743484738996298 -6.524043762959492) (-0.2988727967823435 -2.197094407664422 -46.99087017080471) (-4.957460742519323 4.318241248939701 -56.06408046491178) (1.220150405203149 2.682688920360395 -30.04962233317254) (0.9489381190845223 1.756539805007068 -35.17129211232893) (0.02890459844842909 0.1224986327920028 -6.70052727732859) (-1.462686828411073 -1.187368479771084 -34.56303387960961) (0.02905768433980984 0.01108704241097424 -8.2898104292487) (-0.8620936209300341 -0.3493187747655703 -24.95238380697832) (-0.5044766161746461 -1.709287191802277 -33.81326362603782) (0.04696325160512664 0.07969580623314618 -7.176821368846186) (-0.1007012741770079 0.06047186553926685 -9.404693895180019) (-0.02316228148106891 -0.08258946715750264 -9.369118582723358) (0.2963655879397706 0.07399572728742251 -7.400005173397206) (0.1851001644569837 0.1353532043567158 -7.761858927410296) (-0.0007022728361421237 -0.001370903879221747 -6.263339249383118) (0.006470188743686934 -0.04399468641250857 -7.435599075739397) (-0.004762072857335604 -0.001865521633495112 -10.51075867680809) (-0.02058029980787636 -0.02389105193020677 -10.50167496289004) (-2.807437968685147 -3.069201031289961 -28.62045178963986) (6.687069062887055 3.175896444151419 -43.58617470265118) (-10.50477850841491 -1.300743328095344 -39.71475377498982) (6.692082102258279 -2.448978323344022 -41.0200732319271) (2.191654443632782 0.8989642951072445 -35.30214239457513) (-0.09783743387627671 0.03135692527729794 -9.112563705190825) (0.06880280728174604 0.1026201425854425 -9.294303794913386) (-0.009141095357867696 0.06413212427850885 -6.767449458318398) (-0.03528668376981602 0.03370921214963687 -8.89277023355463) (-0.022927926121229 0.08577413900530945 -9.390992557218899) (-2.380163707458467 2.692646191060571 -27.33276720135828) (-0.1119336697611044 0.004711130988841738 -9.085658613350008) (0.1208053276708159 0.03429186982436443 -8.597351596695546) (0.007819809408876062 -0.02311870059942004 -8.10276454398363) (-0.04740341313547149 -0.05328995142811854 -8.097379761446737) (0.2119186351406454 0.04885649165436033 -7.120674819392499) (0.02051999775007117 -0.2166519913484165 -7.2947630412965) (-0.143612498042189 0.1209892681552111 -8.093051107850405) (-0.6052384377117872 -0.1938384008992402 -8.577642935428402) (0.000694616581543077 0.01203493886627514 -10.90424261415834) (0.04578320344260254 -0.01222719052511397 -8.170262164913977) (-0.03943020982004951 -0.1779783225807934 -10.55696585236085) (-0.2779271734906121 -0.1011050139470624 -10.70837841874096) (1.932818824125583 -0.8223848987184961 -28.95681023486878) (-1.825650025527567 -2.815285812307647 -48.05840532753227) (0.03139203909713717 -0.01451980378116813 -7.377925293790218) (0.008882128462192655 0.0139231673386497 -7.244608421120297) (-0.03885986439218572 -0.1569469889288197 -8.124732645831875) (-0.02274370595520075 0.007502618897173504 -8.020112675087679) (0.1436428713701567 -0.05843758827199836 -7.638893109499817) (-1.990081374205941 0.3112825432211863 -26.43423098102593) (-1.121737127675241 -1.790797592134561 -39.22048057363993) (2.936576967379387 1.506883045921796 -40.89339091288697) (1.214982314420566 -2.43080585133114 -39.66795680678531) (-0.1183441485243416 3.213310095253419 -42.59220888084335) (-0.7995703174604577 0.419867151024571 -38.27158511765062) (-7.732042033119106 -1.564418166578588 -28.82876912841449) (6.915125007328882 5.142764536444918 -38.14855918296884) (-2.582204415548218 -1.28549169798983 -28.87745697731365) (0.102358164174039 0.05657385874914959 -8.448410985972544) (4.889291196412485 0.7614169528009597 -23.42738482974603) (-1.682868691958812 0.3704109589592167 -26.7377387357728) (-0.8098268555852903 -1.031073711705016 -33.12642363137985) (-0.0282895432645921 0.01326151208621029 -7.302811416242995) (-0.2047605103951539 -0.07081499385166734 -8.888084605072658) (-0.06575546945171697 0.02256625571332446 -10.48504197998964) (11.31729382453844 3.965044834843799 -50.92632601709317) (4.078272873928753 3.518254488822697 -46.98290369882024) (-0.705954572819529 0.1986551239603964 -27.06075757352593) (0.8923166622995843 0.5858672398476525 -31.06265485015587) (-0.3037915987994309 1.346099507151665 -28.75797508206123) (2.097699118721047 -0.6526658159906804 -19.05601957726351) (-0.4203085018544112 -0.02079473640736703 -10.22023914085681) (-0.04222427581100634 0.08485801469392132 -6.937852396542985) (-1.397080778263783 0.1510286475144124 -28.02078745466284) (0.03993772679562978 0.02944132507415245 -5.221083714885345) (4.089527954614148 -2.311776326107667 -19.93003531745846) (7.579964002948008 1.215816607725042 -40.81227493459845) (-0.0775852410065911 0.05709289646254008 -7.893042023413083) (0.01231679013901187 -0.06286854582545633 -5.26730864594164) (0.03839291730710858 -0.07520795740671503 -7.823215859175057) (2.972566044745103 0.3009594618950795 -46.31624314619929) (2.943076567657522 0.187682093226796 -24.22532986792181) (-0.1104867465174509 1.494638882024107 -34.38791209774243) (-0.01231642526350361 0.09364887250426246 -27.86283198219604) (-0.5351400785786942 -1.597365278175075 -31.15939572796843) (-0.7837410858683203 1.825177173875039 -42.69228529440414) (-0.1613655950819835 -0.006469213567550638 -7.100850604946142) (1.007707835098026 -0.09548368232196563 -41.49994971237493) (10.94408517799657 -0.9102251325640464 -40.21714610964718) (-2.237782179189229 9.120122978151308 -31.56448575201648) (0.7397834294714166 -1.169800272997666 -31.5577290814758) (-1.2607832720047 1.206480897104036 -26.11177727337053) (0.2265278484297759 1.33959056269019 -30.43262664972741) (1.656977695068459 0.6106019093313049 -28.52635901143315) (-3.76308328442733 6.166964656293073 -37.84004773921956) (0.3580630031373288 1.017148248810247 -44.26260826987817) (5.913111038744922 0.2981399042816167 -38.35477604596304) (0.8195187557733283 -7.634914371978553 -53.63098659397026) (1.284566508306082 0.7210593297393009 -40.20503674050974) (2.801951223832558 -0.7058469491860804 -28.37309827494716) (1.949362699615098 -2.941930068553856 -36.19881058236373) (-2.026996824783508 0.8387456242049925 -34.43414397249018) (-5.423443492907135 -3.127123057425747 -39.237456249696) (3.091857415807094 5.021015822211634 -41.10910061876752) (0.8229318056620563 -0.5206170706084078 -28.38642994562408) (-2.326387787902262 -0.8900708038364246 -23.74458031512231) (-1.993552976502024 0.9794627341248452 -27.88353314501966) (-5.806588545607115 2.316395102659768 -47.94244946189623) (6.217606111447094 -2.166385316199174 -26.46592564610892) (0.4430702917688061 -0.8501412563144328 -37.1464678189666) (0.2897260732108123 0.7489779427882681 -26.28111874398448) (-0.1226560615155978 -0.6727209851716618 -28.67365176009687) (0.2928018521885207 -0.3786550269891821 -8.941603107044317) (0.1722383232038101 -0.01065112823082388 -7.147838921517124) (0.2322073138037156 0.03855259157774823 -8.521257447584961) (0.05165844337709027 -0.1235173096802976 -10.44294628497002) (-0.05934917811358885 -0.05652169192531865 -8.905294160853044) (-0.1374358139267195 0.7305003449164263 -21.62092702496609) (0.5529741187599959 -0.6591514618449225 -36.14403683476751) (3.437716467543781 0.148929865323457 -35.86522996970882) (10.16544246603701 -0.2731766478108644 -37.43478122368909) (0.5516907705124552 -0.3471085436987302 -24.1749079612101) (0.4641747667863748 -0.8214280602039905 -20.46944128282784) (-0.2362077076709181 -1.899752605256501 -28.73696374557211) (0.5332886950389459 2.327076351768926 -25.05136334038387) (-6.102135509124237 4.853110788995133 -43.82053849134195) (-0.4445106933085867 -0.02835610297073055 -26.40188163510257) (0.03849115868250756 -0.1094023987295085 -8.814512190961421) (0.1199826670886803 0.002550090124297565 -10.37694783454052) (0.3964283462177742 1.399855562181247 -21.32628750067202) (0.007838505526893899 0.01195250472501821 -5.941086902233789) (-0.02416497555368362 -0.04368069564104623 -5.9773441439871) (0.3990259798983062 -0.1116419000924864 -7.025608631383445) (0.3093120924899178 -0.3608309415934624 -8.199358106579307) (0.06057328371931404 -0.2391784784508934 -8.663384595253891) (-0.1909927941405823 0.004825847831588386 -8.821959638815484) (0.4264880903732667 0.01793229558783969 -8.840199827319372) (0.1422734229201826 -0.1343710184729713 -9.679464664419283) (-0.04055832807695965 -0.02032041411760897 -5.920319657818053) (-2.643601649983283 -2.304259190503058 -46.37934989614774) (0.03454757186398084 -1.408984810102901 -31.17765373332588) (-1.439949368143874 -0.3107407573625065 -25.86463016007173) (-3.938997725944825 -0.3316543248419233 -35.26540933301207) (1.095965879735661 -1.646122262192871 -32.26018449046541) (-0.0655988143051708 -0.008679677799559639 -7.751216518718604) (0.3066041022390283 0.007327864497559001 -7.809277123875976) (0.001379787861181536 -0.2714194998793666 -10.26064075691815) (-0.03547077775384248 -0.008428412459288638 -5.956923763363567) (-1.381346475887899 -0.2211634558473358 -30.16404596208915) (-1.939639140844793 0.3497440763436577 -23.86108895708382) (0.04383907620428779 0.1740454925442592 -10.4800233209936) (-0.04518077109825015 -0.1032458376438765 -11.5176898442584) (-3.352704944273516 0.3643956182152442 -29.40979553828415) (-1.086132558652406 -2.302892321080734 -29.9117308298387) (-2.25411013517013 1.975781522461083 -44.17989963426755) (1.464834385148079 0.2478108796795689 -28.08397053450733) (3.079101073112787 0.3585485180559222 -22.70645576048727) (0.02092347728864983 0.08200640978736971 -9.258714017670982) (-0.01038270886407903 -0.1057523388412285 -5.354740319729972) (-0.09150044232272592 3.028779321168541 -33.9532392926037) (-0.09871514929258433 -0.2073535227002834 -11.91234542381322) (-0.659519952156213 -0.1233395872174387 -24.91699197000868) (0.8868052325828937 -1.564406261390965 -22.59209316538033) (-6.858526818314973 -0.4472173787091226 -37.78745746610475) (-0.09936514624618409 0.1237743456498087 -21.15632591591042) (0.02978392183823997 -0.002812061550722396 -4.640082794338094) (-0.4551493073370653 -0.3878798061041295 -28.88262576906645) (-3.908494354427894 -1.055184564039018 -31.22224458523964) (8.913619918954076 2.397557882458123 -42.15451448150323) (-2.127707226983164 -4.434714431888641 -35.96743307686823) (-0.7286590092808359 -0.04452946900279975 -11.93775324971027) (-0.02096590752008207 -0.03183814654831722 -5.530142582630011) (-0.1224943868462646 0.2687146751241896 -11.15136276368777) (0.8096172566887867 0.4868174770845348 -27.82590948295324) (0.3273048681128625 -0.3156428965643224 -27.52614873379004) (0.4699925219371816 0.6472492599533859 -24.16942426126607) (0.3239980917623632 -0.159381211535982 -27.26531716257098) (-0.2893696174943374 -1.171376338520867 -15.03901350409484) (-0.05609020726555183 0.01349923886725989 -4.621297242372931) (-0.03963144734973628 -0.08596726134553759 -10.59537096337899) (-3.168298031003879 1.35906126291632 -24.30794393240759) (6.221692478387141 -0.5255058077988402 -23.69999629628998) (0.8996500405467897 0.5772171723415538 -22.87151556569786) (0.07381281062076728 0.1562459026468544 -16.46745017861045) (5.26698006641185 -0.1827515306180566 -15.27982653032765) (-0.03238390126165725 0.1370939847479323 -10.49514320897152) (-0.001764471569429489 0.0139759496430636 -10.04086749674298) (-4.994309971935877 -5.63089240574867 -42.91786042691761) (1.473514896920825 1.110795558202547 -40.62289918252421) (0.02124603988512064 -1.832020955463275 -24.97718255232166) (0.1159429274185809 2.864832466933589 -38.35414571868252) (-0.3464000783513524 -0.00844496193181438 -6.485527093614715) (0.1892656611743345 0.03391957552975877 -5.288018862085719) (-0.2450711429238139 -0.3791411726059408 -7.348403619221274) (-0.05122010308381553 0.01829727570032921 -5.513114166775324) (-0.9122617489456486 0.6823246756509356 -28.02157773523429) (-6.376178657243567 -0.2601579282576501 -28.19512479793179) (-0.4330209517393674 -0.8265735728827753 -33.1215827524975) (-5.875767996986868 -0.3087615463975089 -32.40091017398927) (-1.130267454020296 -1.725833226320286 -26.68554801510235) (-1.302058380421002 0.5234009147467972 -25.53902172018942) (2.318906591430896 -1.060321826255803 -26.91200883614623) (6.783429894215576 -7.422639201263058 -43.6027096098514) (6.780033921262512 2.453615564459297 -31.02695731582605) (5.190900218351828 -5.928546824158129 -34.90138860947848) (-2.828100242439408 0.7048620866844089 -21.74245146598801) (-4.473806544002174 -5.126671639143338 -24.31304444227827) (7.244001934388854 2.154964574604321 -34.07977185056701) (0.351381168116597 1.511543557288946 -42.19673364621829) (0.887250739742692 -0.678719662966649 -24.99888418004762) (-8.199093682882502 8.976523388484056 -39.86049321085959) (-5.33964977832886 -1.890571180866335 -29.07162097307172) (2.587191312112824 -0.0792010181607844 -15.68776647972829) (0.08969752895193306 -8.335202835812684 -50.87581288409903) (-0.004088570691052913 0.002074504933363072 -11.15053444642182) (-1.7798881482042 -0.0134741961682841 -14.71992144873852) (0.3024876805097625 1.921114428669454 -29.13378312417119) (0.131271768413125 -0.1462231411123416 -11.100605846741) (0.09360282944035114 -0.005934423544746902 -10.28201365561629) (0.1179646896669231 -0.01079691527725574 -8.757634984654061) (-0.1230191177794198 0.0004726944888400302 -10.52940489373858) (1.879057170979835 0.5872173673086003 -27.48219467559072) (1.410819905887282 2.58304820174794 -40.62349292768549) (-0.06000305934573123 0.9842429250825586 -33.96697828016845) (-0.9239558535652649 0.2036279323779009 -16.30846354148127) (0.3232078487409077 0.5536411886974629 -15.68384986221218) (-0.5201027218658579 -0.1025808155103493 -24.27037312192431) (0.09398209498907067 0.5980523199515172 -29.23438958215892) (2.09950743384158 2.963605126416303 -33.92778316228733) (0.4549817654219487 -1.01068595346813 -36.43636980893226) (-5.501924679513106 1.164642479203712 -34.96552688255677) (-8.652867438629899 -1.455685686192596 -28.20086818650442) (-0.506315986942986 -4.498718972931886 -49.75345762131372) (-0.7974268854161648 -0.7880941399494094 -17.28304698244126) (-1.369799409149955 -0.01869475488733037 -31.58336818831341) (-3.504255903617854 -0.989049194657867 -16.81465234102626) (-0.4374856087032012 -0.08698011924111401 -15.29136749195363) (1.308349272676589 0.3065514732041473 -17.74374332644238) (-0.02853740934507578 -0.00309959375171261 -7.370079865236257) (-0.06249831280927177 -0.04602865800547986 -8.474966980841311) (-0.1902778720129407 -0.1906306242995528 -7.972683882173248) (-0.09854302067234587 0.4033201517710033 -10.45006291012762) (0.2053045661297642 0.01271677056484893 -9.090324142950463) (-0.2150253335135441 0.1927793245460166 -9.217282003153894) (0.2075571408096117 0.08541131805886626 -8.829718018264444) (-1.790885224065386 0.7291164723830152 -27.35861191335179) (0.6672174478850859 -1.498707434082877 -22.1750612245153) (-0.7003067376215635 -0.06660569895665377 -25.86122314566843) (0.5540036287308893 0.09408326769679567 -26.65343053381548) (2.663764349694162 0.2536427558022206 -27.34593100679632) (-3.335259422416984 0.06841089209037154 -16.64620033515915) (-0.5182158327161179 -0.5732066049286151 -22.19316582093285) (0.4797920586854864 -0.1366157063163875 -18.71735503972937) (6.602257168183282 -0.464017705187014 -34.47103393453713) (-0.08001103395812334 0.05908678019703384 -6.541370369034915) (-0.04923210012459781 -0.126785787734556 -8.94649464844572) (-0.5953566800648281 -0.1223700060570896 -9.040006063423171) (-0.6614023373442075 -0.03204611656154566 -27.10270871834102) (9.841583319644187 -8.312212496866319 -41.24393091192042) (1.058495262271478 -1.181709024701819 -40.08166645523338) (-0.2636143959863239 -0.561068984720185 -10.80911932578208) (0.5214266613067893 1.016897907544756 -19.90544301634859) (-0.2949041102701187 -0.6531017594335999 -27.92637564902633) (-0.278052523142711 -0.1345867167926439 -10.68136557573545) (0.4093411616703672 -1.901575009560557 -46.89402595532805) (2.796190971113128 -0.2448449656774813 -38.86787639599757) (4.170747757666983 4.044313525407204 -36.73261170176914) (0.1949488680408697 -0.6090319943163978 -13.57303187552341) (0.9595008431700593 -0.2225016867570808 -32.2677256783392) (-0.4668167949996145 -1.411242993934406 -21.23834489641169) (-1.835312509027391 -3.518665935466815 -24.95197422880772) (3.573449479061708 -0.6194246804443584 -29.12408020285831) (3.202034310719991 2.096703952965873 -32.17419931026814) (0.8194014469836837 0.5306501028021784 -30.13397913516894) (0.360974507379632 -1.370795922771449 -36.5274677959769) (0.5603367750566683 0.6508922570334978 -14.36978022182733) (-2.639819826822646 -0.2002000779445337 -18.2049155727194) (-0.3401345887138164 0.5850142794046592 -33.9003303835036) (1.939676071769706 0.7930246811345663 -29.36682573190371) (0.5860368169226644 1.304644063707182 -34.60389737707671) (1.590528473140197 3.120731793381226 -32.26783715537361) (2.183576505038388 -0.3538982854670247 -28.0134312068301) (0.07724273413314775 -0.3125165060242385 -22.47720609998128) (1.527733397998495 0.8502011293844741 -18.82765064984557) (-0.7473169471533858 -1.817203910537904 -33.78892141502278) (1.879337389078598 -0.06942337573681176 -20.22463954204956) (3.102932065685573 -0.8671841170968414 -20.08354688175127) (0.8371884966017327 -2.831040958496015 -44.66652264144977) (1.974307021251556 -0.06966668368285639 -12.35097240052855) (0.006062106145041324 0.3698230530009182 -23.09797212380167) (0.9231092531912291 -1.395900643071862 -15.79232059035306) (1.347138730943386 -0.9648156628386064 -15.7002574519867) (-0.626904410914532 -0.8177282409344843 -17.65493861540521) (-0.5750749227669446 0.4213357397334065 -19.04413093055482) (0.2591084441981671 -1.531009218850016 -27.27878157327528) (0.08841584111698211 0.05037632227278679 -25.04511368447557) (0.6899895044480689 -1.002415951266593 -26.23980526314177) (-3.713233964930948 0.4008524310121727 -27.56965807619376) (0.6054977370013809 7.838027784024581 -32.25093895282412) (-0.9610843687519997 1.537014724122558 -22.05645811386076) (-1.963375054724851 -4.373358340282541 -39.54173407342481) (13.78660745457469 6.256651909289896 -28.5780847136362) (-0.001582138387682621 0.01534121836698375 -7.317590088336303) (-3.329348746335314 0.8226734504515407 -16.96053620862725) (0.9712493155988255 -0.8746312823785324 -23.96701417455464) (-1.438091183150574 0.6447960198959701 -20.59835926086783) (0.2501337018464742 0.68523454186761 -24.57180316850851) (6.345000137840552 6.754785247070973 -33.29247080129505) (-0.05670333598728539 2.487918745682348 -30.07948009204367) (-3.800297199477046 -2.488488151806649 -30.18249510462149) (-0.4437749165025504 -0.03606543850437245 -7.948040416493756) (-4.203567502500326 -5.612417176805169 -52.76955251815193) (-0.5576389725554655 4.213045429354715 -30.030848925505) (1.059264620077537 0.2780636896645052 -33.99153176785383) (-0.875639757921141 -2.007425163301832 -22.47819506248719) (1.635293732415904 -0.0915493719904511 -18.43974578150756) (0.2283561977936995 -0.1048413011335741 -9.68149721119598) (-0.6087465997640704 0.2799967082665042 -18.58367568398799) (0.1311124449632944 -0.02940710078244579 -6.582492390542918) (-0.4105318783177394 0.0659302791595056 -8.336012540461812) (0.1315113472121154 0.3862927352571353 -9.186902124874095) (0.7032146646806096 0.06117230281705102 -9.225958338369262) (2.160054457097877 0.1744821405568456 -28.36431296557607) (-0.2948698268662553 -0.4894390652394298 -27.99203690115893) (-1.501103525517314 0.008437696877166459 -17.09293257601595) (12.27280616162238 -0.4269699285239969 -42.5131050871021) (-0.1342336634532989 -0.797687504001554 -15.71932724890017) (0.04917394991499621 -0.02938583847557811 -6.520406781484523) (4.45485875057599 -0.5719528405904466 -34.7409866457403) (0.6640533790421226 0.09514574663106594 -6.541206752597001) (0.0107353624019213 -0.1625466617149059 -7.696274009483624) (0.0678506951466662 -0.05419097596617943 -10.44760313126679) (-0.0009343162799146688 0.07247597742491914 -8.950996700577013) (-0.03173350083815041 0.1487605383092327 -8.170204094506687) (-0.3918891013062235 -0.136910421814893 -15.41646289936069) (0.09272329623858733 -0.06925646912735109 -15.538397958086) (-0.1083767476379056 0.07019041364158174 -8.847065111467234) (-0.0386545443936251 -0.323970457638111 -10.76026129747137) (-0.497515477070497 -0.1814018739255815 -11.10861478622443) (0.4671566281356161 3.482968968628755 -32.52703239429631) (-2.692150181330956 -0.5953869797221624 -9.63531827783355) (2.995738470800099 -6.126694351228705 -36.75458412034677) (-5.047458264381025 5.971916194537579 -39.92716955307243) (-3.868227925601474 5.54171494098829 -34.98253845849765) (4.17949098128246 0.170167059053792 -10.43584093723009) (-3.93350510418603 0.4368025941339336 -26.09623446050977) (0.404832841820554 -1.014002216441001 -17.65883723893381) (-0.07529795806279981 0.152662026248404 -9.673631412800843) (0.1422034912814793 0.1967348313111535 -8.494306835901282) (-0.02586817376073858 0.02829247060917357 -9.298274220293285) (-0.713814617652235 0.295220925333926 -11.85124978643073) (-0.1020978321144997 -0.3428760465139411 -17.55489480039277) (0.1385007362483701 0.3870175470026238 -9.579496464467264) (-5.239235219683334 -2.435819076063083 -61.12354039074522) (9.419094532291483 3.514432997665249 -27.7085980508761) (2.303227819221954 -0.1239985236266474 -20.3805261025736) (-0.6687555901811909 0.3418622701753024 -28.34363260588867) (2.39612322753289 2.331601046812794 -22.48834300224778) (1.724204510609075 -1.086973944954277 -30.80880906034334) (-0.1063392408757547 0.355501506074722 -23.35901274195841) (1.480343974021219 -0.3374058627664433 -20.0986949235245) (-0.5488978362279181 -3.224200988855127 -40.05422628037704) (4.708807818759554 0.6859504110592206 -33.0659227497903) (-0.02182116119517064 0.8108745309299203 -44.55844389038808) (-1.812823275826944 -1.962512161447735 -33.33252856017093) (2.827623784694095 0.3163716261221099 -17.85043809169829) (-3.392372977165221 -0.3734454942262923 -8.233407958353927) (0.07307436064481387 -0.1949748737791498 -13.01462907913452) (0.2468535770674343 0.05733262747552745 -16.90559601848362) (0.5711918035533823 0.8331029792890792 -16.63206029391561) (0.4368292152764568 1.296743991772752 -23.43280842698654) (2.705459574546077 -0.9935844092960369 -15.66428484873266) (14.04065692252152 -3.629554118238691 -26.6006439399679) (1.135381939166464 -2.669264294682551 -23.07629022461677) (0.9176852115170694 -0.2065156067546308 -8.096880681354556) (-4.284044998289501 0.9166248429973359 -8.924701009284822) (0.1414698921071348 1.022851212608853 -27.10262713507527) (1.093878769760974 -0.2942503237443442 -23.97123168873668) (-3.986670474595793 0.5401728102748097 -35.74996434326373) (-2.950807174723202 -0.1184718160307677 -23.54610309689734) (1.403561455747585 0.3919126536502503 -12.19013909338238) (-0.06726890942714456 0.5577565801763013 -27.69928816357722) (1.983309750892994 -0.09612322024849101 -8.668963096028564) (-4.359610778727139 -1.85518074839065 -28.91673828947258) (-0.4757948977195481 2.514964564105068 -34.47317640288942) (19.01417864866017 -6.386216544049605 -45.51581034461361) (-0.08321462046008907 -0.1507501908112215 -9.292533001388414) (0.4443941689753753 -0.177824812425723 -9.133344211804626) (-0.2373260142424518 1.676652634738515 -21.59102160621847) (2.2607741583207 -0.9223525907543934 -38.10402423821622) (1.166073949949572 -0.08944919404539742 -11.55653182342937) (0.2294345082389017 -0.06373165577267663 -15.2534418372747) (0.08571756969877473 0.2861274978179251 -11.27117845680329) (-9.539981606351947 -0.3328217925271242 -29.0751621479553) (-0.6445443613058666 0.2327362841236469 -11.53418542436026) (-2.429164095017604 -2.059098166896104 -23.91493291847318) (0.5784890775136731 1.806430793180346 -23.53389078855645) (0.5721966281492165 -0.5981354070390154 -8.83839551875851) (0.2169550612775688 -0.7306335779708156 -11.50244272024258) (1.021866819281304 0.008073487045712258 -9.962007341841272) (1.769732871881468 0.2149630788860878 -18.50198443387696) (-0.777831809750255 0.030242365988148 -11.29429188474291) (0.6211421237228408 -0.5068125264511743 -19.71079466108544) (2.076093703660791 5.54873281081375 -24.89354671345257) (3.6969036003333 -4.272249018117508 -21.4209594448752) (-0.3874152514609819 1.192623085999028 -22.63529757054485) (0.6287110864659721 -0.9484563273851152 -16.43607662864354) (-1.907142358194976 0.6086019124746275 -17.23176448147789) (-0.6755768128054827 -0.7348460818907201 -28.8249611045292) (-0.9372867821603335 0.3378709806530427 -12.09663113686301) (-0.555758882109864 0.00600995757663994 -19.04564649543844) (-6.793344064377881 2.231328008428102 -31.07093065359464) (-1.185964261388496 -1.518868883333086 -12.34078078727256) (0.02165120307544969 -0.9828984407600109 -14.09399430235228) (0.7768534158651501 0.08548090597480085 -10.27754611758041) (0.6392199979080142 0.81564948295138 -9.632732217478235) (-0.7500396954383146 0.3427631888630404 -11.56015013254622) (-5.131875988822068 -1.321109941841945 -25.8677019008581) (0.7981238905708941 -0.1418138769193222 -21.33659827296918) (-1.6619246500267 -0.081710562910164 -19.84738580500501) (2.761467094323157 0.6980414552876691 -36.03473549704786) (-0.06384417557644528 0.1102635069435752 -9.422831972952164) (0.7593259110328865 6.350662160582838 -44.09355817723945) (0.716789878657404 -0.3630053313684933 -36.63049442620963) (0.0924414677302486 0.2057509237921469 -19.74781040522627) (-0.3232875606582942 -0.1072165077717931 -14.18241598236219) (1.268187969915621 -0.01690608397648686 -15.37610940881562) (0.5372463641344701 0.5653411897768927 -16.8948733249939) (2.512514016457171 -0.4510242276185633 -25.39844856331086) (4.997338347188505 1.460599181258837 -34.85602285236899) (-0.3417050141536946 0.117615489165065 -15.12848535577988) (-0.3788079012457035 2.066659821245179 -23.63594776711583) (-0.8247448686158159 0.5596528617915822 -24.97405273355374) (-1.879804652581856 -0.4155705314862863 -19.5891715795194) (19.46458665744039 -6.766331138847451 -46.54747026641365) (-0.6258040906087681 -3.045617339850547 -29.82948375097593) (-13.06047982762712 -3.225430964702173 -38.7480321132404) (0.3851465650751122 0.404332703765925 -14.9966364683136) (0.5557665381190439 -0.3892098261498586 -11.1018009395184) (1.766880983597257 -0.01998137990971005 -19.9407253692603) (0.01847018015434088 0.3618178524784624 -17.92863372406737) (-1.221926313773383 -0.1986554420172378 -21.51915222686762) (4.164836361964895 6.274145611252671 -27.22807598636247) (-2.296709286859951 -0.09151580791980408 -19.25329141675349) (-0.005174461373678399 -0.4242652321190395 -17.71981594761679) (-0.05749931294146848 0.7415779830466821 -12.00646091093111) (-1.184913691949835 -1.532002930878062 -23.6555183978485) (5.970628286569825 -0.3615356859643472 -35.33998125982492) (-3.789465206755226 -1.111390025135209 -23.13893900116125) (-1.339407307377001 1.004827468845872 -13.60382292916851) (-1.525562762004822 2.580700339445416 -22.6913335527804) (3.851181749977973 -8.144828634984927 -37.84389504426888) (-0.1643382840574026 -0.04467411309155558 -17.00736179593705) (0.02965517678978307 -0.5547850804691199 -16.18780407800488) (-2.14556635411605 -0.2326835328476556 -9.654599438317) (1.354924435099161 -0.1499510099440076 -16.02398574979033) (-3.081582205435577 -3.283305381641762 -30.45396513594486) (-3.593909940421635 1.3738274179689 -47.77762453288677) (-1.494993456813687 -0.7736752746945039 -22.06679369211028) (0.8352154148659872 0.546378328152763 -13.14299140019386) (0.3198221883562046 0.3308091949430298 -15.3582599650605) (-3.866071906821462 -0.02340852578320995 -36.35014640431015) (7.42317365393111 1.124036400370915 -27.56662068617986) (-0.4330368924765885 -0.05520795417614005 -14.05821955594279) (-0.04548121335738015 -0.8177109258636894 -17.99241997834542) (-1.449562100810356 1.522780114020617 -30.28707750991743) (-4.80716690453059 1.907737075171484 -32.8053750244973) (-5.709288511837442 -1.861748883010933 -24.55321246800554) (2.003433615727012 0.02712866837598801 -28.01475396295705) (-3.865481596914095 -3.33476500145324 -30.31925202111145) (2.079279245821357 2.199433715427822 -45.68838036293521) (-6.338685301167208 0.9832438363772056 -30.72127865385188) (10.18806136024349 4.114915159349245 -35.59381529257757) ) ; } outlet { type calculated; value nonuniform 0(); } back { type calculated; value nonuniform List<vector> 35 ( (-1.069927342712103 -0.7770619113835916 -4.120104752683419) (-0.006228636957912379 -0.02741579194825974 -0.01086113559524013) (-0.1701168615156342 0.4249043381623696 -5.40609931322965) (0.369019150097312 0.2597523216891264 -4.795112756300965) (0.6783628701076611 -0.4850293924045302 -0.4119947027677645) (-0.1822118505886898 -0.1363168660302579 -4.7159272128217) (-0.009570381684224416 0.08381047919990059 -0.008411458475583236) (-0.03721496285156733 -0.09266687830449387 -4.678955592791535) (-0.007388675032660438 -0.003538040425956941 -0.002439679145356306) (-0.05743578206905291 -0.1077095862140994 -4.758143683753675) (0.00347847040644012 0.000204829936585683 -0.003832364756050801) (-0.03695405720165688 -0.4690586527215689 -4.784869743335295) (0.008295140116749967 0.00245990879322498 0.005864269486736039) (0.06405696521662553 0.1011479001679801 -4.792455717653161) (-0.02521319078913037 0.06754698535989263 0.02040775998197616) (0.1497442742699333 0.02319736717921464 -4.870305302390703) (0.1868955664619104 -0.1700650494851831 -0.1957210726195782) (0.2144039572456578 -0.4976033106476521 -4.802648205701168) (0.1267161553689881 0.3381973920266272 -0.2169230853516143) (0.01622845768288421 -0.016698957787532 -0.1407055043668534) (-0.2371145398851805 0.1776239604221886 -0.04545467693894928) (0.1013535860936212 -0.1527143525244668 -4.88316266711386) (-0.009102058763553692 0.01585636090223687 -0.04097330831744139) (-0.4333206222877131 0.2503374223639308 0.01190081642333121) (-0.1513886482118564 0.1700432468315898 -0.07033716120703026) (-0.01017134143123044 0.01630814045747694 -0.002206791172779397) (-0.005834631593211896 -0.007693118747239373 0.002624842363093532) (-0.01776915986945007 0.04342867662662861 -0.0004486987629436574) (-0.01520865393308781 0.02320381908518238 -0.001166859635791912) (0.01537926320858843 0.01879414134475376 0.001387659630560511) (0.003343107052190507 0.03505687927757312 -0.0005363265403412493) (-0.001676593614887589 0.01233874579551093 0.006570758657717492) (-0.008980573168744274 0.01029266659929395 -0.01472191657235362) (0.01522553630974098 0.00906300534607651 0.004143488427330286) (-0.007117015195663438 0.01078800531869048 -0.01121262696661129) ) ; } peak { type calculated; value nonuniform List<vector> 914 ( (-5.319839605248137 -8.327555704641428 13.26716704751497) (1.662672580773414 5.355628461054907 14.48963779443314) (0.583618364187565 -10.02606897573466 15.28577271087925) (0.5800462633171295 5.916646328294845 18.0150666532455) (5.279539960240037 -8.327681840502892 26.05865919633796) (5.042782299567702 9.485802237178351 29.51410543315492) (6.136310276071572 -4.64832740324707 40.26563482449654) (4.507568909466144 7.859373058786073 19.47906965505973) (2.433749146105618 -0.8023292963099093 36.05226256432758) (-7.232911236011844 7.186520102226283 47.8939319490137) (-0.7993266793823213 9.149328045686017 41.67320483945968) (-4.396502943512344 -3.892199672215682 40.52654528697997) (-2.35760327466744 5.807843088479838 30.10015708596175) (3.281472939731342 -3.397333047240901 29.72049905827714) (-0.9368264137629465 -2.252165006317631 14.94478138096942) (6.084726736080608 15.82367447828233 9.065598875552798) (0.3630349109338903 -5.444322436668516 5.009435104887453) (-1.647548483642301 -8.566139606317144 8.73683310774371) (5.111112042570713 7.322409259454298 8.793166055581418) (3.558708063884382 8.107686564093664 14.62355616521522) (1.761411293054536 2.228273138912222 0.480577181371198) (1.423983815569133 -2.355828109107248 4.783715840144358) (7.504011050850358 14.24627947144319 8.297162570556594) (-1.811364059780288 -12.06924462230237 0.6439753118734348) (-2.816731859902806 -1.791838120019254 0.7748743167095942) (6.880787207806916 9.785719204342012 3.142052774364803) (2.108272723174434 -0.8210432129912559 22.41239423269483) (3.66468227551086 12.81486818458616 20.9467641931429) (3.231856432662765 -9.340396746920561 19.83400194616836) (0.5211270384002344 10.64628431773993 27.97612399248507) (0.9550141958973447 -2.714271741360907 18.73518719358667) (0.1874376428718403 4.83541023904105 14.84122192124635) (-0.7173511926871984 -3.552826278798659 16.50951401539012) (0.7625339478777036 3.902784123821215 18.80403013329373) (0.8458096948628505 -7.374230068933915 42.09049765326364) (1.789737486842038 3.31933663948303 45.09849913217433) (1.453344357055929 -5.509417735782945 45.20042413788831) (-0.7474477785318354 7.599905153659559 47.88575509354671) (-1.756452268656923 -13.64869570446368 33.14584400084537) (12.02373015481083 -1.113771920340985 47.98416272494152) (-1.016852375122048 -4.887432130123705 23.3397542130161) (3.222575361125085 15.16754157839727 26.65136577200608) (-7.32587664538162 -3.20492935998201 -35.07204289261497) (0.1055656153439396 6.693540899407603 -48.95461643472079) (-2.617746989746489 -11.18495748858114 -53.49882528729835) (7.07083134940711 20.53561818074004 -42.10909890936082) (-6.600913322772116 -23.50671958627745 -39.63003003175717) (15.00245722092666 31.17802056068019 -55.31678871634336) (1.630614124150785 21.712450991613 -38.09538650233308) (9.322472344728606 -5.308710378324596 -70.50950690995126) (-6.300061692879099 -0.7264436924302826 -43.99754224260914) (7.675714196482341 11.95938779759127 -60.06698945556328) (-10.58641008753491 -13.63875924972302 -51.64967171694131) (-4.466710896031969 -14.94357210375595 -67.1663997571584) (-12.13065697606741 -8.954186669949204 -64.90017617160871) (6.20877201594887 10.64341173812032 -53.92371917676578) (-8.351473948749749 -14.36072785212491 -77.26604273352885) (-2.979239266992477 -9.977604517306345 -46.6107541807642) (6.585278756441685 14.86587188505583 -62.91116048396666) (-3.850112481603805 -7.642090748981768 -46.36050786958382) (3.01716972610954 5.498116413908441 -50.31114404179216) (-15.75278633368061 3.007132099984828 -55.51695799721902) (6.803949312124097 -6.50236942367827 -73.55038520500369) (18.15617976962051 -7.338109133656246 0.7912460753643784) (2.281023644821774 -91.55550805908599 -11.13816390043047) (-0.8718626395726314 -102.4661450333414 -2.656516592524909) (7.500682600045955 -74.92362110866118 -4.063702337295595) (15.5805120837943 -143.1689866643532 15.41893691191717) (-1.587048945344829 -79.04109825955722 -7.391277306026188) (0.5489381580537858 -86.25514410409903 4.493840293033209) (-6.561157644949567 -97.51242394171777 -4.866703078898958) (-1.927063060220582 -116.5803831624446 -2.656563326851219) (17.38138468161959 -81.24713296403451 6.079251733517186) (13.28147857989061 -140.0965751929973 -1.767667404765793) (25.35713261506924 -124.4904419636061 6.996919737459814) (2.809292705325795 -83.06621392211636 -2.208907971128582) (6.461234852853007 -135.3199081619905 -6.140323763916997) (-7.269156265360924 -133.9843468999901 -2.522713480246735) (-16.13857648067498 -117.5493852232422 -6.814910316032857) (-5.808473044123875 -111.6153589191184 0.8145550985116933) (1.649161679859402 -87.8765978712284 -0.8092353413446127) (3.01633726463605 -100.8113271850878 -8.462178637446547) (-3.699453485146915 -82.57127151202678 -3.134172564612134) (3.689929137548582 -105.1544043900638 12.5188533403703) (8.702776810261049 -80.38842623265629 -4.580087346204405) (2.746677314399082 -78.93615372712551 8.947226383898119) (-5.948675600515697 -123.4870025796151 13.99157943584877) (-7.267670156134917 -88.00221221974117 -3.425301394008081) (-24.96210130952441 -65.11184753266818 -11.34869645597941) (13.90971994490912 -94.7147132205461 10.57979479676119) (7.357586020685097 -74.87195853493171 -2.038430976027716) (-0.1904505172744453 -91.02313158931902 4.787811597669584) (7.558255723005196 -72.88057741038205 -3.834418112736905) (4.422782127438915 -86.65936920032213 7.660880977597168) (5.044230486049353 -72.52049334834285 -11.4180526347592) (4.513306188252189 -83.12913401197308 -9.905398305669609) (4.070269707823035 -59.32423100850728 1.793711971121771) (6.255421796051984 -66.87635170206103 -6.677067204585647) (4.388296735055397 -84.32561433308733 4.570334343564141) (5.64701310531829 -63.80546099321535 -8.573390758869813) (6.347785603771558 -73.16507673400035 5.363346460568547) (10.06919036486704 -38.87568823345308 -2.747392774880223) (1.43027716607984 -65.30824736672976 11.58034343889529) (1.378910557950196 -63.14188182199669 -7.002889195070908) (14.34091811911283 -46.89193398179796 6.675636511221669) (2.323162909321064 -74.27650655802435 -11.22560437613794) (2.446245595454278 -53.03948207333446 1.08203438180428) (-6.637799952988905 -50.82957874947343 -6.280321326144109) (-0.9401002979630121 -48.02452540650935 -1.843612588942521) (10.09687514770447 -58.80350082390871 -10.34485750995123) (5.03292962429918 -46.03273756800279 -0.5270144490412516) (-11.41282528438191 -67.41016051432908 -9.864691610897196) (3.509089374659079 -53.37377204253447 -0.3989785574939837) (-5.330274084115713 -57.73443502683275 -4.91866578034457) (-2.924244686879329 -65.65926560908736 -10.94825480268286) (-7.061274966914406 -49.98683095265209 2.557699280805913) (-5.503261727859797 -99.47656486302684 -13.34857124037227) (-3.430933320584859 -54.46011346258503 1.891069623543814) (-30.3766085578335 -76.86536577011931 -9.039417793404652) (-8.100696070936701 -57.84018776588623 -4.339918284032287) (-23.6029584652247 -72.89532190969557 -7.475639019311411) (-9.454231621149544 -82.45481554791557 -5.176146230699738) (5.535325236529525 -73.08070310398611 -9.149387671497253) (0.410353021804492 -97.31444463628424 14.66826035267573) (-17.32478818010363 -100.8892232368748 -11.32948305959933) (-4.88231801194202 -86.46808524966323 -3.365130793734541) (5.461086211981055 -68.13284403074684 -7.587305734603619) (-5.885967333308417 -95.19154994543412 17.77251099598751) (-7.615464222189082 -71.32953986175158 -5.003423626045922) (-3.315395139260913 -70.6352711089762 0.0142306142427705) (3.810524345710332 -52.2312490845843 4.950489863491685) (0.03957585605938407 -40.07455672282138 -5.797005769340281) (-5.594764024693612 -48.907473654289 10.01332378896487) (2.497890447894319 -38.54549778288104 1.548605605484601) (3.236388992043675 -50.17031617551999 10.07926062247718) (-0.5265257696655954 -36.06444944601063 -5.567864308509709) (-0.1330792952753423 -47.91453508289492 7.044530323769595) (0.8037909301862769 -39.5272413778647 -4.398544218730476) (2.308979234806079 -44.73833653944313 10.28065195127299) (4.829830343234381 -31.16685832880258 -4.572965236218405) (0.4758195487184591 -43.5589225176965 8.610603975762599) (0.1423686060057041 -27.95574096566845 1.642980053806998) (-3.417643929589867 -45.1408329855986 7.145157647909947) (1.210714791100603 -34.30805164967241 -1.42685211085245) (4.087153781830964 -31.10145994921271 6.177112054353535) (-5.759589366602098 -29.68577825265116 -5.13539944865043) (-5.395168873981323 -38.88394177527136 3.904107366194299) (-6.058920871702727 -29.92612142641052 4.902952998809184) (-6.423288740664567 -35.82163327060017 4.797545850162994) (-10.65008366548994 -53.13151226112534 -2.629707664978318) (-3.160755778799762 -46.42628988238603 5.490111325668132) (-2.453290836586652 -45.13167625695547 -4.195391272155256) (-15.74127694066347 -43.37305018750642 7.725487120315215) (-11.10635066305792 -35.40097696609628 10.74378723856005) (-6.99032156232574 -33.8658715736398 4.258211744017476) (9.068101855079361 -66.13238897158746 1.129545632924273) (-0.8581632948280191 -57.02569186584815 7.368910026806081) (1.169815780013122 -42.75617377795237 -0.8198194155693269) (-7.628261799097611 -52.749871832302 1.618307187452999) (0.4428757023992589 -67.83604235986859 -1.760096203485735) (-3.88008246536879 -55.10438190266203 2.601832241771318) (-3.375139517652245 -64.22507646625721 -5.460308671724088) (-4.30561435966648 -35.95871900997489 -1.964382284489257) (-3.309005087880596 -43.44568055764432 -4.320818459780646) (-4.51308585055257 -46.64396804127894 3.603301387386303) (0.2101002315491554 -44.06082930765666 -0.1172081573491006) (-3.229244954423541 -44.0615786816096 -3.832993089327044) (-0.5340740450422228 -51.8036589525708 5.045706395364335) (4.31601363815838 -45.81743210561758 -4.300600672024578) (-1.174679843961128 -22.89426674322831 -14.45976210112599) (-2.396701397710537 -57.10960166113287 1.592087879614077) (-0.03873656478279841 -29.28677658948157 -18.82732006471549) (3.071177704852475 -45.45537099450358 -12.22022221825653) (2.517900941517109 -36.30568410742482 -5.678258504475501) (3.2037252463038 -41.86967728954293 -1.80516368447056) (30.36114412802835 46.35324041088285 -8.127828162167596) (-10.4414915258976 15.2113729583905 -11.06537525403396) (-2.572955762631391 -76.9360433416899 4.729864545638269) (-4.621293483566777 -54.71102067850371 -1.346597937827521) (-3.004750949637557 -52.81318210667036 -7.742266494720216) (0.6980239936823862 -54.66931837058149 -15.55779514696308) (-7.586950111832611 -49.86781668346246 -5.572952033383867) (-8.38261999112871 -54.14640284732259 -3.175058980712445) (-5.504178724201247 -47.08125781635377 -5.084434234831113) (3.037188678056103 -64.87715317633175 7.860953170655782) (13.62075083468963 -65.03867128485493 2.654494746268725) (-0.01074088887104457 -102.022968092367 -0.5909915743019878) (37.77943824173133 -70.13476294194088 9.374649447796715) (5.452496797979082 -78.46943290302951 -6.980115750870654) (-14.85865091158235 -94.85816685907946 -18.99174651529037) (1.386225245111171 -61.66072170738094 -2.712270977873485) (0.5934209241651924 -42.263854181073 -6.596455615998392) (-6.209133354335019 -83.35293830253215 3.003666677416026) (-4.894261724217712 -94.07656762593803 -9.041948095915588) (10.02608018674202 -68.02860958937845 -3.09637914909598) (-7.600240518753681 -71.33621094633908 9.797857666433408) (4.856060012016024 -78.79589968523933 -8.434668315130095) (2.000368454714398 -69.91706203157266 -1.162396553176328) (-1.359088026275753 -88.94200034765667 4.777428604076468) (-3.761847375008229 -67.461080386517 -3.785381957139088) (5.551475284725333 -62.84317956131583 -10.9231244095631) (0.04101041088637269 -73.14383609717059 9.497433438561885) (-0.1417190611876985 -56.32039807907196 -6.800987756650891) (-2.096109084504191 -41.92623573023547 6.224304711725394) (6.981859812219074 -77.74481099063053 -11.77108874258769) (0.5501437515681042 -69.83293790733629 1.893474536907248) (-0.5427452395248351 -64.6748663973638 -0.3823715253166489) (2.691864468170972 -68.29990995539571 -8.483559220224187) (10.52161061389566 -74.67397904434695 4.548078241031257) (0.6495771588690158 -53.78688479970054 -4.748968144570548) (6.75170044014256 -74.30174310372169 8.543157581695183) (9.491175146190461 -45.95891928266433 -1.624142496604099) (3.999443155364474 -62.33731077116208 9.338116760638675) (2.532071220320752 -58.72559431947261 5.339508843618695) (3.011984765605197 -44.48277865940489 4.192836228703474) (-18.27798666376698 -54.49187465499298 1.729051970419643) (2.762802286249078 -64.25206167164768 1.698370871913542) (5.712730998626255 -62.48480665662122 -6.898168112887893) (10.70247163140343 -63.9967839077871 6.208164547692944) (-5.71944029182025 -56.81190285860161 -3.716337381740279) (-1.15039289679408 -53.64742550139255 -4.710297053461511) (1.438358141629537 -39.83769560637698 -2.824954524895787) (-3.355800104681835 -54.7433600878279 4.006307224362192) (-8.100800683845989 -70.40119944071739 10.54760724469089) (0.4781100708375079 -31.11459460817585 -2.407576807296278) (-20.69161389992933 -62.51216350385927 -4.424971521393624) (0.4944196348893976 -45.31237543941062 -11.75212146274311) (-0.1855075867996332 -54.11450443903173 -18.4128538568883) (16.88441056578744 -55.63635942646627 -3.874074767171564) (-6.597123515910777 -68.88935528836319 -4.872366903498616) (-8.806842979345284 -51.8234525805957 -0.6590724641336118) (15.68076592682389 -83.32042202884752 5.248840219592524) (0.5758390461757905 -54.38682291519329 1.89761535974666) (7.557677432963674 -59.85608467421032 -17.1139814036996) (21.38610601166515 -65.97125560931286 0.697226683552012) (-1.689314293416864 -77.27851904613928 -5.046144228708974) (-3.393656122518158 -42.94698042937191 2.510926234280477) (-2.348249159953281 -34.83274067296023 5.854936053721724) (3.125837777382433 -57.42400337489463 -6.593078080336447) (3.953031427358092 -38.54710276438854 3.429202172535142) (-5.165394340821698 -42.31621939304894 -4.937464202057335) (-0.9136357242171427 -42.98211951500423 6.992504141246305) (-1.216143924157524 -48.11495378142406 -2.693879856975068) (0.7658531805867295 -27.52871996403634 7.32826670455783) (-5.11750991748977 -32.22503234257591 -6.639909283190922) (-1.262259950403295 -42.16708796188202 3.130304151725362) (1.05719900126624 -27.68322067175531 3.125336732450878) (-2.370437719103872 -34.1530878904791 2.97381157932591) (0.8656292319558613 -41.04927150727374 3.153597098006236) (-3.037852483293532 -35.20587298513048 1.391014844611001) (-3.551401380900751 -44.34494985404796 -5.725783339830506) (-2.040763152667056 -31.19115247122436 -7.307863305657847) (-5.470168128455396 -48.69543742104821 -0.3898761315547363) (-2.619418583545956 -36.24827882974117 3.268595829775345) (-1.577346610127064 -41.76051944522149 -5.331074522756079) (0.1728849182223949 -44.93641902818176 4.908525656173313) (-1.729118471334012 -38.04213799246357 -6.621159591893) (-4.617776230818935 -35.42164826421575 6.816889186515974) (0.1249292865057002 -29.94446822218981 -4.199177720746256) (0.3065430693462803 -58.77953791403684 4.972507516772092) (-4.630558098889964 -44.2882010711393 -5.967989272385291) (-1.028349382774447 -40.35802722716108 1.6177583071404) (-7.920769130395114 -55.82079748794474 -5.535857280730385) (-1.614584138196065 -45.04643438697621 7.997905719022368) (2.308117066400297 -47.64967220913271 -6.937405711797397) (-17.10315686308299 -51.03494030674261 2.00969905663472) (-8.681883535588369 -53.06079992138004 2.847693578249532) (-3.613756239302035 -42.85137628211357 1.395299740466344) (5.737681423320328 -49.24992637397764 -1.552429059781972) (-0.5942814577123134 -48.69722389402808 1.348528715751524) (0.03172633093402832 -52.43574352618385 -5.484288492100814) (1.959531716490746 -37.99016815016356 -1.646492396667396) (-0.9474183713548678 -57.53337708801966 -4.396577357557253) (2.720124701311858 -51.2740376007919 -6.821601970193939) (3.034569543037724 -47.37219362359653 -8.295795912654627) (40.11887178530107 -43.05645383083774 10.75948820749099) (-2.911785521852347 -63.69445565730644 -7.96846468654492) (0.1600879118090839 -85.77916715359997 -0.6045107731430477) (0.8077776898612015 -59.57102913207458 -9.95573623155013) (-1.741502747893502 -79.13278074784607 3.444043818595879) (7.625703634957062 -74.55487406986383 0.554452117980049) (6.824847238228249 -77.62837887712789 -0.6219073484941415) (2.56637540026704 -83.63785268913813 -4.973557570389018) (7.371934847147202 -49.38572765336726 -5.284183776017785) (-0.1583788162216022 -69.60928051331391 -7.416579415550729) (-2.723313530046428 -42.1991322245083 -1.208865999906317) (-0.2175486726191439 -67.1630738668492 -0.0670189801104864) (0.7292769025997574 -93.52559220846067 2.561383026831135) (7.352952849035651 -59.64807781222227 -1.92873747653424) (2.790326707152376 -75.91933410022892 2.18038476349545) (-4.450726496243545 -62.40230194015561 -16.11224664580576) (2.651445359401832 -41.8132412865577 6.696315465734322) (-2.411841114482683 -88.72268413105998 -0.9013015840723153) (2.526983684869345 -68.28100600076004 -4.451320604390454) (-2.631708666727891 -66.47517363159223 -2.705916036491264) (1.15590271670556 -49.04778604712214 -6.015034759962992) (1.352732836178498 -53.21198667371461 1.166911402968143) (-0.3868338982544464 -77.55761733173058 1.029015552248066) (-1.856198786326987 -79.42119469122176 1.31951378244925) (1.502383968609352 -67.03305459857755 -1.639087326515558) (1.982288009881015 -72.22799202380746 -2.342290257123326) (2.583960502508206 -48.73339227418365 -6.23366780203602) (-2.934110737421988 -39.35465106082405 -3.068227695932731) (-1.061627124552764 -51.04992197440786 5.822824648028837) (7.531685901976323 -47.25675706242602 -6.232158560442929) (6.759199452918724 -45.99148401538439 4.554651347207893) (0.3333553416397335 -77.36509913195479 -10.88085232976563) (1.53050067501051 -42.18375320058996 0.3923158663263111) (1.915499061599274 -65.00838365634526 -6.012710513506429) (-9.469122479450075 -62.84988268442915 1.374897865275242) (-3.005087004396743 -63.06942620714685 -14.42175558261745) (-5.712447477168669 -51.69933955798923 4.99548080030285) (-7.51302269957641 -33.29460861840282 -7.98323584214334) (-0.09881504561273791 -46.07066379262668 3.173430396662028) (-0.5084109450892258 -50.83220616406842 -5.442498701851973) (-7.22443348965626 -55.37951821667215 -1.151879011228189) (-3.095915553939264 -39.48616275454891 -6.612736031579578) (-2.110702545368853 -51.8268149950262 -3.872142639619503) (-2.908164043461265 -45.59615593609021 2.615925990623109) (-2.891740658886126 -53.65563166181728 -0.7441687522390044) (-0.6559827636535946 -43.28850325385536 0.4581184498691826) (-0.1405254744377511 -44.08853836563183 2.248124512859434) (6.758987908048631 -70.71813954505434 -9.351260160949256) (-2.249978863124156 -48.89552172876741 -2.547521309974919) (4.377401484552084 -76.16528153250889 -1.699194204071111) (1.532326623669029 -39.84391271252564 4.918421207210952) (1.816782553995258 -37.48226421906829 -2.522976004307861) (-0.35612796599282 -37.07893616950513 1.704085498741294) (-3.041613750119174 -41.48683910646053 1.716443040450688) (0.9645561283172983 -40.56381381463542 1.340819789232559) (0.03075274082195237 -51.39772867559317 -8.463282100913363) (-2.980989208667713 -43.55151283933262 6.73680591846119) (-0.8383762188675137 -34.89690015137185 -4.119851165463823) (-2.243113708686977 -29.64965520780312 -6.21723776206986) (-4.328002319214789 -39.8074810651315 -3.612593185948317) (1.865743933425785 -32.01122807899276 -2.137721107546958) (-0.01655785845357338 -44.87851276212931 -9.965926750341993) (-1.87205930256519 -49.12839716588234 3.454819516024231) (0.9808941624679161 -36.53115174334948 5.727315511642269) (4.180411936166863 -49.06165272948375 -5.508677138463302) (1.062563584760927 -51.54706495118575 -2.91034049584089) (-2.135177921984894 -39.29496634862501 2.168281014584422) (-0.2924872300817337 -37.08131372813943 1.724059598918115) (-5.436560986994974 -42.55182030547254 1.557075513131844) (-5.035938623887822 -56.61050880944876 -7.815353070227138) (-5.934370334387122 -48.90317432389458 1.896970775801785) (-2.080100436456669 -46.94848161966532 6.5151842168268) (5.845309808383574 -39.08607223604385 -2.2420465046214) (0.8906764649141699 -55.47073867217911 -2.476166440537142) (-0.3296154425234995 -42.79588607045831 -1.709731390843267) (0.6659290433898657 -60.12828201435797 -4.1850329918802) (-2.207056330774405 -47.29412030103486 0.2276458403513971) (0.06239785747589155 -51.7782138807896 0.7460985341918978) (2.706908094435189 -62.5869550209924 1.62460469956226) (-4.734572633564745 -47.333143654709 0.3670055598726271) (-1.390055811377308 -52.25255123450346 -3.507489247773092) (3.106515405816826 -45.41881568660497 1.374469795677118) (-4.255709944003884 -50.16034499819069 0.3683195790161223) (1.582871474703223 -79.94929783523978 -1.875685618117996) (-4.887833070520797 -69.26759165575605 2.876362510740305) (-5.307521227010466 -47.80412648707912 5.370478030610266) (-1.333368217435575 -36.2310185646447 -11.89954691453659) (2.506114794491822 -62.95059774888071 -3.416772119052605) (0.4716039923267966 -39.05581329255847 -2.948269461739424) (0.03167429727489429 -33.86662726531897 0.1843510000521837) (-0.6746044744175119 -34.80759442965773 1.068281390921541) (-1.640499744332219 -38.60422655598381 1.311634524804898) (-2.501484290562956 -51.98904428248086 -2.748951404866735) (-1.954589224820277 -54.61986519535756 -2.267835251375061) (-1.374453998963599 -52.8374008402488 -5.846141156686834) (-0.4582054917731027 -42.85961955261385 -3.539866351022122) (-2.131626510122771 -47.40628566312604 -0.8874449101424956) (-3.535287056760944 -49.30971582574602 0.4245872954518917) (-1.920847047368134 -52.99832451521421 -4.514825998315121) (-4.587108654437377 -43.90969577128711 2.647333462668129) (4.604580918512752 -58.41777093220863 0.9692132039127114) (-1.782361701494241 -48.01030547563401 -4.084887033683026) (-4.856448890436473 -22.63719733644218 -1.3685808515239) (-4.29682372727124 -55.39879860181805 2.198128075212911) (-0.7853580925201369 -38.71042500332936 -2.307682634544502) (0.7790280580527464 -53.19890406268566 -1.961213970913791) (1.586418178478703 -40.36639271034798 -0.8210612677297751) (2.90705670442484 -76.13389480942281 0.3549528439847378) (-1.560110080175283 -49.65568307390905 -0.1175375982129098) (0.8490398331058121 -49.23552603771392 -0.7385050611515278) (2.790246560104239 -70.30328834609401 7.892124079577205) (1.230456466207264 -68.8737285373987 0.7458505729228773) (3.656756595907901 -32.93914071218963 -1.598256013532959) (-5.445737981843644 -41.95096552750719 9.218151150512183) (-4.123049772214606 -33.33602872398664 1.641993190305005) (-2.523100840586997 -34.9102668294245 -3.53681123932278) (0.5731051429715595 -34.27796352514768 2.273072376024247) (-3.206142969971724 -43.26241722591713 5.150938346927402) (1.101120987713726 -47.5538464070542 2.209798291146698) (4.568417540310429 -40.83791473546354 -3.391144585713601) (0.7082259774013313 -48.74924327436734 5.94180214457583) (-1.593147142216452 -43.00281166870354 3.895849127588873) (-0.04640630260503431 -36.51097414542762 1.040003514210748) (-2.384367885641804 -41.79272762855663 3.834062407030127) (-1.585229567437237 -33.1887169562565 2.049279746053423) (-0.7498521737073516 -39.77342201835393 -1.234855883747575) (9.016935392112892 -61.97011315839024 1.272890776039129) (3.393417692560305 -52.23493975468418 -9.025970831208227) (6.757414397951864 -66.38621103996873 5.719653498896898) (-2.271092993535945 -38.67301814489079 0.3497311699477452) (0.3573659693905875 -35.81605753377141 2.662418107246217) (-1.756773416192661 -48.62528452916083 3.415552910982329) (1.547117332135626 -36.03001355721986 -0.3359735194456054) (3.279275679797959 -68.73652568964752 0.7268724099589944) (2.995301201782982 -59.93689849532586 -0.8273687861841736) (-0.2646969760359283 -54.60252195791825 -1.059456344700834) (-3.206748262235794 -40.83405342957516 6.286837796620275) (-2.35194852430784 -34.74496869321302 2.279829629701779) (0.911961532165406 -40.09975069346501 3.074513196296322) (4.873220376356114 -43.65405998232822 5.008432307803902) (2.843129691713068 -25.14595879801443 -2.359101619014322) (-0.8223699510533471 -29.5208867378321 -1.591736731028463) (-0.7944852685774747 -32.0965739823069 8.015682157049214) (-3.961627065540649 -37.36906913633003 -0.2593195004794358) (7.832952731626157 -33.41036840840604 -1.49803254382327) (2.936261453324644 -52.89623679472378 3.062745523262641) (8.607330535168591 -75.28346984197367 3.738038592236086) (11.27950068843817 -69.07889776766764 2.88548975641296) (-0.2049063995443031 -37.51818043882546 0.001515387660492196) (2.290470264708267 -41.34325917840018 -7.340585382406013) (1.956042029506401 -41.90610889258802 3.09470597382571) (0.4131676392233136 -35.21905973503247 -5.762144873247502) (-4.803874362814762 -41.46469413603283 5.610722729673356) (-0.4595035977797545 -42.83138723927447 3.29651233338088) (-1.373370003028597 -37.08672374669537 2.252607522604325) (-4.118225673555226 -34.77659384444451 0.7116278386511548) (-0.7940199421965891 -39.61105225486823 -3.23077408376823) (5.118552711651538 -34.64922358952317 -3.172452956380531) (1.71991774884025 -43.40365273816879 -0.8998046336590413) (1.828229573144223 -42.37634771089861 7.697845352816684) (0.8783592370221349 -31.67540397822814 -0.3490939405090255) (1.951542204430734 -43.89058032675882 -4.648748676262724) (-0.1714461442011513 -52.66547969370243 -1.263223732128959) (-1.063682203825959 -61.50054467333624 -4.258444139431345) (0.2472015600752436 -38.01248443473843 -1.750335643690939) (1.065563181968249 -45.83420763005297 -1.618272092329001) (-5.108951983170487 -43.22188321316141 -1.88841304994332) (-1.695951033507097 -44.95377905095592 -3.439619588797592) (-3.358426776741545 -41.87682066785161 -1.32083284689502) (3.776550279293102 -42.9749949676814 -6.503616658220682) (-0.2681515764562118 -49.56548716691054 1.818479324610955) (1.340329546689797 -45.81674714603945 -4.783583343312726) (-3.464658734035639 -43.20156202235397 -0.4991655313932923) (-1.772219366161459 -48.38056417337743 2.183900714926304) (4.659413341397818 -43.66782755163372 4.813036165613263) (1.678748743047107 -37.81805318824394 2.49098334767711) (5.643249501649394 -52.86509392342697 -0.7221823493691317) (-1.222109559561299 -36.29806843724948 -4.827993478090772) (0.9214137986331067 -45.62333967812725 -1.668567096040126) (-0.6171980492815594 -46.5643392569207 1.805023766509686) (3.52893661545437 -48.34877327873276 5.05057206357896) (1.253527450583072 -47.5174662884876 -5.813568463149219) (2.873355167863902 -42.68568639988801 -2.612947173840331) (2.336236503864825 -42.92084488658427 -4.262686465815741) (-1.367286481146585 -42.9823737969372 0.412974714112615) (2.017385972973382 -38.05063883381055 2.10552143695224) (-0.3828226474881629 -43.74641742699153 -1.945056634070302) (2.071169255169494 -30.92810538530922 -0.9242170563632661) (-7.08570344489441 -30.9033054530149 4.995701777444602) (4.169852332052562 -49.87738492911156 3.762868159611579) (-2.259834301455935 -38.39641548056613 6.480093118323281) (-0.3548853798089943 -51.58255658899287 -0.9628722184072733) (2.581175928335794 -48.78770092864156 -1.723621308484694) (-1.537877147455077 -33.223413300589 -0.927710132654656) (-1.888578368624361 -33.31470110936199 -3.642696882516227) (3.854785428945686 -37.58825507661589 -0.6346460320493528) (1.570606462027921 -53.96932457456162 0.9215167178060986) (-9.402545539870999 -18.24562140466026 -72.98018461485105) (-6.089020608818831 -8.322913772236273 -39.85514411346428) (-24.05876563747451 -28.38225617426856 -37.09944916993454) (-4.70325973837565 -13.76026582013393 -65.06982815658412) (-2.601385667239992 6.396007793089374 -67.10859350763752) (11.8450218275605 12.17348952807965 -56.67836801395669) (-5.644057071533179 -9.900974658530551 -62.83652532608571) (-15.65876221416957 -6.377891406727596 -44.40082676087331) (31.8755587705215 33.32750381494746 -73.7174127227651) (-6.559128634902576 -11.85305768533675 -57.8979408894844) (-1.708273529779982 -3.57870101508042 -58.52848249574623) (6.07473818773283 14.37248264479982 -78.37581320987914) (-4.895549001776573 -12.26072363728498 -14.30052398364806) (5.234819868718379 -18.58121256295978 -31.87500485501643) (-0.1140351808541302 39.08634883838356 4.826701372029639) (11.80655127002147 -20.38468500593502 13.79666760342316) (4.887297541086173 -17.63741196600412 -5.854253037966457) (-3.982443975779016 -30.83365082358937 -17.32512664498129) (-4.380633393241951 56.39383804785324 -17.30396336794234) (-33.09394533834825 -38.71146153150301 -26.16686282029607) (-17.40265079681613 -26.53135129041539 -37.5394983135984) (3.477473979110231 24.63487483170664 -13.51948516631158) (-6.949355584924657 44.30578959730482 8.345700309602314) (0.9268507933706722 74.1957836025948 -9.333862145983375) (6.822972641319487 69.93959646288691 -2.878097468020044) (7.369661903002669 44.60346049296778 -11.71148012415591) (-3.741927686490393 15.71687485324747 23.63950279049492) (3.942917262832477 -43.15762606544973 37.84591076297512) (-1.205196173316155 0.5274825495853842 1.620422677682794) (1.996497088819173 -8.476525777642152 -12.12510876237671) (0.8190086331129478 -1.438642226372925 4.982578667573296) (2.73077091467013 -1.416643899213724 0.8118898869009228) (0.5681726507346301 2.237174065238694 6.915240712977191) (13.53489395989208 3.203799191335839 -6.208510525133503) (-0.5022667607604057 -17.73840831085119 -63.48696102776677) (8.401509303788288 3.753402467498143 -57.46554951749547) (-12.21619904474368 -6.567617352891007 -51.8406231647979) (19.57830327592871 10.25191048355817 -52.64075262246141) (-3.073878445939527 -17.60732803780233 -79.72231254903264) (3.824870225111128 -1.034292951954874 -59.48941073298912) (19.77920137418197 -7.301155872686289 -85.71145054847433) (-22.33083652532442 11.84342440421221 -73.05501363897082) (19.21074024170533 71.0329412141834 -40.51243165680692) (4.232771337235635 122.5770917605903 -3.416678107569818) (5.937744315622901 109.2370592684413 5.435046109230747) (1.393016357488145 133.8966947515526 -4.018570226406246) (-6.69878775132298 119.7037706863363 -3.460646018935443) (12.79958188114471 118.4770297659121 0.278861615370729) (-0.8519791020635772 112.4871608691824 -11.85227476661793) (-4.89526617593263 104.720637461825 -6.510547493000288) (-5.270877515472422 117.4465095880913 -5.106330929514329) (-6.669896025178303 68.15541540289549 -7.330165252779464) (-5.44347775880598 74.55053307950583 -11.52894380460357) (-15.68628534525155 73.51850200247611 4.625787711810693) (-7.941764971551303 82.03378107272157 -16.22853549514119) (-3.273338605984447 67.38532819991117 -5.198067349137014) (-2.644610677695387 54.42577685267536 -8.858191400525916) (-4.365377296339041 59.59739643737669 -14.4990830552614) (-1.667586020757485 76.64406841665661 -9.459156632373858) (1.737458035634346 57.74933907927787 -6.663675894446921) (17.84498096542058 91.22557705671007 -4.902819452776709) (6.748799041573026 91.24870134611437 -4.614299152828) (4.41629055505425 79.60052203395854 -14.80759482348984) (20.46746265803679 105.8116203103102 1.639195367233098) (-10.1338002761274 81.25086896518238 -1.860216249582301) (2.944161358940879 50.84848175429482 11.16010514373157) (-2.029503696992463 41.11710897666953 6.278403297444945) (-1.588373324473128 54.21701402343114 11.19115900711682) (-0.1073274970096505 41.24454221618592 8.202630350535481) (25.49113476882058 48.54618502544225 7.942980166989292) (8.639468031114067 36.95439034052634 3.360516868372128) (5.105693806077946 40.8702486765347 7.881443034193505) (5.221885376439692 52.74016381943945 -7.373511544475953) (1.735777840720643 35.36284230054675 6.847178402417642) (3.165081219551036 34.10631273495459 3.506846418414826) (1.382270830706173 36.25551610826998 9.360832701283305) (1.762186493609412 39.63506450848202 0.9012217511224634) (8.125847512116579 55.38772265263446 -1.805059251748367) (15.48139477661722 42.59415130228573 -10.22280291459578) (1.179298947732633 18.9642582487513 -11.864008480166) (-3.5872570199347 15.60554663803869 -8.473094034614169) (-5.788063848882383 41.11606082035056 -11.74148318869744) (0.4362506546901204 43.93972300615479 7.780223070962248) (3.85964682795055 86.53389351163288 0.7769857004520384) (8.437865947598212 97.86058542496482 12.99765992282905) (8.038144479997772 142.2793554122051 -13.2790206495766) (-27.66650443969983 125.0368808734785 -9.631226573204025) (12.33894127762949 100.7248533491432 6.952079582970798) (21.17209534530194 87.58746346459726 -5.397990616816104) (5.625489083904479 112.2157686108908 -0.9921198696956663) (4.024248114379207 72.55470049822104 -13.18832977870665) (-14.06355754372249 107.9642649119348 -3.029713463892168) (-0.7308926701068428 111.231908020456 -4.098869392022047) (-1.972885151439591 80.60197367642758 -4.940480880800386) (-1.000032873756124 82.24894064750914 -1.453481011126009) (0.4085303166021762 78.52010642795166 5.72197487714119) (-3.91258112265954 51.32804238840425 -4.570048523184195) (-3.698145898895155 58.40732169648715 -7.110843954911277) (-1.543401223287537 73.56328662476523 10.21091151969348) (4.465402076390422 49.77199241181487 -2.61476800184548) (1.032454611375943 56.71740831477959 -7.574263835254548) (-8.120299017214297 41.35295694256217 -5.703768868305606) (-0.0905111774407743 60.58193067625604 6.209746794218598) (1.885407943302501 37.89249103625725 -1.549410144663911) (10.4890167997951 94.10328145615665 -2.949521282788783) (10.25577173806836 97.36175868555422 -4.77229547936234) (4.241745403364211 62.75672428147632 -8.164050697866141) (41.08667178291232 96.18750485911578 13.22616996942307) (-0.9540882593398786 47.98326702648068 9.896141687609594) (-2.823253842045932 55.80759085355836 5.023559149752342) (0.8368934600469686 33.23086457111609 -1.75259968141854) (10.27572032301329 44.33597841119651 4.951893024865539) (4.751027230903466 40.52307950113399 5.531920981031451) (5.028544222163244 27.63973175909935 6.839966322536895) (9.602395232628181 45.96352759839863 -12.71757392479736) (2.520493939282611 41.63545163132382 -5.730112510806687) (13.4065940277226 44.09669422088925 3.963321877987601) (9.086728048490958 49.55531773905204 -3.211511774566062) (8.232379756389015 50.96700194628861 5.489392922224726) (6.945830931669882 32.78814394102071 -2.458031461923571) (3.608137676614236 36.79740240313995 -10.21767775295116) (3.356917601324596 35.74539529046115 -1.549319277750979) (-0.6499902989126181 49.60585664675468 3.088758396877557) (5.632681750037212 31.78009689895411 0.3261701575306449) (-3.449567212078726 115.3938755299331 6.303224589905913) (15.1276690352125 72.71508453064237 -0.01386700878478309) (-11.12792853176218 114.5094608877407 6.966000523282672) (-22.2344747307353 72.14825754200365 6.283057448509253) (-3.298482949346951 124.7590768553606 11.91235598167063) (1.365890370138123 95.9366958925708 4.280162615408813) (-5.273667891720039 101.6317512699059 -4.050155359499798) (4.859310359136262 56.66069727924884 -3.271536835050704) (4.670964288594639 70.61120094353302 -2.715866773782405) (12.50838231022768 84.49340885488144 0.1734378361148528) (19.93573809365068 74.54541506975276 -3.418514501634628) (4.88298891635216 65.88137514909565 5.87859006849372) (1.045260327272596 38.69905170056575 -4.851072362986318) (-2.436839236571262 57.6993527047961 -6.460538499742497) (19.91845148104273 56.73687171041134 -8.990437065112161) (2.178048364776677 33.43929026809398 -5.112244046027348) (7.393252875981612 33.47285696541893 -2.00267036988705) (2.053232507553432 53.16808466089152 6.472532526055916) (5.626583909360034 41.04155829605256 -9.85736550038285) (11.61410894574525 95.24418659335103 -5.510697869272569) (0.9783247633670606 91.26847215845054 -8.074084656881713) (-1.487996675761327 57.88361853417148 -11.83470701755737) (-6.408487189709583 39.13619491017021 0.9169456674460684) (2.20893310541093 89.64160410094871 6.199215421094654) (0.136939813573047 31.12406163467448 -3.627075527555554) (0.3867833146857272 41.60091023576913 -2.439467965746599) (-1.170613024676624 35.27842357572 0.06651379665888535) (4.81592187441735 24.63600567273302 3.7464909623741) (4.210535212456841 57.1334532282815 -2.521842691519531) (6.31907838838361 30.50493547494937 3.087997084083021) (-7.600979896008652 38.74838860598834 0.07835255594944873) (-5.659671176551302 70.47433834081637 1.157589779089649) (-14.28663434062963 56.354881581025 9.278187790640409) (-8.455270417812818 58.10089187424332 -10.07514680046613) (-3.803242921780769 70.02510426395799 -3.946697334245324) (-7.536801324146174 88.70974682390197 4.158008348943115) (14.23866692230701 47.29202233209197 -8.24186186160963) (1.109857155087351 60.36884918320309 9.656668562779114) (-2.603270455997937 80.54592765550441 -0.6773919759556337) (0.4145409968612374 37.41860844047301 -2.374970459142578) (10.08623688131129 61.33281239643586 7.666902229787591) (-6.429833880383032 85.7278618165124 3.143779685709923) (-4.132720030692367 71.49306127225756 9.962422390963772) (0.5184133635577841 53.77194699039664 -2.016466725959666) (2.953441337001233 77.64831588587228 -8.657906954630914) (4.683022493653445 54.28237647372264 -11.29635388120102) (4.733504230016845 76.65005441738981 -5.567821946731863) (-4.488292382997924 72.1275749864872 -10.57620869432531) (5.900222509005014 56.38336256184419 0.2345577198080128) (3.201340823639659 44.73799795100491 7.547710328705369) (3.198919719259754 29.92589599502283 6.808930466390599) (3.165753924764482 30.8266530066997 -5.388762900925395) (-0.1548563300221524 37.42405613003061 3.332633598826782) (-1.851456467328986 41.06940056330604 8.242125109597316) (-2.025820543563374 31.01341611042917 -6.385058124741497) (5.629487072241641 32.23667289170537 2.458418869836529) (2.119846572573909 44.23154301547859 -9.288083098973296) (3.588984660723321 23.09791393592792 3.448293188795704) (2.565548059601892 30.05225992593198 4.032368821951852) (-5.577752372438914 49.79665260265147 7.355623730117951) (-2.445537837879389 35.319904885006 -4.672930438826614) (-3.969981938081381 33.05253827818026 -5.260355972682555) (2.544489110313718 32.40883802394784 3.480547993130469) (3.908348609790195 27.83959678435292 8.016997242363212) (5.697580086142246 33.9948629719209 -5.977978541976077) (1.374000509613574 48.54067112132326 -1.153994214404466) (-1.542806685620219 49.17500649811948 8.186662818848442) (-0.7648066013687848 36.57871128503085 3.074850723232178) (4.697639450143563 22.98508702330261 1.965551358257865) (1.372012281979391 55.08362801876348 8.545572531557823) (-0.608301094408182 36.74542617122061 -1.691719777505242) (-2.54263150859381 43.33123619529198 -9.470528080878122) (-7.577501784273877 49.50099250517063 1.059605793395086) (6.078036236212524 61.85139095909441 8.189901052565617) (-8.467175422644702 40.40025425103589 -11.29252600200004) (6.207106889903489 40.17677407308869 -8.606953176995496) (2.077380246213425 50.51083158612042 1.938304728715156) (6.001958293533428 31.71825420900331 1.927757259454601) (5.738775518940058 59.46784670128913 3.375823913219876) (-1.97306853628712 46.98252219251295 -4.466873941416591) (2.372856194564756 41.71784395880131 0.5813404883798454) (8.024200660519815 40.48292661922822 -3.318207300986106) (-14.41818633970158 68.40894522819922 0.06038009191928095) (8.092498078377639 50.91897396593311 -18.86490443496305) (-5.10839751282099 53.43438395455384 -6.60016885045865) (-3.05067408774044 53.78347131270915 6.743239624625069) (4.494002746292159 64.59516209804698 -7.660364189908668) (6.762346073738279 50.66864026563042 -4.624940311782911) (1.274598618140948 50.64946122202938 -2.703734967589444) (4.301745396640834 46.44931152294782 -1.899797950549629) (2.432274571693151 22.58209519891593 3.824515102368376) (0.2691706115431107 62.41746038716236 2.296834478500545) (0.9826284530049838 71.74884344049764 -0.397373815689678) (14.83273537713267 57.18197737953453 11.9835392906283) (-15.20855003113909 77.10620831824464 -7.612635357403396) (-37.88110969815195 51.45138076952222 14.78514772266253) (-10.45512175150546 74.8678635087595 -0.6886264308366697) (6.757164182972683 59.92133974727264 -0.299848713242346) (-13.45845239787556 52.79868893692481 -20.6853538358456) (-3.472970665337703 47.77774573001376 -11.76259891775524) (-5.338192170575546 81.31881007292911 -10.90381637617238) (-0.8877783979511329 59.89630512574411 -6.359693839547657) (-11.16432351885398 72.76027252636858 -1.535203325208912) (-11.3543203651035 69.13723844225508 -3.089112056638896) (0.9375588841147184 45.35394296920215 -0.7461184650970307) (-4.072253546046547 71.93996066443523 0.410110263246711) (-3.095822153559441 54.27786239795997 -9.413027248961345) (-6.753498201023427 93.85584993784236 6.093075590420255) (-2.722252765833059 62.21608753923698 -9.855157528030194) (0.4995862149314794 60.40123627383169 -4.858442962781435) (2.978993560504314 50.2049449944818 -0.5513341857285989) (-0.3248319226618388 54.383852008179 -7.918602464298671) (1.41029859588177 47.6333014831087 1.202606896356943) (-1.095458231140724 68.27186463986661 -10.89725336882846) (-2.315388763979942 56.02482371094729 12.04741268542149) (-0.908837525162709 55.66090463596846 2.476769730950343) (2.7425299844433 53.64995413474518 -2.929433399303441) (-1.456333673561117 51.76186397675806 -6.22752255640042) (4.10473886307503 46.91545079145036 -4.292978960006799) (7.66060565186867 38.09058688683329 -10.33465122278132) (-12.11528257260813 74.33626570652775 5.065563938321778) (-3.859715739784561 35.31377008281292 -4.695854268489454) (1.67597341378042 33.39674377185083 -10.21335234830197) (0.4612880463736024 57.34521258791193 -21.22506701469752) (2.45224514047746 56.7985922551739 -10.53671067111547) (-2.006146359321968 50.20904701150204 -20.82426732578352) (2.398750931498683 45.14981497902539 -3.252971771099492) (-39.68017924322158 65.50887578840093 9.409496269536763) (-3.51532882519403 46.43677781475942 10.26141454893994) (-5.211885024854131 71.16705224355057 5.213424756080748) (-0.3932884010141354 55.44479951540405 -2.958738545586544) (0.1903777895262903 29.74533313273036 4.012053810263135) (8.368283628416989 75.23055840928211 5.509262942764217) (-4.283611238596005 40.78226415833439 -7.752114909013039) (-2.699793914739022 63.4905215869779 -0.8945184394766981) (-1.691706593430964 45.77102705737187 7.618497635804308) (11.53922123233186 43.74940369167555 0.1616321163473806) (6.312858984559553 52.25731584606959 -13.30131500960398) (-0.3474582010638947 44.18296170785119 1.89611346785993) (-1.083286356505047 46.24876131993398 -2.406007031515192) (6.292728006115363 38.55934619472001 0.01137642506432657) (11.40833230004053 58.9555447110619 -10.96020703318212) (-5.010648207998509 56.50603426999989 -9.829321428031809) (-3.389115618083007 46.4166818426224 -0.03440644038036887) (8.188127933769978 52.22891802720245 11.27819107361153) (-0.3868168215318126 42.82244674200816 6.540621530494879) (-3.097154655883662 46.58720695469829 -1.748619637036567) (-3.237134176805949 49.81247936561199 7.087335958744899) (8.951575107758474 35.72948819617353 2.682776886259593) (3.476835780084273 38.52258386160606 -6.437108913639747) (4.073831023359919 40.74367809943401 -5.569940355946478) (13.11592335855182 41.05559166252485 -1.823903199619762) (-0.4464103266741326 39.33130354485756 -1.601956832195196) (1.651395897982053 39.08054400740771 -7.510748020520977) (4.657848729925141 54.0979101122774 -3.272208401305924) (1.729707127149078 47.11617488158033 -1.929502183117273) (1.74499976851368 43.29487840106199 2.726121683291524) (-1.640748880276584 44.75087502795535 5.042802593693067) (-3.853649501998423 49.31926986393217 2.270247973917347) (-0.4814674597140621 38.61078393507131 -5.096105621282463) (-2.202877157930958 41.50355692102789 -2.362647705728423) (4.126602178885769 91.87630272702172 10.97475153557222) (-0.6612689672562927 54.70784488666227 -3.233291130737081) (0.8016047699375072 41.83544667525266 -1.054107022520611) (-0.9714730301887811 47.05680160185917 -2.99861157928746) (-0.03047931961773198 52.2464229826118 1.691225584383719) (-1.995783404375047 52.08478622715811 6.702351485793207) (0.2980084404954926 60.94116497059704 7.424999604021291) (2.903498822083377 70.23268558368073 -15.04972919482467) (5.345861409258381 64.3492578470514 -3.009921102184958) (-1.993332959127395 69.78886815716299 -1.697853492147042) (-1.666059797985924 68.72754505324042 0.8455343908051715) (-4.413880289859939 69.00236577470093 -3.119820639927751) (-7.327799601121179 53.70247011618601 7.718039979020894) (-3.678663473305457 42.85546729531726 -0.4009446005752089) (-1.314398890557978 53.55223210688894 -0.1301981419061325) (-0.3983469461359824 46.98783456861905 -4.235772553436205) (-1.129567692413299 43.88572230725844 3.966681281591977) (-0.5951362320561342 37.68483163300503 0.811971528935548) (2.285157537723106 55.26131330322666 -5.756405063467396) (1.78100596861538 49.51278652650519 -0.5717522279956619) (14.14613136473791 47.00847047352998 -2.67666387199054) (3.314458251648743 34.16564590123377 10.92993056699106) (7.105548285293271 27.30956292658801 -10.33069267940117) (-2.349486782171653 29.75796880388389 -2.216762357604702) (5.307368849762035 51.48652447444219 5.553888737721087) (-3.207599969641212 63.78863888718112 -3.073339376060825) (5.672760717940135 44.75660830971159 -2.923866243466681) (1.085979030013118 44.31181996894448 -3.038291412278177) (0.8323756641808782 43.6243655586465 -8.302828610048854) (-1.748889470655079 34.993951364895 3.626148323358913) (-3.229003242152175 36.26419351581202 3.861857382375268) (-0.3552146543042889 31.73243662995371 -5.400892348171253) (1.769495329837524 52.9751091053546 -9.876079369108806) (0.8754194023110691 53.49670182234803 -9.492500538901606) (-2.16963565539441 63.13271965942187 -1.421583257746112) (-8.026855302106872 68.14867007719496 1.482935645615138) (2.485698151900261 52.88376935539098 4.778777329908936) (0.3478808820790874 30.77601316917366 -2.195335297198141) (0.5992316913475688 35.44480528186122 4.226975059511565) (0.4958919367305675 26.17513101399974 -3.92659401989749) (2.552470046985356 44.03133455601942 9.857779660562308) (-1.379145186188887 38.72091396646889 8.423705314755562) (1.171499175046096 57.8584589333346 -5.943605053547667) (6.224213187586472 38.52619582395639 4.904992658152038) (8.702056838093482 48.45384146788365 6.981214824407933) (-0.3644315825484848 24.30743728709721 5.16622509039677) (-1.468668088308393 27.95424472977044 -1.926222217865145) (-4.673970284683627 40.29341606805446 3.095805971683385) (-7.087464837610684 65.7736600600158 -0.7421564000060624) (-1.403030573575023 54.59918342772863 3.731446944993929) (-0.4957504103247299 70.01478120215948 5.008895701685556) (2.90033916049585 52.31828021367556 -4.162296627992088) (-2.209053516897353 46.95418212699075 3.88793193270503) (-5.664795023014275 54.05707666679745 -1.569414866611434) (-5.477246690519496 59.00259558511216 8.977491025944623) (0.2312917182802656 44.94707873019345 -8.305976115763292) (7.817727766383419 49.16385510310419 -3.11824114708199) (-2.325931989010869 50.59639499525598 -4.824355331712216) (-2.576668347689603 53.07252752540843 2.422228672316124) (-0.8526784506409644 57.36231437114241 -9.44182998220313) (-7.303520989735317 44.51691588384818 -4.046009220277766) (-3.323841211858428 57.19662486123384 1.310620076357052) (-3.074601800211257 62.32094000860782 6.240034633766742) (0.5235395561777821 56.60279566943704 1.825620073360158) (-2.80467613231119 43.25742374635944 -1.676637186625811) (0.2711591025837238 36.32864025122051 -1.04914128577718) (0.3654213193915863 33.02585727227413 0.08308924994024802) (0.3549588833401821 34.81321240342002 0.5787148485710671) (-11.71285780421878 45.8852193272977 -7.469937134103023) (-3.686529937133222 39.4249664676542 0.8470971396612715) (6.703136946087977 40.57413296672262 5.892576728595184) (-1.839693527478669 49.84505928188653 0.7990160731503615) (1.180192080649043 52.31642789515119 -5.857374431045903) (-0.1212155320188613 40.84346004325911 -1.564849144167929) (-0.7665443207480915 43.90764830915832 -6.783014575391671) (-1.088169838860042 84.64851229369336 -0.5713986990159892) (-2.720415000062567 50.57759923241483 4.150228307415027) (-1.083360082851653 40.33082522029878 -0.6230268642534933) (0.1352983808219154 57.12770788296482 3.809384231580061) (7.149406651141716 36.67949800410899 -13.8431294583976) (-1.978322054296565 54.63800203815715 6.805594433148017) (4.648832081758272 38.06635276416434 0.6220571054522036) (0.07701441819866195 35.98796291943834 5.390450841555595) (-0.2852070700586601 29.42922284676833 -2.447585636718676) (1.250101738586864 31.12753256883965 3.625065229875808) (1.383409594149139 36.78867436301868 -3.687277666610859) (-22.08756880349303 65.36017243886978 -0.7466330155905618) (-0.8509570725430483 41.61961036655206 4.588995837682031) (-1.126346096021024 49.68927144705134 -5.936054599478815) (3.172604202747038 56.18960562970072 -0.5471848080165441) (15.87517458170147 51.95413906799091 -9.765365616619938) (2.424236094945862 47.63794710829166 -0.3842313541069466) (3.117529651292291 56.89725242956657 -2.438575916007789) (5.443171046454223 38.44532757127912 1.962536162297809) (3.52774645974924 48.28620997997314 -5.322372426517108) (-4.030474795727122 38.99442729039409 -0.2762135943388792) (1.516512196103729 40.07193290707016 0.2837976715085367) (7.033374631893327 35.16798942140966 -1.778558159452946) (-2.776241323642208 49.14718268174201 1.552293005660139) (2.086953592325184 39.66927891897146 -1.721683081124925) (-2.786376394041698 42.09014376422171 -0.4828041423754383) (4.695781166640391 46.10936956092979 0.3424346096259474) (-0.2187054035287617 45.90343876215545 -2.858230151769329) (8.776259296742111 41.11222994778903 2.044969736749606) (0.3028490929388358 38.48427028658785 0.373450604248089) (4.29555137132296 55.56590111135683 -5.206090907773254) (4.123340557071227 37.66739224826888 -0.45629893143656) (3.521644245336919 60.93036752024135 1.219891787960092) (6.870259661557348 46.21717934886653 6.541738581732837) (0.9977479375381217 39.37564049258054 8.422615353755145) (-4.600427358355769 38.28430824001304 1.139152669457189) (0.6381889386876746 45.08487822737497 -1.204430168211987) (-3.904405707636495 43.87972427440538 -0.2182728470718374) (6.295367887997992 66.01644882861838 -5.245119430394055) (-2.780986120274485 39.14300453449341 1.199827855057298) (4.910542353312342 32.29236039458641 -1.986918271515789) (1.051324016453911 35.50168426831196 -5.309348019629279) (0.6441965414556869 51.16237718737571 -3.866954096145006) (0.7385143598647363 43.70539292227351 6.100897804419839) (2.007777263499456 27.79305985277396 4.796638957370557) (-2.860311591647057 36.97447058711772 2.205745777342081) (-1.870111463278389 45.00561390340233 1.394028606239163) (1.39469697350628 54.81341307641043 0.168334027380387) (-0.3636238886483782 36.21166355879905 -3.306201845983516) (-4.396831661784827 47.71864770695235 6.250640457413394) (3.189099596212836 48.25847747249335 -6.732364398751169) (0.01110245092758877 40.85355487485482 -1.683484600325518) (-8.938079128639398 29.41741584045051 4.423332811536041) (-0.3865604779646478 49.25267718187754 1.182597527718344) (3.331326798816809 29.00883073828106 1.256025603830005) (2.774390354510131 42.86143401527238 2.237578587813807) (3.850010012182457 61.80506802114367 -4.844801021545772) (1.694460361545348 51.20344680629366 -0.1386227209962421) (10.59601285442085 47.40689179233388 -6.027341016346517) (2.599033598854306 38.11054342289717 7.99417814942225) (3.544059803070387 34.06675845480856 5.327855301264553) (-1.753162990402517 38.1649215292241 2.394206011356887) (2.185361688737322 41.45133146872097 -7.137791006876983) (0.5989599780630995 39.9690996536029 -0.1481975708818032) (-9.409947717423684 -4.737545127678985 -6.039763808598563) (22.32214273495397 0.05298628112510165 -27.3377082372364) (27.74506060256677 33.93229601512319 -24.07691687780026) (2.359697123356707 9.825972547686458 -24.39997389083047) (-9.090159294174736 -11.33186800632022 -93.64803165936002) (7.631460066887843 19.19180250481209 -90.39549771545497) (-5.974012635572649 -6.177303029767304 -62.81510189338749) (-0.4663922159943872 7.415004856615964 -45.76114857293817) (6.244673525361359 -0.6530378133012329 -47.98888279544353) (8.95802432861848 11.76769958259896 -68.51371517866615) (-0.8088922030993438 -0.3135769094028671 -59.71957238345945) (5.079274045016185 6.660210851510087 -56.84205769238092) (10.07371696741851 2.982958006621434 -40.3661450870318) (-0.3219762613412951 -13.1010269917774 -62.91385561689643) (27.52422654301228 36.95386069870836 -57.45475047396062) (-9.491145782531397 -7.886876329318147 -49.94776629517877) (-3.659509349298497 0.9855510745012923 -42.93506655966216) (14.11685184398769 27.7909334088429 -50.74262420731112) ) ; } procBoundary0to1 { type processor; value nonuniform List<vector> 564 ( (-0.004631301539453264 0.02553700638638867 -0.02118625642722183) (-0.004631301539453264 0.02553700638638867 -0.02118625642722183) (0.07232574101409581 -0.06531156226132223 -0.05912994452054082) (-0.01073691316790209 0.005721304480776081 -0.001785039949971705) (-0.00272211068989231 -0.04222560264731952 -0.0081317277796399) (0.2936310038415447 -4.848138179018539 -2.41650471933694) (1.822760409486019 2.557772925568507 -4.557882454592932) (-0.00448680796891282 -0.02991385513779023 -4.560726929421017) (3.865567555800609 32.84467926330458 3.156076883706069) (0.06728599460555018 0.01915712904490079 -0.01998852287623142) (-0.0444994140774786 -0.07503655852052457 -0.008939359235903952) (-0.0444994140774786 -0.07503655852052457 -0.008939359235903952) (-0.0444994140774786 -0.07503655852052457 -0.008939359235903952) (1.740802633821748 2.238547500025077 1.229710505453913) (1.471331862359237 34.45261424383003 -4.888784806505003) (-0.6640237176651856 4.58459787830979 -2.235312830782851) (-0.6640237176651856 4.58459787830979 -2.235312830782851) (-0.2300616870471267 0.1856965109001121 -0.08717156324463191) (0.1429328633207785 0.03906842102236153 -0.0163738143207228) (2.8269293445068 11.20003782235623 4.683028975267921) (0.0004841174455957366 0.02401172968815755 -0.008540905095969185) (0.4855709877035565 -0.4769767533100671 -0.1441173256459895) (-0.01859712009847444 0.0222674041282243 -0.0009899299648613562) (-2.283940002382043 0.0009717863255475911 -3.883501642298452) (-0.6119608422286203 1.091250180275918 -1.544400882443328) (1.283088527510151 -0.5974772082370098 -1.390437342634279) (9.642698180344659 8.510910559391169 -5.78776754475669) (-1.750566243949595 8.199262850068145 0.7523991612765339) (-0.0419379816565701 0.017048160281398 -0.006322384690083296) (4.081080558033105 -12.9159168885107 -3.295031239715389) (-0.06165051276106041 0.004476614585184419 -0.02228265837278142) (0.05213106036546825 0.01245308566124849 0.01407769444186941) (6.746073955109942 -6.903796534186563 1.935257925490597) (-1.778906751666508 10.44544927952048 2.22410302204994) (0.4892948185012665 -6.038258110903547 0.8617434950563584) (0.4892948185012665 -6.038258110903547 0.8617434950563584) (-0.2445951841811067 -0.01045360053560804 0.03950826615252761) (0.1450592179714483 0.7558949339059516 0.013077388430231) (0.009282280025724413 -0.03638553866649264 -0.0005561761775863677) (0.005624161983780442 0.01325748256701255 0.006763887921678856) (-0.2269515525165022 -11.0573228971291 -4.644841171078864) (-1.878007707528377 -6.910217316734923 -0.38641217580749) (0.8642753289782846 0.2404743029588258 -0.858163550888297) (0.2936310038415447 -4.848138179018539 -2.41650471933694) (1.0772651989405 -0.2880400856541586 -0.4250874654127447) (1.0772651989405 -0.2880400856541586 -0.4250874654127447) (0.5011558538159668 -0.6584492739306289 1.498577725936859) (2.165923566197402 5.1924239070686 4.071366415137415) (0.03584613690809686 -0.01346268029477757 0.004800709320362992) (-3.096693498648479 8.574286137450635 -0.179597234282034) (-7.168419327066298 2.875120519245524 -2.922354710247442) (-0.2819584086194717 -0.04705976546705896 -0.02645061190108802) (0.06693129050995672 0.3083565165811946 -0.3340681908588843) (-0.01844174385346369 -0.03869204393641332 -0.01195939119945835) (0.01173844241673193 -0.05379301093901091 -0.08111799743158639) (-2.94245527084233 -8.744614256927985 -5.324014620549143) (1.58453315820735 3.756419188838644 3.324265410726851) (-0.08356321110174381 -0.3027799444405805 -0.4763740758055801) (-0.3830392764705309 0.06751598279337517 -0.1879026349854491) (-0.3830392764705309 0.06751598279337517 -0.1879026349854491) (-0.08345374478158987 -0.04461035445057365 -0.01135678607401793) (-0.08345374478158987 -0.04461035445057365 -0.01135678607401793) (0.5646373154984757 0.5491792410552372 0.9445915925121412) (0.5646373154984757 0.5491792410552372 0.9445915925121412) (-2.558827337705755 -48.9660427193689 -4.069225432956229) (-1.108192891873562 -2.549737708521925 1.071082319146706) (2.738611294902712 17.47659778037666 -6.256633853600972) (-0.08689947477084699 -0.01200459158020283 -0.03737225561119412) (-0.02141443933677972 -0.01016746861255519 0.02885584977335362) (-0.1939704440154959 -0.277429973198962 -0.06246514442509692) (0.2263582493349462 0.08896089370823035 -0.04188476341274636) (-0.04545478422411749 0.04798838639557689 0.1191345765559308) (0.5055615641752224 0.8855272054560457 0.09904698354490371) (0.5055615641752224 0.8855272054560457 0.09904698354490371) (0.5055615641752224 0.8855272054560457 0.09904698354490371) (-0.1892769064290617 -0.06162100805501616 0.01567215505542072) (0.007950029265367971 -0.004740161140049514 -0.008642628244615149) (0.007950029265367971 -0.004740161140049514 -0.008642628244615149) (-0.2405328112659417 -9.191424551848312 1.327913038640731) (-0.2405328112659417 -9.191424551848312 1.327913038640731) (-0.5351352344876752 -0.07838445784718653 -0.2152750233845534) (4.096317203341171 6.076495564525916 -0.1120672714669916) (-0.3661914487400603 0.280732829403425 -0.3762809392795473) (0.106928282282246 0.001985682014595203 -0.05335840517264406) (0.745985276266078 0.1776362871321407 -0.05835572443798564) (-0.6836142844933603 0.2339574940944131 -0.4060310468243802) (0.03346678121157649 0.02971393132557432 -0.02668925213893327) (0.0181366966790842 0.01548547937831699 0.008488781290849885) (-0.01489683502063123 0.008134497364902691 0.01942588381457589) (0.002710680318846442 0.01294298592928717 -0.006731201110782421) (-0.3938617024138414 -0.8998274526118397 -0.06448682966071057) (-0.003116762496636397 -0.005434541666847192 0.02810506107401176) (-0.153225804920984 -0.2146983789800621 0.1049845398003132) (-0.9071734029100866 1.05509801426917 0.7776704873356325) (-6.253938522568363 5.656077740424759 -9.194846676551432) (-1.274434128953384 -2.623147383909452 -0.468554313533884) (0.05106306084405023 0.01253595063475053 0.0245742700482228) (0.1151173544916546 -0.1179843918576492 0.0407668042222077) (0.1151173544916546 -0.1179843918576492 0.0407668042222077) (0.1668289023282714 0.02899389011115983 -0.1218799671097595) (0.1668289023282714 0.02899389011115983 -0.1218799671097595) (-0.006109960523954933 0.007509530012223695 0.008236741405356462) (0.9329444404648124 67.31848064727062 11.84373471101411) (-0.02097029952649763 0.009347457178701299 -0.001608091392108588) (0.05067418090916057 0.0148500282487199 -0.003682313132770364) (-0.04914202536848486 -0.03889142785524523 -4.648748515591954) (-0.225474626337478 0.01438266398273159 -0.2637937144247491) (-0.09814268322435404 -0.01383113853085469 -7.526984554877007) (0.1028136912659537 -1.648873694975771 -1.150037585593892) (-2.622378236471587 -2.597352261986173 -33.06828868491029) (-0.1725545029872337 -0.008972672817938926 -0.2577553895804348) (-0.000141701829333654 -0.02049230084069878 -0.06003705164129058) (-0.000141701829333654 -0.02049230084069878 -0.06003705164129058) (0.1106896076944027 -0.4769988157443242 -0.3319061574087309) (0.006780868831329945 -0.0004853419850058502 0.005355015051416669) (-4.949030419385605 -5.011233176383666 -2.218641774421793) (-4.949030419385605 -5.011233176383666 -2.218641774421793) (0.4334136592702455 -5.930277962412278 -0.423239421658574) (-0.1153821927095057 0.2361472243520177 -1.076113062523292) (-0.1153821927095057 0.2361472243520177 -1.076113062523292) (2.635947233305871 -3.190041505270723 -1.983942491773591) (0.009502526436650442 -0.007322943529873566 0.03628569698540916) (0.03961688056051765 -0.03627151514905168 0.02508228327968341) (0.8642753289782846 0.2404743029588258 -0.858163550888297) (-0.989573130152839 0.8766382759036498 -0.9809231011192221) (0.8752871880278892 -1.441022583669173 -3.096361569369126) (0.1057499860561659 0.0328104999912895 0.0257380877706096) (-0.05351480262818534 -0.006064220956105424 -0.01282466131726605) (-0.08716978012641854 0.1581386299180552 -0.1396845817451455) (-0.08716978012641854 0.1581386299180552 -0.1396845817451455) (-0.01267490264363612 0.08768964426308987 -0.09731990133293385) (0.4330731916134976 -0.01901221233542447 0.04022281885773843) (-0.274867118145862 -0.08234970273561923 0.3152251927803527) (-0.03544817160149719 -0.02190779292540001 0.008282861088741354) (-0.1910058867617287 5.252395802219215 -0.3659138812437424) (-0.2728399719268759 -0.526097703709278 -0.1779130529747855) (0.05987130340799848 -0.01700081260998067 0.01237645186741079) (-0.08356321110174381 -0.3027799444405805 -0.4763740758055801) (-4.860387459820995 -4.525839059545872 -33.76087039704633) (0.004899842385876055 -0.01928423580932229 -0.03387523885993146) (0.004162319973771762 -0.004791846969502441 0.001274126404232283) (-0.06249179067241037 0.005044670752711037 0.01912556665512669) (-0.1110033318412842 0.6062239051948402 -0.6082245593151431) (-0.1110033318412842 0.6062239051948402 -0.6082245593151431) (-0.03567304279111857 -0.001110546834637644 0.01979560993765079) (-0.03567304279111857 -0.001110546834637644 0.01979560993765079) (-0.04017601168464197 -0.008513909937673505 -0.01084996334123668) (-0.01732858675668707 0.01408399199696425 -0.02175505616210252) (-0.05349761699195153 -0.03052617079786716 -0.01557602684354015) (-2.283940002382043 0.0009717863255475911 -3.883501642298452) (1.082191122646509 0.2622134692552601 -2.278440153618674) (0.2580659645721419 0.09841475600337238 0.01525767529813498) (-0.1096089310153901 -0.03230454786776139 0.1242306543511146) (-0.03260936728697914 0.00617906797844673 0.02241532681718865) (-0.04775225670522281 0.004011511653767633 0.03795589443564568) (-0.1892769064290617 -0.06162100805501616 0.01567215505542072) (0.05082531630355783 0.04280330798697578 -0.003108389378842848) (0.01573805742500075 0.0379013039414175 0.04748192744105743) (1.73975422585335 -1.962337861109548 -5.88699195647894) (-0.7094305167585523 -0.718705802857082 0.214606419304174) (0.4222681197806804 -0.4698970818305548 0.136260969545932) (-0.01285700624074902 0.0181147783630803 -0.003954572320788871) (0.04058270678264189 -0.01084192919746882 -0.0237886458340094) (-3.025454831444652 -0.997073689012276 -2.058095717239467) (3.60667691655155 0.562288250647521 0.01836225596943486) (3.60667691655155 0.562288250647521 0.01836225596943486) (5.41855273210825 49.50740465001074 1.951441959639795) (-0.006581119208823927 -0.004293197942483173 0.03901653289777728) (0.1155631791219458 -0.1918183688209893 -0.9090588714853725) (-0.01134711075408641 0.01660461704821227 0.02200868237823477) (-0.01134711075408641 0.01660461704821227 0.02200868237823477) (-0.1046317113356124 0.1374755051999573 -0.005031693768289498) (0.01057241922218584 -0.002756919729246727 -0.01322828200712037) (-0.009183304532337056 0.03417786856239799 0.02650471824685324) (0.5407145885482878 -1.337182053736249 -0.2362982074305861) (-1.897342607025861 -1.122359712574312 -9.043244579270894) (-0.2606242224921813 5.146728245633346 -31.15069947114467) (0.06693129050995672 0.3083565165811946 -0.3340681908588843) (-0.3345276098711918 0.1572311011753419 0.009247277025474371) (-0.7281028855972294 -9.626923106993475 -6.630865622803662) (3.21470024129232 -0.507597293689964 -0.2876145832177689) (-0.09146038336595597 1.977535766735782 -1.882131305606571) (0.0853683388331322 -0.05653286086629995 -0.03625928393198501) (0.1961308120132757 -0.2870254327289302 -0.081580083303559) (-0.1995160241541438 -0.02161504282892682 -0.01451956178714589) (0.0116462231469758 0.06827004483141694 0.04281332952795571) (0.05213106036546825 0.01245308566124849 0.01407769444186941) (-0.02292395715396905 0.01899428631292446 -0.006767844142538327) (-0.1995160241541438 -0.02161504282892682 -0.01451956178714589) (0.1261056784502694 0.08155266808406979 -0.1694922428385228) (4.704136936974674 11.82025327615361 -4.488633749789838) (-0.1799521183284924 -1.309677103987885 -1.191830429534206) (0.573629362192414 4.464363981908781 -0.1758010432384209) (-0.07939486847156936 -0.02423004282955942 -0.02211282910771864) (-0.7562768627212293 0.09769845197970231 0.735588172269765) (-0.7562768627212293 0.09769845197970231 0.735588172269765) (-0.06764448749124635 -0.02980175572914027 0.03091396883153721) (0.02237047381111947 -0.03408576021689404 0.01005735754067553) (0.02237047381111947 -0.03408576021689404 0.01005735754067553) (-0.3096178724656886 -0.1098516819842401 0.08746037604051926) (0.005112487567068114 0.07819854249111764 0.04430280145721153) (0.04024564749484631 -0.03127979981820725 -0.003249602461594489) (-0.1653828650509114 -0.07269735392336094 0.2909788925343976) (-0.003198272398963346 -0.005727810445544121 0.0006895745080635801) (-0.01218062833351067 0.06851045038846268 -0.04751725340110072) (-0.03779315601086469 -0.01252117863166895 -0.01371783682246115) (-0.08544441542328152 0.1531339701397807 -0.4636331317270032) (0.4210546242759412 -0.2000117471371119 0.1981026633883413) (-0.1251910327418779 -0.06931935593586952 -0.02049941439562308) (0.08345765442433825 -0.2029321812413045 -0.06973901809931909) (0.3389336799112784 -0.008729458441654486 0.01022545837872574) (0.0896008991547661 0.02153270797694769 -0.01510266997362074) (-0.006500713063870617 -0.01079450416618574 0.004948653063412568) (0.04413000830784752 -0.04978858460015375 -0.02617175911026794) (-0.08544441542328152 0.1531339701397807 -0.4636331317270032) (0.9143192474058247 -0.1002221284664992 0.473390725536024) (-3.081187724189459 -72.31782623156226 -0.004144993282397369) (0.04790099099115085 -0.09788768982984862 -0.0167844080983752) (0.1273588150700315 0.9533571276687134 -0.1902744898413904) (0.06960375439923763 0.03430988807787278 -0.004863122223149854) (0.06960375439923763 0.03430988807787278 -0.004863122223149854) (0.3751954423169431 0.4191480012255944 0.8475543148873537) (1.570299746991223 0.2457113300561305 -0.6405555985240262) (0.0853683388331322 -0.05653286086629995 -0.03625928393198501) (-0.1046317113356124 0.1374755051999573 -0.005031693768289498) (-0.08667150446698942 -0.006822709437178574 -0.007827034384887653) (-0.2602703647255945 0.5160708754878027 -0.1702046650572717) (0.140291869947284 0.09249530777225579 0.1916296465698064) (0.1017807348692808 0.1192156732865636 -0.1728480889046196) (0.1017807348692808 0.1192156732865636 -0.1728480889046196) (0.1384517927459079 0.01006832491407849 -0.01023297574514156) (0.004381388001689846 -0.1545967708092391 -4.783202856221121) (0.09805672956051449 0.04466216111855301 -0.008183934310256019) (-1.92866612036761 1.058124662046791 -2.441385837380763) (-1.92866612036761 1.058124662046791 -2.441385837380763) (-1.92866612036761 1.058124662046791 -2.441385837380763) (-0.004327676021244529 -0.01489294042054481 -0.03029109315351056) (-0.004308651046558467 -0.00137383263213577 -0.003480649698255013) (-0.01546113143147937 0.3758318206355389 -1.182533958217219) (0.08857509712150817 0.1458517355750464 -0.1073073412349993) (0.08857509712150817 0.1458517355750464 -0.1073073412349993) (-0.05239758691277815 0.1391165239970676 -0.201761847812469) (-0.05239758691277815 0.1391165239970676 -0.201761847812469) (0.5011558538159668 -0.6584492739306289 1.498577725936859) (-2.561519980279047 1.246007695752615 -32.31685411989791) (-0.5070321851800773 0.3557540252883461 0.7049946978340504) (0.0603583092763865 -3.746078549513241 -0.08323004649913149) (-0.5070321851800773 0.3557540252883461 0.7049946978340504) (-0.5070321851800773 0.3557540252883461 0.7049946978340504) (-0.3360990593385752 -1.081611893893816 0.1578466201464534) (-0.3360990593385752 -1.081611893893816 0.1578466201464534) (-4.387511403401506 -8.278810728307588 -0.6306140405563236) (0.1862247789007447 -0.04513259054916513 -0.02971673970992043) (0.2483189271283573 0.1917364204536399 0.5159285712573692) (0.1156440341106009 0.1613234272594416 -0.2112604035089951) (-0.003020132282495285 -0.003513494544297099 0.003406536457801214) (-0.1204604231188446 0.03122254914820383 -0.005368622525521408) (-0.1204604231188446 0.03122254914820383 -0.005368622525521408) (-0.5954016146421338 -4.352204421431566 3.140036221140128) (-0.5954016146421338 -4.352204421431566 3.140036221140128) (-0.3151104497233956 1.171669848836887 0.08367910233456705) (-2.856532627131917 -1.420616485167805 -1.220998367459139) (-2.856532627131917 -1.420616485167805 -1.220998367459139) (-0.2269515525165022 -11.0573228971291 -4.644841171078864) (-0.5139135929931542 -3.71405970884077 0.1152431536506264) (1.740802633821748 2.238547500025077 1.229710505453913) (-2.226705107239309 -1.194774219001646 -5.632461503394968) (-0.126160775012942 -0.181057065089359 0.03060447597056229) (9.257365823207403 17.31842871264834 1.664705734155873) (-16.58839732432547 -14.5788397422651 -47.13803892203024) (-6.751780719176431 -43.41958379545795 -7.342049504601544) (0.004140265941057304 0.001355538759902637 -0.001649592456860501) (-0.006750969920064453 0.0206632070274692 -0.01908291449355019) (0.03584613690809686 -0.01346268029477757 0.004800709320362992) (-0.1131996475591632 -0.001467253801579024 0.02026848331236298) (-0.2901908419072308 0.1001410518634128 0.1517008260994556) (0.003264166907303495 -0.09559885587651031 0.02004664124501219) (-0.2901908419072308 0.1001410518634128 0.1517008260994556) (-0.7094305167585523 -0.718705802857082 0.214606419304174) (0.140278193970567 -0.002461391415830943 0.03745088295768637) (-0.02099454104206671 -0.02103935757703927 -0.02563700525326194) (-0.008927964908793048 -0.003291484776865444 0.01681699753637493) (-0.008927964908793048 -0.003291484776865444 0.01681699753637493) (0.08665267253364511 -0.09125663365789993 -0.4479463609321812) (0.0448788102426717 0.1316525937796415 -0.07881404543143759) (0.001888326910799766 0.02457134439711696 -0.05234607796774875) (0.001888326910799766 0.02457134439711696 -0.05234607796774875) (-0.1118843264864479 0.009815120717467485 -1.006333664400994) (2.772084530031996 5.648401980720338 -1.574260526254297) (2.772084530031996 5.648401980720338 -1.574260526254297) (0.2887727947585266 -0.04429145555166543 -0.1234306343638426) (-0.04013953945075964 0.01412573314016377 -0.01474473341175177) (-0.005219467455844694 0.01147599500758412 -0.02319701118810861) (0.7303577261332648 -0.2586817534793905 -1.011174014371846) (0.7303577261332648 -0.2586817534793905 -1.011174014371846) (-0.06657006838040078 -0.002161278696554214 -0.0004668929140873301) (0.004811335903374705 0.005417884040825549 -0.002073271149917383) (0.03043809386559483 0.004015652551188625 -0.00342470543131874) (0.03043809386559483 0.004015652551188625 -0.00342470543131874) (-0.0204225418869538 0.08390959198843403 0.007284578431422746) (0.04873022382844548 -0.05230967655584449 0.03362685484112377) (-0.2445951841811067 -0.01045360053560804 0.03950826615252761) (-0.2594795080775091 -0.02652418617488593 0.06621633562241709) (0.06837240239505736 0.005685106912828437 0.0595367050511162) (-0.03260936728697914 0.00617906797844673 0.02241532681718865) (3.700180968196215 0.7500970424398236 -22.89271378281726) (1.082191122646509 0.2622134692552601 -2.278440153618674) (0.002609973886254676 -0.002456691150506022 0.003192090234196449) (-1.011052202806411 -4.357752941906215 -2.607199867599979) (0.07259755373375634 0.04275600647860428 -0.5096276909027946) (-0.1118843264864479 0.009815120717467485 -1.006333664400994) (2.280948106407364 -7.157025215620138 -2.748318436998445) (0.06381762192423809 -0.4804613659580345 -0.4585411237231579) (-0.2197218397382464 -0.4812572201300475 -1.130005032037765) (4.988786273539813 -2.280937041071463 -30.78650733719645) (0.563080715271256 0.07347280262657332 -0.3914409800812132) (-0.3530501470307003 -0.1198227000010666 0.03472930489530052) (0.02649224895160153 -0.07865015179470322 0.1159999821656651) (0.02649224895160153 -0.07865015179470322 0.1159999821656651) (1.087161453638724 -0.08642146456163924 1.59121839771507) (2.280948106407364 -7.157025215620138 -2.748318436998445) (-0.1070040013946434 3.762867210562184 -30.04333190308166) (-0.442507285228364 0.1154216057515118 0.1243545733334691) (0.7257947332984943 29.43541422632518 -3.074867860185282) (0.1858942669902552 -0.06752304263800427 0.08273207048026698) (0.1862247789007447 -0.04513259054916513 -0.02971673970992043) (-0.01101445069559909 -0.004191966908935319 -0.01564558689291707) (0.003708097189349989 -0.004739494175395939 0.0948785948282094) (-0.1274834302912945 0.02156168340454296 -0.03161049278491479) (0.140291869947284 0.09249530777225579 0.1916296465698064) (-4.540355105760614 1.546704911533203 -27.19555364298634) (-1.683353811337804 -1.37666150718596 -20.40613900896685) (-0.2197218397382464 -0.4812572201300475 -1.130005032037765) (-0.08072861615916399 2.799493765404135 -19.95848497384902) (-0.2819584086194717 -0.04705976546705896 -0.02645061190108802) (-0.01105220509120628 -0.02001399633331096 -0.02655825830792241) (0.01426771758029361 0.004115069477961444 5.832201255333552e-05) (-0.08667150446698942 -0.006822709437178574 -0.007827034384887653) (0.04700413892804534 -0.01421766066561631 0.09138573933108568) (0.3344534777004011 0.4851295943375954 0.2734184603480599) (-0.01732858675668707 0.01408399199696425 -0.02175505616210252) (-0.01105220509120628 -0.02001399633331096 -0.02655825830792241) (-0.1371763274187928 0.07142041320186486 0.04130181254981652) (-0.2182430206279828 -0.3410432844220715 -0.2458399104242343) (9.257365823207403 17.31842871264834 1.664705734155873) (-0.01416489379935079 0.01013878487165862 -0.01394732804390505) (0.05692322229027058 -0.003404339086261032 -0.0322079524641096) (0.154114412524146 0.1119288273513795 0.1759309560372637) (0.06345992612411655 -0.0218806136372913 -0.02939347231515444) (0.1505485537752325 -0.2972948353647155 -0.1146516688761879) (0.1645503762979099 -0.09219688237037174 -0.185102200975845) (-0.1251910327418779 -0.06931935593586952 -0.02049941439562308) (-0.006612237979989139 -0.004164209600932668 0.01263437016285098) (0.01085643424781979 0.08345960886808318 -0.03408726502924325) (-0.03410386871646229 -0.3174035716291627 -0.5320276457664361) (-0.03410386871646229 -0.3174035716291627 -0.5320276457664361) (-1.380311760755571 -3.411595071828977 0.8632780247762392) (-0.01218062833351067 0.06851045038846268 -0.04751725340110072) (-2.358403970409966 -4.661190107652131 36.95323400697366) (0.002615426703435038 -0.001139039333813401 -0.005974849517153646) (0.2263582493349462 0.08896089370823035 -0.04188476341274636) (0.09805672956051449 0.04466216111855301 -0.008183934310256019) (0.01057241922218584 -0.002756919729246727 -0.01322828200712037) (-0.06426920019274968 -0.02314546680993593 0.02902617209441584) (1.822760409486019 2.557772925568507 -4.557882454592932) (-0.2244693697983875 -6.734209001764759 3.688408466790949) (-0.2244693697983875 -6.734209001764759 3.688408466790949) (0.4239434092041598 -2.210546222090252 -0.8838585627524679) (0.2982265396708869 -2.744796683475419 0.7292420321900626) (-0.1355846950042194 -0.450522075645444 0.751584712965737) (-0.1355846950042194 -0.450522075645444 0.751584712965737) (-0.02060630567694494 0.007599283246490885 0.01524252018857144) (-0.136805651839944 0.1890857508885016 -0.2230201871047528) (0.03604479233659462 -0.114772518620262 0.2601910828173685) (-0.136805651839944 0.1890857508885016 -0.2230201871047528) (3.72836082907018 -0.1081215953470183 -1.673868887268552) (0.07259755373375634 0.04275600647860428 -0.5096276909027946) (-0.6119608422286203 1.091250180275918 -1.544400882443328) (0.1805187079658803 0.8749788237705562 -0.5582371082922198) (0.1805187079658803 0.8749788237705562 -0.5582371082922198) (-0.3822054408059748 4.092778273190137 0.9605965943664854) (-0.558028375160428 -0.8869553169890969 -6.512447986789251) (1.701715901511869 0.2616538607193777 -0.4461238818529678) (-0.9810640378495904 -1.295526745311691 -1.524113157828045) (-0.9810640378495904 -1.295526745311691 -1.524113157828045) (-0.02330316969302916 -0.0009376072940554311 0.08062574649570978) (0.4757484550835933 0.4111646022501599 -0.1098516553674829) (-0.217434676499563 0.1757003324422723 -0.224643505577033) (0.05082531630355783 0.04280330798697578 -0.003108389378842848) (0.006652469942164552 -0.002696058024862051 -0.01015500330760741) (0.1957785290704624 -0.02290301217079658 -0.1495857414136228) (2.357721935226013 32.49756092999881 8.68728486354145) (-0.02272696832973088 -0.02792150797761563 -0.008296674016602508) (-1.979086048377094 2.802945732343513 -1.868250512300093) (1.988477981113929 39.53501754059628 -9.600578670762456) (0.2066867151264268 8.639809167860529 2.722675779098914) (0.08821844597578433 0.01822245565091317 0.0116826489367667) (-1.24416730318028 -8.264796204392523 -1.827943782997763) (0.05711158479307632 -0.1322460352279915 -0.02085258453074895) (-0.3948295225702231 -0.9280310750930372 -0.2846517874165116) (0.1155631791219458 -0.1918183688209893 -0.9090588714853725) (0.07640548297145364 -0.03972530955415611 0.04553731777928331) (0.07640548297145364 -0.03972530955415611 0.04553731777928331) (-0.9422959860431115 7.994732035983179 0.1023064956079078) (0.05153272684872284 -0.01187902424209812 -0.02700573387285722) (0.01747504595478852 0.5934687831982495 -0.4606111735011093) (0.1065155121427343 6.532719847858206 0.2468348619694478) (-0.04775225670522281 0.004011511653767633 0.03795589443564568) (0.1429328633207785 0.03906842102236153 -0.0163738143207228) (10.93670850610993 -4.537428703556877 0.3912055750727861) (0.1350464820516019 0.0150542115596633 -0.04067601747210754) (-0.02245370278690462 0.02812471573447682 0.06663266434483631) (-0.8353664988329309 0.7812833171441826 0.6063772339589153) (-0.02097029952649763 0.009347457178701299 -0.001608091392108588) (-0.02097029952649763 0.009347457178701299 -0.001608091392108588) (0.01128707487158317 0.05072909295185481 0.0039119400914863) (0.03670551375542678 0.07396437973144852 0.02983430930634175) (2.479981305515003 -0.1555529678212166 0.307301499096082) (9.725134355835324 6.1821453280038 -9.262619241682954) (0.06560764900275859 -0.02132936206256539 -0.05011964479842277) (-0.1403478313999022 0.2338692489218012 -0.3851941717369649) (-0.001116902355758169 -0.01382689443573301 0.02533730205316331) (-0.6836142844933603 0.2339574940944131 -0.4060310468243802) (1.570299746991223 0.2457113300561305 -0.6405555985240262) (0.2623479086302143 2.281507766103918 1.068675216155204) (-0.02651111096336076 -0.01705635890489874 0.01647198085248749) (-0.7849748947178757 2.500395623191762 -1.66176680256523) (0.01573805742500075 0.0379013039414175 0.04748192744105743) (0.07069948507841919 -0.02558311499214665 0.02442360075186518) (-0.1195146360066875 -0.01030371832403859 -0.04723508387384284) (-0.1195146360066875 -0.01030371832403859 -0.04723508387384284) (-0.3151104497233956 1.171669848836887 0.08367910233456705) (0.5829736725669227 0.1756546142848491 -0.05585420274688724) (1.919248064129498 0.1911182270938094 0.6989646056826759) (0.1012878783478104 -0.03170332660847133 -0.2920663887203924) (-0.01026200069515871 0.01332088192333643 -0.0218149121021902) (3.415317067220934 -14.11182559415106 -9.241117512034119) (3.415317067220934 -14.11182559415106 -9.241117512034119) (-0.3938617024138414 -0.8998274526118397 -0.06448682966071057) (0.6981570921036446 -0.05584383606429932 0.2915973936996057) (-2.481008296619647 -37.50091158122241 -0.820693713048112) (-0.07286689796920905 0.1657742175971441 -0.04574493956485173) (-0.1874533150318073 0.01771663920382006 0.003368446607911899) (0.1623696194953233 0.06889948584970804 -0.01365454663309031) (-2.011296238480726 1.7892377654694 -2.603197779224543) (0.01448969373423249 -0.1181334763531052 0.08424245107009234) (-0.3661914487400603 0.280732829403425 -0.3762809392795473) (0.1645503762979099 -0.09219688237037174 -0.185102200975845) (-0.006750969920064453 0.0206632070274692 -0.01908291449355019) (0.03561983331893803 -0.00994808227876488 -4.546713518403625) (0.01030694522994887 0.1330639070978741 -4.782570711526401) (0.1064274880812284 0.4880382275957482 -0.3963293792722863) (0.09382903557910366 0.03281299879542761 0.05656236143948288) (-4.705779590884545 -2.72033248980041 -0.1527883518864503) (-0.2323431627421234 -0.3011164968040511 0.002574718150266997) (-0.2323431627421234 -0.3011164968040511 0.002574718150266997) (-0.142632305922316 -0.1867076999214952 0.05088311063708254) (0.4222681197806804 -0.4698970818305548 0.136260969545932) (-4.705779590884545 -2.72033248980041 -0.1527883518864503) (1.683873010796294 1.584437216191158 0.08801549670363407) (0.00348806120789005 0.00785727445538778 0.01247174027862848) (-0.07141199017483961 -0.2785439812513932 0.1239002546231073) (0.00315308368538758 0.00906154362431591 -0.00947107203228632) (-2.855337884779958 -2.405242334868162 0.0605213619065379) (-0.052207654768692 -0.03108748030844959 -0.02909034212522929) (-0.08497798847848356 -0.0191197452025027 0.02012262464772722) (-0.01285700624074902 0.0181147783630803 -0.003954572320788871) (-0.01285700624074902 0.0181147783630803 -0.003954572320788871) (-0.1131996475591632 -0.001467253801579024 0.02026848331236298) (0.6110544690689357 -3.927160899146679 -3.422532091145323) (0.09720638555122013 0.009321614883174838 0.007298150667921069) (0.7911818538771656 1.515441252687463 -1.414319731577317) (0.06381762192423809 -0.4804613659580345 -0.4585411237231579) (-0.01735908121036316 -0.01979059171557484 0.0142259665689165) (-0.3345276098711918 0.1572311011753419 0.009247277025474371) (-0.1181255999928758 0.004690810676967222 -0.05632815195896818) (-0.1181255999928758 0.004690810676967222 -0.05632815195896818) (0.05153272684872284 -0.01187902424209812 -0.02700573387285722) (1.670961211218708 3.511943003633656 1.560643044133614) (1.670961211218708 3.511943003633656 1.560643044133614) (-0.2269515525165022 -11.0573228971291 -4.644841171078864) (-15.03886824870015 -25.21090487122647 14.54850802043603) (-0.03286669102741332 0.005032987057142861 -0.004366848091417679) (0.01417691080167443 0.01029781806261313 0.01842630304529091) (0.02717165034267831 0.02560683352379139 -0.01786884591977805) (-0.02350408531576115 0.0003068308250418319 -0.003612332533104759) (-0.08497798847848356 -0.0191197452025027 0.02012262464772722) (0.3538094016286992 -0.1610553945252158 -0.2033079467245934) (-0.01416489379935079 0.01013878487165862 -0.01394732804390505) (0.09294887356119111 -0.08501972849915108 0.008136081237365499) (-2.855337884779958 -2.405242334868162 0.0605213619065379) (-16.58839732432547 -14.5788397422651 -47.13803892203024) (0.03657537676822305 0.06712881720882073 0.03447584117603963) (0.1503240765666058 -0.208304376355872 -0.02599534261480597) (0.009502526436650442 -0.007322943529873566 0.03628569698540916) (-0.08333127352197933 0.07572103219526684 0.07935699497830193) (-0.04793185084024892 0.0009681537270925956 -0.07749112693493024) (0.07069948507841919 -0.02558311499214665 0.02442360075186518) (0.1971790804203646 0.1925109655189704 0.3481108086193773) (0.2623479086302143 2.281507766103918 1.068675216155204) (0.07592281408705043 0.004682983254425307 -0.04025138305974663) (-0.4711803286296566 0.4042409089089551 -19.10769452553564) (1.102035513021337 -0.04688185087923066 0.6908593727190313) (0.7505202690516944 -0.01936121390427592 -0.6442494109164787) (0.03604479233659462 -0.114772518620262 0.2601910828173685) (0.0896008991547661 0.02153270797694769 -0.01510266997362074) (0.01232109232751199 -0.006114882291565671 0.007099072966451609) (-1.546503725071498 -3.328424792669531 -2.075504281981934) (-0.1068462131594674 -1.132787698770469 -12.69101586469905) (0.4150124629642605 9.784705532850978 9.147858245165127) (0.9721234044615893 -1.625778922898051 -5.642915306968644) (-0.3530501470307003 -0.1198227000010666 0.03472930489530052) (-0.274867118145862 -0.08234970273561923 0.3152251927803527) (0.07896547900438675 0.3046795007250738 -1.091494772288469) (-0.09965699135223088 0.1195008898916632 -0.2983873400244387) (-0.01026200069515871 0.01332088192333643 -0.0218149121021902) (5.000579564609845 -1.829992670584743 -0.6640711644424573) (0.015203672721427 0.006314379983166196 0.002623552039341328) (0.07442072433377278 0.007027374682269589 0.02097839722990469) (-0.06426920019274968 -0.02314546680993593 0.02902617209441584) (0.4433405633855702 0.2918405866222367 -0.3147632889110229) (0.09382903557910366 0.03281299879542761 0.05656236143948288) (0.1028136912659537 -1.648873694975771 -1.150037585593892) (-0.1068462131594674 -1.132787698770469 -12.69101586469905) (0.7911818538771656 1.515441252687463 -1.414319731577317) (-0.0009612606766946745 -0.01224339364473947 -0.009810887976853689) (-0.0009612606766946745 -0.01224339364473947 -0.009810887976853689) (0.006719987006122231 0.002330748152303671 -0.001259089806784272) (-0.02651111096336076 -0.01705635890489874 0.01647198085248749) (0.03961688056051765 -0.03627151514905168 0.02508228327968341) (-8.635974586185274 -5.733166505830575 -4.520132669911233) (0.573629362192414 4.464363981908781 -0.1758010432384209) (4.879182824399598 2.609401410800666 1.660781938977459) (-0.04599218547026884 -0.02192533299295654 0.00249147868848075) (-0.12117783305562 0.0760168270808155 0.02612124209608445) (0.05711158479307632 -0.1322460352279915 -0.02085258453074895) (-1.473665449546881 -41.67729008263203 4.011369555060111) (0.4433405633855702 0.2918405866222367 -0.3147632889110229) (-0.2728399719268759 -0.526097703709278 -0.1779130529747855) (0.9721234044615893 -1.625778922898051 -5.642915306968644) (0.003237249636437787 0.009185073802395926 -4.635051101266104) (-0.2996644077144812 -1.337316764883812 0.05688419619181684) (-0.1874533150318073 0.01771663920382006 0.003368446607911899) (-0.3394408514205768 -6.384451906485917 0.929121728305191) (-0.02073749365780683 0.02550236667421271 -0.01797506616137666) (-0.09455552340431989 0.06363573690757644 0.01262972713380298) (0.6110544690689357 -3.927160899146679 -3.422532091145323) (-0.1061702472960182 0.1837264725207149 -0.04224877031970527) (0.01933358991187666 0.01746689229166051 -0.009821337922341779) (-0.04599218547026884 -0.02192533299295654 0.00249147868848075) (-0.04599218547026884 -0.02192533299295654 0.00249147868848075) (-0.1096089310153901 -0.03230454786776139 0.1242306543511146) (-1.856826826823839 0.09536749794681877 -0.5974224120184097) (-0.05339878603891626 0.04110516362693751 0.02050030379142929) (-0.225474626337478 0.01438266398273159 -0.2637937144247491) (-0.225474626337478 0.01438266398273159 -0.2637937144247491) (0.01280294259987779 0.007983378236552052 0.004081184044394295) (0.01280294259987779 0.007983378236552052 0.004081184044394295) (-0.03424740518646878 0.0177351318601596 -0.04408279592560746) (-1.75196729725403 -5.138155360332045 1.512691336834335) (0.004811335903374705 0.005417884040825549 -0.002073271149917383) (-0.2594795080775091 -0.02652418617488593 0.06621633562241709) (0.5651479082188862 1.202227372207459 -1.852182449342563) (0.06837240239505736 0.005685106912828437 0.0595367050511162) ) ; } procBoundary0to2 { type processor; value nonuniform List<vector> 925 ( (0.007442409265562997 0.001324578324878705 -0.003457796182996659) (0.002915296483464321 0.002151620930892316 -0.0037904490064198) (-0.009439780046528953 0.003281068804864006 0.01105745052306281) (0.002715426812537546 0.001061556435315055 -0.003625058377211522) (-0.0007631126751934864 0.0004590914467874787 -0.001063798892517395) (0.01050214069281663 0.001224149216412999 1.572885697615194e-05) (0.01050214069281663 0.001224149216412999 1.572885697615194e-05) (-0.001007642580251659 0.0009595231369138217 -0.0007554715660693517) (0.00117657192083666 -0.001948847999612161 0.003556302059312001) (0.001585055284482486 -0.001500213191214037 -0.0007841492049026021) (-0.009439780046528953 0.003281068804864006 0.01105745052306281) (0.002140235525188538 -0.006156586912410603 0.004069320599164847) (-0.006512239032287297 -0.001453352384439771 -0.007711029339740945) (-0.0005394536891969696 -0.0004552472189489592 -0.000103301380059752) (-0.0005394536891969696 -0.0004552472189489592 -0.000103301380059752) (0.001192886216964866 0.0005912301258073861 0.006132393404939106) (0.01066165790304391 -0.0001345895221464563 0.01375252840791221) (0.004112907324129072 0.001520416783800619 -0.003174012486530093) (0.001189581352430235 0.0002887037108246421 0.001693472736700776) (-0.0002899521197554224 -0.002281815392096073 0.008253655422034817) (0.003046936964141578 -0.006085628301450741 -0.004812902135958234) (0.004491675978557834 -0.001153809622701866 -0.0005090940735466305) (-0.008246274569088961 -0.000823315288418635 0.003965928334814479) (-0.001647335352823071 -0.0002048459003906136 0.0001365929576011946) (-0.001647335352823071 -0.0002048459003906136 0.0001365929576011946) (-0.003154899789926509 0.001286852290687326 0.0004096831393198856) (0.007087014173311198 0.03447374056609725 -0.04385273784309091) (-0.03932371468586892 -0.05010113065322125 -0.02122576206083363) (0.007087014173311198 0.03447374056609725 -0.04385273784309091) (-0.005392819142615623 0.0005817154207777943 -0.004279359223959184) (-0.152610431319444 0.06209080403549359 0.1098144644186962) (-0.152610431319444 0.06209080403549359 0.1098144644186962) (-0.002075008709050151 -0.001775584630315567 0.0005664223298344678) (-0.001310666278729188 0.0003281396567628808 0.000668437585729337) (0.001890230114196834 -0.0007447561029869323 -0.001107285010381329) (-0.001032340803322532 0.0003338890031776181 0.0002014602513829011) (0.001164453553570933 0.005019592953800795 0.000661107153555212) (0.004560925483725995 -0.002922615230494444 0.001198058924494103) (0.001164453553570933 0.005019592953800795 0.000661107153555212) (0.006922363022231686 0.0001207960315062725 -8.720699145464547e-05) (0.03804588329857188 -0.03597780709680476 -0.01083905664042207) (-0.001227187165609225 0.008625587428512825 0.001226177344710186) (-0.01175924266151045 -0.001524233801724442 -0.001080406242045669) (-0.00361490706395137 -0.006675750189427767 -8.829458723210977e-05) (0.01216950002367744 0.009335204202693424 0.006280278163798867) (0.01913931607832904 0.02965003434780692 0.02747647832704034) (0.0004864180912988112 -0.0007055533233512013 -0.0005500938580917232) (0.0002134145480625769 0.0007324393047801342 -3.359545690046926e-05) (-0.1076825959859505 0.06095691042832227 -0.04900233547407233) (-0.02312092000320255 -0.01180718675583623 0.007090583775732812) (-0.02312092000320255 -0.01180718675583623 0.007090583775732812) (0.0005048365437966666 -0.0005438753685870063 -0.003618456192490372) (-0.0002711075155648647 0.003948393164989634 -0.0007158783799546397) (-0.0002711075155648647 0.003948393164989634 -0.0007158783799546397) (-0.0003215431810275522 -0.0003172178317000868 -0.0004219740622179274) (0.001201116831813925 -0.0002990789162070476 -0.0004362192397651637) (0.02246330396114271 -0.001740530197719251 -0.005592948203803312) (0.006050569822990842 0.003409724356488617 0.01309685511045818) (-0.003736987406159864 -0.0003685595196149296 0.001402574648468508) (-0.009534767479445651 -0.003713287168441395 -0.009672015748250502) (0.04862576974208049 0.09618824243085144 0.4787735146699756) (0.04862576974208049 0.09618824243085144 0.4787735146699756) (0.0009594014597906157 0.0064790082696536 -0.002003537296928313) (0.002868372008243113 -0.002729744576488337 0.001179177658349766) (-0.002551579232662552 0.0001843268550467127 0.004636087413546951) (-0.03266074325723056 0.001412527309564117 -0.0124410362395002) (-0.008608962776637535 8.208071998297602e-05 -0.007536840577845616) (-0.005139525334903096 -0.004484185537921653 0.003466039733819687) (0.01411648655616494 -0.005903439285849999 0.00462951129059626) (-0.001053872284497561 0.00187974214867636 -0.0003978748113977288) (-0.003760854988661843 -0.001129485668992222 -0.0005467347068538243) (-0.0007989916591798798 -0.00091601186575303 0.00180725098802053) (-0.0003083634275219815 -0.0007255872577353838 -0.0002658775130880742) (0.003618261338927466 -0.0006854640938092231 0.0001378510934096344) (0.5203798116848254 0.3232628888307768 0.8020097284339434) (0.002052874329534487 -0.0006034881160345302 0.003793287617058166) (0.002052874329534487 -0.0006034881160345302 0.003793287617058166) (0.0009594014597906157 0.0064790082696536 -0.002003537296928313) (0.004560925483725995 -0.002922615230494444 0.001198058924494103) (0.004560925483725995 -0.002922615230494444 0.001198058924494103) (0.0008183382093539938 -0.0005743057975281726 -0.001051866827029644) (0.001156593762563018 0.001048073633928052 0.0003755369909956213) (-0.001771076855959216 -0.0003824283517561392 -0.0002274544399062546) (-0.001350415608940984 -0.005416847946382749 -0.01148998013145545) (-0.001350415608940984 -0.005416847946382749 -0.01148998013145545) (0.002518142910344793 0.0008023905104153485 0.0001294597720743189) (0.009707981267862407 -0.001128116595982075 0.0151196015655252) (0.009707981267862407 -0.001128116595982075 0.0151196015655252) (0.004825764799077051 0.0008070773125923194 -0.0007783663126374259) (0.0003061417070194067 0.0007270379924620733 0.001409460677355171) (0.01153124050537918 0.01678284458937948 0.001757437714198708) (-0.006459145011502807 0.0007815948496564041 -0.002192335664441467) (-0.006459145011502807 0.0007815948496564041 -0.002192335664441467) (0.001041514074084378 -4.116256937282544e-05 -0.001090512922725502) (0.001324739981388937 0.000548352629281459 -0.001324425085894361) (0.0002399811257630243 0.00228607466891593 0.001465842209381054) (0.162556720167929 -0.2658087208244824 -0.243068184272687) (0.00474840168325247 -0.0004762351395070103 -0.002426450629549176) (0.00555087322682779 -0.0266777010593744 0.005696804275093755) (-0.001948223502070292 0.002852043608553953 -0.01013302787369605) (-0.007862728902265966 -0.004554262246773202 0.0009086546589218577) (0.001445224277506985 0.005663236817751459 -0.0002221364027366803) (0.001906289425726415 0.004825793448068994 0.002737428772931204) (0.0002076638312233186 8.057074677824128e-05 -0.0004801262383354556) (0.004022223191718985 0.0002286363471321603 -0.0007050409012820362) (-0.02653904320141951 0.02299843508638316 -0.03373672238414388) (0.7761597047643376 0.07885549548711035 2.797924009114729) (0.7761597047643376 0.07885549548711035 2.797924009114729) (-0.0723848609445599 0.4125052613645517 0.07199721195346336) (0.0853913531726785 -0.02282414158603476 0.03086404867579674) (0.0853913531726785 -0.02282414158603476 0.03086404867579674) (0.008238613504033597 0.02658916654892048 -0.03000409444597849) (0.005971873729216585 -0.01229303611908882 -0.006641136646505339) (5.339180466189303 -0.8607023814432182 -0.3462302527530313) (0.006050569822990842 0.003409724356488617 0.01309685511045818) (0.006599871834016301 -4.58933245739996e-05 9.218131556017022e-06) (-0.09102598157777819 0.3292113913398684 -0.5470732136009365) (-0.007931342929656061 -0.02086358458496563 0.03659020922083444) (-0.002297767583355819 0.004701865503002959 -0.008376351866057473) (0.03161230091929772 0.01454606256622547 -0.01569404541192644) (-0.3971111384234585 0.3138440347339914 -0.1386648175330605) (0.01187997470005874 -0.001256835271171289 0.001579607607910293) (-0.02556276926246987 -0.01982166806513675 -0.01337256572550443) (-0.02556276926246987 -0.01982166806513675 -0.01337256572550443) (-0.02556276926246987 -0.01982166806513675 -0.01337256572550443) (-0.003309937759052033 0.0008637082099732063 0.004791970441800401) (-0.03039713222953658 -0.0117446370758113 0.0008746992613195802) (5.545507761514262 -5.707251154928851 2.35167129443628) (5.545507761514262 -5.707251154928851 2.35167129443628) (0.7802884599756983 -0.2833796523565877 -0.3006484101637942) (0.2488157174274843 0.5108121866127275 -0.3272196236908622) (0.2156470461156102 0.06716324423189236 -0.0431064299954538) (-0.1269071582538696 0.02848230934976337 0.003464863435547623) (-0.023231118674418 -0.1642767644443322 0.02021496729655368) (-0.023231118674418 -0.1642767644443322 0.02021496729655368) (0.1628082956500428 0.0447087894930903 -0.08146405294672095) (-0.09397865486714646 0.03093584383362341 -0.01620564979015979) (0.144179731519289 -0.220000597113103 0.1660606381162367) (-0.006339255604877348 0.004792168711061449 0.02636611910944188) (-0.116451426276728 0.03959222214702901 0.05895815527747074) (0.008724601545187394 -0.06789502468525008 0.08450280900802815) (-0.001296873702044737 0.00450041731098373 -0.0034695608154335) (-0.001296873702044737 0.00450041731098373 -0.0034695608154335) (-0.00718000633035295 0.0171245699986107 -0.00327887502445713) (-0.004996507971761251 0.001601569207429097 0.001678368876115922) (-0.004996507971761251 0.001601569207429097 0.001678368876115922) (-0.3611097240613849 -0.2727384244769845 -0.04599529034676465) (-0.3611097240613849 -0.2727384244769845 -0.04599529034676465) (-0.04888872963250347 -0.005236299316586459 -0.004188738181396856) (1.229336647168985 -4.605657773632467 0.8930193603156547) (-0.02619270870007585 0.00425091880473855 4.792025552845941e-05) (0.02990681008721632 0.00733497451548961 0.1524231633408986) (-0.02033713516448987 0.004786743303137136 0.05535481362560427) (-0.02033713516448987 0.004786743303137136 0.05535481362560427) (-0.02033713516448987 0.004786743303137136 0.05535481362560427) (-0.007804458742924191 -0.003428397787939823 -0.00144436276451316) (-0.0004630895423489101 -0.0006740716503586049 0.0006313427426999094) (0.003006326036913574 0.002783351184655228 0.0006507345821807771) (0.1123277087967113 -0.3181725833405433 0.2394935595392121) (-0.008769373965972233 -0.004875535519936964 0.001954211364859868) (-0.008769373965972233 -0.004875535519936964 0.001954211364859868) (-0.04793248139955054 -0.01673495369585035 0.06511812156280797) (-0.009342061690097622 0.0003540204783806708 0.0132692675645153) (-0.03266074325723056 0.001412527309564117 -0.0124410362395002) (-0.009656137963149639 -0.01661373104190871 0.009632629472589391) (-0.02426129646501571 0.01370534213035507 -0.01765873200070054) (-1.218379210059082 -0.1182920297386419 -1.131486632403786) (-0.009713554892301249 -0.008230596896237369 0.003485158633388464) (-0.01496918644146429 0.01848320154226083 -0.02999743154760227) (0.0158592517599953 0.0005946083065475533 -0.0008767349219063884) (0.009168257827707024 -0.002617253531445991 -0.002232974585959544) (0.003006326036913574 0.002783351184655228 0.0006507345821807771) (0.005979966228390721 0.002132407916031617 -0.003603337018735614) (-0.001825576957301082 0.001438634099043374 -0.001710091587739939) (0.002791073456738113 0.001066633473370708 0.004293170182830828) (0.002791073456738113 0.001066633473370708 0.004293170182830828) (0.002351283478029376 -0.01403552172230924 -0.02109199305453107) (0.01397299729707489 -0.001285326278686891 7.020041524506451e-05) (-0.00761467128146829 -0.00677440408003654 0.002358349805171297) (-0.00761467128146829 -0.00677440408003654 0.002358349805171297) (0.02230297206772809 -0.03418228486211766 0.04406399840983929) (-0.01802474071432225 0.002689613421443386 -0.01577104940223007) (0.02333025150953843 0.005162985443817854 -0.01010985013808686) (0.09141044236738005 -0.01189562198276663 0.01449680750334705) (-0.02453629721287347 0.00155372439026723 -0.01003257866437774) (-0.001696855446505968 -0.007252145145323347 0.006960171361108207) (-0.001804916860538181 -0.001186496869952846 -0.0001905973617348437) (-0.01224001867789807 -0.009062315261430197 0.00348979247230808) (0.02256976811240956 0.003562645569085258 0.009141467512942824) (0.001154008767045317 0.001521282862180129 -0.00261907610189384) (-0.02105798318274391 0.0103907879641713 0.01063668626416563) (-0.01081050639431692 -0.004551373111690371 0.003173624968729902) (-0.0004908250990545925 0.001869914174581258 0.001354154459267226) (0.003505570134247942 -0.0002237159921470925 0.004264001125077711) (0.00400700646170485 0.006894340332538575 -0.006536621482778662) (0.00400700646170485 0.006894340332538575 -0.006536621482778662) (-0.000432918374918853 -0.001255108536110841 -0.001332303423112754) (-0.000432918374918853 -0.001255108536110841 -0.001332303423112754) (-0.001685740645196068 0.001925384714926344 0.007165015178614296) (-0.02317063572457501 1.532710760398882 -1.534697119721496) (0.005300187284402047 -0.001097884278411091 -0.000266528760137463) (-0.005885257951391565 0.003047070888228154 -0.003589898878452672) (-0.005885257951391565 0.003047070888228154 -0.003589898878452672) (0.3793084241552069 1.000636485003771 -1.767779581913269) (0.002902299364091474 -0.002298466813946287 -0.0004417899394831862) (-0.002748429148862128 -0.004190214811602709 0.003921880575822595) (-0.002748429148862128 -0.004190214811602709 0.003921880575822595) (0.001038842370922871 0.001967105704863473 0.00211872855879073) (-0.0002083743039127872 0.0002676350277803362 -0.00401074805827082) (0.01182483094901899 -0.002738630973056265 -0.01261846588743457) (-0.003077758533428553 -1.292753274707999e-05 -0.001330429245545965) (-0.003077758533428553 -1.292753274707999e-05 -0.001330429245545965) (-0.002766958877341423 0.0009116699207577718 0.001342993394644396) (-0.007425778996807126 0.002855060260086509 0.003787616139572887) (-0.007425778996807126 0.002855060260086509 0.003787616139572887) (0.01991276314395399 0.005497764770609198 0.00567704549023943) (-9.64792248360556e-06 -0.0009511110670353722 -0.0002709572148525606) (0.0003123620351523602 0.001880757439016645 0.0002340623910046407) (-0.005594106501200936 -0.002075916544438917 -0.003452731480943699) (0.001788284475336451 8.259091254484156e-05 0.0001270888824673442) (0.01085386047502709 0.0006353863151688909 0.004067636255923974) (-0.0009718673263944737 0.0007000234564649916 -0.0008807810993996674) (0.003142540805345808 0.001786007817334778 -0.001312685606425273) (0.003599437947267643 -0.0007839564298797457 0.000575719804700987) (-0.0007389723980093332 -0.001226387782278219 -0.0004197154690961698) (-0.001385202764482192 -0.001802072588781999 -5.39444959461966e-05) (0.0001817068408824193 0.0004583849723294553 0.001093384160569486) (0.007290430143030182 -0.002024027141187724 -0.001080658893339232) (0.003788340958781205 -0.0004096253856402461 0.003582153262675268) (-0.003427094620292909 -0.001959553202539144 -0.003333101447106185) (0.0199432089937078 -0.003380563223524695 -0.01305653257279509) (0.0199432089937078 -0.003380563223524695 -0.01305653257279509) (0.0007801857295661047 0.002214108390972889 -0.001861487131187558) (-0.008953657749049685 -0.006715752578024639 -0.0005702089344966184) (-0.002816170909621142 0.0003047729622496018 0.001599384521280296) (-0.00112245192324908 -0.000247350735463059 -0.003548768806606544) (0.01135983703889201 -0.002322948798977128 0.002324128561630753) (0.002868171509355906 0.002021683833991696 0.002564714878944266) (-0.0003137093702610611 -0.002138881712438767 0.0006267842542975468) (0.004906050086380336 -0.005939024676910215 -0.002985393031427933) (-0.003086412859872659 -0.001631238123541739 -9.620114052878248e-05) (-0.003086412859872659 -0.001631238123541739 -9.620114052878248e-05) (0.002868171509355906 0.002021683833991696 0.002564714878944266) (0.002868171509355906 0.002021683833991696 0.002564714878944266) (0.009278753501011722 0.01270707639671105 0.05014396819206868) (0.01358913793360166 -0.0003339260220213036 0.0007088867323958551) (-0.00107377921268662 0.002127169473207913 0.003092178406045511) (0.01547588505901527 -0.02361014415416625 0.01522824206449091) (-0.004980259561547297 0.008984170458534368 -0.001675507656883836) (0.002087025146975341 -0.0001288473921264104 0.001180189368624214) (-0.004209331195448625 -0.005027062074448399 -0.0005565034658391545) (0.002958952102739486 -0.001469675267962792 -0.0002583573856346059) (-7.420431104873128e-05 0.0005935152412525002 -0.001995899308369177) (-7.420431104873128e-05 0.0005935152412525002 -0.001995899308369177) (-0.09494065832668526 0.05149013965967784 -0.02802031769392849) (0.004574111783500939 -0.0144737046167901 -0.01150500421090836) (-0.008518025795630473 -2.100248418659793e-05 -0.01005794156891629) (0.3018269460357855 0.1307815093543783 0.03429274605444602) (0.2118836766517833 -0.3543667083485142 -0.3601896216939688) (-0.00107377921268662 0.002127169473207913 0.003092178406045511) (0.004825764799077051 0.0008070773125923194 -0.0007783663126374259) (0.001495500103332214 0.004003423506810386 0.004590665920357352) (-0.007611053847942278 -0.0002155869896768793 -0.001149934214688517) (-0.007611053847942278 -0.0002155869896768793 -0.001149934214688517) (0.03275787317567572 0.004013924357987336 -0.001357016312325458) (0.2156470461156102 0.06716324423189236 -0.0431064299954538) (0.01042452415403555 -0.001465351999921151 0.006686161247041442) (0.009607092322974142 0.002073336842176973 -0.02701186853660197) (0.009607092322974142 0.002073336842176973 -0.02701186853660197) (0.01863305958722716 -0.00829984487247758 -0.05863313739627282) (0.01682757361619649 0.009125813433574249 0.0001751847672223457) (0.01216950002367744 0.009335204202693424 0.006280278163798867) (-0.002837154706937358 0.004460031943542352 -0.002533141203532003) (-0.01007400045553417 -0.0144418116564209 0.01621471627545457) (-0.01007400045553417 -0.0144418116564209 0.01621471627545457) (-0.006344599664576603 0.003326010020656114 0.0003251753419246006) (-0.0003770322793923922 -0.002947789789793368 0.0002652546365456162) (0.003082906691617155 -0.003640014252829304 -0.002001708237480617) (0.003082906691617155 -0.003640014252829304 -0.002001708237480617) (-8.991476331939377e-05 -0.0034751726081948 0.002578830714949015) (-0.0186143856372481 0.02105327213818117 0.008721717480532857) (-0.02149382724317677 0.01268576968512581 -0.04384375877650689) (-0.0003854641991822465 0.003925577435849753 0.002263124923937745) (-0.0003854641991822465 0.003925577435849753 0.002263124923937745) (-0.0003854641991822465 0.003925577435849753 0.002263124923937745) (0.02007231321479937 -0.01555757163952169 0.006372790056427899) (-0.002439056116084142 -0.005617504496779703 -0.004783367575617497) (0.03530058972708265 -0.0025505291081606 -0.002468938030795558) (0.009438191156392769 0.001297842542660665 0.001107040285490445) (0.01067916605618786 0.006854684753467425 -0.007399558591040815) (0.02510073819955111 0.007787964882778284 -0.005841582744221804) (-0.0001466479788215323 0.0004900426214697584 0.0009481265689551774) (-0.0004739487456849091 0.0001258169345859148 -4.716683618037794e-05) (0.02889337154012632 -0.01153246533644123 -0.01050212538038999) (0.01416031329934089 -0.001308931144170192 0.002970992093275803) (0.00276043313709226 0.003987281353744831 -0.0003816356576864764) (0.009421853947791095 -0.002675058741193581 -0.002176865053009229) (0.01300274697550389 -0.002099264400851089 0.004131598115083176) (0.01246802834025123 0.002456751321854678 0.000742089685457121) (-0.03223307052232179 0.006715785572812052 0.0158647151830192) (0.02889337154012632 -0.01153246533644123 -0.01050212538038999) (0.7060606499751034 -0.04900903225423819 -0.3409129858011161) (-0.0002576714637754869 0.002521914376091233 -0.00506734204920848) (0.003234404336317118 0.0003324505589696401 0.005166775750232788) (-0.007906854337339371 0.001486050058441137 -0.003951280876316385) (0.000118077594695682 0.001163003526780015 -0.001879103875045431) (0.000118077594695682 0.001163003526780015 -0.001879103875045431) (0.002140235525188538 -0.006156586912410603 0.004069320599164847) (-0.01168587575917485 -0.00575594872445227 0.002380286205255842) (-0.009713554892301249 -0.008230596896237369 0.003485158633388464) (-1.28658561440397e-05 -0.0001034224168944998 -0.002004588606242893) (-0.0009120022674224084 0.002276525405474231 -0.005643861656499403) (-0.0006531597472204987 -0.000107673650501195 -0.0002164982365809248) (-0.0006531597472204987 -0.000107673650501195 -0.0002164982365809248) (0.002251137375660228 -5.526617466525139e-05 -0.002576442126186047) (0.001866979556000898 -0.003945308937945397 0.001236370240258986) (0.004787328040943371 0.0005596171447910342 -0.0005162592953795075) (0.002251137375660228 -5.526617466525139e-05 -0.002576442126186047) (-0.006703369255250574 0.0004945249380509264 0.002102871953637933) (0.01117265269485123 0.009617707285698942 -0.03042881546606713) (-0.0214521857023698 -0.8486529610915358 0.2998811019771945) (-0.03223307052232179 0.006715785572812052 0.0158647151830192) (-0.01513715582900258 -0.1469615820681818 0.0529361207635297) (0.0002241733747347341 -0.0002625868179277628 -0.001452220316130534) (0.004817786454218977 -0.001742741868348078 0.002100443552367102) (0.004817786454218977 -0.001742741868348078 0.002100443552367102) (-0.001766907078105705 -0.00593660771046697 -0.000856106987620424) (0.02345169505027609 -0.03434631651561907 -0.01989689975517205) (-0.09397865486714646 0.03093584383362341 -0.01620564979015979) (0.005931099799455913 0.00848273370388398 -0.001238702470384841) (-0.01136897391207154 -0.01832307703855566 -0.001914245200336982) (-0.007778039892863519 0.000553394987918871 -0.007218415950839833) (-0.1076825959859505 0.06095691042832227 -0.04900233547407233) (0.0002749794588177848 0.009835821252844143 0.0001149612040790915) (0.01669382007220628 -0.006719657774450903 0.05796368723225716) (0.0002749794588177848 0.009835821252844143 0.0001149612040790915) (0.01254641058761767 -0.00773525356959227 0.01894835068234213) (-0.001701915192509863 -0.0008098092475320661 -0.0001523640168398655) (-0.002051679484129881 0.0006621645187293405 -0.001382899435299219) (0.03638979081786589 0.04719479208967819 0.01839398894813087) (-0.00119915398855584 -0.006152905799039918 -0.002185051161787341) (-0.02027583395747473 -0.0004009159709666422 0.00562440640969796) (0.1628082956500428 0.0447087894930903 -0.08146405294672095) (-0.1528483689225132 -0.05749646775720668 -0.05295817797174007) (-0.04814194319201148 -0.02688737903268821 0.03927822624878696) (-0.09397865486714646 0.03093584383362341 -0.01620564979015979) (-0.03266074325723056 0.001412527309564117 -0.0124410362395002) (-0.1430189757247847 0.03762327118378803 0.01787291882276944) (-0.009656137963149639 -0.01661373104190871 0.009632629472589391) (-0.02778030852214153 -1.850518606635854e-05 0.004682217225227067) (0.0002809142870383518 -0.0005012794895263982 -0.0001709993013796782) (-0.002015597895379031 0.0005614577063668153 0.0009288591610577839) (0.009421853947791095 -0.002675058741193581 -0.002176865053009229) (0.009421853947791095 -0.002675058741193581 -0.002176865053009229) (-0.0003236099044221188 0.001280901347544272 0.0002354294438628229) (-0.001576203637977856 -0.001235368646672351 -0.001245548699511504) (0.0005791590701627931 -0.002843152998773019 -0.003097228017795604) (0.0002905497776350579 0.0004807066218127116 0.0005214663219390652) (0.02619431174886833 0.001938058515067675 -0.01514743643436071) (0.01092265565390984 0.02384660226921304 -0.0009504787883712149) (-0.06355578896105382 0.01176564735737221 0.0212069817325282) (-0.003482075013745213 0.001257332678596703 0.007348297535940768) (-0.0002083743039127872 0.0002676350277803362 -0.00401074805827082) (-0.005015652993138259 -0.0001843943191551776 -0.00107807055347223) (-0.04023604080002349 0.01503870296291256 -0.03247979610580161) (-0.04023604080002349 0.01503870296291256 -0.03247979610580161) (-0.04023604080002349 0.01503870296291256 -0.03247979610580161) (-0.0284669400310496 -0.0007990629158752226 -0.03295482038003193) (-0.07007128954614175 -0.01680985916383432 0.01551705552399409) (0.01153124050537918 0.01678284458937948 0.001757437714198708) (0.007017763680190449 0.001140628053326981 0.007084295569357798) (-0.02297239129190153 -0.005428132163570082 -0.00480153842677059) (-0.1269071582538696 0.02848230934976337 0.003464863435547623) (0.02870204004405331 0.009812970748705265 -0.08927267873033776) (0.2048898098674284 0.1056383144752727 0.01010550383847009) (0.06986068967128956 -0.02120908344096727 -0.02558321471572666) (0.1123277087967113 -0.3181725833405433 0.2394935595392121) (-0.3281595865978751 -0.2505982227266531 0.2468642070432702) (1.645556680622314 0.8175182818951484 0.845887600979589) (-0.007940120031449718 -0.002709436531804925 -0.0008728875006137294) (0.02230297206772809 -0.03418228486211766 0.04406399840983929) (-1.28658561440397e-05 -0.0001034224168944998 -0.002004588606242893) (0.07960577877060113 -0.1111092702439744 -0.09198814813665324) (0.07960577877060113 -0.1111092702439744 -0.09198814813665324) (0.007916388472137648 -0.02044659986237383 0.003225692154333172) (-0.2290585473996203 -0.1715898178831925 -0.06350168128298957) (0.003757819739703272 -0.0137291217434024 0.001699895630309894) (0.09141044236738005 -0.01189562198276663 0.01449680750334705) (0.0218730624906284 0.006141003712640142 0.007571866459389294) (-0.3971111384234585 0.3138440347339914 -0.1386648175330605) (-0.01006461490474989 0.002542140113717374 -0.008414803177322867) (0.3018269460357855 0.1307815093543783 0.03429274605444602) (-0.003481448267750507 -0.005850806494896629 0.0007183403936927627) (0.4941449382250747 2.973695976194863 0.4863582851983764) (0.5970918895723845 -2.543826303813179 0.9003021114451213) (-0.000457955028159162 0.001492375954916437 -0.002782394430509216) (-0.001889665372912465 -0.0002100467539529869 0.001033452766206698) (-0.003387288239005991 -0.01859308868777021 -0.01582551774704671) (0.04925868037743426 0.08452783123790167 0.09615746871156565) (-0.01886133957752519 0.0001986417436062068 0.00487329457012928) (0.05603301389001081 0.001615012777312371 -0.003019111554883493) (0.05603301389001081 0.001615012777312371 -0.003019111554883493) (0.05603301389001081 0.001615012777312371 -0.003019111554883493) (-0.5237329687810448 -0.01648670769802172 0.002790179902236234) (0.01317827449484548 0.004563052875943997 -0.01632953380028235) (0.001601289902654845 -0.00177516937027186 -0.000979348313063902) (0.001601289902654845 -0.00177516937027186 -0.000979348313063902) (-0.001529377437040032 0.001505171012617926 -0.002075240599816373) (-0.0008684201938216562 -0.0004322288517656632 3.392841038811273e-05) (9.823520743591877e-05 0.003032987775515824 0.0005622073384869727) (-0.0006911487929079497 -0.002516572863306015 -0.0006757310914546238) (0.002389096038537772 -0.001632988634093404 -0.0007466565399663146) (-0.004319204462412538 0.01114696398250177 -0.005971928895191017) (-0.004448043894084602 0.0001728036843692251 0.002350284514205043) (-0.01047934018695083 -0.009811519592177641 0.007650221253882375) (0.03952414924526826 -0.01318082117212357 0.007000999892867383) (-0.03276431548215523 0.0256777028319086 0.006523485460755511) (-0.002233179166825189 0.0009223793004032953 -0.0007792196641414793) (0.003079815522777591 0.0009358509980204025 -0.001423069971902993) (-0.002447723786388148 -0.001047592472318244 0.001441502361342246) (-0.001814439825251033 0.001541348123148207 -0.0006293707933056883) (-0.001814439825251033 0.001541348123148207 -0.0006293707933056883) (0.003079815522777591 0.0009358509980204025 -0.001423069971902993) (-0.00127571241253658 0.0006689984269716018 -0.002967799506292775) (-0.003502210738192964 -0.001297920526142951 -0.000381063536099108) (-0.0009241760800305439 0.005433565686966975 0.001944739274241819) (0.00129362932748235 0.00156927612682021 -0.0004913158688416704) (-0.001663153187925212 0.001583494825961843 0.001045597812065554) (0.004906050086380336 -0.005939024676910215 -0.002985393031427933) (-0.001399621773330639 0.005593964799343752 0.005794267235963968) (0.0005744331656844827 0.004162176575567076 0.000296674523539413) (-0.002287282316036545 -0.001988373870403006 -0.004270365700756461) (-0.002094055143514672 0.0004607623676544566 -0.001501641389435136) (0.0004864180912988112 -0.0007055533233512013 -0.0005500938580917232) (0.002227042994852377 0.0002800915745051623 0.002148391640445083) (-0.002760068212931097 -0.002247449413178369 -0.001361500269437935) (0.001510166767042574 -0.0003747368809465651 -0.001346519736270319) (-0.002177673092563883 0.0008873980424147522 0.001349721481796181) (-0.0006911487929079497 -0.002516572863306015 -0.0006757310914546238) (0.01829539784743325 0.002191973935739518 -0.01312843464920941) (0.0181111170800975 -0.001692655515973557 0.001665745028696498) (0.0002097122515153138 -0.0001590307190837966 -0.002533520667366944) (-0.0006955594956051031 -0.0004018274788111615 -0.0007891492303587276) (0.004983295995938319 0.0004880812680760603 -0.001830567286646283) (0.0009357628341521908 -0.001048021321129407 -0.0005846778792555946) (0.001866979556000898 -0.003945308937945397 0.001236370240258986) (0.004983295995938319 0.0004880812680760603 -0.001830567286646283) (0.000720110861802843 -0.0006634658703785072 -7.824632049891459e-05) (0.0002052200270582591 0.003102296700168912 -0.001820065202854429) (0.0001817068408824193 0.0004583849723294553 0.001093384160569486) (0.006922363022231686 0.0001207960315062725 -8.720699145464547e-05) (7.793747621309682e-05 0.001357976551075839 0.0009152642557904559) (-0.001573503027104773 -0.001887312522947024 0.002046595273702035) (-0.05170774741938741 0.01705913121515865 -0.008100356890407778) (-0.05170774741938741 0.01705913121515865 -0.008100356890407778) (-0.001217744430106873 0.001268943615945102 0.007184665525934283) (-0.001752447391096566 0.0007173633759570978 -0.0004215425238325149) (-0.001310666278729188 0.0003281396567628808 0.000668437585729337) (0.00301484019403527 0.008299145221457565 0.002622912652250511) (0.00301484019403527 0.008299145221457565 0.002622912652250511) (-0.005657975569202432 -7.872241855493402e-05 -0.0008774305152014444) (0.0110406271255786 0.001464260943741661 0.0001535222913936641) (-0.001753348909776695 -0.0009359330434482239 -0.001661850086701359) (0.00198541160779976 0.0008202660497699768 0.0003753018612729277) (-0.0007893540151205221 -0.003354921565286118 0.001409104759930675) (-0.004327253058534471 0.001627302849487894 0.003574714122034978) (-0.004327253058534471 0.001627302849487894 0.003574714122034978) (-0.004327253058534471 0.001627302849487894 0.003574714122034978) (0.0305057810447763 -0.02541055904855966 -0.02458767641334361) (0.0009598626099432421 -0.0001633345750405612 0.003772194455174586) (0.007195770064445667 -0.005505113024675863 0.00298505496033366) (-0.00741825630796708 -0.009949984289136101 0.004082296697689372) (0.02040758449345266 -0.001744852204882193 0.005952863429182454) (-1.284503996791222 0.9038793765122752 1.090520517373164) (2.024238614290533 -0.5157482352497604 0.1891179513980502) (-1.144486061711214 1.346221419769565 -1.291409751291289) (0.01756263926837537 -0.01545169705544372 0.007879167634487004) (0.01756263926837537 -0.01545169705544372 0.007879167634487004) (-0.011565918149736 -0.01379618094861056 0.01204828125527397) (0.001322485768399819 0.002434217438729962 -0.0006569962022423635) (-0.001701915192509863 -0.0008098092475320661 -0.0001523640168398655) (0.004020117393009892 -0.0006175211502531183 0.0001460140196658891) (0.0007692993518769003 -0.002268563355691285 0.0003393150940960886) (0.001118597254289755 -0.0004162271524725746 0.001272616267750378) (0.0003843919834403669 0.003285915838927031 0.007977507117434057) (0.0003843919834403669 0.003285915838927031 0.007977507117434057) (0.002448594329320591 -0.0006790423549161676 0.003842666941389208) (0.007017763680190449 0.001140628053326981 0.007084295569357798) (0.008301587968672065 0.003189501112984069 0.01080683391714123) (0.04763396313304417 -0.007069083927821771 -0.01322021044007441) (-0.001198936242350166 8.723399044986821e-05 0.002391622298520903) (-0.0004609716014392223 -0.0006965757907118367 0.0006383757337459542) (0.001187716113728414 0.000392801883728976 0.0002179004015306999) (0.001187716113728414 0.000392801883728976 0.0002179004015306999) (0.01565628177289071 0.0002778638372588453 0.0003331159794897074) (0.001780560498712164 -0.001849640337940283 0.004760159685773668) (0.006502886537025989 -0.03192732864611506 -0.006167264326261886) (0.001594063278466712 -0.004763769714180344 -0.002857449131410989) (0.001594063278466712 -0.004763769714180344 -0.002857449131410989) (-0.002622814951950931 -0.0006786401526245343 -0.002086545058689599) (-0.005293959055516174 -0.007730198509633331 -0.002944452459730564) (0.002889660049482463 0.004560867664004273 -0.0007259394511029986) (0.00574128902948275 -0.03092161389441041 -0.007257673602612641) (-0.008171468202454853 -0.0001470099553121948 -0.001911660966646779) (0.00574128902948275 -0.03092161389441041 -0.007257673602612641) (-0.01607911510932334 0.003886436977030234 0.01790072983917668) (-0.001394018423627941 0.003749614331105394 0.005823212970090711) (-0.001394018423627941 0.003749614331105394 0.005823212970090711) (0.002351283478029376 -0.01403552172230924 -0.02109199305453107) (0.01613627507336594 0.01504097358072864 -0.003164311197965807) (0.01416031329934089 -0.001308931144170192 0.002970992093275803) (0.003274529357489698 0.0005069654158588078 -0.0003327482262313199) (-0.00446306508620665 -0.0009508867682066687 0.003718350692085703) (-0.002670799202064902 0.001593000594805162 -0.004793910038931266) (0.008680599683738372 0.001696321739286627 -0.001038963027818393) (-0.00614107544005804 0.002003858381088396 0.0008223285287711987) (-0.00264266929606277 -0.005716669851146904 -0.002078870582979609) (0.0008242532569865733 -0.001877896682419726 0.0007536575876557071) (1.677527156862171 0.6859312706039816 -0.2542538354966688) (0.02628512862455416 0.003408045281186699 0.0007761244766013159) (0.004424803626579065 -0.001719816513660925 -0.003321487520862701) (0.01634696282929401 -0.006561492921573158 -0.004655890464567797) (-0.01080522236904922 -0.01118580488446743 0.00668526074882082) (-1.1513580400239 -3.751147238979867 2.345192666330801) (0.02889337154012632 -0.01153246533644123 -0.01050212538038999) (0.7060606499751034 -0.04900903225423819 -0.3409129858011161) (0.03013892655409574 0.0120279468563018 -0.008754032571477988) (-0.03039713222953658 -0.0117446370758113 0.0008746992613195802) (0.3904494648483187 0.08826977583338201 0.1301685473939885) (-0.06777710351122802 0.01129610200502455 0.02376800623606918) (-0.01849798520812069 -0.002987893984611432 -0.004593732933392379) (-0.02104827219901639 -0.002387715344860513 0.005358805814694924) (0.4941449382250747 2.973695976194863 0.4863582851983764) (-0.004670324746754214 0.01597422543040542 0.008500169448198629) (0.01411607245222607 0.01954678954804933 -0.02325267612066576) (0.004465555155242907 -0.02251883214104144 -0.0170212043659934) (-0.005266832574812793 0.002226449514481264 0.01430476421473726) (-0.005266832574812793 0.002226449514481264 0.01430476421473726) (-0.005266832574812793 0.002226449514481264 0.01430476421473726) (-0.007261884714146297 -0.0003724741240509896 -0.005508506393259147) (0.009611712832213553 -0.00133706134252463 -0.002202890380436426) (3.02665347054476e-06 0.000703085545768833 0.001719984016039645) (-0.007551730249162576 -0.003154809098516892 0.002507434225027071) (0.002671237796951087 0.001991216562705722 0.001652854202326375) (0.001897550779663776 -0.00297961175936639 0.00115774504967608) (0.2048898098674284 0.1056383144752727 0.01010550383847009) (-0.01213877085956558 -0.0008592015939487968 -0.003760280629073919) (0.006599871834016301 -4.58933245739996e-05 9.218131556017022e-06) (0.003914097749387633 0.004640353936177616 -0.0006253121758515849) (-0.03289928088974664 0.002261768337398438 -0.003665902278963871) (-0.009534767479445651 -0.003713287168441395 -0.009672015748250502) (0.02785694485383342 0.01039349091619229 0.01846197716731655) (-0.02104827219901639 -0.002387715344860513 0.005358805814694924) (-0.02104827219901639 -0.002387715344860513 0.005358805814694924) (-0.02714168153344373 -0.005071191865336921 -0.01258657921294414) (0.01959742036138464 -0.003665825820791031 0.002672341685418127) (0.002497250508179654 -6.186409945151215e-05 0.0003800475000478302) (0.006187317758576745 0.002158381588561541 3.727030841969922e-05) (-0.001444653570882406 -0.001512734247681734 -0.0007863170572608917) (0.002055746917310922 0.001286326181916543 -0.001745912584315327) (0.002756387914921281 0.001213643749449741 0.0005482974537311855) (0.002756387914921281 0.001213643749449741 0.0005482974537311855) (-0.007804458742924191 -0.003428397787939823 -0.00144436276451316) (-0.0006012096411227482 0.0004608696832602431 -0.0005695960040120049) (-0.0004673974860257193 -0.001359836703592036 -1.690630929304887e-05) (0.01166311780893311 -0.007018526366596063 0.002682851594164811) (0.0008676985739897308 0.03248149087330059 -0.003987578935443018) (0.0008676985739897308 0.03248149087330059 -0.003987578935443018) (0.009168257827707024 -0.002617253531445991 -0.002232974585959544) (-0.006153923646833169 -0.004152293403364024 -0.001123851610669162) (0.3304679459845797 -0.01455254503080575 -0.1966614361761672) (-0.03118357484785699 0.1100335512856082 0.02381891533937358) (9.895695903055818e-05 0.001635034828555561 0.0008568640456564772) (-0.0009200651866447273 -9.727845487702441e-05 -0.002339922750948356) (-0.004014417051885484 -0.002855852528305653 -0.005103200829219166) (-0.0148911780031528 4.078803660653371e-05 0.002320924154228234) (0.009611712832213553 -0.00133706134252463 -0.002202890380436426) (0.0007692993518769003 -0.002268563355691285 0.0003393150940960886) (-0.02311525208444147 -0.0103924986246145 -0.0469819904831953) (0.07705536108036873 0.03432621751048805 -0.003895209302502794) (-0.00269797840511403 -0.00303446319630095 -0.002094007226895522) (0.002958538718144996 -0.01388271951008346 0.007369500339562759) (-0.5289829897058125 -0.4671321140553683 -0.2625812257016716) (0.02567580360284885 -0.009110126129463495 -0.01909596096033162) (0.04763396313304417 -0.007069083927821771 -0.01322021044007441) (-0.008058673485682628 0.03274405615352932 0.01548292013381104) (0.5598979775782256 0.03392756542179926 -0.09011320955726358) (0.02905655775814964 0.002677429787389815 -0.005707965155463325) (0.06098301536691592 1.2077122669778 0.6322244298277029) (0.2764295963680494 -0.2272115978573895 -0.03645019169391734) (-0.2865291874450974 0.6386613792514476 0.5036249589233193) (0.001397432273429119 -0.0004723398626671226 -0.002032082839050965) (-0.007484310495022866 -0.0008703943660739266 -0.001652948438249525) (-0.02687476287419116 -0.00384808522407225 0.007329840667011049) (-0.006321562503651743 -0.0007743352185417947 -0.00278896779675018) (0.001261117519280718 -0.03885399064934758 -0.06044881753186283) (0.03013892655409574 0.0120279468563018 -0.008754032571477988) (0.01669382007220628 -0.006719657774450903 0.05796368723225716) (-0.02490467532743025 0.01783352400038084 -0.01855504695797197) (-0.009656137963149639 -0.01661373104190871 0.009632629472589391) (-0.009598135332621679 0.008051666612612801 -0.009497390949224936) (0.08162609111137054 -0.0004260189731642382 0.02543058714852876) (0.08162609111137054 -0.0004260189731642382 0.02543058714852876) (-0.03084701500782602 0.009696518010251433 -0.02845887363221902) (-0.02707217898212427 -0.02257331377087649 -0.00413238372772892) (-0.01596572902960881 -0.005361953938873556 -0.00535659090615759) (-0.02935935778641553 -0.09729148020643023 -0.02296757630734992) (0.01763642883710192 -0.01018349011025825 -0.02169853513958786) (0.01763642883710192 -0.01018349011025825 -0.02169853513958786) (0.01763642883710192 -0.01018349011025825 -0.02169853513958786) (0.04925868037743426 0.08452783123790167 0.09615746871156565) (0.04925868037743426 0.08452783123790167 0.09615746871156565) (-0.07055998018995685 0.03238644602316257 0.02564253739160774) (-0.05258093251842727 0.005046096481525554 -0.03643183233992386) (-0.05258093251842727 0.005046096481525554 -0.03643183233992386) (-0.05258093251842727 0.005046096481525554 -0.03643183233992386) (0.001822448807962674 0.0003934456712321238 0.0002836425087955694) (-0.002032955319218086 0.0001434164185045895 0.000580454674191158) (0.1926324256187917 0.02036895642822862 0.02358086201802936) (0.02619431174886833 0.001938058515067675 -0.01514743643436071) (2.466531886162858 -0.6181588683154616 -0.500076114700298) (1.178298095349089 0.2746831655193629 -0.7913631770368669) (-0.002251986730286976 -0.0006390402908697097 0.003508147038833889) (-0.00361490706395137 -0.006675750189427767 -8.829458723210977e-05) (0.001379638326689579 -0.0004277835053120956 0.001129599732151549) (-0.001719246318477675 -0.001596868917215527 0.0007928975274278862) (0.0008564939632713521 0.0006070903806520118 -0.001661434044199599) (-0.002719676143229484 -0.000294019315053898 0.0002425751792874081) (0.001055921177319352 0.002878763750578913 -0.001012312136501114) (0.001055921177319352 0.002878763750578913 -0.001012312136501114) (-0.05198574285896185 0.0100761387520303 0.001871794126443872) (0.01634696282929401 -0.006561492921573158 -0.004655890464567797) (-0.0001363745797145951 -0.0007650066344321552 0.0009326319728023031) (-0.0001363745797145951 -0.0007650066344321552 0.0009326319728023031) (0.01040605650191121 -0.02189068460958938 -0.002204914308816251) (-0.001766907078105705 -0.00593660771046697 -0.000856106987620424) (0.001566288793348867 -0.000306822748303669 -0.0001012955518877885) (-0.0003823300971202027 -0.0007592334694623379 0.0005053452478894596) (0.03425983109222526 0.02938500047035777 -0.04602670233642835) (-0.09164688682194452 -0.04690612666206629 0.017511729732578) (0.001566288793348867 -0.000306822748303669 -0.0001012955518877885) (0.001445224277506985 0.005663236817751459 -0.0002221364027366803) (0.02064769745009543 -0.002802641595569158 0.003038514218905421) (0.007811675402216054 0.01055330577515168 0.01216022148623089) (-0.009816105416331024 0.02707533485951389 0.01003471369393203) (0.0009664562508150533 -0.0004152210635660273 -0.0007861578862422867) (-0.004350168161959299 -0.001701906300563172 0.001111522335842629) (-0.001948223502070292 0.002852043608553953 -0.01013302787369605) (0.02208421368640677 0.01357456276162182 0.008598614559063716) (0.01232047331254902 -0.008185345984548216 0.003732691595966529) (-0.000750107766549434 0.0009098823075325802 0.0002542701282999578) (-0.001239674684022565 -7.047634933133711e-05 0.0002290335751989234) (0.004983295995938319 0.0004880812680760603 -0.001830567286646283) (-0.0131682077499523 0.008039496489027891 -0.03676073177123941) (0.162556720167929 -0.2658087208244824 -0.243068184272687) (-0.0131682077499523 0.008039496489027891 -0.03676073177123941) (-0.0005412281020372213 0.0002093220718313485 -0.0008515386848730711) (0.0001817068408824193 0.0004583849723294553 0.001093384160569486) (-0.001061552925468317 0.0008278464099235923 0.0008070139768421513) (-0.0005382187189258542 0.000214860115713779 0.00394002118083239) (0.03952414924526826 -0.01318082117212357 0.007000999892867383) (-0.01136897391207154 -0.01832307703855566 -0.001914245200336982) (0.0004080877975961837 0.001914611275957695 -0.00179774220381436) (0.009295209301859095 -0.003404873501587254 -0.001092135949730785) (-0.001170038189469239 0.002320525114484735 -0.002252364046499606) (0.01397299729707489 -0.001285326278686891 7.020041524506451e-05) (0.01427618211658407 0.003391297961534535 0.014126173525672) (0.002496223619523474 9.345177968591862e-06 -0.0002026499841492383) (-0.0004908250990545925 0.001869914174581258 0.001354154459267226) (-0.089520392768318 -0.02190373229291728 -0.04142330274112083) (-0.005432700781151544 0.006004350421408712 -0.01090089953212857) (-0.01930201685958555 -0.001237997860323011 -0.00717410670121409) (0.08927654057369988 0.05206257728582023 -0.02359643194813097) (0.08927654057369988 0.05206257728582023 -0.02359643194813097) (5.650409998488471e-05 0.001547865104317774 0.001227002203764929) (0.03161230091929772 0.01454606256622547 -0.01569404541192644) (0.03161230091929772 0.01454606256622547 -0.01569404541192644) (0.009897118193706459 -0.007190415600996145 -0.0007547102456651853) (0.009897118193706459 -0.007190415600996145 -0.0007547102456651853) (-0.000980866262047503 0.002869706823827764 -0.004959259167011805) (-0.000980866262047503 0.002869706823827764 -0.004959259167011805) (-0.003190320049409598 -0.001935779993027707 -0.002409806185427687) (-0.02226024055059854 0.0024594769024028 -0.004821995232570014) (-0.009816105416331024 0.02707533485951389 0.01003471369393203) (-0.0001466479788215323 0.0004900426214697584 0.0009481265689551774) (0.004262733611994677 0.0006217366420746325 0.0001017916565265739) (0.00125947967176543 0.006459357632916149 -0.006380545638911416) (-0.01898855716903761 -0.009628407608317222 -0.001627578237102439) (-9.732530960468422e-05 -0.0003498873955271926 0.0007647514709723373) (-0.0006301973351411392 -0.0003659530239516638 -0.002714996686259201) (-0.03289928088974664 0.002261768337398438 -0.003665902278963871) (0.001943197639969295 0.0008451223618333985 -0.000173813281797464) (-0.6867342701877178 -4.106773082954238 1.547200034150175) (0.5970918895723845 -2.543826303813179 0.9003021114451213) (-0.002760068212931097 -0.002247449413178369 -0.001361500269437935) (0.003314406967329674 0.0002367221517818624 0.001274092757419723) (0.01938002436666632 -0.08156642223913671 0.0871395387040914) (-0.01047262829015967 -8.057152917909896e-05 0.01109006041845513) (0.00129362932748235 0.00156927612682021 -0.0004913158688416704) (7.793747621309682e-05 0.001357976551075839 0.0009152642557904559) (-0.116451426276728 0.03959222214702901 0.05895815527747074) (0.0006302041325834709 -0.001568078115512251 -0.001710801904161054) (0.0006302041325834709 -0.001568078115512251 -0.001710801904161054) (0.02040758449345266 -0.001744852204882193 0.005952863429182454) (-0.03084701500782602 0.009696518010251433 -0.02845887363221902) (0.0002032362210197443 -0.001675098187746291 -0.001497492548206706) (-0.003116055221389562 -0.009803124926714257 0.00489399248972755) (-0.006393103132110708 -0.0008178988930871876 -0.00123321121478018) (-0.02707217898212427 -0.02257331377087649 -0.00413238372772892) (-0.001663153187925212 0.001583494825961843 0.001045597812065554) (0.02123646754990111 -0.01599959779110593 -0.02972957274476389) (0.008238613504033597 0.02658916654892048 -0.03000409444597849) (0.007721233464211014 0.003135799317259378 0.00138506451562081) (0.005931099799455913 0.00848273370388398 -0.001238702470384841) (0.001201116831813925 -0.0002990789162070476 -0.0004362192397651637) (0.001201116831813925 -0.0002990789162070476 -0.0004362192397651637) (-0.01182077470918367 0.002234828954069473 0.01135321102951308) (-0.005807091986325768 -0.0007988635943423257 0.005443921999843582) (0.004101904099160789 -0.004451190747763909 0.002745455555161163) (-0.01898855716903761 -0.009628407608317222 -0.001627578237102439) (-0.003377593116721078 0.02986688120378462 0.005649652554543851) (-0.003377593116721078 0.02986688120378462 0.005649652554543851) (0.001126871901544556 -0.03617402985283112 0.01011903830515815) (0.003753908238204887 0.0005025291411688976 -0.003855284289744139) (-0.008058673485682628 0.03274405615352932 0.01548292013381104) (0.02123646754990111 -0.01599959779110593 -0.02972957274476389) (-0.06573650806630267 -0.003865387352625925 -0.005540180773932246) (-0.003387288239005991 -0.01859308868777021 -0.01582551774704671) (-0.02868023305901772 0.01413743120497315 -0.04854557293780207) (0.00276043313709226 0.003987281353744831 -0.0003816356576864764) (1.112384981726194 -0.4759843881012822 -0.9794043263847265) (1.112384981726194 -0.4759843881012822 -0.9794043263847265) (0.02007231321479937 -0.01555757163952169 0.006372790056427899) (0.01416031329934089 -0.001308931144170192 0.002970992093275803) (-0.02142061475405365 0.01021571732995722 -0.001450281160200224) (-0.01080522236904922 -0.01118580488446743 0.00668526074882082) (-0.001067463515315932 0.02787247652481967 0.01812349975476711) (-0.07569957228008234 -0.00447149159808051 0.02572739653488536) (7.587538212323083e-05 -0.0002796331131947312 -0.001568549745848206) (0.01397299729707489 -0.001285326278686891 7.020041524506451e-05) (0.8889726537821767 -0.3754150638333495 0.6309153744360214) (0.01596716336350926 0.1297627133627195 -0.020482480349125) (-0.02714168153344373 -0.005071191865336921 -0.01258657921294414) (-0.0005467725431440198 -0.001162287766636946 0.001017803084380503) (0.001510166767042574 -0.0003747368809465651 -0.001346519736270319) (-0.001399621773330639 0.005593964799343752 0.005794267235963968) (0.004877193663168064 -0.01153379628100639 0.02785247893985858) (-0.001529377437040032 0.001505171012617926 -0.002075240599816373) (0.007195770064445667 -0.005505113024675863 0.00298505496033366) (0.003545858124519238 -0.004218554117754197 0.001099728663047588) (-0.006901942062461952 -0.002206068763501489 -0.009527327561915214) (-0.006901942062461952 -0.002206068763501489 -0.009527327561915214) (0.01596716336350926 0.1297627133627195 -0.020482480349125) (-0.007862728902265966 -0.004554262246773202 0.0009086546589218577) (-0.00663114468754256 0.004196775950592888 0.002719955072486524) (0.0008237883593875828 0.0006664661038686868 0.0004414438862882571) (0.0008237883593875828 0.0006664661038686868 0.0004414438862882571) (0.01092265565390984 0.02384660226921304 -0.0009504787883712149) (-0.006074521685268992 -5.863609965521088e-05 -0.003061331846762384) (0.0008146433261328676 -0.002026746203259803 0.01643614412549694) (0.0008146433261328676 -0.002026746203259803 0.01643614412549694) (0.025869916007427 -0.0129449980462992 -0.00177996461082492) (0.0007642351445235357 0.000754405051622991 -0.00098754269647422) (-0.006711695550103472 0.01250400691841914 -0.01055317869422382) (0.06442865628746078 0.07488523349311116 0.1016579640970784) (0.0004080877975961837 0.001914611275957695 -0.00179774220381436) (4.243908202808226e-05 0.004344964827644914 -0.003107453969030824) (0.2118836766517833 -0.3543667083485142 -0.3601896216939688) (-0.001617150479210068 -0.005232223168872459 -0.002492856357945669) (0.005441394298133066 -6.62265029220726e-05 -0.001481579456982807) (0.01863305958722716 -0.00829984487247758 -0.05863313739627282) (0.01863305958722716 -0.00829984487247758 -0.05863313739627282) (0.04415881158367321 0.04513122173982644 0.04522706707494027) (-0.008010189967362261 -0.01064407189612684 0.001729727965698849) (0.009442355482851014 0.01448162431104228 0.005635965365029356) (-0.06573650806630267 -0.003865387352625925 -0.005540180773932246) (-0.1226340030192859 0.08279380267071279 0.01153776846830281) (0.01959742036138464 -0.003665825820791031 0.002672341685418127) (0.0007801857295661047 0.002214108390972889 -0.001861487131187558) (-0.0295039516416542 0.01997811608902405 -0.05655608734492482) (-0.04230515777223765 0.007125469805482445 0.000696582610999307) (-0.6867342701877178 -4.106773082954238 1.547200034150175) (0.009423986844334258 -0.005033834347247962 0.01076227457422788) (0.01353419148124136 0.002924345860404467 -0.01155424195278718) (0.0008359265620463121 -0.006693940654789652 -0.01977438384846055) (0.007594060263331691 0.00312252235848407 0.0005461869483148508) (0.01427618211658407 0.003391297961534535 0.014126173525672) (0.0003746699494013088 1.180667423561932e-06 0.001012439995639781) (0.0007066001977210698 -0.0002229217872922048 -0.0014867791112118) (0.04026783531387219 0.03923516484105536 -0.01074315385441918) (0.007811675402216054 0.01055330577515168 0.01216022148623089) (-0.001573503027104773 -0.001887312522947024 0.002046595273702035) (0.002879185289393298 -0.00334611708381118 -0.004255336916692905) (-0.004753324564083816 0.0001146271559684772 -0.00331989041609478) (-0.01211273339122695 0.001386523752457944 0.009013985880584819) (0.0002197379093951823 -0.001241626525451175 -0.00106660169898448) (0.0003016495169065819 0.003996333659419733 0.0008983139037913014) (-0.006481787250803977 0.006548451717619209 -0.004215687353128257) (0.010232276624158 -0.00404470334923628 -0.0002989511892451559) (-0.0004630895423489101 -0.0006740716503586049 0.0006313427426999094) (-0.003924775314487875 -0.001171377720167053 0.003052124201063409) (-0.003399881780059765 -0.0007899814765716889 -0.00569600104493937) (-1.140093107571516 0.1003201972913385 0.00964342888042085) (0.03638979081786589 0.04719479208967819 0.01839398894813087) (-0.07843473616711479 0.03550212647387806 0.001352365822488599) (0.004262733611994677 0.0006217366420746325 0.0001017916565265739) (-0.005731093637650345 0.00613983977761951 0.0002621302482578369) (0.002879185289393298 -0.00334611708381118 -0.004255336916692905) (-0.004966755876441087 -0.001304044150500269 0.006279031788756537) (0.03377300449093219 0.08151619486588459 -0.05708177199279161) (-0.004859327980349553 -0.01035571773410334 -0.001422623513765743) (-0.01124491877397371 -0.005695850231712288 -0.004322717552767443) (-0.1430189757247847 0.03762327118378803 0.01787291882276944) (-0.005887762648495862 -0.0003510313292815438 0.005515335588300315) (0.006502886537025989 -0.03192732864611506 -0.006167264326261886) (0.000479222442280435 0.006279943710950263 -0.000737516945135029) (-0.0148911780031528 4.078803660653371e-05 0.002320924154228234) (0.04026783531387219 0.03923516484105536 -0.01074315385441918) (7.587538212323083e-05 -0.0002796331131947312 -0.001568549745848206) (0.1702729599762529 0.1292601574758908 -0.06262497372751633) (0.001126871901544556 -0.03617402985283112 0.01011903830515815) (-0.007931342929656061 -0.02086358458496563 0.03659020922083444) (-0.02311525208444147 -0.0103924986246145 -0.0469819904831953) (-0.004966755876441087 -0.001304044150500269 0.006279031788756537) (-0.09164688682194452 -0.04690612666206629 0.017511729732578) (-0.001067463515315932 0.02787247652481967 0.01812349975476711) (-0.01765272477240588 0.04184294831244157 -0.06456665738472879) (0.2749829286183637 -0.04345252924953893 0.07773542776197973) (0.2749829286183637 -0.04345252924953893 0.07773542776197973) (-0.002700381594260585 -0.004126024809716817 0.01082190891686705) (2.024238614290533 -0.5157482352497604 0.1891179513980502) (-0.1269071582538696 0.02848230934976337 0.003464863435547623) (0.0007066001977210698 -0.0002229217872922048 -0.0014867791112118) (-0.0214521857023698 -0.8486529610915358 0.2998811019771945) (0.03377300449093219 0.08151619486588459 -0.05708177199279161) (-1.140093107571516 0.1003201972913385 0.00964342888042085) (-0.006125727338120887 -0.004421993269121185 0.00210727923169409) (-0.04793248139955054 -0.01673495369585035 0.06511812156280797) (-0.01400290077101972 -0.001185399385947813 -0.004297108755360444) (-0.003482075013745213 0.001257332678596703 0.007348297535940768) (0.001010880635562929 2.749944358560201e-05 -0.0004977549042427572) (0.005979966228390721 0.002132407916031617 -0.003603337018735614) (-0.01047262829015967 -8.057152917909896e-05 0.01109006041845513) (-0.0132498742881216 -0.0008439893889802055 0.007264480863725184) (0.00834256528676592 0.004519099649634501 -0.003233319502049768) (0.0003123620351523602 0.001880757439016645 0.0002340623910046407) (-0.007828021980858909 -0.002381994787953583 -0.006374709211570098) (-0.006481787250803977 0.006548451717619209 -0.004215687353128257) (0.01317827449484548 0.004563052875943997 -0.01632953380028235) (-0.003190320049409598 -0.001935779993027707 -0.002409806185427687) (-0.001617150479210068 -0.005232223168872459 -0.002492856357945669) (-0.001389136348868383 -0.0001823528752845538 -0.00104587083013075) (-0.001576203637977856 -0.001235368646672351 -0.001245548699511504) (0.02993229733918139 -0.01854355191983633 0.02832954409197022) (-0.0001381283667868933 0.001606132327818473 0.003659963091089748) (0.001587608301299022 0.00121168161231366 -0.0017653462093926) (0.00125947967176543 0.006459357632916149 -0.006380545638911416) (0.06442865628746078 0.07488523349311116 0.1016579640970784) (0.02194439696646286 -0.002980601719946135 -0.004605437541656478) (-0.008971575697141887 0.007371277777410056 -0.004890535847738053) (0.02194439696646286 -0.002980601719946135 -0.004605437541656478) (0.008724601545187394 -0.06789502468525008 0.08450280900802815) (-0.004292257842914316 -0.01218887552255461 -0.001994785392322095) (-0.004859327980349553 -0.01035571773410334 -0.001422623513765743) (0.0210961186857947 -0.0179354036367099 0.01976723684981113) (-0.02796387779018802 -0.02887210538020951 0.002772482091874929) (-0.03289928088974664 0.002261768337398438 -0.003665902278963871) (0.01304850657914809 0.002525993810560234 0.01016750680993036) (-0.004281670463210923 0.009210517368465123 -0.00587971202453069) (-0.007732195415172615 0.007157192918459755 0.002063803634535793) (0.002526658522868272 -0.002365916621921224 -0.005682424092442077) (0.001261117519280718 -0.03885399064934758 -0.06044881753186283) (-0.01213897596345409 0.009337283027923068 0.008369754868149996) (5.235485957818289e-05 -0.0002270793145852384 -0.001025580019779814) (-0.004650561636166041 0.001981133400241749 -0.002409690939147181) (-0.02255101239772536 -0.01609168672703194 -0.006972809944634874) (0.2488157174274843 0.5108121866127275 -0.3272196236908622) (0.007721233464211014 0.003135799317259378 0.00138506451562081) (0.003192227426299912 0.002112536154133283 -0.0001215002209075809) (5.650409998488471e-05 0.001547865104317774 0.001227002203764929) (0.007611378024883202 -6.649747308998548e-05 -0.0007920274371311847) (-0.008010189967362261 -0.01064407189612684 0.001729727965698849) (0.07005565280871862 0.3539120500298574 0.09192595233882303) (-0.001055369931174915 -0.01548436472510772 -0.04908007181912955) (-0.001055369931174915 -0.01548436472510772 -0.04908007181912955) (-0.3281595865978751 -0.2505982227266531 0.2468642070432702) (0.02237939099472447 -0.1263542418083803 -0.273451240119256) (0.02237939099472447 -0.1263542418083803 -0.273451240119256) (0.03377300449093219 0.08151619486588459 -0.05708177199279161) (0.144179731519289 -0.220000597113103 0.1660606381162367) (0.1213466563439169 -0.0327083358890041 -0.002529291161779613) (0.001587608301299022 0.00121168161231366 -0.0017653462093926) (0.01246802834025123 0.002456751321854678 0.000742089685457121) (-0.009116783976298223 0.0156345216378901 -0.01524485895376184) (-0.03014605133616433 0.08732244623976805 -0.01498889986752459) (0.07566994116545428 -0.02996067006066675 0.05565806480870215) (0.009295209301859095 -0.003404873501587254 -0.001092135949730785) (-0.02637617725894536 -0.01475242104493175 -0.01191427616829575) (0.01213884405587846 -0.000146341439598283 -0.009731648630601792) (-0.07843473616711479 0.03550212647387806 0.001352365822488599) (-0.0009200651866447273 -9.727845487702441e-05 -0.002339922750948356) (0.004401161433012397 -0.004942954932689377 0.002791881664047043) (-0.0004609716014392223 -0.0006965757907118367 0.0006383757337459542) (-0.004014417051885484 -0.002855852528305653 -0.005103200829219166) (0.004101904099160789 -0.004451190747763909 0.002745455555161163) (-0.01059884896821097 0.001571845851245616 0.0009967646830608481) (0.0009355012368019805 0.001146647173633514 0.0005181384679721227) (-0.000457955028159162 0.001492375954916437 -0.002782394430509216) (0.005333216870543264 -0.001071489090289818 -0.002120096920932589) (0.0008564939632713521 0.0006070903806520118 -0.001661434044199599) (-0.002892545885487419 -0.001699497344770977 -0.001283252406105846) (-0.0004307555228413532 0.001086668401533257 0.0001709731811181871) (0.144179731519289 -0.220000597113103 0.1660606381162367) (-0.08294797929795225 0.03912356720613763 -0.06643160935704422) (0.0008294915854523792 -7.510038097315712e-05 -0.0002606090442595625) (0.04415881158367321 0.04513122173982644 0.04522706707494027) (-0.1191484963876739 0.02854966640375897 -0.03750771950903147) (-0.1191484963876739 0.02854966640375897 -0.03750771950903147) (-0.3298372130557989 -0.1318285522048012 -0.00475498876026597) (-0.3298372130557989 -0.1318285522048012 -0.00475498876026597) (-0.001312963644924104 0.006175497577633089 0.00491077034683699) (0.02487722861607726 0.01735538133247425 -0.01156003812237294) (-0.03014605133616433 0.08732244623976805 -0.01498889986752459) (0.01213884405587846 -0.000146341439598283 -0.009731648630601792) (0.006336134303253111 0.001289015210524271 0.0008498869732182384) ) ; } procBoundary0to3 { type processor; value nonuniform List<vector> 2((-0.0005973467698427509 0.0008122057701054242 0.001630377241161583) (-0.002121956563418259 0.0003260292483012539 -0.004985437645285373)); } } // ************************************************************************* //
4d162fa1d8b3692e3734eff76a1fabec3747071e
8fa5c4cb1ab9558a78287742400036ef8997ea36
/tests/fixtures/003_comparison_vector.h
6d7a0ccc6035cca03ed3adc1ad40e3e7879e50f9
[ "Apache-2.0" ]
permissive
pal-robotics-forks/ariles
b25d791a84f4c3dbf5c2d46b3aa1068ad829faed
f8006c4b801b240011aaaea73939ba7f806355c0
refs/heads/master
2020-04-17T04:37:40.103516
2019-01-14T17:32:10
2019-01-14T19:20:42
null
0
0
null
null
null
null
UTF-8
C++
false
false
2,116
h
/** @file @author Alexander Sherikov @copyright 2017-2018 Alexander Sherikov, Licensed under the Apache License, Version 2.0. (see @ref LICENSE or http://www.apache.org/licenses/LICENSE-2.0) @brief */ #pragma once template<class t_Configurable> class ConfigurableVector : public ariles::ConfigurableBase { #define ARILES_SECTION_ID "ConfigurableVector" #define ARILES_ENTRIES \ ARILES_ENTRY_(vector) #include ARILES_INITIALIZE public: std::vector<t_Configurable> vector_; public: ConfigurableVector() { setDefaults(); } void setDefaults() { } void randomize() { vector_.resize(4); for(std::size_t i = 0; i < vector_.size(); ++i) { vector_[i].randomize(); } } }; template<class t_FixtureBase> class ComparisonVectorFixture : public t_FixtureBase { public: using t_FixtureBase::getWriterInitializer; using t_FixtureBase::getReaderInitializer; protected: template<class t_Configurable, class t_Bridge> void test() { ConfigurableVector<t_Configurable> configurable_vector_out; configurable_vector_out.randomize(); BOOST_CHECK_NO_THROW( configurable_vector_out.template writeConfig<t_Bridge>(getWriterInitializer("configurable_match_vector.cfg")); ); // ------- ConfigurableVector<t_Configurable> configurable_vector_in; BOOST_CHECK_NO_THROW( configurable_vector_in.template readConfig<t_Bridge>(getReaderInitializer("configurable_match_vector.cfg")); ); // ------- BOOST_REQUIRE_EQUAL(configurable_vector_out.vector_.size(), configurable_vector_in.vector_.size()); for(std::size_t i = 0; i < configurable_vector_out.vector_.size(); ++i) { compare(configurable_vector_out.vector_[i], configurable_vector_in.vector_[i]); } } };
c3b8de74d2793bfc0db9b6ee0527ee03b9649972
e771c67d9ce0ba330eb955ede519ffcf29611823
/unityProject/build/Il2CppOutputProject/Source/il2cppOutput/Bulk_UnityEngine.UnityWebRequestModule_0.cpp
58e7d87d1d86c9c71716e09c5602b75a4769069a
[]
no_license
Thoolium/holoBender
d7f93f3de564b17a137f92dd0d020d10e2eb77cf
7768254e1e0140e10fab6a438fdd9f29c66891e7
refs/heads/master
2020-06-16T10:43:31.993552
2019-10-17T04:12:11
2019-10-17T04:12:11
195,536,444
0
0
null
2019-10-14T02:56:59
2019-07-06T12:21:31
C++
UTF-8
C++
false
false
500,770
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 "il2cpp-class-internals.h" #include "codegen/il2cpp-codegen.h" #include "il2cpp-object-internals.h" template <typename R, typename T1> struct VirtFuncInvoker1 { typedef R (*Func)(void*, T1, const RuntimeMethod*); static inline R Invoke (Il2CppMethodSlot slot, RuntimeObject* obj, T1 p1) { const VirtualInvokeData& invokeData = il2cpp_codegen_get_virtual_invoke_data(slot, obj); return ((Func)invokeData.methodPtr)(obj, p1, invokeData.method); } }; template <typename R> struct VirtFuncInvoker0 { typedef R (*Func)(void*, const RuntimeMethod*); static inline R Invoke (Il2CppMethodSlot slot, RuntimeObject* obj) { const VirtualInvokeData& invokeData = il2cpp_codegen_get_virtual_invoke_data(slot, obj); return ((Func)invokeData.methodPtr)(obj, invokeData.method); } }; template <typename R, typename T1, typename T2, typename T3> struct VirtFuncInvoker3 { typedef R (*Func)(void*, T1, T2, T3, const RuntimeMethod*); static inline R Invoke (Il2CppMethodSlot slot, RuntimeObject* obj, T1 p1, T2 p2, T3 p3) { const VirtualInvokeData& invokeData = il2cpp_codegen_get_virtual_invoke_data(slot, obj); return ((Func)invokeData.methodPtr)(obj, p1, p2, p3, invokeData.method); } }; template <typename T1> struct VirtActionInvoker1 { typedef void (*Action)(void*, T1, const RuntimeMethod*); static inline void Invoke (Il2CppMethodSlot slot, RuntimeObject* obj, T1 p1) { const VirtualInvokeData& invokeData = il2cpp_codegen_get_virtual_invoke_data(slot, obj); ((Action)invokeData.methodPtr)(obj, p1, invokeData.method); } }; template <typename T1, typename T2, typename T3> struct VirtActionInvoker3 { typedef void (*Action)(void*, T1, T2, T3, const RuntimeMethod*); static inline void Invoke (Il2CppMethodSlot slot, RuntimeObject* obj, T1 p1, T2 p2, T3 p3) { const VirtualInvokeData& invokeData = il2cpp_codegen_get_virtual_invoke_data(slot, obj); ((Action)invokeData.methodPtr)(obj, p1, p2, p3, invokeData.method); } }; struct InterfaceActionInvoker0 { typedef void (*Action)(void*, const RuntimeMethod*); static inline void Invoke (Il2CppMethodSlot slot, RuntimeClass* declaringInterface, RuntimeObject* obj) { const VirtualInvokeData& invokeData = il2cpp_codegen_get_interface_invoke_data(slot, obj, declaringInterface); ((Action)invokeData.methodPtr)(obj, invokeData.method); } }; // System.Action`1<UnityEngine.AsyncOperation> struct Action_1_tCBF754C290FAE894631BED8FD56E9E22C4C187F9; // System.ArgumentException struct ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1; // System.AsyncCallback struct AsyncCallback_t3F3DA3BEDAEE81DD1D24125DF8EB30E85EE14DA4; // System.Byte[] struct ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821; // System.Byte[][] struct ByteU5BU5DU5BU5D_t1DE3927D87FD236507BFE9CA7E3EEA348C53E0E1; // System.Char[] struct CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2; // System.Collections.Generic.Dictionary`2/Entry<System.String,System.String>[] struct EntryU5BU5D_t034347107F1D23C91DE1D712EA637D904789415C; // System.Collections.Generic.Dictionary`2/KeyCollection<System.String,System.String> struct KeyCollection_tC73654392B284B89334464107B696C9BD89776D9; // System.Collections.Generic.Dictionary`2/ValueCollection<System.String,System.String> struct ValueCollection_tA3B972EF56F7C97E35054155C33556C55FAAFD43; // System.Collections.Generic.Dictionary`2<System.Object,System.Object> struct Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA; // System.Collections.Generic.Dictionary`2<System.String,System.String> struct Dictionary_2_t931BF283048C4E74FC063C3036E5F3FE328861FC; // System.Collections.Generic.IEqualityComparer`1<System.Object> struct IEqualityComparer_1_tAE7A8756D8CF0882DD348DC328FB36FEE0FB7DD0; // System.Collections.Generic.IEqualityComparer`1<System.String> struct IEqualityComparer_1_t1F07EAC22CC1D4F279164B144240E4718BD7E7A9; // System.Collections.Generic.LinkedList`1<System.Text.RegularExpressions.CachedCodeEntry> struct LinkedList_1_t44CA4EB2162DC04F96F29C8A68A05D05166137F7; // System.Collections.Generic.List`1<System.Byte[]> struct List_1_t4AB280456F4DE770AC993DE9A7C8C563A6311531; // System.Collections.Generic.List`1<System.Object> struct List_1_t05CC3C859AB5E6024394EF9A42E3E696628CA02D; // System.Collections.Generic.List`1<System.String> struct List_1_tE8032E48C661C350FF9550E9063D595C0AB25CD3; // System.Collections.Hashtable struct Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9; // System.Collections.IDictionary struct IDictionary_t1BD5C1546718A374EA8122FBD6C6EE45331E8CE7; // System.DelegateData struct DelegateData_t1BF9F691B56DAE5F8C28C5E084FDE94F15F27BBE; // System.Delegate[] struct DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86; // System.Diagnostics.StackTrace[] struct StackTraceU5BU5D_t855F09649EA34DEE7C1B6F088E0538E3CCC3F196; // System.Globalization.CodePageDataItem struct CodePageDataItem_t6E34BEE9CCCBB35C88D714664633AF6E5F5671FB; // System.IAsyncResult struct IAsyncResult_t8E194308510B375B42432981AE5E7488C458D598; // System.IO.MemoryStream struct MemoryStream_t495F44B85E6B4DDE2BB7E17DE963256A74E2298C; // System.IO.Stream/ReadWriteTask struct ReadWriteTask_tFA17EEE8BC5C4C83EAEFCC3662A30DE351ABAA80; // System.Int32[] struct Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83; // System.IntPtr[] struct IntPtrU5BU5D_t4DC01DCB9A6DF6C9792A6513595D7A11E637DCDD; // System.InvalidOperationException struct InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1; // System.Reflection.MethodInfo struct MethodInfo_t; // System.Runtime.Serialization.SafeSerializationManager struct SafeSerializationManager_t4A754D86B0F784B18CBC36C073BA564BED109770; // System.String struct String_t; // System.StringComparer struct StringComparer_t588BC7FEF85D6E7425E0A8147A3D5A334F1F82DE; // System.String[] struct StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E; // System.Text.DecoderFallback struct DecoderFallback_t128445EB7676870485230893338EF044F6B72F60; // System.Text.EncoderFallback struct EncoderFallback_tDE342346D01608628F1BCEBB652D31009852CF63; // System.Text.Encoding struct Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4; // System.Text.RegularExpressions.ExclusiveReference struct ExclusiveReference_t39E202CDB13A1E6EBA4CE0C7548B192CEB5C64DB; // System.Text.RegularExpressions.Regex struct Regex_tFD46E63A462E852189FD6AB4E2B0B67C4D8FDBDF; // System.Text.RegularExpressions.RegexCode struct RegexCode_t12846533CAD1E4221CEDF5A4D15D4D649EA688FA; // System.Text.RegularExpressions.RegexRunnerFactory struct RegexRunnerFactory_t0703F390E2102623B0189DEC095DB182698E404B; // System.Text.RegularExpressions.SharedReference struct SharedReference_t225BA5C249F9F1D6C959F151695BDF65EF2C92A5; // System.Text.StringBuilder struct StringBuilder_t; // System.Threading.SemaphoreSlim struct SemaphoreSlim_t2E2888D1C0C8FAB80823C76F1602E4434B8FA048; // System.Threading.Tasks.Task`1<System.Int32> struct Task_1_t640F0CBB720BB9CD14B90B7B81624471A9F56D87; // System.Uri struct Uri_t87E4A94B2901F5EEDD18AA72C3DB1B00E672D68E; // System.Uri/UriInfo struct UriInfo_t9FCC6BD4EC1EA14D75209E6A35417057BF6EDC5E; // System.UriParser struct UriParser_t07C77D673CCE8D2DA253B8A7ACCB010147F1A4AC; // System.Void struct Void_t22962CB4C05B1D89B55A6E1139F0E87A90987017; // UnityEngine.AsyncOperation struct AsyncOperation_t304C51ABED8AE734CC8DDDFE13013D8D5A44641D; // UnityEngine.Networking.CertificateHandler struct CertificateHandler_tBD070BF4150A44AB482FD36EA3882C363117E8C0; // UnityEngine.Networking.DownloadHandler struct DownloadHandler_t4A7802ADC97024B469C87FA454B6973951980EE9; // UnityEngine.Networking.DownloadHandlerBuffer struct DownloadHandlerBuffer_tF6A73B82C9EC807D36B904A58E1DF2DDA696B255; // UnityEngine.Networking.UnityWebRequest struct UnityWebRequest_t9120F5A2C7D43B936B49C0B7E4CA54C822689129; // UnityEngine.Networking.UnityWebRequestAsyncOperation struct UnityWebRequestAsyncOperation_t726E134F16701A2671D40BEBE22110DC57156353; // UnityEngine.Networking.UploadHandler struct UploadHandler_t24F4097D30A1E7C689D8881A27F251B4741601E4; // UnityEngine.Networking.UploadHandlerRaw struct UploadHandlerRaw_t9E6A69B7726F134F31F6744F5EFDF611E7C54F27; // UnityEngine.WWWForm struct WWWForm_t8D5ED7CAC180C102E377B21A70CC6A9AD5EAAD24; extern RuntimeClass* ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var; extern RuntimeClass* ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821_il2cpp_TypeInfo_var; extern RuntimeClass* CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2_il2cpp_TypeInfo_var; extern RuntimeClass* Char_tBF22D9FC341BE970735250BB6FF1A4A92BBA58B9_il2cpp_TypeInfo_var; extern RuntimeClass* Debug_t7B5FCB117E2FD63B6838BC52821B252E2BFB61C4_il2cpp_TypeInfo_var; extern RuntimeClass* Dictionary_2_t931BF283048C4E74FC063C3036E5F3FE328861FC_il2cpp_TypeInfo_var; extern RuntimeClass* DownloadHandlerBuffer_tF6A73B82C9EC807D36B904A58E1DF2DDA696B255_il2cpp_TypeInfo_var; extern RuntimeClass* FormatException_t2808E076CDE4650AF89F55FD78F49290D0EC5BDC_il2cpp_TypeInfo_var; extern RuntimeClass* GC_tC1D7BD74E8F44ECCEF5CD2B5D84BFF9AAE02D01D_il2cpp_TypeInfo_var; extern RuntimeClass* IDisposable_t7218B22548186B208D65EA5B7870503810A2D15A_il2cpp_TypeInfo_var; extern RuntimeClass* IntPtr_t_il2cpp_TypeInfo_var; extern RuntimeClass* InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var; extern RuntimeClass* List_1_t4AB280456F4DE770AC993DE9A7C8C563A6311531_il2cpp_TypeInfo_var; extern RuntimeClass* List_1_tE8032E48C661C350FF9550E9063D595C0AB25CD3_il2cpp_TypeInfo_var; extern RuntimeClass* Math_tFB388E53C7FDC6FCCF9A19ABF5A4E521FBD52E19_il2cpp_TypeInfo_var; extern RuntimeClass* MemoryStream_t495F44B85E6B4DDE2BB7E17DE963256A74E2298C_il2cpp_TypeInfo_var; extern RuntimeClass* Regex_tFD46E63A462E852189FD6AB4E2B0B67C4D8FDBDF_il2cpp_TypeInfo_var; extern RuntimeClass* StringBuilder_t_il2cpp_TypeInfo_var; extern RuntimeClass* StringComparer_t588BC7FEF85D6E7425E0A8147A3D5A334F1F82DE_il2cpp_TypeInfo_var; extern RuntimeClass* StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E_il2cpp_TypeInfo_var; extern RuntimeClass* UnityWebRequest_t9120F5A2C7D43B936B49C0B7E4CA54C822689129_il2cpp_TypeInfo_var; extern RuntimeClass* UploadHandlerRaw_t9E6A69B7726F134F31F6744F5EFDF611E7C54F27_il2cpp_TypeInfo_var; extern RuntimeClass* Uri_t87E4A94B2901F5EEDD18AA72C3DB1B00E672D68E_il2cpp_TypeInfo_var; extern RuntimeClass* WWWTranscoder_t0B24F1F17629756E6464A925870CC39236F39C61_il2cpp_TypeInfo_var; extern RuntimeClass* WebRequestUtils_tBE8F8607E3A9633419968F6AF2F706A029AE1296_il2cpp_TypeInfo_var; extern String_t* _stringLiteral091B0CE42EB0BD96169EA00B16DD938F6D63AC95; extern String_t* _stringLiteral10B12D00A7D3C421266B22114A2233F8F8621481; extern String_t* _stringLiteral12FF01C982EBD84225A433218F3E5B57AE810B5D; extern String_t* _stringLiteral13A4D5190AC8DA3D8F73CD82E9291E36C394015F; extern String_t* _stringLiteral178DA31EFB7AC9D3B6EC10D75BB88993C89D22ED; extern String_t* _stringLiteral1C5E5F29CEB079B561835055FFA20C2E0B53F397; extern String_t* _stringLiteral21606782C65E44CAC7AFBB90977D8B6F82140E76; extern String_t* _stringLiteral2ACE62C1BEFA19E3EA37DD52BE9F6D508C5163E6; extern String_t* _stringLiteral2C369AE8D884989C5D09309DAEBE9014DA1B29D7; extern String_t* _stringLiteral31B5C4DB6D1904156356E63972C52395A9F0A008; extern String_t* _stringLiteral339F5868588CFC8FDA4A1EC94EAD8F737C5FCFC0; extern String_t* _stringLiteral34D71611DCE9C30419B3C3EA42DC9426E931CDDE; extern String_t* _stringLiteral38263C0B87E5FC0881F12EF855C8F694115D8213; extern String_t* _stringLiteral4345CB1FA27885A8FBFE7C0C830A592CC76A552B; extern String_t* _stringLiteral4E5057793E1875AA08F21BE7F738453AD461E5F0; extern String_t* _stringLiteral56F03F5F25FB2048BF4AB5FBBF7B5E3D39A3ECEB; extern String_t* _stringLiteral61FF81C30AA3C76E78AFEA62B2E3BD1DFA49E854; extern String_t* _stringLiteral70EE7E18113E0328AAE2B1D5D212C2735F1C00F8; extern String_t* _stringLiteral7138A51661947B19B5088DA5A2BFEDE2876F49B9; extern String_t* _stringLiteral77D12B97BA61FFCCB079E0DD2EF6809C1E957255; extern String_t* _stringLiteral7C4D33785DAA5C2370201FFA236B427AA37C9996; extern String_t* _stringLiteral81D42CE01525C0213D5284260BDB58819D046FB9; extern String_t* _stringLiteral83194C1BD83D4901B58754955875591793EB2C65; extern String_t* _stringLiteral88DADF72F0A8F76B45A836CE12A3DC82857776DB; extern String_t* _stringLiteral8D18625F5AE9389EC29A55BDC45AB0F67A53CA98; extern String_t* _stringLiteral947518D877FB275850A375D795BE6A44C27AB526; extern String_t* _stringLiteral986F2ED15C79ED805000ECCD85519810B2DB2A93; extern String_t* _stringLiteral9F64D1D497EFAA2D4DE4945729BE32D97B43EF0D; extern String_t* _stringLiteralA288E90C6C4E12B4E76A10851EF1ABD903F1EAE7; extern String_t* _stringLiteralA58AA001D4152D20F7F8E0809B9CD782BE38A82C; extern String_t* _stringLiteralA91E4897CA9F429677AFC57ED00D90DE8D3C7001; extern String_t* _stringLiteralAEA05C1AAB9D42F987C023592D1AF2F1D8403D2F; extern String_t* _stringLiteralBA8AB5A0280B953AA97435FF8946CBCBB2755A27; extern String_t* _stringLiteralBEDBFCA635D617975AC8C4A6D1FBC9714BC86399; extern String_t* _stringLiteralCE27CB141098FEB00714E758646BE3E99C185B71; extern String_t* _stringLiteralD6F5636098CD458CE9D22939F8E3E8DEAB0E9BD0; extern String_t* _stringLiteralD953731CD3AE7D9E5F32ADAB3A935068E83C5BB2; extern String_t* _stringLiteralDA39A3EE5E6B4B0D3255BFEF95601890AFD80709; extern String_t* _stringLiteralDCB16D9AACB079FE42FBDE349C3319DE8033DDD1; extern String_t* _stringLiteralE3D6849AF2EC582D2E5BA2EE543CA6818D1B03AC; extern String_t* _stringLiteralE6A9FC04320A924F46C7C737432BB0389D9DD095; extern String_t* _stringLiteralEF81042E1E86ACB765718EA37393A1292452BBCC; extern String_t* _stringLiteralF030BBBD32966CDE41037B98A8849C46B76E4BC1; extern String_t* _stringLiteralF37BF1E2A7C84A010A6E65E2E41A03F1C044F04B; extern String_t* _stringLiteralF6C97A7F64063CFEE7C2DC2157847204D4DBF093; extern String_t* _stringLiteralF80B07414273FEB6D1B5EAB1E91186C7CE65DE24; extern String_t* _stringLiteralF92E777F4341930BAD9B2422283C4680D00DBC06; extern String_t* _stringLiteralFE5567E8D769550852182CDF69D74BB16DFF8E29; extern const RuntimeMethod* Dictionary_2_Add_m8E1E97EC586BFF6D3F84BB3429DF6198853F25AC_RuntimeMethod_var; extern const RuntimeMethod* Dictionary_2_GetEnumerator_m3378B4792B81EF81397CB9D9A761BD7149BD27F5_RuntimeMethod_var; extern const RuntimeMethod* Dictionary_2__ctor_m1DDEF700172660887162F8B6AA94679C3113AB9F_RuntimeMethod_var; extern const RuntimeMethod* Dictionary_2__ctor_m5B1C279E77422BB0B2C7B0374ECF89E3224AF62B_RuntimeMethod_var; extern const RuntimeMethod* Dictionary_2_set_Item_m597918251624A4BF29104324490143CFCA659FAD_RuntimeMethod_var; extern const RuntimeMethod* Enumerator_Dispose_m16C0E963A012498CD27422B463DB327BA4C7A321_RuntimeMethod_var; extern const RuntimeMethod* Enumerator_MoveNext_m6E6A22A8620F5A5582BB67E367BE5086D7D895A6_RuntimeMethod_var; extern const RuntimeMethod* Enumerator_get_Current_mBEC9B470213860581893E0F197CAAE657B8B6C69_RuntimeMethod_var; extern const RuntimeMethod* KeyValuePair_2_get_Key_m434E29A1251E81B5A2124466105823011C462BF2_RuntimeMethod_var; extern const RuntimeMethod* KeyValuePair_2_get_Value_mEAF4B15DEEAC6EB29683A5C6569F0F50B4DEBDA2_RuntimeMethod_var; extern const RuntimeMethod* List_1_Add_mA348FA1140766465189459D25B01EB179001DE83_RuntimeMethod_var; extern const RuntimeMethod* List_1_Add_mCC9D38BB3CBE3F2E67EDF3390D36ABFAD293468E_RuntimeMethod_var; extern const RuntimeMethod* List_1__ctor_m52FC81AB50BD21B6BFA16546E3AF9C94611D9811_RuntimeMethod_var; extern const RuntimeMethod* List_1__ctor_mDA22758D73530683C950C5CCF39BDB4E7E1F3F06_RuntimeMethod_var; extern const RuntimeMethod* List_1_get_Count_m60AE24FF9D8000083F8EE65662CAA6EE46ADA29A_RuntimeMethod_var; extern const RuntimeMethod* List_1_get_Item_m2BE218005C01E5A3FE3CD353F077053DD13B0476_RuntimeMethod_var; extern const RuntimeMethod* List_1_get_Item_mB739B0066E5F7EBDBA9978F24A73D26D4FAE5BED_RuntimeMethod_var; extern const RuntimeMethod* UnityWebRequest_InternalSetCustomMethod_mE9F0C84C6DCD5412AEDD76280EEC4FB82516EF16_RuntimeMethod_var; extern const RuntimeMethod* UnityWebRequest_InternalSetMethod_m636508AA8E6EF12B3255D8ED108BFF7EB1AB68C9_RuntimeMethod_var; extern const RuntimeMethod* UnityWebRequest_InternalSetUrl_m2E2C837A6F32065CAAAF6EFA7D0237C9E206689A_RuntimeMethod_var; extern const RuntimeMethod* UnityWebRequest_SetRequestHeader_m1B54D38BDACC2789FC8EE889EA72EDD7844D2309_RuntimeMethod_var; extern const RuntimeMethod* UnityWebRequest_set_downloadHandler_mB481C2EE30F84B62396C1A837F46046F12B8FA7E_RuntimeMethod_var; extern const RuntimeMethod* UnityWebRequest_set_method_mF2DAC86EB05D65B9BCB52056B7CBB2C1AD87EEC6_RuntimeMethod_var; extern const RuntimeMethod* UnityWebRequest_set_timeout_mA80432BD1798C9227EAE77554A795293072C6E1F_RuntimeMethod_var; extern const RuntimeMethod* UnityWebRequest_set_uploadHandler_m7B33656584914FB3F6FB0FF73C08F671262724A1_RuntimeMethod_var; extern const RuntimeMethod* UploadHandlerRaw__ctor_m9F7643CA3314C8CE46DD41FBF584C268E2546935_RuntimeMethod_var; extern const RuntimeMethod* WebRequestUtils_MakeInitialUrl_m446CCE4EFB276BE27A9380D55B9E704D01107B83_RuntimeMethod_var; extern const uint32_t CertificateHandler_Dispose_m9C71BAA51760FDF05AB999B6AB6E6BC71BCB8CA0_MetadataUsageId; extern const uint32_t DownloadHandler_Dispose_m7478E72B2DBA4B55FAA25F7A1975A13BA5891D4B_MetadataUsageId; extern const uint32_t DownloadHandler_GetTextEncoder_m601540FD9D16122709582833632A9DEEDBF07E64_MetadataUsageId; extern const uint32_t DownloadHandler_GetText_mA51553E65D6A397E07AAAC21214C817AD72550FD_MetadataUsageId; extern const uint32_t UnityWebRequest_Delete_m5F08DC19746922E5CCAADCAAF035AD227B061D95_MetadataUsageId; extern const uint32_t UnityWebRequest_Dispose_m6AFA87DA329282058723E5ACE016B0B08CFE806D_MetadataUsageId; extern const uint32_t UnityWebRequest_EscapeURL_m024D2743C55CB2E079B382ECFCAF23505B13A8E3_MetadataUsageId; extern const uint32_t UnityWebRequest_GetResponseHeaders_mFA5C7C10F2BA83F21826611AF204BC56E881A863_MetadataUsageId; extern const uint32_t UnityWebRequest_Get_mF4E12AA47AAF25221AD738B434B0EA8D40659B18_MetadataUsageId; extern const uint32_t UnityWebRequest_InternalDestroy_mF5D7484808AEAE24A43B678614D257FBF885026B_MetadataUsageId; extern const uint32_t UnityWebRequest_InternalSetCustomMethod_mE9F0C84C6DCD5412AEDD76280EEC4FB82516EF16_MetadataUsageId; extern const uint32_t UnityWebRequest_InternalSetMethod_m636508AA8E6EF12B3255D8ED108BFF7EB1AB68C9_MetadataUsageId; extern const uint32_t UnityWebRequest_InternalSetUrl_m2E2C837A6F32065CAAAF6EFA7D0237C9E206689A_MetadataUsageId; extern const uint32_t UnityWebRequest_Post_m677069528E4C23CF91208E5A66D672568EDE17E5_MetadataUsageId; extern const uint32_t UnityWebRequest_Post_mEC355EABB9732DF41AD216DB863EEB2A06AC4C87_MetadataUsageId; extern const uint32_t UnityWebRequest_Put_m3B499CCF1C4FB9FBCF58B1AACC2989581EB3F26C_MetadataUsageId; extern const uint32_t UnityWebRequest_Put_mF4F986692AF2279DDEDD8866E9611E2BA7D6A209_MetadataUsageId; extern const uint32_t UnityWebRequest_SetRequestHeader_m1B54D38BDACC2789FC8EE889EA72EDD7844D2309_MetadataUsageId; extern const uint32_t UnityWebRequest_SetupPost_m31EFAEB2EC83463CD04E93B292A32DF3027FF82C_MetadataUsageId; extern const uint32_t UnityWebRequest_SetupPost_mAB03D6DF06B96684D7E1A25449868CD4D1AABA57_MetadataUsageId; extern const uint32_t UnityWebRequest_get_method_m0F039F28DD8309D25824D732CE7FF7394E195855_MetadataUsageId; extern const uint32_t UnityWebRequest_set_downloadHandler_mB481C2EE30F84B62396C1A837F46046F12B8FA7E_MetadataUsageId; extern const uint32_t UnityWebRequest_set_method_mF2DAC86EB05D65B9BCB52056B7CBB2C1AD87EEC6_MetadataUsageId; extern const uint32_t UnityWebRequest_set_timeout_mA80432BD1798C9227EAE77554A795293072C6E1F_MetadataUsageId; extern const uint32_t UnityWebRequest_set_uploadHandler_m7B33656584914FB3F6FB0FF73C08F671262724A1_MetadataUsageId; extern const uint32_t UnityWebRequest_set_url_mA698FD94C447FF7C1C429D50C2EBAEEDD473007D_MetadataUsageId; extern const uint32_t UploadHandlerRaw__ctor_m9F7643CA3314C8CE46DD41FBF584C268E2546935_MetadataUsageId; extern const uint32_t UploadHandler_Dispose_m9BBE8D7D2BBAAC2DE84B52BADA0B79CEA6F2DAB2_MetadataUsageId; extern const uint32_t WWWForm_AddBinaryData_m6D70BA4B0246D26B365138CBFF9EF4780A579782_MetadataUsageId; extern const uint32_t WWWForm__ctor_m51016B707A3BDC515538D44EB08D54402CF6F695_MetadataUsageId; extern const uint32_t WWWForm_get_data_m5ED2243249BE32F26F3020BB39BBEF834BE56303_MetadataUsageId; extern const uint32_t WWWForm_get_headers_mE1BA0494A43C8EF12C0217297411EFD6B4EC601A_MetadataUsageId; extern const uint32_t WWWTranscoder_Byte2Hex_mA129675BFEDFED879713DAB1592772BC52FA04FB_MetadataUsageId; extern const uint32_t WWWTranscoder_DataEncode_m991CA7AD8C98345736244A24979E440E23E5035A_MetadataUsageId; extern const uint32_t WWWTranscoder_DataEncode_mAD3C2EBF2E04CAEBDFB8873DC7987378C88A67F4_MetadataUsageId; extern const uint32_t WWWTranscoder_Decode_m2533830DAAAE6F33AA6EE85A5BF63C96F5D631D4_MetadataUsageId; extern const uint32_t WWWTranscoder_Encode_m2D65124BA0FF6E92A66B5804596B75898068CF84_MetadataUsageId; extern const uint32_t WWWTranscoder_QPEncode_m8D6CDDD2224B115D869C330D10270027C48446E7_MetadataUsageId; extern const uint32_t WWWTranscoder_SevenBitClean_m6805326B108F514EF531375332C90963B9A99EA6_MetadataUsageId; extern const uint32_t WWWTranscoder_URLDecode_m591A567154B1B8737ECBFE065AF4FCA59217F5D8_MetadataUsageId; extern const uint32_t WWWTranscoder_URLEncode_mD0BEAAE6DBA432657E18FA17F3BCC87A34C0973B_MetadataUsageId; extern const uint32_t WWWTranscoder__cctor_m3436CCA2D8667A6BCF6981B6573EF048BDA49F51_MetadataUsageId; extern const uint32_t WebRequestUtils_MakeInitialUrl_m446CCE4EFB276BE27A9380D55B9E704D01107B83_MetadataUsageId; extern const uint32_t WebRequestUtils_MakeUriString_m5693EA04230335B9611278EFC189BD58339D01E4_MetadataUsageId; extern const uint32_t WebRequestUtils_RedirectTo_m8AC7C0BFC562550118F6FF4AE218898717E922C1_MetadataUsageId; extern const uint32_t WebRequestUtils_URLDecode_m3F75FA29F50FB340B93815988517E9208C52EE62_MetadataUsageId; extern const uint32_t WebRequestUtils__cctor_m31EB3E45EC49AB6B33C7A10F79F1CD4FF2BE715A_MetadataUsageId; struct CertificateHandler_tBD070BF4150A44AB482FD36EA3882C363117E8C0;; struct CertificateHandler_tBD070BF4150A44AB482FD36EA3882C363117E8C0_marshaled_com; struct CertificateHandler_tBD070BF4150A44AB482FD36EA3882C363117E8C0_marshaled_com;; struct CertificateHandler_tBD070BF4150A44AB482FD36EA3882C363117E8C0_marshaled_pinvoke; struct CertificateHandler_tBD070BF4150A44AB482FD36EA3882C363117E8C0_marshaled_pinvoke;; struct Delegate_t_marshaled_com; struct Delegate_t_marshaled_pinvoke; struct DownloadHandler_t4A7802ADC97024B469C87FA454B6973951980EE9;; struct DownloadHandler_t4A7802ADC97024B469C87FA454B6973951980EE9_marshaled_com; struct DownloadHandler_t4A7802ADC97024B469C87FA454B6973951980EE9_marshaled_com;; struct DownloadHandler_t4A7802ADC97024B469C87FA454B6973951980EE9_marshaled_pinvoke; struct DownloadHandler_t4A7802ADC97024B469C87FA454B6973951980EE9_marshaled_pinvoke;; struct Exception_t_marshaled_com; struct Exception_t_marshaled_pinvoke; struct UnityWebRequest_t9120F5A2C7D43B936B49C0B7E4CA54C822689129;; struct UnityWebRequest_t9120F5A2C7D43B936B49C0B7E4CA54C822689129_marshaled_com; struct UnityWebRequest_t9120F5A2C7D43B936B49C0B7E4CA54C822689129_marshaled_com;; struct UnityWebRequest_t9120F5A2C7D43B936B49C0B7E4CA54C822689129_marshaled_pinvoke; struct UnityWebRequest_t9120F5A2C7D43B936B49C0B7E4CA54C822689129_marshaled_pinvoke;; struct UploadHandler_t24F4097D30A1E7C689D8881A27F251B4741601E4;; struct UploadHandler_t24F4097D30A1E7C689D8881A27F251B4741601E4_marshaled_com; struct UploadHandler_t24F4097D30A1E7C689D8881A27F251B4741601E4_marshaled_com;; struct UploadHandler_t24F4097D30A1E7C689D8881A27F251B4741601E4_marshaled_pinvoke; struct UploadHandler_t24F4097D30A1E7C689D8881A27F251B4741601E4_marshaled_pinvoke;; struct ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821; struct CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2; struct StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E; #ifndef U3CMODULEU3E_T2FBFFC67F8D6B1FA13284515F9BBD8C9333B5C86_H #define U3CMODULEU3E_T2FBFFC67F8D6B1FA13284515F9BBD8C9333B5C86_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // <Module> struct U3CModuleU3E_t2FBFFC67F8D6B1FA13284515F9BBD8C9333B5C86 { public: public: }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // U3CMODULEU3E_T2FBFFC67F8D6B1FA13284515F9BBD8C9333B5C86_H #ifndef RUNTIMEOBJECT_H #define RUNTIMEOBJECT_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Object #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // RUNTIMEOBJECT_H struct Il2CppArrayBounds; #ifndef RUNTIMEARRAY_H #define RUNTIMEARRAY_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Array #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // RUNTIMEARRAY_H #ifndef DICTIONARY_2_T931BF283048C4E74FC063C3036E5F3FE328861FC_H #define DICTIONARY_2_T931BF283048C4E74FC063C3036E5F3FE328861FC_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Collections.Generic.Dictionary`2<System.String,System.String> struct Dictionary_2_t931BF283048C4E74FC063C3036E5F3FE328861FC : public RuntimeObject { public: // System.Int32[] System.Collections.Generic.Dictionary`2::buckets Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* ___buckets_0; // System.Collections.Generic.Dictionary`2_Entry<TKey,TValue>[] System.Collections.Generic.Dictionary`2::entries EntryU5BU5D_t034347107F1D23C91DE1D712EA637D904789415C* ___entries_1; // System.Int32 System.Collections.Generic.Dictionary`2::count int32_t ___count_2; // System.Int32 System.Collections.Generic.Dictionary`2::version int32_t ___version_3; // System.Int32 System.Collections.Generic.Dictionary`2::freeList int32_t ___freeList_4; // System.Int32 System.Collections.Generic.Dictionary`2::freeCount int32_t ___freeCount_5; // System.Collections.Generic.IEqualityComparer`1<TKey> System.Collections.Generic.Dictionary`2::comparer RuntimeObject* ___comparer_6; // System.Collections.Generic.Dictionary`2_KeyCollection<TKey,TValue> System.Collections.Generic.Dictionary`2::keys KeyCollection_tC73654392B284B89334464107B696C9BD89776D9 * ___keys_7; // System.Collections.Generic.Dictionary`2_ValueCollection<TKey,TValue> System.Collections.Generic.Dictionary`2::values ValueCollection_tA3B972EF56F7C97E35054155C33556C55FAAFD43 * ___values_8; // System.Object System.Collections.Generic.Dictionary`2::_syncRoot RuntimeObject * ____syncRoot_9; public: inline static int32_t get_offset_of_buckets_0() { return static_cast<int32_t>(offsetof(Dictionary_2_t931BF283048C4E74FC063C3036E5F3FE328861FC, ___buckets_0)); } inline Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* get_buckets_0() const { return ___buckets_0; } inline Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83** get_address_of_buckets_0() { return &___buckets_0; } inline void set_buckets_0(Int32U5BU5D_t2B9E4FDDDB9F0A00EC0AC631BA2DA915EB1ECF83* value) { ___buckets_0 = value; Il2CppCodeGenWriteBarrier((&___buckets_0), value); } inline static int32_t get_offset_of_entries_1() { return static_cast<int32_t>(offsetof(Dictionary_2_t931BF283048C4E74FC063C3036E5F3FE328861FC, ___entries_1)); } inline EntryU5BU5D_t034347107F1D23C91DE1D712EA637D904789415C* get_entries_1() const { return ___entries_1; } inline EntryU5BU5D_t034347107F1D23C91DE1D712EA637D904789415C** get_address_of_entries_1() { return &___entries_1; } inline void set_entries_1(EntryU5BU5D_t034347107F1D23C91DE1D712EA637D904789415C* value) { ___entries_1 = value; Il2CppCodeGenWriteBarrier((&___entries_1), value); } inline static int32_t get_offset_of_count_2() { return static_cast<int32_t>(offsetof(Dictionary_2_t931BF283048C4E74FC063C3036E5F3FE328861FC, ___count_2)); } inline int32_t get_count_2() const { return ___count_2; } inline int32_t* get_address_of_count_2() { return &___count_2; } inline void set_count_2(int32_t value) { ___count_2 = value; } inline static int32_t get_offset_of_version_3() { return static_cast<int32_t>(offsetof(Dictionary_2_t931BF283048C4E74FC063C3036E5F3FE328861FC, ___version_3)); } inline int32_t get_version_3() const { return ___version_3; } inline int32_t* get_address_of_version_3() { return &___version_3; } inline void set_version_3(int32_t value) { ___version_3 = value; } inline static int32_t get_offset_of_freeList_4() { return static_cast<int32_t>(offsetof(Dictionary_2_t931BF283048C4E74FC063C3036E5F3FE328861FC, ___freeList_4)); } inline int32_t get_freeList_4() const { return ___freeList_4; } inline int32_t* get_address_of_freeList_4() { return &___freeList_4; } inline void set_freeList_4(int32_t value) { ___freeList_4 = value; } inline static int32_t get_offset_of_freeCount_5() { return static_cast<int32_t>(offsetof(Dictionary_2_t931BF283048C4E74FC063C3036E5F3FE328861FC, ___freeCount_5)); } inline int32_t get_freeCount_5() const { return ___freeCount_5; } inline int32_t* get_address_of_freeCount_5() { return &___freeCount_5; } inline void set_freeCount_5(int32_t value) { ___freeCount_5 = value; } inline static int32_t get_offset_of_comparer_6() { return static_cast<int32_t>(offsetof(Dictionary_2_t931BF283048C4E74FC063C3036E5F3FE328861FC, ___comparer_6)); } inline RuntimeObject* get_comparer_6() const { return ___comparer_6; } inline RuntimeObject** get_address_of_comparer_6() { return &___comparer_6; } inline void set_comparer_6(RuntimeObject* value) { ___comparer_6 = value; Il2CppCodeGenWriteBarrier((&___comparer_6), value); } inline static int32_t get_offset_of_keys_7() { return static_cast<int32_t>(offsetof(Dictionary_2_t931BF283048C4E74FC063C3036E5F3FE328861FC, ___keys_7)); } inline KeyCollection_tC73654392B284B89334464107B696C9BD89776D9 * get_keys_7() const { return ___keys_7; } inline KeyCollection_tC73654392B284B89334464107B696C9BD89776D9 ** get_address_of_keys_7() { return &___keys_7; } inline void set_keys_7(KeyCollection_tC73654392B284B89334464107B696C9BD89776D9 * value) { ___keys_7 = value; Il2CppCodeGenWriteBarrier((&___keys_7), value); } inline static int32_t get_offset_of_values_8() { return static_cast<int32_t>(offsetof(Dictionary_2_t931BF283048C4E74FC063C3036E5F3FE328861FC, ___values_8)); } inline ValueCollection_tA3B972EF56F7C97E35054155C33556C55FAAFD43 * get_values_8() const { return ___values_8; } inline ValueCollection_tA3B972EF56F7C97E35054155C33556C55FAAFD43 ** get_address_of_values_8() { return &___values_8; } inline void set_values_8(ValueCollection_tA3B972EF56F7C97E35054155C33556C55FAAFD43 * value) { ___values_8 = value; Il2CppCodeGenWriteBarrier((&___values_8), value); } inline static int32_t get_offset_of__syncRoot_9() { return static_cast<int32_t>(offsetof(Dictionary_2_t931BF283048C4E74FC063C3036E5F3FE328861FC, ____syncRoot_9)); } inline RuntimeObject * get__syncRoot_9() const { return ____syncRoot_9; } inline RuntimeObject ** get_address_of__syncRoot_9() { return &____syncRoot_9; } inline void set__syncRoot_9(RuntimeObject * value) { ____syncRoot_9 = value; Il2CppCodeGenWriteBarrier((&____syncRoot_9), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // DICTIONARY_2_T931BF283048C4E74FC063C3036E5F3FE328861FC_H #ifndef LIST_1_T4AB280456F4DE770AC993DE9A7C8C563A6311531_H #define LIST_1_T4AB280456F4DE770AC993DE9A7C8C563A6311531_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Collections.Generic.List`1<System.Byte[]> struct List_1_t4AB280456F4DE770AC993DE9A7C8C563A6311531 : public RuntimeObject { public: // T[] System.Collections.Generic.List`1::_items ByteU5BU5DU5BU5D_t1DE3927D87FD236507BFE9CA7E3EEA348C53E0E1* ____items_1; // System.Int32 System.Collections.Generic.List`1::_size int32_t ____size_2; // System.Int32 System.Collections.Generic.List`1::_version int32_t ____version_3; // System.Object System.Collections.Generic.List`1::_syncRoot RuntimeObject * ____syncRoot_4; public: inline static int32_t get_offset_of__items_1() { return static_cast<int32_t>(offsetof(List_1_t4AB280456F4DE770AC993DE9A7C8C563A6311531, ____items_1)); } inline ByteU5BU5DU5BU5D_t1DE3927D87FD236507BFE9CA7E3EEA348C53E0E1* get__items_1() const { return ____items_1; } inline ByteU5BU5DU5BU5D_t1DE3927D87FD236507BFE9CA7E3EEA348C53E0E1** get_address_of__items_1() { return &____items_1; } inline void set__items_1(ByteU5BU5DU5BU5D_t1DE3927D87FD236507BFE9CA7E3EEA348C53E0E1* value) { ____items_1 = value; Il2CppCodeGenWriteBarrier((&____items_1), value); } inline static int32_t get_offset_of__size_2() { return static_cast<int32_t>(offsetof(List_1_t4AB280456F4DE770AC993DE9A7C8C563A6311531, ____size_2)); } inline int32_t get__size_2() const { return ____size_2; } inline int32_t* get_address_of__size_2() { return &____size_2; } inline void set__size_2(int32_t value) { ____size_2 = value; } inline static int32_t get_offset_of__version_3() { return static_cast<int32_t>(offsetof(List_1_t4AB280456F4DE770AC993DE9A7C8C563A6311531, ____version_3)); } inline int32_t get__version_3() const { return ____version_3; } inline int32_t* get_address_of__version_3() { return &____version_3; } inline void set__version_3(int32_t value) { ____version_3 = value; } inline static int32_t get_offset_of__syncRoot_4() { return static_cast<int32_t>(offsetof(List_1_t4AB280456F4DE770AC993DE9A7C8C563A6311531, ____syncRoot_4)); } inline RuntimeObject * get__syncRoot_4() const { return ____syncRoot_4; } inline RuntimeObject ** get_address_of__syncRoot_4() { return &____syncRoot_4; } inline void set__syncRoot_4(RuntimeObject * value) { ____syncRoot_4 = value; Il2CppCodeGenWriteBarrier((&____syncRoot_4), value); } }; struct List_1_t4AB280456F4DE770AC993DE9A7C8C563A6311531_StaticFields { public: // T[] System.Collections.Generic.List`1::_emptyArray ByteU5BU5DU5BU5D_t1DE3927D87FD236507BFE9CA7E3EEA348C53E0E1* ____emptyArray_5; public: inline static int32_t get_offset_of__emptyArray_5() { return static_cast<int32_t>(offsetof(List_1_t4AB280456F4DE770AC993DE9A7C8C563A6311531_StaticFields, ____emptyArray_5)); } inline ByteU5BU5DU5BU5D_t1DE3927D87FD236507BFE9CA7E3EEA348C53E0E1* get__emptyArray_5() const { return ____emptyArray_5; } inline ByteU5BU5DU5BU5D_t1DE3927D87FD236507BFE9CA7E3EEA348C53E0E1** get_address_of__emptyArray_5() { return &____emptyArray_5; } inline void set__emptyArray_5(ByteU5BU5DU5BU5D_t1DE3927D87FD236507BFE9CA7E3EEA348C53E0E1* value) { ____emptyArray_5 = value; Il2CppCodeGenWriteBarrier((&____emptyArray_5), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // LIST_1_T4AB280456F4DE770AC993DE9A7C8C563A6311531_H #ifndef LIST_1_TE8032E48C661C350FF9550E9063D595C0AB25CD3_H #define LIST_1_TE8032E48C661C350FF9550E9063D595C0AB25CD3_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Collections.Generic.List`1<System.String> struct List_1_tE8032E48C661C350FF9550E9063D595C0AB25CD3 : public RuntimeObject { public: // T[] System.Collections.Generic.List`1::_items StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* ____items_1; // System.Int32 System.Collections.Generic.List`1::_size int32_t ____size_2; // System.Int32 System.Collections.Generic.List`1::_version int32_t ____version_3; // System.Object System.Collections.Generic.List`1::_syncRoot RuntimeObject * ____syncRoot_4; public: inline static int32_t get_offset_of__items_1() { return static_cast<int32_t>(offsetof(List_1_tE8032E48C661C350FF9550E9063D595C0AB25CD3, ____items_1)); } inline StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* get__items_1() const { return ____items_1; } inline StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E** get_address_of__items_1() { return &____items_1; } inline void set__items_1(StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* value) { ____items_1 = value; Il2CppCodeGenWriteBarrier((&____items_1), value); } inline static int32_t get_offset_of__size_2() { return static_cast<int32_t>(offsetof(List_1_tE8032E48C661C350FF9550E9063D595C0AB25CD3, ____size_2)); } inline int32_t get__size_2() const { return ____size_2; } inline int32_t* get_address_of__size_2() { return &____size_2; } inline void set__size_2(int32_t value) { ____size_2 = value; } inline static int32_t get_offset_of__version_3() { return static_cast<int32_t>(offsetof(List_1_tE8032E48C661C350FF9550E9063D595C0AB25CD3, ____version_3)); } inline int32_t get__version_3() const { return ____version_3; } inline int32_t* get_address_of__version_3() { return &____version_3; } inline void set__version_3(int32_t value) { ____version_3 = value; } inline static int32_t get_offset_of__syncRoot_4() { return static_cast<int32_t>(offsetof(List_1_tE8032E48C661C350FF9550E9063D595C0AB25CD3, ____syncRoot_4)); } inline RuntimeObject * get__syncRoot_4() const { return ____syncRoot_4; } inline RuntimeObject ** get_address_of__syncRoot_4() { return &____syncRoot_4; } inline void set__syncRoot_4(RuntimeObject * value) { ____syncRoot_4 = value; Il2CppCodeGenWriteBarrier((&____syncRoot_4), value); } }; struct List_1_tE8032E48C661C350FF9550E9063D595C0AB25CD3_StaticFields { public: // T[] System.Collections.Generic.List`1::_emptyArray StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* ____emptyArray_5; public: inline static int32_t get_offset_of__emptyArray_5() { return static_cast<int32_t>(offsetof(List_1_tE8032E48C661C350FF9550E9063D595C0AB25CD3_StaticFields, ____emptyArray_5)); } inline StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* get__emptyArray_5() const { return ____emptyArray_5; } inline StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E** get_address_of__emptyArray_5() { return &____emptyArray_5; } inline void set__emptyArray_5(StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* value) { ____emptyArray_5 = value; Il2CppCodeGenWriteBarrier((&____emptyArray_5), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // LIST_1_TE8032E48C661C350FF9550E9063D595C0AB25CD3_H #ifndef EXCEPTION_T_H #define EXCEPTION_T_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Exception struct Exception_t : public RuntimeObject { public: // System.String System.Exception::_className String_t* ____className_1; // System.String System.Exception::_message String_t* ____message_2; // System.Collections.IDictionary System.Exception::_data RuntimeObject* ____data_3; // System.Exception System.Exception::_innerException Exception_t * ____innerException_4; // System.String System.Exception::_helpURL String_t* ____helpURL_5; // System.Object System.Exception::_stackTrace RuntimeObject * ____stackTrace_6; // System.String System.Exception::_stackTraceString String_t* ____stackTraceString_7; // System.String System.Exception::_remoteStackTraceString String_t* ____remoteStackTraceString_8; // System.Int32 System.Exception::_remoteStackIndex int32_t ____remoteStackIndex_9; // System.Object System.Exception::_dynamicMethods RuntimeObject * ____dynamicMethods_10; // System.Int32 System.Exception::_HResult int32_t ____HResult_11; // System.String System.Exception::_source String_t* ____source_12; // System.Runtime.Serialization.SafeSerializationManager System.Exception::_safeSerializationManager SafeSerializationManager_t4A754D86B0F784B18CBC36C073BA564BED109770 * ____safeSerializationManager_13; // System.Diagnostics.StackTrace[] System.Exception::captured_traces StackTraceU5BU5D_t855F09649EA34DEE7C1B6F088E0538E3CCC3F196* ___captured_traces_14; // System.IntPtr[] System.Exception::native_trace_ips IntPtrU5BU5D_t4DC01DCB9A6DF6C9792A6513595D7A11E637DCDD* ___native_trace_ips_15; public: inline static int32_t get_offset_of__className_1() { return static_cast<int32_t>(offsetof(Exception_t, ____className_1)); } inline String_t* get__className_1() const { return ____className_1; } inline String_t** get_address_of__className_1() { return &____className_1; } inline void set__className_1(String_t* value) { ____className_1 = value; Il2CppCodeGenWriteBarrier((&____className_1), value); } inline static int32_t get_offset_of__message_2() { return static_cast<int32_t>(offsetof(Exception_t, ____message_2)); } inline String_t* get__message_2() const { return ____message_2; } inline String_t** get_address_of__message_2() { return &____message_2; } inline void set__message_2(String_t* value) { ____message_2 = value; Il2CppCodeGenWriteBarrier((&____message_2), value); } inline static int32_t get_offset_of__data_3() { return static_cast<int32_t>(offsetof(Exception_t, ____data_3)); } inline RuntimeObject* get__data_3() const { return ____data_3; } inline RuntimeObject** get_address_of__data_3() { return &____data_3; } inline void set__data_3(RuntimeObject* value) { ____data_3 = value; Il2CppCodeGenWriteBarrier((&____data_3), value); } inline static int32_t get_offset_of__innerException_4() { return static_cast<int32_t>(offsetof(Exception_t, ____innerException_4)); } inline Exception_t * get__innerException_4() const { return ____innerException_4; } inline Exception_t ** get_address_of__innerException_4() { return &____innerException_4; } inline void set__innerException_4(Exception_t * value) { ____innerException_4 = value; Il2CppCodeGenWriteBarrier((&____innerException_4), value); } inline static int32_t get_offset_of__helpURL_5() { return static_cast<int32_t>(offsetof(Exception_t, ____helpURL_5)); } inline String_t* get__helpURL_5() const { return ____helpURL_5; } inline String_t** get_address_of__helpURL_5() { return &____helpURL_5; } inline void set__helpURL_5(String_t* value) { ____helpURL_5 = value; Il2CppCodeGenWriteBarrier((&____helpURL_5), value); } inline static int32_t get_offset_of__stackTrace_6() { return static_cast<int32_t>(offsetof(Exception_t, ____stackTrace_6)); } inline RuntimeObject * get__stackTrace_6() const { return ____stackTrace_6; } inline RuntimeObject ** get_address_of__stackTrace_6() { return &____stackTrace_6; } inline void set__stackTrace_6(RuntimeObject * value) { ____stackTrace_6 = value; Il2CppCodeGenWriteBarrier((&____stackTrace_6), value); } inline static int32_t get_offset_of__stackTraceString_7() { return static_cast<int32_t>(offsetof(Exception_t, ____stackTraceString_7)); } inline String_t* get__stackTraceString_7() const { return ____stackTraceString_7; } inline String_t** get_address_of__stackTraceString_7() { return &____stackTraceString_7; } inline void set__stackTraceString_7(String_t* value) { ____stackTraceString_7 = value; Il2CppCodeGenWriteBarrier((&____stackTraceString_7), value); } inline static int32_t get_offset_of__remoteStackTraceString_8() { return static_cast<int32_t>(offsetof(Exception_t, ____remoteStackTraceString_8)); } inline String_t* get__remoteStackTraceString_8() const { return ____remoteStackTraceString_8; } inline String_t** get_address_of__remoteStackTraceString_8() { return &____remoteStackTraceString_8; } inline void set__remoteStackTraceString_8(String_t* value) { ____remoteStackTraceString_8 = value; Il2CppCodeGenWriteBarrier((&____remoteStackTraceString_8), value); } inline static int32_t get_offset_of__remoteStackIndex_9() { return static_cast<int32_t>(offsetof(Exception_t, ____remoteStackIndex_9)); } inline int32_t get__remoteStackIndex_9() const { return ____remoteStackIndex_9; } inline int32_t* get_address_of__remoteStackIndex_9() { return &____remoteStackIndex_9; } inline void set__remoteStackIndex_9(int32_t value) { ____remoteStackIndex_9 = value; } inline static int32_t get_offset_of__dynamicMethods_10() { return static_cast<int32_t>(offsetof(Exception_t, ____dynamicMethods_10)); } inline RuntimeObject * get__dynamicMethods_10() const { return ____dynamicMethods_10; } inline RuntimeObject ** get_address_of__dynamicMethods_10() { return &____dynamicMethods_10; } inline void set__dynamicMethods_10(RuntimeObject * value) { ____dynamicMethods_10 = value; Il2CppCodeGenWriteBarrier((&____dynamicMethods_10), value); } inline static int32_t get_offset_of__HResult_11() { return static_cast<int32_t>(offsetof(Exception_t, ____HResult_11)); } inline int32_t get__HResult_11() const { return ____HResult_11; } inline int32_t* get_address_of__HResult_11() { return &____HResult_11; } inline void set__HResult_11(int32_t value) { ____HResult_11 = value; } inline static int32_t get_offset_of__source_12() { return static_cast<int32_t>(offsetof(Exception_t, ____source_12)); } inline String_t* get__source_12() const { return ____source_12; } inline String_t** get_address_of__source_12() { return &____source_12; } inline void set__source_12(String_t* value) { ____source_12 = value; Il2CppCodeGenWriteBarrier((&____source_12), value); } inline static int32_t get_offset_of__safeSerializationManager_13() { return static_cast<int32_t>(offsetof(Exception_t, ____safeSerializationManager_13)); } inline SafeSerializationManager_t4A754D86B0F784B18CBC36C073BA564BED109770 * get__safeSerializationManager_13() const { return ____safeSerializationManager_13; } inline SafeSerializationManager_t4A754D86B0F784B18CBC36C073BA564BED109770 ** get_address_of__safeSerializationManager_13() { return &____safeSerializationManager_13; } inline void set__safeSerializationManager_13(SafeSerializationManager_t4A754D86B0F784B18CBC36C073BA564BED109770 * value) { ____safeSerializationManager_13 = value; Il2CppCodeGenWriteBarrier((&____safeSerializationManager_13), value); } inline static int32_t get_offset_of_captured_traces_14() { return static_cast<int32_t>(offsetof(Exception_t, ___captured_traces_14)); } inline StackTraceU5BU5D_t855F09649EA34DEE7C1B6F088E0538E3CCC3F196* get_captured_traces_14() const { return ___captured_traces_14; } inline StackTraceU5BU5D_t855F09649EA34DEE7C1B6F088E0538E3CCC3F196** get_address_of_captured_traces_14() { return &___captured_traces_14; } inline void set_captured_traces_14(StackTraceU5BU5D_t855F09649EA34DEE7C1B6F088E0538E3CCC3F196* value) { ___captured_traces_14 = value; Il2CppCodeGenWriteBarrier((&___captured_traces_14), value); } inline static int32_t get_offset_of_native_trace_ips_15() { return static_cast<int32_t>(offsetof(Exception_t, ___native_trace_ips_15)); } inline IntPtrU5BU5D_t4DC01DCB9A6DF6C9792A6513595D7A11E637DCDD* get_native_trace_ips_15() const { return ___native_trace_ips_15; } inline IntPtrU5BU5D_t4DC01DCB9A6DF6C9792A6513595D7A11E637DCDD** get_address_of_native_trace_ips_15() { return &___native_trace_ips_15; } inline void set_native_trace_ips_15(IntPtrU5BU5D_t4DC01DCB9A6DF6C9792A6513595D7A11E637DCDD* value) { ___native_trace_ips_15 = value; Il2CppCodeGenWriteBarrier((&___native_trace_ips_15), value); } }; struct Exception_t_StaticFields { public: // System.Object System.Exception::s_EDILock RuntimeObject * ___s_EDILock_0; public: inline static int32_t get_offset_of_s_EDILock_0() { return static_cast<int32_t>(offsetof(Exception_t_StaticFields, ___s_EDILock_0)); } inline RuntimeObject * get_s_EDILock_0() const { return ___s_EDILock_0; } inline RuntimeObject ** get_address_of_s_EDILock_0() { return &___s_EDILock_0; } inline void set_s_EDILock_0(RuntimeObject * value) { ___s_EDILock_0 = value; Il2CppCodeGenWriteBarrier((&___s_EDILock_0), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif // Native definition for P/Invoke marshalling of System.Exception struct Exception_t_marshaled_pinvoke { char* ____className_1; char* ____message_2; RuntimeObject* ____data_3; Exception_t_marshaled_pinvoke* ____innerException_4; char* ____helpURL_5; Il2CppIUnknown* ____stackTrace_6; char* ____stackTraceString_7; char* ____remoteStackTraceString_8; int32_t ____remoteStackIndex_9; Il2CppIUnknown* ____dynamicMethods_10; int32_t ____HResult_11; char* ____source_12; SafeSerializationManager_t4A754D86B0F784B18CBC36C073BA564BED109770 * ____safeSerializationManager_13; StackTraceU5BU5D_t855F09649EA34DEE7C1B6F088E0538E3CCC3F196* ___captured_traces_14; intptr_t* ___native_trace_ips_15; }; // Native definition for COM marshalling of System.Exception struct Exception_t_marshaled_com { Il2CppChar* ____className_1; Il2CppChar* ____message_2; RuntimeObject* ____data_3; Exception_t_marshaled_com* ____innerException_4; Il2CppChar* ____helpURL_5; Il2CppIUnknown* ____stackTrace_6; Il2CppChar* ____stackTraceString_7; Il2CppChar* ____remoteStackTraceString_8; int32_t ____remoteStackIndex_9; Il2CppIUnknown* ____dynamicMethods_10; int32_t ____HResult_11; Il2CppChar* ____source_12; SafeSerializationManager_t4A754D86B0F784B18CBC36C073BA564BED109770 * ____safeSerializationManager_13; StackTraceU5BU5D_t855F09649EA34DEE7C1B6F088E0538E3CCC3F196* ___captured_traces_14; intptr_t* ___native_trace_ips_15; }; #endif // EXCEPTION_T_H #ifndef MARSHALBYREFOBJECT_TC4577953D0A44D0AB8597CFA868E01C858B1C9AF_H #define MARSHALBYREFOBJECT_TC4577953D0A44D0AB8597CFA868E01C858B1C9AF_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.MarshalByRefObject struct MarshalByRefObject_tC4577953D0A44D0AB8597CFA868E01C858B1C9AF : public RuntimeObject { public: // System.Object System.MarshalByRefObject::_identity RuntimeObject * ____identity_0; public: inline static int32_t get_offset_of__identity_0() { return static_cast<int32_t>(offsetof(MarshalByRefObject_tC4577953D0A44D0AB8597CFA868E01C858B1C9AF, ____identity_0)); } inline RuntimeObject * get__identity_0() const { return ____identity_0; } inline RuntimeObject ** get_address_of__identity_0() { return &____identity_0; } inline void set__identity_0(RuntimeObject * value) { ____identity_0 = value; Il2CppCodeGenWriteBarrier((&____identity_0), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif // Native definition for P/Invoke marshalling of System.MarshalByRefObject struct MarshalByRefObject_tC4577953D0A44D0AB8597CFA868E01C858B1C9AF_marshaled_pinvoke { Il2CppIUnknown* ____identity_0; }; // Native definition for COM marshalling of System.MarshalByRefObject struct MarshalByRefObject_tC4577953D0A44D0AB8597CFA868E01C858B1C9AF_marshaled_com { Il2CppIUnknown* ____identity_0; }; #endif // MARSHALBYREFOBJECT_TC4577953D0A44D0AB8597CFA868E01C858B1C9AF_H #ifndef STRING_T_H #define STRING_T_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // 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((&___Empty_5), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // STRING_T_H #ifndef STRINGCOMPARER_T588BC7FEF85D6E7425E0A8147A3D5A334F1F82DE_H #define STRINGCOMPARER_T588BC7FEF85D6E7425E0A8147A3D5A334F1F82DE_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.StringComparer struct StringComparer_t588BC7FEF85D6E7425E0A8147A3D5A334F1F82DE : public RuntimeObject { public: public: }; struct StringComparer_t588BC7FEF85D6E7425E0A8147A3D5A334F1F82DE_StaticFields { public: // System.StringComparer System.StringComparer::_invariantCulture StringComparer_t588BC7FEF85D6E7425E0A8147A3D5A334F1F82DE * ____invariantCulture_0; // System.StringComparer System.StringComparer::_invariantCultureIgnoreCase StringComparer_t588BC7FEF85D6E7425E0A8147A3D5A334F1F82DE * ____invariantCultureIgnoreCase_1; // System.StringComparer System.StringComparer::_ordinal StringComparer_t588BC7FEF85D6E7425E0A8147A3D5A334F1F82DE * ____ordinal_2; // System.StringComparer System.StringComparer::_ordinalIgnoreCase StringComparer_t588BC7FEF85D6E7425E0A8147A3D5A334F1F82DE * ____ordinalIgnoreCase_3; public: inline static int32_t get_offset_of__invariantCulture_0() { return static_cast<int32_t>(offsetof(StringComparer_t588BC7FEF85D6E7425E0A8147A3D5A334F1F82DE_StaticFields, ____invariantCulture_0)); } inline StringComparer_t588BC7FEF85D6E7425E0A8147A3D5A334F1F82DE * get__invariantCulture_0() const { return ____invariantCulture_0; } inline StringComparer_t588BC7FEF85D6E7425E0A8147A3D5A334F1F82DE ** get_address_of__invariantCulture_0() { return &____invariantCulture_0; } inline void set__invariantCulture_0(StringComparer_t588BC7FEF85D6E7425E0A8147A3D5A334F1F82DE * value) { ____invariantCulture_0 = value; Il2CppCodeGenWriteBarrier((&____invariantCulture_0), value); } inline static int32_t get_offset_of__invariantCultureIgnoreCase_1() { return static_cast<int32_t>(offsetof(StringComparer_t588BC7FEF85D6E7425E0A8147A3D5A334F1F82DE_StaticFields, ____invariantCultureIgnoreCase_1)); } inline StringComparer_t588BC7FEF85D6E7425E0A8147A3D5A334F1F82DE * get__invariantCultureIgnoreCase_1() const { return ____invariantCultureIgnoreCase_1; } inline StringComparer_t588BC7FEF85D6E7425E0A8147A3D5A334F1F82DE ** get_address_of__invariantCultureIgnoreCase_1() { return &____invariantCultureIgnoreCase_1; } inline void set__invariantCultureIgnoreCase_1(StringComparer_t588BC7FEF85D6E7425E0A8147A3D5A334F1F82DE * value) { ____invariantCultureIgnoreCase_1 = value; Il2CppCodeGenWriteBarrier((&____invariantCultureIgnoreCase_1), value); } inline static int32_t get_offset_of__ordinal_2() { return static_cast<int32_t>(offsetof(StringComparer_t588BC7FEF85D6E7425E0A8147A3D5A334F1F82DE_StaticFields, ____ordinal_2)); } inline StringComparer_t588BC7FEF85D6E7425E0A8147A3D5A334F1F82DE * get__ordinal_2() const { return ____ordinal_2; } inline StringComparer_t588BC7FEF85D6E7425E0A8147A3D5A334F1F82DE ** get_address_of__ordinal_2() { return &____ordinal_2; } inline void set__ordinal_2(StringComparer_t588BC7FEF85D6E7425E0A8147A3D5A334F1F82DE * value) { ____ordinal_2 = value; Il2CppCodeGenWriteBarrier((&____ordinal_2), value); } inline static int32_t get_offset_of__ordinalIgnoreCase_3() { return static_cast<int32_t>(offsetof(StringComparer_t588BC7FEF85D6E7425E0A8147A3D5A334F1F82DE_StaticFields, ____ordinalIgnoreCase_3)); } inline StringComparer_t588BC7FEF85D6E7425E0A8147A3D5A334F1F82DE * get__ordinalIgnoreCase_3() const { return ____ordinalIgnoreCase_3; } inline StringComparer_t588BC7FEF85D6E7425E0A8147A3D5A334F1F82DE ** get_address_of__ordinalIgnoreCase_3() { return &____ordinalIgnoreCase_3; } inline void set__ordinalIgnoreCase_3(StringComparer_t588BC7FEF85D6E7425E0A8147A3D5A334F1F82DE * value) { ____ordinalIgnoreCase_3 = value; Il2CppCodeGenWriteBarrier((&____ordinalIgnoreCase_3), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // STRINGCOMPARER_T588BC7FEF85D6E7425E0A8147A3D5A334F1F82DE_H #ifndef ENCODING_T7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4_H #define ENCODING_T7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Text.Encoding struct Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 : public RuntimeObject { public: // System.Int32 System.Text.Encoding::m_codePage int32_t ___m_codePage_55; // System.Globalization.CodePageDataItem System.Text.Encoding::dataItem CodePageDataItem_t6E34BEE9CCCBB35C88D714664633AF6E5F5671FB * ___dataItem_56; // System.Boolean System.Text.Encoding::m_deserializedFromEverett bool ___m_deserializedFromEverett_57; // System.Boolean System.Text.Encoding::m_isReadOnly bool ___m_isReadOnly_58; // System.Text.EncoderFallback System.Text.Encoding::encoderFallback EncoderFallback_tDE342346D01608628F1BCEBB652D31009852CF63 * ___encoderFallback_59; // System.Text.DecoderFallback System.Text.Encoding::decoderFallback DecoderFallback_t128445EB7676870485230893338EF044F6B72F60 * ___decoderFallback_60; public: inline static int32_t get_offset_of_m_codePage_55() { return static_cast<int32_t>(offsetof(Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4, ___m_codePage_55)); } inline int32_t get_m_codePage_55() const { return ___m_codePage_55; } inline int32_t* get_address_of_m_codePage_55() { return &___m_codePage_55; } inline void set_m_codePage_55(int32_t value) { ___m_codePage_55 = value; } inline static int32_t get_offset_of_dataItem_56() { return static_cast<int32_t>(offsetof(Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4, ___dataItem_56)); } inline CodePageDataItem_t6E34BEE9CCCBB35C88D714664633AF6E5F5671FB * get_dataItem_56() const { return ___dataItem_56; } inline CodePageDataItem_t6E34BEE9CCCBB35C88D714664633AF6E5F5671FB ** get_address_of_dataItem_56() { return &___dataItem_56; } inline void set_dataItem_56(CodePageDataItem_t6E34BEE9CCCBB35C88D714664633AF6E5F5671FB * value) { ___dataItem_56 = value; Il2CppCodeGenWriteBarrier((&___dataItem_56), value); } inline static int32_t get_offset_of_m_deserializedFromEverett_57() { return static_cast<int32_t>(offsetof(Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4, ___m_deserializedFromEverett_57)); } inline bool get_m_deserializedFromEverett_57() const { return ___m_deserializedFromEverett_57; } inline bool* get_address_of_m_deserializedFromEverett_57() { return &___m_deserializedFromEverett_57; } inline void set_m_deserializedFromEverett_57(bool value) { ___m_deserializedFromEverett_57 = value; } inline static int32_t get_offset_of_m_isReadOnly_58() { return static_cast<int32_t>(offsetof(Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4, ___m_isReadOnly_58)); } inline bool get_m_isReadOnly_58() const { return ___m_isReadOnly_58; } inline bool* get_address_of_m_isReadOnly_58() { return &___m_isReadOnly_58; } inline void set_m_isReadOnly_58(bool value) { ___m_isReadOnly_58 = value; } inline static int32_t get_offset_of_encoderFallback_59() { return static_cast<int32_t>(offsetof(Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4, ___encoderFallback_59)); } inline EncoderFallback_tDE342346D01608628F1BCEBB652D31009852CF63 * get_encoderFallback_59() const { return ___encoderFallback_59; } inline EncoderFallback_tDE342346D01608628F1BCEBB652D31009852CF63 ** get_address_of_encoderFallback_59() { return &___encoderFallback_59; } inline void set_encoderFallback_59(EncoderFallback_tDE342346D01608628F1BCEBB652D31009852CF63 * value) { ___encoderFallback_59 = value; Il2CppCodeGenWriteBarrier((&___encoderFallback_59), value); } inline static int32_t get_offset_of_decoderFallback_60() { return static_cast<int32_t>(offsetof(Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4, ___decoderFallback_60)); } inline DecoderFallback_t128445EB7676870485230893338EF044F6B72F60 * get_decoderFallback_60() const { return ___decoderFallback_60; } inline DecoderFallback_t128445EB7676870485230893338EF044F6B72F60 ** get_address_of_decoderFallback_60() { return &___decoderFallback_60; } inline void set_decoderFallback_60(DecoderFallback_t128445EB7676870485230893338EF044F6B72F60 * value) { ___decoderFallback_60 = value; Il2CppCodeGenWriteBarrier((&___decoderFallback_60), value); } }; struct Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4_StaticFields { public: // System.Text.Encoding modreq(System.Runtime.CompilerServices.IsVolatile) System.Text.Encoding::defaultEncoding Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * ___defaultEncoding_0; // System.Text.Encoding modreq(System.Runtime.CompilerServices.IsVolatile) System.Text.Encoding::unicodeEncoding Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * ___unicodeEncoding_1; // System.Text.Encoding modreq(System.Runtime.CompilerServices.IsVolatile) System.Text.Encoding::bigEndianUnicode Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * ___bigEndianUnicode_2; // System.Text.Encoding modreq(System.Runtime.CompilerServices.IsVolatile) System.Text.Encoding::utf7Encoding Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * ___utf7Encoding_3; // System.Text.Encoding modreq(System.Runtime.CompilerServices.IsVolatile) System.Text.Encoding::utf8Encoding Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * ___utf8Encoding_4; // System.Text.Encoding modreq(System.Runtime.CompilerServices.IsVolatile) System.Text.Encoding::utf32Encoding Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * ___utf32Encoding_5; // System.Text.Encoding modreq(System.Runtime.CompilerServices.IsVolatile) System.Text.Encoding::asciiEncoding Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * ___asciiEncoding_6; // System.Text.Encoding modreq(System.Runtime.CompilerServices.IsVolatile) System.Text.Encoding::latin1Encoding Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * ___latin1Encoding_7; // System.Collections.Hashtable modreq(System.Runtime.CompilerServices.IsVolatile) System.Text.Encoding::encodings Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * ___encodings_8; // System.Object System.Text.Encoding::s_InternalSyncObject RuntimeObject * ___s_InternalSyncObject_61; public: inline static int32_t get_offset_of_defaultEncoding_0() { return static_cast<int32_t>(offsetof(Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4_StaticFields, ___defaultEncoding_0)); } inline Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * get_defaultEncoding_0() const { return ___defaultEncoding_0; } inline Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 ** get_address_of_defaultEncoding_0() { return &___defaultEncoding_0; } inline void set_defaultEncoding_0(Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * value) { ___defaultEncoding_0 = value; Il2CppCodeGenWriteBarrier((&___defaultEncoding_0), value); } inline static int32_t get_offset_of_unicodeEncoding_1() { return static_cast<int32_t>(offsetof(Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4_StaticFields, ___unicodeEncoding_1)); } inline Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * get_unicodeEncoding_1() const { return ___unicodeEncoding_1; } inline Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 ** get_address_of_unicodeEncoding_1() { return &___unicodeEncoding_1; } inline void set_unicodeEncoding_1(Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * value) { ___unicodeEncoding_1 = value; Il2CppCodeGenWriteBarrier((&___unicodeEncoding_1), value); } inline static int32_t get_offset_of_bigEndianUnicode_2() { return static_cast<int32_t>(offsetof(Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4_StaticFields, ___bigEndianUnicode_2)); } inline Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * get_bigEndianUnicode_2() const { return ___bigEndianUnicode_2; } inline Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 ** get_address_of_bigEndianUnicode_2() { return &___bigEndianUnicode_2; } inline void set_bigEndianUnicode_2(Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * value) { ___bigEndianUnicode_2 = value; Il2CppCodeGenWriteBarrier((&___bigEndianUnicode_2), value); } inline static int32_t get_offset_of_utf7Encoding_3() { return static_cast<int32_t>(offsetof(Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4_StaticFields, ___utf7Encoding_3)); } inline Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * get_utf7Encoding_3() const { return ___utf7Encoding_3; } inline Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 ** get_address_of_utf7Encoding_3() { return &___utf7Encoding_3; } inline void set_utf7Encoding_3(Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * value) { ___utf7Encoding_3 = value; Il2CppCodeGenWriteBarrier((&___utf7Encoding_3), value); } inline static int32_t get_offset_of_utf8Encoding_4() { return static_cast<int32_t>(offsetof(Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4_StaticFields, ___utf8Encoding_4)); } inline Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * get_utf8Encoding_4() const { return ___utf8Encoding_4; } inline Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 ** get_address_of_utf8Encoding_4() { return &___utf8Encoding_4; } inline void set_utf8Encoding_4(Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * value) { ___utf8Encoding_4 = value; Il2CppCodeGenWriteBarrier((&___utf8Encoding_4), value); } inline static int32_t get_offset_of_utf32Encoding_5() { return static_cast<int32_t>(offsetof(Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4_StaticFields, ___utf32Encoding_5)); } inline Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * get_utf32Encoding_5() const { return ___utf32Encoding_5; } inline Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 ** get_address_of_utf32Encoding_5() { return &___utf32Encoding_5; } inline void set_utf32Encoding_5(Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * value) { ___utf32Encoding_5 = value; Il2CppCodeGenWriteBarrier((&___utf32Encoding_5), value); } inline static int32_t get_offset_of_asciiEncoding_6() { return static_cast<int32_t>(offsetof(Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4_StaticFields, ___asciiEncoding_6)); } inline Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * get_asciiEncoding_6() const { return ___asciiEncoding_6; } inline Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 ** get_address_of_asciiEncoding_6() { return &___asciiEncoding_6; } inline void set_asciiEncoding_6(Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * value) { ___asciiEncoding_6 = value; Il2CppCodeGenWriteBarrier((&___asciiEncoding_6), value); } inline static int32_t get_offset_of_latin1Encoding_7() { return static_cast<int32_t>(offsetof(Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4_StaticFields, ___latin1Encoding_7)); } inline Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * get_latin1Encoding_7() const { return ___latin1Encoding_7; } inline Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 ** get_address_of_latin1Encoding_7() { return &___latin1Encoding_7; } inline void set_latin1Encoding_7(Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * value) { ___latin1Encoding_7 = value; Il2CppCodeGenWriteBarrier((&___latin1Encoding_7), value); } inline static int32_t get_offset_of_encodings_8() { return static_cast<int32_t>(offsetof(Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4_StaticFields, ___encodings_8)); } inline Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * get_encodings_8() const { return ___encodings_8; } inline Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 ** get_address_of_encodings_8() { return &___encodings_8; } inline void set_encodings_8(Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * value) { ___encodings_8 = value; Il2CppCodeGenWriteBarrier((&___encodings_8), value); } inline static int32_t get_offset_of_s_InternalSyncObject_61() { return static_cast<int32_t>(offsetof(Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4_StaticFields, ___s_InternalSyncObject_61)); } inline RuntimeObject * get_s_InternalSyncObject_61() const { return ___s_InternalSyncObject_61; } inline RuntimeObject ** get_address_of_s_InternalSyncObject_61() { return &___s_InternalSyncObject_61; } inline void set_s_InternalSyncObject_61(RuntimeObject * value) { ___s_InternalSyncObject_61 = value; Il2CppCodeGenWriteBarrier((&___s_InternalSyncObject_61), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // ENCODING_T7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4_H #ifndef STRINGBUILDER_T_H #define STRINGBUILDER_T_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Text.StringBuilder struct StringBuilder_t : public RuntimeObject { public: // System.Char[] System.Text.StringBuilder::m_ChunkChars CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* ___m_ChunkChars_0; // System.Text.StringBuilder System.Text.StringBuilder::m_ChunkPrevious StringBuilder_t * ___m_ChunkPrevious_1; // System.Int32 System.Text.StringBuilder::m_ChunkLength int32_t ___m_ChunkLength_2; // System.Int32 System.Text.StringBuilder::m_ChunkOffset int32_t ___m_ChunkOffset_3; // System.Int32 System.Text.StringBuilder::m_MaxCapacity int32_t ___m_MaxCapacity_4; public: inline static int32_t get_offset_of_m_ChunkChars_0() { return static_cast<int32_t>(offsetof(StringBuilder_t, ___m_ChunkChars_0)); } inline CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* get_m_ChunkChars_0() const { return ___m_ChunkChars_0; } inline CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2** get_address_of_m_ChunkChars_0() { return &___m_ChunkChars_0; } inline void set_m_ChunkChars_0(CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* value) { ___m_ChunkChars_0 = value; Il2CppCodeGenWriteBarrier((&___m_ChunkChars_0), value); } inline static int32_t get_offset_of_m_ChunkPrevious_1() { return static_cast<int32_t>(offsetof(StringBuilder_t, ___m_ChunkPrevious_1)); } inline StringBuilder_t * get_m_ChunkPrevious_1() const { return ___m_ChunkPrevious_1; } inline StringBuilder_t ** get_address_of_m_ChunkPrevious_1() { return &___m_ChunkPrevious_1; } inline void set_m_ChunkPrevious_1(StringBuilder_t * value) { ___m_ChunkPrevious_1 = value; Il2CppCodeGenWriteBarrier((&___m_ChunkPrevious_1), value); } inline static int32_t get_offset_of_m_ChunkLength_2() { return static_cast<int32_t>(offsetof(StringBuilder_t, ___m_ChunkLength_2)); } inline int32_t get_m_ChunkLength_2() const { return ___m_ChunkLength_2; } inline int32_t* get_address_of_m_ChunkLength_2() { return &___m_ChunkLength_2; } inline void set_m_ChunkLength_2(int32_t value) { ___m_ChunkLength_2 = value; } inline static int32_t get_offset_of_m_ChunkOffset_3() { return static_cast<int32_t>(offsetof(StringBuilder_t, ___m_ChunkOffset_3)); } inline int32_t get_m_ChunkOffset_3() const { return ___m_ChunkOffset_3; } inline int32_t* get_address_of_m_ChunkOffset_3() { return &___m_ChunkOffset_3; } inline void set_m_ChunkOffset_3(int32_t value) { ___m_ChunkOffset_3 = value; } inline static int32_t get_offset_of_m_MaxCapacity_4() { return static_cast<int32_t>(offsetof(StringBuilder_t, ___m_MaxCapacity_4)); } inline int32_t get_m_MaxCapacity_4() const { return ___m_MaxCapacity_4; } inline int32_t* get_address_of_m_MaxCapacity_4() { return &___m_MaxCapacity_4; } inline void set_m_MaxCapacity_4(int32_t value) { ___m_MaxCapacity_4 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // STRINGBUILDER_T_H #ifndef VALUETYPE_T4D0C27076F7C36E76190FB3328E232BCB1CD1FFF_H #define VALUETYPE_T4D0C27076F7C36E76190FB3328E232BCB1CD1FFF_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.ValueType struct ValueType_t4D0C27076F7C36E76190FB3328E232BCB1CD1FFF : public RuntimeObject { public: public: }; #ifdef __clang__ #pragma clang diagnostic pop #endif // 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 { }; #endif // VALUETYPE_T4D0C27076F7C36E76190FB3328E232BCB1CD1FFF_H #ifndef WWWFORM_T8D5ED7CAC180C102E377B21A70CC6A9AD5EAAD24_H #define WWWFORM_T8D5ED7CAC180C102E377B21A70CC6A9AD5EAAD24_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // UnityEngine.WWWForm struct WWWForm_t8D5ED7CAC180C102E377B21A70CC6A9AD5EAAD24 : public RuntimeObject { public: // System.Collections.Generic.List`1<System.Byte[]> UnityEngine.WWWForm::formData List_1_t4AB280456F4DE770AC993DE9A7C8C563A6311531 * ___formData_0; // System.Collections.Generic.List`1<System.String> UnityEngine.WWWForm::fieldNames List_1_tE8032E48C661C350FF9550E9063D595C0AB25CD3 * ___fieldNames_1; // System.Collections.Generic.List`1<System.String> UnityEngine.WWWForm::fileNames List_1_tE8032E48C661C350FF9550E9063D595C0AB25CD3 * ___fileNames_2; // System.Collections.Generic.List`1<System.String> UnityEngine.WWWForm::types List_1_tE8032E48C661C350FF9550E9063D595C0AB25CD3 * ___types_3; // System.Byte[] UnityEngine.WWWForm::boundary ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___boundary_4; // System.Boolean UnityEngine.WWWForm::containsFiles bool ___containsFiles_5; public: inline static int32_t get_offset_of_formData_0() { return static_cast<int32_t>(offsetof(WWWForm_t8D5ED7CAC180C102E377B21A70CC6A9AD5EAAD24, ___formData_0)); } inline List_1_t4AB280456F4DE770AC993DE9A7C8C563A6311531 * get_formData_0() const { return ___formData_0; } inline List_1_t4AB280456F4DE770AC993DE9A7C8C563A6311531 ** get_address_of_formData_0() { return &___formData_0; } inline void set_formData_0(List_1_t4AB280456F4DE770AC993DE9A7C8C563A6311531 * value) { ___formData_0 = value; Il2CppCodeGenWriteBarrier((&___formData_0), value); } inline static int32_t get_offset_of_fieldNames_1() { return static_cast<int32_t>(offsetof(WWWForm_t8D5ED7CAC180C102E377B21A70CC6A9AD5EAAD24, ___fieldNames_1)); } inline List_1_tE8032E48C661C350FF9550E9063D595C0AB25CD3 * get_fieldNames_1() const { return ___fieldNames_1; } inline List_1_tE8032E48C661C350FF9550E9063D595C0AB25CD3 ** get_address_of_fieldNames_1() { return &___fieldNames_1; } inline void set_fieldNames_1(List_1_tE8032E48C661C350FF9550E9063D595C0AB25CD3 * value) { ___fieldNames_1 = value; Il2CppCodeGenWriteBarrier((&___fieldNames_1), value); } inline static int32_t get_offset_of_fileNames_2() { return static_cast<int32_t>(offsetof(WWWForm_t8D5ED7CAC180C102E377B21A70CC6A9AD5EAAD24, ___fileNames_2)); } inline List_1_tE8032E48C661C350FF9550E9063D595C0AB25CD3 * get_fileNames_2() const { return ___fileNames_2; } inline List_1_tE8032E48C661C350FF9550E9063D595C0AB25CD3 ** get_address_of_fileNames_2() { return &___fileNames_2; } inline void set_fileNames_2(List_1_tE8032E48C661C350FF9550E9063D595C0AB25CD3 * value) { ___fileNames_2 = value; Il2CppCodeGenWriteBarrier((&___fileNames_2), value); } inline static int32_t get_offset_of_types_3() { return static_cast<int32_t>(offsetof(WWWForm_t8D5ED7CAC180C102E377B21A70CC6A9AD5EAAD24, ___types_3)); } inline List_1_tE8032E48C661C350FF9550E9063D595C0AB25CD3 * get_types_3() const { return ___types_3; } inline List_1_tE8032E48C661C350FF9550E9063D595C0AB25CD3 ** get_address_of_types_3() { return &___types_3; } inline void set_types_3(List_1_tE8032E48C661C350FF9550E9063D595C0AB25CD3 * value) { ___types_3 = value; Il2CppCodeGenWriteBarrier((&___types_3), value); } inline static int32_t get_offset_of_boundary_4() { return static_cast<int32_t>(offsetof(WWWForm_t8D5ED7CAC180C102E377B21A70CC6A9AD5EAAD24, ___boundary_4)); } inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* get_boundary_4() const { return ___boundary_4; } inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821** get_address_of_boundary_4() { return &___boundary_4; } inline void set_boundary_4(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* value) { ___boundary_4 = value; Il2CppCodeGenWriteBarrier((&___boundary_4), value); } inline static int32_t get_offset_of_containsFiles_5() { return static_cast<int32_t>(offsetof(WWWForm_t8D5ED7CAC180C102E377B21A70CC6A9AD5EAAD24, ___containsFiles_5)); } inline bool get_containsFiles_5() const { return ___containsFiles_5; } inline bool* get_address_of_containsFiles_5() { return &___containsFiles_5; } inline void set_containsFiles_5(bool value) { ___containsFiles_5 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // WWWFORM_T8D5ED7CAC180C102E377B21A70CC6A9AD5EAAD24_H #ifndef WWWTRANSCODER_T0B24F1F17629756E6464A925870CC39236F39C61_H #define WWWTRANSCODER_T0B24F1F17629756E6464A925870CC39236F39C61_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // UnityEngine.WWWTranscoder struct WWWTranscoder_t0B24F1F17629756E6464A925870CC39236F39C61 : public RuntimeObject { public: public: }; struct WWWTranscoder_t0B24F1F17629756E6464A925870CC39236F39C61_StaticFields { public: // System.Byte[] UnityEngine.WWWTranscoder::ucHexChars ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___ucHexChars_0; // System.Byte[] UnityEngine.WWWTranscoder::lcHexChars ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___lcHexChars_1; // System.Byte UnityEngine.WWWTranscoder::urlEscapeChar uint8_t ___urlEscapeChar_2; // System.Byte[] UnityEngine.WWWTranscoder::urlSpace ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___urlSpace_3; // System.Byte[] UnityEngine.WWWTranscoder::dataSpace ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___dataSpace_4; // System.Byte[] UnityEngine.WWWTranscoder::urlForbidden ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___urlForbidden_5; // System.Byte UnityEngine.WWWTranscoder::qpEscapeChar uint8_t ___qpEscapeChar_6; // System.Byte[] UnityEngine.WWWTranscoder::qpSpace ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___qpSpace_7; // System.Byte[] UnityEngine.WWWTranscoder::qpForbidden ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___qpForbidden_8; public: inline static int32_t get_offset_of_ucHexChars_0() { return static_cast<int32_t>(offsetof(WWWTranscoder_t0B24F1F17629756E6464A925870CC39236F39C61_StaticFields, ___ucHexChars_0)); } inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* get_ucHexChars_0() const { return ___ucHexChars_0; } inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821** get_address_of_ucHexChars_0() { return &___ucHexChars_0; } inline void set_ucHexChars_0(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* value) { ___ucHexChars_0 = value; Il2CppCodeGenWriteBarrier((&___ucHexChars_0), value); } inline static int32_t get_offset_of_lcHexChars_1() { return static_cast<int32_t>(offsetof(WWWTranscoder_t0B24F1F17629756E6464A925870CC39236F39C61_StaticFields, ___lcHexChars_1)); } inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* get_lcHexChars_1() const { return ___lcHexChars_1; } inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821** get_address_of_lcHexChars_1() { return &___lcHexChars_1; } inline void set_lcHexChars_1(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* value) { ___lcHexChars_1 = value; Il2CppCodeGenWriteBarrier((&___lcHexChars_1), value); } inline static int32_t get_offset_of_urlEscapeChar_2() { return static_cast<int32_t>(offsetof(WWWTranscoder_t0B24F1F17629756E6464A925870CC39236F39C61_StaticFields, ___urlEscapeChar_2)); } inline uint8_t get_urlEscapeChar_2() const { return ___urlEscapeChar_2; } inline uint8_t* get_address_of_urlEscapeChar_2() { return &___urlEscapeChar_2; } inline void set_urlEscapeChar_2(uint8_t value) { ___urlEscapeChar_2 = value; } inline static int32_t get_offset_of_urlSpace_3() { return static_cast<int32_t>(offsetof(WWWTranscoder_t0B24F1F17629756E6464A925870CC39236F39C61_StaticFields, ___urlSpace_3)); } inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* get_urlSpace_3() const { return ___urlSpace_3; } inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821** get_address_of_urlSpace_3() { return &___urlSpace_3; } inline void set_urlSpace_3(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* value) { ___urlSpace_3 = value; Il2CppCodeGenWriteBarrier((&___urlSpace_3), value); } inline static int32_t get_offset_of_dataSpace_4() { return static_cast<int32_t>(offsetof(WWWTranscoder_t0B24F1F17629756E6464A925870CC39236F39C61_StaticFields, ___dataSpace_4)); } inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* get_dataSpace_4() const { return ___dataSpace_4; } inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821** get_address_of_dataSpace_4() { return &___dataSpace_4; } inline void set_dataSpace_4(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* value) { ___dataSpace_4 = value; Il2CppCodeGenWriteBarrier((&___dataSpace_4), value); } inline static int32_t get_offset_of_urlForbidden_5() { return static_cast<int32_t>(offsetof(WWWTranscoder_t0B24F1F17629756E6464A925870CC39236F39C61_StaticFields, ___urlForbidden_5)); } inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* get_urlForbidden_5() const { return ___urlForbidden_5; } inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821** get_address_of_urlForbidden_5() { return &___urlForbidden_5; } inline void set_urlForbidden_5(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* value) { ___urlForbidden_5 = value; Il2CppCodeGenWriteBarrier((&___urlForbidden_5), value); } inline static int32_t get_offset_of_qpEscapeChar_6() { return static_cast<int32_t>(offsetof(WWWTranscoder_t0B24F1F17629756E6464A925870CC39236F39C61_StaticFields, ___qpEscapeChar_6)); } inline uint8_t get_qpEscapeChar_6() const { return ___qpEscapeChar_6; } inline uint8_t* get_address_of_qpEscapeChar_6() { return &___qpEscapeChar_6; } inline void set_qpEscapeChar_6(uint8_t value) { ___qpEscapeChar_6 = value; } inline static int32_t get_offset_of_qpSpace_7() { return static_cast<int32_t>(offsetof(WWWTranscoder_t0B24F1F17629756E6464A925870CC39236F39C61_StaticFields, ___qpSpace_7)); } inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* get_qpSpace_7() const { return ___qpSpace_7; } inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821** get_address_of_qpSpace_7() { return &___qpSpace_7; } inline void set_qpSpace_7(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* value) { ___qpSpace_7 = value; Il2CppCodeGenWriteBarrier((&___qpSpace_7), value); } inline static int32_t get_offset_of_qpForbidden_8() { return static_cast<int32_t>(offsetof(WWWTranscoder_t0B24F1F17629756E6464A925870CC39236F39C61_StaticFields, ___qpForbidden_8)); } inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* get_qpForbidden_8() const { return ___qpForbidden_8; } inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821** get_address_of_qpForbidden_8() { return &___qpForbidden_8; } inline void set_qpForbidden_8(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* value) { ___qpForbidden_8 = value; Il2CppCodeGenWriteBarrier((&___qpForbidden_8), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // WWWTRANSCODER_T0B24F1F17629756E6464A925870CC39236F39C61_H #ifndef YIELDINSTRUCTION_T836035AC7BD07A3C7909F7AD2A5B42DE99D91C44_H #define YIELDINSTRUCTION_T836035AC7BD07A3C7909F7AD2A5B42DE99D91C44_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // UnityEngine.YieldInstruction struct YieldInstruction_t836035AC7BD07A3C7909F7AD2A5B42DE99D91C44 : public RuntimeObject { public: public: }; #ifdef __clang__ #pragma clang diagnostic pop #endif // Native definition for P/Invoke marshalling of UnityEngine.YieldInstruction struct YieldInstruction_t836035AC7BD07A3C7909F7AD2A5B42DE99D91C44_marshaled_pinvoke { }; // Native definition for COM marshalling of UnityEngine.YieldInstruction struct YieldInstruction_t836035AC7BD07A3C7909F7AD2A5B42DE99D91C44_marshaled_com { }; #endif // YIELDINSTRUCTION_T836035AC7BD07A3C7909F7AD2A5B42DE99D91C44_H #ifndef WEBREQUESTUTILS_TBE8F8607E3A9633419968F6AF2F706A029AE1296_H #define WEBREQUESTUTILS_TBE8F8607E3A9633419968F6AF2F706A029AE1296_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // UnityEngineInternal.WebRequestUtils struct WebRequestUtils_tBE8F8607E3A9633419968F6AF2F706A029AE1296 : public RuntimeObject { public: public: }; struct WebRequestUtils_tBE8F8607E3A9633419968F6AF2F706A029AE1296_StaticFields { public: // System.Text.RegularExpressions.Regex UnityEngineInternal.WebRequestUtils::domainRegex Regex_tFD46E63A462E852189FD6AB4E2B0B67C4D8FDBDF * ___domainRegex_0; public: inline static int32_t get_offset_of_domainRegex_0() { return static_cast<int32_t>(offsetof(WebRequestUtils_tBE8F8607E3A9633419968F6AF2F706A029AE1296_StaticFields, ___domainRegex_0)); } inline Regex_tFD46E63A462E852189FD6AB4E2B0B67C4D8FDBDF * get_domainRegex_0() const { return ___domainRegex_0; } inline Regex_tFD46E63A462E852189FD6AB4E2B0B67C4D8FDBDF ** get_address_of_domainRegex_0() { return &___domainRegex_0; } inline void set_domainRegex_0(Regex_tFD46E63A462E852189FD6AB4E2B0B67C4D8FDBDF * value) { ___domainRegex_0 = value; Il2CppCodeGenWriteBarrier((&___domainRegex_0), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // WEBREQUESTUTILS_TBE8F8607E3A9633419968F6AF2F706A029AE1296_H #ifndef BOOLEAN_TB53F6830F670160873277339AA58F15CAED4399C_H #define BOOLEAN_TB53F6830F670160873277339AA58F15CAED4399C_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // 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((&___TrueString_5), 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((&___FalseString_6), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // BOOLEAN_TB53F6830F670160873277339AA58F15CAED4399C_H #ifndef BYTE_TF87C579059BD4633E6840EBBBEEF899C6E33EF07_H #define BYTE_TF87C579059BD4633E6840EBBBEEF899C6E33EF07_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Byte struct Byte_tF87C579059BD4633E6840EBBBEEF899C6E33EF07 { public: // System.Byte System.Byte::m_value uint8_t ___m_value_0; public: inline static int32_t get_offset_of_m_value_0() { return static_cast<int32_t>(offsetof(Byte_tF87C579059BD4633E6840EBBBEEF899C6E33EF07, ___m_value_0)); } inline uint8_t get_m_value_0() const { return ___m_value_0; } inline uint8_t* get_address_of_m_value_0() { return &___m_value_0; } inline void set_m_value_0(uint8_t value) { ___m_value_0 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // BYTE_TF87C579059BD4633E6840EBBBEEF899C6E33EF07_H #ifndef CHAR_TBF22D9FC341BE970735250BB6FF1A4A92BBA58B9_H #define CHAR_TBF22D9FC341BE970735250BB6FF1A4A92BBA58B9_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Char struct Char_tBF22D9FC341BE970735250BB6FF1A4A92BBA58B9 { public: // System.Char System.Char::m_value Il2CppChar ___m_value_0; public: inline static int32_t get_offset_of_m_value_0() { return static_cast<int32_t>(offsetof(Char_tBF22D9FC341BE970735250BB6FF1A4A92BBA58B9, ___m_value_0)); } inline Il2CppChar get_m_value_0() const { return ___m_value_0; } inline Il2CppChar* get_address_of_m_value_0() { return &___m_value_0; } inline void set_m_value_0(Il2CppChar value) { ___m_value_0 = value; } }; struct Char_tBF22D9FC341BE970735250BB6FF1A4A92BBA58B9_StaticFields { public: // System.Byte[] System.Char::categoryForLatin1 ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___categoryForLatin1_3; public: inline static int32_t get_offset_of_categoryForLatin1_3() { return static_cast<int32_t>(offsetof(Char_tBF22D9FC341BE970735250BB6FF1A4A92BBA58B9_StaticFields, ___categoryForLatin1_3)); } inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* get_categoryForLatin1_3() const { return ___categoryForLatin1_3; } inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821** get_address_of_categoryForLatin1_3() { return &___categoryForLatin1_3; } inline void set_categoryForLatin1_3(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* value) { ___categoryForLatin1_3 = value; Il2CppCodeGenWriteBarrier((&___categoryForLatin1_3), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // CHAR_TBF22D9FC341BE970735250BB6FF1A4A92BBA58B9_H #ifndef KEYVALUEPAIR_2_T23481547E419E16E3B96A303578C1EB685C99EEE_H #define KEYVALUEPAIR_2_T23481547E419E16E3B96A303578C1EB685C99EEE_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Collections.Generic.KeyValuePair`2<System.Object,System.Object> struct KeyValuePair_2_t23481547E419E16E3B96A303578C1EB685C99EEE { public: // TKey System.Collections.Generic.KeyValuePair`2::key RuntimeObject * ___key_0; // TValue System.Collections.Generic.KeyValuePair`2::value RuntimeObject * ___value_1; public: inline static int32_t get_offset_of_key_0() { return static_cast<int32_t>(offsetof(KeyValuePair_2_t23481547E419E16E3B96A303578C1EB685C99EEE, ___key_0)); } inline RuntimeObject * get_key_0() const { return ___key_0; } inline RuntimeObject ** get_address_of_key_0() { return &___key_0; } inline void set_key_0(RuntimeObject * value) { ___key_0 = value; Il2CppCodeGenWriteBarrier((&___key_0), value); } inline static int32_t get_offset_of_value_1() { return static_cast<int32_t>(offsetof(KeyValuePair_2_t23481547E419E16E3B96A303578C1EB685C99EEE, ___value_1)); } inline RuntimeObject * get_value_1() const { return ___value_1; } inline RuntimeObject ** get_address_of_value_1() { return &___value_1; } inline void set_value_1(RuntimeObject * value) { ___value_1 = value; Il2CppCodeGenWriteBarrier((&___value_1), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // KEYVALUEPAIR_2_T23481547E419E16E3B96A303578C1EB685C99EEE_H #ifndef KEYVALUEPAIR_2_T1A58906CCD7ED79792916B56DB716477495C85D8_H #define KEYVALUEPAIR_2_T1A58906CCD7ED79792916B56DB716477495C85D8_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Collections.Generic.KeyValuePair`2<System.String,System.String> struct KeyValuePair_2_t1A58906CCD7ED79792916B56DB716477495C85D8 { public: // TKey System.Collections.Generic.KeyValuePair`2::key String_t* ___key_0; // TValue System.Collections.Generic.KeyValuePair`2::value String_t* ___value_1; public: inline static int32_t get_offset_of_key_0() { return static_cast<int32_t>(offsetof(KeyValuePair_2_t1A58906CCD7ED79792916B56DB716477495C85D8, ___key_0)); } inline String_t* get_key_0() const { return ___key_0; } inline String_t** get_address_of_key_0() { return &___key_0; } inline void set_key_0(String_t* value) { ___key_0 = value; Il2CppCodeGenWriteBarrier((&___key_0), value); } inline static int32_t get_offset_of_value_1() { return static_cast<int32_t>(offsetof(KeyValuePair_2_t1A58906CCD7ED79792916B56DB716477495C85D8, ___value_1)); } inline String_t* get_value_1() const { return ___value_1; } inline String_t** get_address_of_value_1() { return &___value_1; } inline void set_value_1(String_t* value) { ___value_1 = value; Il2CppCodeGenWriteBarrier((&___value_1), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // KEYVALUEPAIR_2_T1A58906CCD7ED79792916B56DB716477495C85D8_H #ifndef ENUM_T2AF27C02B8653AE29442467390005ABC74D8F521_H #define ENUM_T2AF27C02B8653AE29442467390005ABC74D8F521_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // 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((&___enumSeperatorCharArray_0), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif // 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 { }; #endif // ENUM_T2AF27C02B8653AE29442467390005ABC74D8F521_H #ifndef STREAM_TFC50657DD5AAB87770987F9179D934A51D99D5E7_H #define STREAM_TFC50657DD5AAB87770987F9179D934A51D99D5E7_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.IO.Stream struct Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7 : public MarshalByRefObject_tC4577953D0A44D0AB8597CFA868E01C858B1C9AF { public: // System.IO.Stream_ReadWriteTask System.IO.Stream::_activeReadWriteTask ReadWriteTask_tFA17EEE8BC5C4C83EAEFCC3662A30DE351ABAA80 * ____activeReadWriteTask_3; // System.Threading.SemaphoreSlim System.IO.Stream::_asyncActiveSemaphore SemaphoreSlim_t2E2888D1C0C8FAB80823C76F1602E4434B8FA048 * ____asyncActiveSemaphore_4; public: inline static int32_t get_offset_of__activeReadWriteTask_3() { return static_cast<int32_t>(offsetof(Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7, ____activeReadWriteTask_3)); } inline ReadWriteTask_tFA17EEE8BC5C4C83EAEFCC3662A30DE351ABAA80 * get__activeReadWriteTask_3() const { return ____activeReadWriteTask_3; } inline ReadWriteTask_tFA17EEE8BC5C4C83EAEFCC3662A30DE351ABAA80 ** get_address_of__activeReadWriteTask_3() { return &____activeReadWriteTask_3; } inline void set__activeReadWriteTask_3(ReadWriteTask_tFA17EEE8BC5C4C83EAEFCC3662A30DE351ABAA80 * value) { ____activeReadWriteTask_3 = value; Il2CppCodeGenWriteBarrier((&____activeReadWriteTask_3), value); } inline static int32_t get_offset_of__asyncActiveSemaphore_4() { return static_cast<int32_t>(offsetof(Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7, ____asyncActiveSemaphore_4)); } inline SemaphoreSlim_t2E2888D1C0C8FAB80823C76F1602E4434B8FA048 * get__asyncActiveSemaphore_4() const { return ____asyncActiveSemaphore_4; } inline SemaphoreSlim_t2E2888D1C0C8FAB80823C76F1602E4434B8FA048 ** get_address_of__asyncActiveSemaphore_4() { return &____asyncActiveSemaphore_4; } inline void set__asyncActiveSemaphore_4(SemaphoreSlim_t2E2888D1C0C8FAB80823C76F1602E4434B8FA048 * value) { ____asyncActiveSemaphore_4 = value; Il2CppCodeGenWriteBarrier((&____asyncActiveSemaphore_4), value); } }; struct Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7_StaticFields { public: // System.IO.Stream System.IO.Stream::Null Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7 * ___Null_1; public: inline static int32_t get_offset_of_Null_1() { return static_cast<int32_t>(offsetof(Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7_StaticFields, ___Null_1)); } inline Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7 * get_Null_1() const { return ___Null_1; } inline Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7 ** get_address_of_Null_1() { return &___Null_1; } inline void set_Null_1(Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7 * value) { ___Null_1 = value; Il2CppCodeGenWriteBarrier((&___Null_1), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // STREAM_TFC50657DD5AAB87770987F9179D934A51D99D5E7_H #ifndef INT32_T585191389E07734F19F3156FF88FB3EF4800D102_H #define INT32_T585191389E07734F19F3156FF88FB3EF4800D102_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Int32 struct Int32_t585191389E07734F19F3156FF88FB3EF4800D102 { public: // System.Int32 System.Int32::m_value int32_t ___m_value_0; public: inline static int32_t get_offset_of_m_value_0() { return static_cast<int32_t>(offsetof(Int32_t585191389E07734F19F3156FF88FB3EF4800D102, ___m_value_0)); } inline int32_t get_m_value_0() const { return ___m_value_0; } inline int32_t* get_address_of_m_value_0() { return &___m_value_0; } inline void set_m_value_0(int32_t value) { ___m_value_0 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // INT32_T585191389E07734F19F3156FF88FB3EF4800D102_H #ifndef INT64_T7A386C2FF7B0280A0F516992401DDFCF0FF7B436_H #define INT64_T7A386C2FF7B0280A0F516992401DDFCF0FF7B436_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Int64 struct Int64_t7A386C2FF7B0280A0F516992401DDFCF0FF7B436 { public: // System.Int64 System.Int64::m_value int64_t ___m_value_0; public: inline static int32_t get_offset_of_m_value_0() { return static_cast<int32_t>(offsetof(Int64_t7A386C2FF7B0280A0F516992401DDFCF0FF7B436, ___m_value_0)); } inline int64_t get_m_value_0() const { return ___m_value_0; } inline int64_t* get_address_of_m_value_0() { return &___m_value_0; } inline void set_m_value_0(int64_t value) { ___m_value_0 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // INT64_T7A386C2FF7B0280A0F516992401DDFCF0FF7B436_H #ifndef INTPTR_T_H #define INTPTR_T_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.IntPtr struct IntPtr_t { public: // System.Void* System.IntPtr::m_value void* ___m_value_0; public: inline static int32_t get_offset_of_m_value_0() { return static_cast<int32_t>(offsetof(IntPtr_t, ___m_value_0)); } inline void* get_m_value_0() const { return ___m_value_0; } inline void** get_address_of_m_value_0() { return &___m_value_0; } inline void set_m_value_0(void* value) { ___m_value_0 = value; } }; struct IntPtr_t_StaticFields { public: // System.IntPtr System.IntPtr::Zero intptr_t ___Zero_1; public: inline static int32_t get_offset_of_Zero_1() { return static_cast<int32_t>(offsetof(IntPtr_t_StaticFields, ___Zero_1)); } inline intptr_t get_Zero_1() const { return ___Zero_1; } inline intptr_t* get_address_of_Zero_1() { return &___Zero_1; } inline void set_Zero_1(intptr_t value) { ___Zero_1 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // INTPTR_T_H #ifndef SYSTEMEXCEPTION_T5380468142AA850BE4A341D7AF3EAB9C78746782_H #define SYSTEMEXCEPTION_T5380468142AA850BE4A341D7AF3EAB9C78746782_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.SystemException struct SystemException_t5380468142AA850BE4A341D7AF3EAB9C78746782 : public Exception_t { public: public: }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // SYSTEMEXCEPTION_T5380468142AA850BE4A341D7AF3EAB9C78746782_H #ifndef VOID_T22962CB4C05B1D89B55A6E1139F0E87A90987017_H #define VOID_T22962CB4C05B1D89B55A6E1139F0E87A90987017_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void struct Void_t22962CB4C05B1D89B55A6E1139F0E87A90987017 { public: union { struct { }; uint8_t Void_t22962CB4C05B1D89B55A6E1139F0E87A90987017__padding[1]; }; public: }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // VOID_T22962CB4C05B1D89B55A6E1139F0E87A90987017_H #ifndef ARGUMENTEXCEPTION_TEDCD16F20A09ECE461C3DA766C16EDA8864057D1_H #define ARGUMENTEXCEPTION_TEDCD16F20A09ECE461C3DA766C16EDA8864057D1_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.ArgumentException struct ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 : public SystemException_t5380468142AA850BE4A341D7AF3EAB9C78746782 { public: // System.String System.ArgumentException::m_paramName String_t* ___m_paramName_17; public: inline static int32_t get_offset_of_m_paramName_17() { return static_cast<int32_t>(offsetof(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1, ___m_paramName_17)); } inline String_t* get_m_paramName_17() const { return ___m_paramName_17; } inline String_t** get_address_of_m_paramName_17() { return &___m_paramName_17; } inline void set_m_paramName_17(String_t* value) { ___m_paramName_17 = value; Il2CppCodeGenWriteBarrier((&___m_paramName_17), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // ARGUMENTEXCEPTION_TEDCD16F20A09ECE461C3DA766C16EDA8864057D1_H #ifndef ENUMERATOR_TED23DFBF3911229086C71CCE7A54D56F5FFB34CB_H #define ENUMERATOR_TED23DFBF3911229086C71CCE7A54D56F5FFB34CB_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Collections.Generic.Dictionary`2_Enumerator<System.Object,System.Object> struct Enumerator_tED23DFBF3911229086C71CCE7A54D56F5FFB34CB { public: // System.Collections.Generic.Dictionary`2<TKey,TValue> System.Collections.Generic.Dictionary`2_Enumerator::dictionary Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA * ___dictionary_0; // System.Int32 System.Collections.Generic.Dictionary`2_Enumerator::version int32_t ___version_1; // System.Int32 System.Collections.Generic.Dictionary`2_Enumerator::index int32_t ___index_2; // System.Collections.Generic.KeyValuePair`2<TKey,TValue> System.Collections.Generic.Dictionary`2_Enumerator::current KeyValuePair_2_t23481547E419E16E3B96A303578C1EB685C99EEE ___current_3; // System.Int32 System.Collections.Generic.Dictionary`2_Enumerator::getEnumeratorRetType int32_t ___getEnumeratorRetType_4; public: inline static int32_t get_offset_of_dictionary_0() { return static_cast<int32_t>(offsetof(Enumerator_tED23DFBF3911229086C71CCE7A54D56F5FFB34CB, ___dictionary_0)); } inline Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA * get_dictionary_0() const { return ___dictionary_0; } inline Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA ** get_address_of_dictionary_0() { return &___dictionary_0; } inline void set_dictionary_0(Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA * value) { ___dictionary_0 = value; Il2CppCodeGenWriteBarrier((&___dictionary_0), value); } inline static int32_t get_offset_of_version_1() { return static_cast<int32_t>(offsetof(Enumerator_tED23DFBF3911229086C71CCE7A54D56F5FFB34CB, ___version_1)); } inline int32_t get_version_1() const { return ___version_1; } inline int32_t* get_address_of_version_1() { return &___version_1; } inline void set_version_1(int32_t value) { ___version_1 = value; } inline static int32_t get_offset_of_index_2() { return static_cast<int32_t>(offsetof(Enumerator_tED23DFBF3911229086C71CCE7A54D56F5FFB34CB, ___index_2)); } inline int32_t get_index_2() const { return ___index_2; } inline int32_t* get_address_of_index_2() { return &___index_2; } inline void set_index_2(int32_t value) { ___index_2 = value; } inline static int32_t get_offset_of_current_3() { return static_cast<int32_t>(offsetof(Enumerator_tED23DFBF3911229086C71CCE7A54D56F5FFB34CB, ___current_3)); } inline KeyValuePair_2_t23481547E419E16E3B96A303578C1EB685C99EEE get_current_3() const { return ___current_3; } inline KeyValuePair_2_t23481547E419E16E3B96A303578C1EB685C99EEE * get_address_of_current_3() { return &___current_3; } inline void set_current_3(KeyValuePair_2_t23481547E419E16E3B96A303578C1EB685C99EEE value) { ___current_3 = value; } inline static int32_t get_offset_of_getEnumeratorRetType_4() { return static_cast<int32_t>(offsetof(Enumerator_tED23DFBF3911229086C71CCE7A54D56F5FFB34CB, ___getEnumeratorRetType_4)); } inline int32_t get_getEnumeratorRetType_4() const { return ___getEnumeratorRetType_4; } inline int32_t* get_address_of_getEnumeratorRetType_4() { return &___getEnumeratorRetType_4; } inline void set_getEnumeratorRetType_4(int32_t value) { ___getEnumeratorRetType_4 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // ENUMERATOR_TED23DFBF3911229086C71CCE7A54D56F5FFB34CB_H #ifndef ENUMERATOR_TEE17C0B6306B38B4D74140569F93EA8C3BDD05A3_H #define ENUMERATOR_TEE17C0B6306B38B4D74140569F93EA8C3BDD05A3_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Collections.Generic.Dictionary`2_Enumerator<System.String,System.String> struct Enumerator_tEE17C0B6306B38B4D74140569F93EA8C3BDD05A3 { public: // System.Collections.Generic.Dictionary`2<TKey,TValue> System.Collections.Generic.Dictionary`2_Enumerator::dictionary Dictionary_2_t931BF283048C4E74FC063C3036E5F3FE328861FC * ___dictionary_0; // System.Int32 System.Collections.Generic.Dictionary`2_Enumerator::version int32_t ___version_1; // System.Int32 System.Collections.Generic.Dictionary`2_Enumerator::index int32_t ___index_2; // System.Collections.Generic.KeyValuePair`2<TKey,TValue> System.Collections.Generic.Dictionary`2_Enumerator::current KeyValuePair_2_t1A58906CCD7ED79792916B56DB716477495C85D8 ___current_3; // System.Int32 System.Collections.Generic.Dictionary`2_Enumerator::getEnumeratorRetType int32_t ___getEnumeratorRetType_4; public: inline static int32_t get_offset_of_dictionary_0() { return static_cast<int32_t>(offsetof(Enumerator_tEE17C0B6306B38B4D74140569F93EA8C3BDD05A3, ___dictionary_0)); } inline Dictionary_2_t931BF283048C4E74FC063C3036E5F3FE328861FC * get_dictionary_0() const { return ___dictionary_0; } inline Dictionary_2_t931BF283048C4E74FC063C3036E5F3FE328861FC ** get_address_of_dictionary_0() { return &___dictionary_0; } inline void set_dictionary_0(Dictionary_2_t931BF283048C4E74FC063C3036E5F3FE328861FC * value) { ___dictionary_0 = value; Il2CppCodeGenWriteBarrier((&___dictionary_0), value); } inline static int32_t get_offset_of_version_1() { return static_cast<int32_t>(offsetof(Enumerator_tEE17C0B6306B38B4D74140569F93EA8C3BDD05A3, ___version_1)); } inline int32_t get_version_1() const { return ___version_1; } inline int32_t* get_address_of_version_1() { return &___version_1; } inline void set_version_1(int32_t value) { ___version_1 = value; } inline static int32_t get_offset_of_index_2() { return static_cast<int32_t>(offsetof(Enumerator_tEE17C0B6306B38B4D74140569F93EA8C3BDD05A3, ___index_2)); } inline int32_t get_index_2() const { return ___index_2; } inline int32_t* get_address_of_index_2() { return &___index_2; } inline void set_index_2(int32_t value) { ___index_2 = value; } inline static int32_t get_offset_of_current_3() { return static_cast<int32_t>(offsetof(Enumerator_tEE17C0B6306B38B4D74140569F93EA8C3BDD05A3, ___current_3)); } inline KeyValuePair_2_t1A58906CCD7ED79792916B56DB716477495C85D8 get_current_3() const { return ___current_3; } inline KeyValuePair_2_t1A58906CCD7ED79792916B56DB716477495C85D8 * get_address_of_current_3() { return &___current_3; } inline void set_current_3(KeyValuePair_2_t1A58906CCD7ED79792916B56DB716477495C85D8 value) { ___current_3 = value; } inline static int32_t get_offset_of_getEnumeratorRetType_4() { return static_cast<int32_t>(offsetof(Enumerator_tEE17C0B6306B38B4D74140569F93EA8C3BDD05A3, ___getEnumeratorRetType_4)); } inline int32_t get_getEnumeratorRetType_4() const { return ___getEnumeratorRetType_4; } inline int32_t* get_address_of_getEnumeratorRetType_4() { return &___getEnumeratorRetType_4; } inline void set_getEnumeratorRetType_4(int32_t value) { ___getEnumeratorRetType_4 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // ENUMERATOR_TEE17C0B6306B38B4D74140569F93EA8C3BDD05A3_H #ifndef DELEGATE_T_H #define DELEGATE_T_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Delegate struct Delegate_t : public RuntimeObject { public: // System.IntPtr System.Delegate::method_ptr Il2CppMethodPointer ___method_ptr_0; // System.IntPtr System.Delegate::invoke_impl intptr_t ___invoke_impl_1; // System.Object System.Delegate::m_target RuntimeObject * ___m_target_2; // System.IntPtr System.Delegate::method intptr_t ___method_3; // System.IntPtr System.Delegate::delegate_trampoline intptr_t ___delegate_trampoline_4; // System.IntPtr System.Delegate::extra_arg intptr_t ___extra_arg_5; // System.IntPtr System.Delegate::method_code intptr_t ___method_code_6; // System.Reflection.MethodInfo System.Delegate::method_info MethodInfo_t * ___method_info_7; // System.Reflection.MethodInfo System.Delegate::original_method_info MethodInfo_t * ___original_method_info_8; // System.DelegateData System.Delegate::data DelegateData_t1BF9F691B56DAE5F8C28C5E084FDE94F15F27BBE * ___data_9; // System.Boolean System.Delegate::method_is_virtual bool ___method_is_virtual_10; public: inline static int32_t get_offset_of_method_ptr_0() { return static_cast<int32_t>(offsetof(Delegate_t, ___method_ptr_0)); } inline Il2CppMethodPointer get_method_ptr_0() const { return ___method_ptr_0; } inline Il2CppMethodPointer* get_address_of_method_ptr_0() { return &___method_ptr_0; } inline void set_method_ptr_0(Il2CppMethodPointer value) { ___method_ptr_0 = value; } inline static int32_t get_offset_of_invoke_impl_1() { return static_cast<int32_t>(offsetof(Delegate_t, ___invoke_impl_1)); } inline intptr_t get_invoke_impl_1() const { return ___invoke_impl_1; } inline intptr_t* get_address_of_invoke_impl_1() { return &___invoke_impl_1; } inline void set_invoke_impl_1(intptr_t value) { ___invoke_impl_1 = value; } inline static int32_t get_offset_of_m_target_2() { return static_cast<int32_t>(offsetof(Delegate_t, ___m_target_2)); } inline RuntimeObject * get_m_target_2() const { return ___m_target_2; } inline RuntimeObject ** get_address_of_m_target_2() { return &___m_target_2; } inline void set_m_target_2(RuntimeObject * value) { ___m_target_2 = value; Il2CppCodeGenWriteBarrier((&___m_target_2), value); } inline static int32_t get_offset_of_method_3() { return static_cast<int32_t>(offsetof(Delegate_t, ___method_3)); } inline intptr_t get_method_3() const { return ___method_3; } inline intptr_t* get_address_of_method_3() { return &___method_3; } inline void set_method_3(intptr_t value) { ___method_3 = value; } inline static int32_t get_offset_of_delegate_trampoline_4() { return static_cast<int32_t>(offsetof(Delegate_t, ___delegate_trampoline_4)); } inline intptr_t get_delegate_trampoline_4() const { return ___delegate_trampoline_4; } inline intptr_t* get_address_of_delegate_trampoline_4() { return &___delegate_trampoline_4; } inline void set_delegate_trampoline_4(intptr_t value) { ___delegate_trampoline_4 = value; } inline static int32_t get_offset_of_extra_arg_5() { return static_cast<int32_t>(offsetof(Delegate_t, ___extra_arg_5)); } inline intptr_t get_extra_arg_5() const { return ___extra_arg_5; } inline intptr_t* get_address_of_extra_arg_5() { return &___extra_arg_5; } inline void set_extra_arg_5(intptr_t value) { ___extra_arg_5 = value; } inline static int32_t get_offset_of_method_code_6() { return static_cast<int32_t>(offsetof(Delegate_t, ___method_code_6)); } inline intptr_t get_method_code_6() const { return ___method_code_6; } inline intptr_t* get_address_of_method_code_6() { return &___method_code_6; } inline void set_method_code_6(intptr_t value) { ___method_code_6 = value; } inline static int32_t get_offset_of_method_info_7() { return static_cast<int32_t>(offsetof(Delegate_t, ___method_info_7)); } inline MethodInfo_t * get_method_info_7() const { return ___method_info_7; } inline MethodInfo_t ** get_address_of_method_info_7() { return &___method_info_7; } inline void set_method_info_7(MethodInfo_t * value) { ___method_info_7 = value; Il2CppCodeGenWriteBarrier((&___method_info_7), value); } inline static int32_t get_offset_of_original_method_info_8() { return static_cast<int32_t>(offsetof(Delegate_t, ___original_method_info_8)); } inline MethodInfo_t * get_original_method_info_8() const { return ___original_method_info_8; } inline MethodInfo_t ** get_address_of_original_method_info_8() { return &___original_method_info_8; } inline void set_original_method_info_8(MethodInfo_t * value) { ___original_method_info_8 = value; Il2CppCodeGenWriteBarrier((&___original_method_info_8), value); } inline static int32_t get_offset_of_data_9() { return static_cast<int32_t>(offsetof(Delegate_t, ___data_9)); } inline DelegateData_t1BF9F691B56DAE5F8C28C5E084FDE94F15F27BBE * get_data_9() const { return ___data_9; } inline DelegateData_t1BF9F691B56DAE5F8C28C5E084FDE94F15F27BBE ** get_address_of_data_9() { return &___data_9; } inline void set_data_9(DelegateData_t1BF9F691B56DAE5F8C28C5E084FDE94F15F27BBE * value) { ___data_9 = value; Il2CppCodeGenWriteBarrier((&___data_9), value); } inline static int32_t get_offset_of_method_is_virtual_10() { return static_cast<int32_t>(offsetof(Delegate_t, ___method_is_virtual_10)); } inline bool get_method_is_virtual_10() const { return ___method_is_virtual_10; } inline bool* get_address_of_method_is_virtual_10() { return &___method_is_virtual_10; } inline void set_method_is_virtual_10(bool value) { ___method_is_virtual_10 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif // Native definition for P/Invoke marshalling of System.Delegate struct Delegate_t_marshaled_pinvoke { intptr_t ___method_ptr_0; intptr_t ___invoke_impl_1; Il2CppIUnknown* ___m_target_2; intptr_t ___method_3; intptr_t ___delegate_trampoline_4; intptr_t ___extra_arg_5; intptr_t ___method_code_6; MethodInfo_t * ___method_info_7; MethodInfo_t * ___original_method_info_8; DelegateData_t1BF9F691B56DAE5F8C28C5E084FDE94F15F27BBE * ___data_9; int32_t ___method_is_virtual_10; }; // Native definition for COM marshalling of System.Delegate struct Delegate_t_marshaled_com { intptr_t ___method_ptr_0; intptr_t ___invoke_impl_1; Il2CppIUnknown* ___m_target_2; intptr_t ___method_3; intptr_t ___delegate_trampoline_4; intptr_t ___extra_arg_5; intptr_t ___method_code_6; MethodInfo_t * ___method_info_7; MethodInfo_t * ___original_method_info_8; DelegateData_t1BF9F691B56DAE5F8C28C5E084FDE94F15F27BBE * ___data_9; int32_t ___method_is_virtual_10; }; #endif // DELEGATE_T_H #ifndef FORMATEXCEPTION_T2808E076CDE4650AF89F55FD78F49290D0EC5BDC_H #define FORMATEXCEPTION_T2808E076CDE4650AF89F55FD78F49290D0EC5BDC_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.FormatException struct FormatException_t2808E076CDE4650AF89F55FD78F49290D0EC5BDC : public SystemException_t5380468142AA850BE4A341D7AF3EAB9C78746782 { public: public: }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // FORMATEXCEPTION_T2808E076CDE4650AF89F55FD78F49290D0EC5BDC_H #ifndef MEMORYSTREAM_T495F44B85E6B4DDE2BB7E17DE963256A74E2298C_H #define MEMORYSTREAM_T495F44B85E6B4DDE2BB7E17DE963256A74E2298C_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.IO.MemoryStream struct MemoryStream_t495F44B85E6B4DDE2BB7E17DE963256A74E2298C : public Stream_tFC50657DD5AAB87770987F9179D934A51D99D5E7 { public: // System.Byte[] System.IO.MemoryStream::_buffer ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ____buffer_5; // System.Int32 System.IO.MemoryStream::_origin int32_t ____origin_6; // System.Int32 System.IO.MemoryStream::_position int32_t ____position_7; // System.Int32 System.IO.MemoryStream::_length int32_t ____length_8; // System.Int32 System.IO.MemoryStream::_capacity int32_t ____capacity_9; // System.Boolean System.IO.MemoryStream::_expandable bool ____expandable_10; // System.Boolean System.IO.MemoryStream::_writable bool ____writable_11; // System.Boolean System.IO.MemoryStream::_exposable bool ____exposable_12; // System.Boolean System.IO.MemoryStream::_isOpen bool ____isOpen_13; // System.Threading.Tasks.Task`1<System.Int32> System.IO.MemoryStream::_lastReadTask Task_1_t640F0CBB720BB9CD14B90B7B81624471A9F56D87 * ____lastReadTask_14; public: inline static int32_t get_offset_of__buffer_5() { return static_cast<int32_t>(offsetof(MemoryStream_t495F44B85E6B4DDE2BB7E17DE963256A74E2298C, ____buffer_5)); } inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* get__buffer_5() const { return ____buffer_5; } inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821** get_address_of__buffer_5() { return &____buffer_5; } inline void set__buffer_5(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* value) { ____buffer_5 = value; Il2CppCodeGenWriteBarrier((&____buffer_5), value); } inline static int32_t get_offset_of__origin_6() { return static_cast<int32_t>(offsetof(MemoryStream_t495F44B85E6B4DDE2BB7E17DE963256A74E2298C, ____origin_6)); } inline int32_t get__origin_6() const { return ____origin_6; } inline int32_t* get_address_of__origin_6() { return &____origin_6; } inline void set__origin_6(int32_t value) { ____origin_6 = value; } inline static int32_t get_offset_of__position_7() { return static_cast<int32_t>(offsetof(MemoryStream_t495F44B85E6B4DDE2BB7E17DE963256A74E2298C, ____position_7)); } inline int32_t get__position_7() const { return ____position_7; } inline int32_t* get_address_of__position_7() { return &____position_7; } inline void set__position_7(int32_t value) { ____position_7 = value; } inline static int32_t get_offset_of__length_8() { return static_cast<int32_t>(offsetof(MemoryStream_t495F44B85E6B4DDE2BB7E17DE963256A74E2298C, ____length_8)); } inline int32_t get__length_8() const { return ____length_8; } inline int32_t* get_address_of__length_8() { return &____length_8; } inline void set__length_8(int32_t value) { ____length_8 = value; } inline static int32_t get_offset_of__capacity_9() { return static_cast<int32_t>(offsetof(MemoryStream_t495F44B85E6B4DDE2BB7E17DE963256A74E2298C, ____capacity_9)); } inline int32_t get__capacity_9() const { return ____capacity_9; } inline int32_t* get_address_of__capacity_9() { return &____capacity_9; } inline void set__capacity_9(int32_t value) { ____capacity_9 = value; } inline static int32_t get_offset_of__expandable_10() { return static_cast<int32_t>(offsetof(MemoryStream_t495F44B85E6B4DDE2BB7E17DE963256A74E2298C, ____expandable_10)); } inline bool get__expandable_10() const { return ____expandable_10; } inline bool* get_address_of__expandable_10() { return &____expandable_10; } inline void set__expandable_10(bool value) { ____expandable_10 = value; } inline static int32_t get_offset_of__writable_11() { return static_cast<int32_t>(offsetof(MemoryStream_t495F44B85E6B4DDE2BB7E17DE963256A74E2298C, ____writable_11)); } inline bool get__writable_11() const { return ____writable_11; } inline bool* get_address_of__writable_11() { return &____writable_11; } inline void set__writable_11(bool value) { ____writable_11 = value; } inline static int32_t get_offset_of__exposable_12() { return static_cast<int32_t>(offsetof(MemoryStream_t495F44B85E6B4DDE2BB7E17DE963256A74E2298C, ____exposable_12)); } inline bool get__exposable_12() const { return ____exposable_12; } inline bool* get_address_of__exposable_12() { return &____exposable_12; } inline void set__exposable_12(bool value) { ____exposable_12 = value; } inline static int32_t get_offset_of__isOpen_13() { return static_cast<int32_t>(offsetof(MemoryStream_t495F44B85E6B4DDE2BB7E17DE963256A74E2298C, ____isOpen_13)); } inline bool get__isOpen_13() const { return ____isOpen_13; } inline bool* get_address_of__isOpen_13() { return &____isOpen_13; } inline void set__isOpen_13(bool value) { ____isOpen_13 = value; } inline static int32_t get_offset_of__lastReadTask_14() { return static_cast<int32_t>(offsetof(MemoryStream_t495F44B85E6B4DDE2BB7E17DE963256A74E2298C, ____lastReadTask_14)); } inline Task_1_t640F0CBB720BB9CD14B90B7B81624471A9F56D87 * get__lastReadTask_14() const { return ____lastReadTask_14; } inline Task_1_t640F0CBB720BB9CD14B90B7B81624471A9F56D87 ** get_address_of__lastReadTask_14() { return &____lastReadTask_14; } inline void set__lastReadTask_14(Task_1_t640F0CBB720BB9CD14B90B7B81624471A9F56D87 * value) { ____lastReadTask_14 = value; Il2CppCodeGenWriteBarrier((&____lastReadTask_14), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // MEMORYSTREAM_T495F44B85E6B4DDE2BB7E17DE963256A74E2298C_H #ifndef INVALIDOPERATIONEXCEPTION_T0530E734D823F78310CAFAFA424CA5164D93A1F1_H #define INVALIDOPERATIONEXCEPTION_T0530E734D823F78310CAFAFA424CA5164D93A1F1_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.InvalidOperationException struct InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 : public SystemException_t5380468142AA850BE4A341D7AF3EAB9C78746782 { public: public: }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // INVALIDOPERATIONEXCEPTION_T0530E734D823F78310CAFAFA424CA5164D93A1F1_H #ifndef STRINGCOMPARISON_T02BAA95468CE9E91115C604577611FDF58FEDCF0_H #define STRINGCOMPARISON_T02BAA95468CE9E91115C604577611FDF58FEDCF0_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.StringComparison struct StringComparison_t02BAA95468CE9E91115C604577611FDF58FEDCF0 { public: // System.Int32 System.StringComparison::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(StringComparison_t02BAA95468CE9E91115C604577611FDF58FEDCF0, ___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 #endif // STRINGCOMPARISON_T02BAA95468CE9E91115C604577611FDF58FEDCF0_H #ifndef REGEXOPTIONS_T9A6138CDA9C60924D503C584095349F008C52EA1_H #define REGEXOPTIONS_T9A6138CDA9C60924D503C584095349F008C52EA1_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Text.RegularExpressions.RegexOptions struct RegexOptions_t9A6138CDA9C60924D503C584095349F008C52EA1 { public: // System.Int32 System.Text.RegularExpressions.RegexOptions::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(RegexOptions_t9A6138CDA9C60924D503C584095349F008C52EA1, ___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 #endif // REGEXOPTIONS_T9A6138CDA9C60924D503C584095349F008C52EA1_H #ifndef TIMESPAN_TA8069278ACE8A74D6DF7D514A9CD4432433F64C4_H #define TIMESPAN_TA8069278ACE8A74D6DF7D514A9CD4432433F64C4_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.TimeSpan struct TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 { public: // System.Int64 System.TimeSpan::_ticks int64_t ____ticks_3; public: inline static int32_t get_offset_of__ticks_3() { return static_cast<int32_t>(offsetof(TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4, ____ticks_3)); } inline int64_t get__ticks_3() const { return ____ticks_3; } inline int64_t* get_address_of__ticks_3() { return &____ticks_3; } inline void set__ticks_3(int64_t value) { ____ticks_3 = value; } }; struct TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4_StaticFields { public: // System.TimeSpan System.TimeSpan::Zero TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 ___Zero_0; // System.TimeSpan System.TimeSpan::MaxValue TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 ___MaxValue_1; // System.TimeSpan System.TimeSpan::MinValue TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 ___MinValue_2; // System.Boolean modreq(System.Runtime.CompilerServices.IsVolatile) System.TimeSpan::_legacyConfigChecked bool ____legacyConfigChecked_4; // System.Boolean modreq(System.Runtime.CompilerServices.IsVolatile) System.TimeSpan::_legacyMode bool ____legacyMode_5; public: inline static int32_t get_offset_of_Zero_0() { return static_cast<int32_t>(offsetof(TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4_StaticFields, ___Zero_0)); } inline TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 get_Zero_0() const { return ___Zero_0; } inline TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 * get_address_of_Zero_0() { return &___Zero_0; } inline void set_Zero_0(TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 value) { ___Zero_0 = value; } inline static int32_t get_offset_of_MaxValue_1() { return static_cast<int32_t>(offsetof(TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4_StaticFields, ___MaxValue_1)); } inline TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 get_MaxValue_1() const { return ___MaxValue_1; } inline TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 * get_address_of_MaxValue_1() { return &___MaxValue_1; } inline void set_MaxValue_1(TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 value) { ___MaxValue_1 = value; } inline static int32_t get_offset_of_MinValue_2() { return static_cast<int32_t>(offsetof(TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4_StaticFields, ___MinValue_2)); } inline TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 get_MinValue_2() const { return ___MinValue_2; } inline TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 * get_address_of_MinValue_2() { return &___MinValue_2; } inline void set_MinValue_2(TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 value) { ___MinValue_2 = value; } inline static int32_t get_offset_of__legacyConfigChecked_4() { return static_cast<int32_t>(offsetof(TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4_StaticFields, ____legacyConfigChecked_4)); } inline bool get__legacyConfigChecked_4() const { return ____legacyConfigChecked_4; } inline bool* get_address_of__legacyConfigChecked_4() { return &____legacyConfigChecked_4; } inline void set__legacyConfigChecked_4(bool value) { ____legacyConfigChecked_4 = value; } inline static int32_t get_offset_of__legacyMode_5() { return static_cast<int32_t>(offsetof(TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4_StaticFields, ____legacyMode_5)); } inline bool get__legacyMode_5() const { return ____legacyMode_5; } inline bool* get_address_of__legacyMode_5() { return &____legacyMode_5; } inline void set__legacyMode_5(bool value) { ____legacyMode_5 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // TIMESPAN_TA8069278ACE8A74D6DF7D514A9CD4432433F64C4_H #ifndef FLAGS_TEBE7CABEBD13F16920D6950B384EB8F988250A2A_H #define FLAGS_TEBE7CABEBD13F16920D6950B384EB8F988250A2A_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Uri_Flags struct Flags_tEBE7CABEBD13F16920D6950B384EB8F988250A2A { public: // System.UInt64 System.Uri_Flags::value__ uint64_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(Flags_tEBE7CABEBD13F16920D6950B384EB8F988250A2A, ___value___2)); } inline uint64_t get_value___2() const { return ___value___2; } inline uint64_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(uint64_t value) { ___value___2 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // FLAGS_TEBE7CABEBD13F16920D6950B384EB8F988250A2A_H #ifndef URIIDNSCOPE_TE1574B39C7492C761EFE2FC12DDE82DE013AC9D1_H #define URIIDNSCOPE_TE1574B39C7492C761EFE2FC12DDE82DE013AC9D1_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.UriIdnScope struct UriIdnScope_tE1574B39C7492C761EFE2FC12DDE82DE013AC9D1 { public: // System.Int32 System.UriIdnScope::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(UriIdnScope_tE1574B39C7492C761EFE2FC12DDE82DE013AC9D1, ___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 #endif // URIIDNSCOPE_TE1574B39C7492C761EFE2FC12DDE82DE013AC9D1_H #ifndef URIKIND_T26D0760DDF148ADC939FECD934C0B9FF5C71EA08_H #define URIKIND_T26D0760DDF148ADC939FECD934C0B9FF5C71EA08_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.UriKind struct UriKind_t26D0760DDF148ADC939FECD934C0B9FF5C71EA08 { public: // System.Int32 System.UriKind::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(UriKind_t26D0760DDF148ADC939FECD934C0B9FF5C71EA08, ___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 #endif // URIKIND_T26D0760DDF148ADC939FECD934C0B9FF5C71EA08_H #ifndef ASYNCOPERATION_T304C51ABED8AE734CC8DDDFE13013D8D5A44641D_H #define ASYNCOPERATION_T304C51ABED8AE734CC8DDDFE13013D8D5A44641D_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // UnityEngine.AsyncOperation struct AsyncOperation_t304C51ABED8AE734CC8DDDFE13013D8D5A44641D : public YieldInstruction_t836035AC7BD07A3C7909F7AD2A5B42DE99D91C44 { public: // System.IntPtr UnityEngine.AsyncOperation::m_Ptr intptr_t ___m_Ptr_0; // System.Action`1<UnityEngine.AsyncOperation> UnityEngine.AsyncOperation::m_completeCallback Action_1_tCBF754C290FAE894631BED8FD56E9E22C4C187F9 * ___m_completeCallback_1; public: inline static int32_t get_offset_of_m_Ptr_0() { return static_cast<int32_t>(offsetof(AsyncOperation_t304C51ABED8AE734CC8DDDFE13013D8D5A44641D, ___m_Ptr_0)); } inline intptr_t get_m_Ptr_0() const { return ___m_Ptr_0; } inline intptr_t* get_address_of_m_Ptr_0() { return &___m_Ptr_0; } inline void set_m_Ptr_0(intptr_t value) { ___m_Ptr_0 = value; } inline static int32_t get_offset_of_m_completeCallback_1() { return static_cast<int32_t>(offsetof(AsyncOperation_t304C51ABED8AE734CC8DDDFE13013D8D5A44641D, ___m_completeCallback_1)); } inline Action_1_tCBF754C290FAE894631BED8FD56E9E22C4C187F9 * get_m_completeCallback_1() const { return ___m_completeCallback_1; } inline Action_1_tCBF754C290FAE894631BED8FD56E9E22C4C187F9 ** get_address_of_m_completeCallback_1() { return &___m_completeCallback_1; } inline void set_m_completeCallback_1(Action_1_tCBF754C290FAE894631BED8FD56E9E22C4C187F9 * value) { ___m_completeCallback_1 = value; Il2CppCodeGenWriteBarrier((&___m_completeCallback_1), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif // Native definition for P/Invoke marshalling of UnityEngine.AsyncOperation struct AsyncOperation_t304C51ABED8AE734CC8DDDFE13013D8D5A44641D_marshaled_pinvoke : public YieldInstruction_t836035AC7BD07A3C7909F7AD2A5B42DE99D91C44_marshaled_pinvoke { intptr_t ___m_Ptr_0; Il2CppMethodPointer ___m_completeCallback_1; }; // Native definition for COM marshalling of UnityEngine.AsyncOperation struct AsyncOperation_t304C51ABED8AE734CC8DDDFE13013D8D5A44641D_marshaled_com : public YieldInstruction_t836035AC7BD07A3C7909F7AD2A5B42DE99D91C44_marshaled_com { intptr_t ___m_Ptr_0; Il2CppMethodPointer ___m_completeCallback_1; }; #endif // ASYNCOPERATION_T304C51ABED8AE734CC8DDDFE13013D8D5A44641D_H #ifndef CERTIFICATEHANDLER_TBD070BF4150A44AB482FD36EA3882C363117E8C0_H #define CERTIFICATEHANDLER_TBD070BF4150A44AB482FD36EA3882C363117E8C0_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // UnityEngine.Networking.CertificateHandler struct CertificateHandler_tBD070BF4150A44AB482FD36EA3882C363117E8C0 : public RuntimeObject { public: // System.IntPtr UnityEngine.Networking.CertificateHandler::m_Ptr intptr_t ___m_Ptr_0; public: inline static int32_t get_offset_of_m_Ptr_0() { return static_cast<int32_t>(offsetof(CertificateHandler_tBD070BF4150A44AB482FD36EA3882C363117E8C0, ___m_Ptr_0)); } inline intptr_t get_m_Ptr_0() const { return ___m_Ptr_0; } inline intptr_t* get_address_of_m_Ptr_0() { return &___m_Ptr_0; } inline void set_m_Ptr_0(intptr_t value) { ___m_Ptr_0 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif // Native definition for P/Invoke marshalling of UnityEngine.Networking.CertificateHandler struct CertificateHandler_tBD070BF4150A44AB482FD36EA3882C363117E8C0_marshaled_pinvoke { intptr_t ___m_Ptr_0; }; // Native definition for COM marshalling of UnityEngine.Networking.CertificateHandler struct CertificateHandler_tBD070BF4150A44AB482FD36EA3882C363117E8C0_marshaled_com { intptr_t ___m_Ptr_0; }; #endif // CERTIFICATEHANDLER_TBD070BF4150A44AB482FD36EA3882C363117E8C0_H #ifndef DOWNLOADHANDLER_T4A7802ADC97024B469C87FA454B6973951980EE9_H #define DOWNLOADHANDLER_T4A7802ADC97024B469C87FA454B6973951980EE9_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // UnityEngine.Networking.DownloadHandler struct DownloadHandler_t4A7802ADC97024B469C87FA454B6973951980EE9 : public RuntimeObject { public: // System.IntPtr UnityEngine.Networking.DownloadHandler::m_Ptr intptr_t ___m_Ptr_0; public: inline static int32_t get_offset_of_m_Ptr_0() { return static_cast<int32_t>(offsetof(DownloadHandler_t4A7802ADC97024B469C87FA454B6973951980EE9, ___m_Ptr_0)); } inline intptr_t get_m_Ptr_0() const { return ___m_Ptr_0; } inline intptr_t* get_address_of_m_Ptr_0() { return &___m_Ptr_0; } inline void set_m_Ptr_0(intptr_t value) { ___m_Ptr_0 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif // Native definition for P/Invoke marshalling of UnityEngine.Networking.DownloadHandler struct DownloadHandler_t4A7802ADC97024B469C87FA454B6973951980EE9_marshaled_pinvoke { intptr_t ___m_Ptr_0; }; // Native definition for COM marshalling of UnityEngine.Networking.DownloadHandler struct DownloadHandler_t4A7802ADC97024B469C87FA454B6973951980EE9_marshaled_com { intptr_t ___m_Ptr_0; }; #endif // DOWNLOADHANDLER_T4A7802ADC97024B469C87FA454B6973951980EE9_H #ifndef UNITYWEBREQUESTERROR_T0FD8E16D965B4EA8BECD6C42C6BFEA8506E4C327_H #define UNITYWEBREQUESTERROR_T0FD8E16D965B4EA8BECD6C42C6BFEA8506E4C327_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // UnityEngine.Networking.UnityWebRequest_UnityWebRequestError struct UnityWebRequestError_t0FD8E16D965B4EA8BECD6C42C6BFEA8506E4C327 { public: // System.Int32 UnityEngine.Networking.UnityWebRequest_UnityWebRequestError::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(UnityWebRequestError_t0FD8E16D965B4EA8BECD6C42C6BFEA8506E4C327, ___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 #endif // UNITYWEBREQUESTERROR_T0FD8E16D965B4EA8BECD6C42C6BFEA8506E4C327_H #ifndef UNITYWEBREQUESTMETHOD_T704B7938E8655E8FEDDE169AD54B962166142118_H #define UNITYWEBREQUESTMETHOD_T704B7938E8655E8FEDDE169AD54B962166142118_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // UnityEngine.Networking.UnityWebRequest_UnityWebRequestMethod struct UnityWebRequestMethod_t704B7938E8655E8FEDDE169AD54B962166142118 { public: // System.Int32 UnityEngine.Networking.UnityWebRequest_UnityWebRequestMethod::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast<int32_t>(offsetof(UnityWebRequestMethod_t704B7938E8655E8FEDDE169AD54B962166142118, ___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 #endif // UNITYWEBREQUESTMETHOD_T704B7938E8655E8FEDDE169AD54B962166142118_H #ifndef UPLOADHANDLER_T24F4097D30A1E7C689D8881A27F251B4741601E4_H #define UPLOADHANDLER_T24F4097D30A1E7C689D8881A27F251B4741601E4_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // UnityEngine.Networking.UploadHandler struct UploadHandler_t24F4097D30A1E7C689D8881A27F251B4741601E4 : public RuntimeObject { public: // System.IntPtr UnityEngine.Networking.UploadHandler::m_Ptr intptr_t ___m_Ptr_0; public: inline static int32_t get_offset_of_m_Ptr_0() { return static_cast<int32_t>(offsetof(UploadHandler_t24F4097D30A1E7C689D8881A27F251B4741601E4, ___m_Ptr_0)); } inline intptr_t get_m_Ptr_0() const { return ___m_Ptr_0; } inline intptr_t* get_address_of_m_Ptr_0() { return &___m_Ptr_0; } inline void set_m_Ptr_0(intptr_t value) { ___m_Ptr_0 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif // Native definition for P/Invoke marshalling of UnityEngine.Networking.UploadHandler struct UploadHandler_t24F4097D30A1E7C689D8881A27F251B4741601E4_marshaled_pinvoke { intptr_t ___m_Ptr_0; }; // Native definition for COM marshalling of UnityEngine.Networking.UploadHandler struct UploadHandler_t24F4097D30A1E7C689D8881A27F251B4741601E4_marshaled_com { intptr_t ___m_Ptr_0; }; #endif // UPLOADHANDLER_T24F4097D30A1E7C689D8881A27F251B4741601E4_H #ifndef MULTICASTDELEGATE_T_H #define MULTICASTDELEGATE_T_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.MulticastDelegate struct MulticastDelegate_t : public Delegate_t { public: // System.Delegate[] System.MulticastDelegate::delegates DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86* ___delegates_11; public: inline static int32_t get_offset_of_delegates_11() { return static_cast<int32_t>(offsetof(MulticastDelegate_t, ___delegates_11)); } inline DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86* get_delegates_11() const { return ___delegates_11; } inline DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86** get_address_of_delegates_11() { return &___delegates_11; } inline void set_delegates_11(DelegateU5BU5D_tDFCDEE2A6322F96C0FE49AF47E9ADB8C4B294E86* value) { ___delegates_11 = value; Il2CppCodeGenWriteBarrier((&___delegates_11), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif // Native definition for P/Invoke marshalling of System.MulticastDelegate struct MulticastDelegate_t_marshaled_pinvoke : public Delegate_t_marshaled_pinvoke { Delegate_t_marshaled_pinvoke** ___delegates_11; }; // Native definition for COM marshalling of System.MulticastDelegate struct MulticastDelegate_t_marshaled_com : public Delegate_t_marshaled_com { Delegate_t_marshaled_com** ___delegates_11; }; #endif // MULTICASTDELEGATE_T_H #ifndef REGEX_TFD46E63A462E852189FD6AB4E2B0B67C4D8FDBDF_H #define REGEX_TFD46E63A462E852189FD6AB4E2B0B67C4D8FDBDF_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Text.RegularExpressions.Regex struct Regex_tFD46E63A462E852189FD6AB4E2B0B67C4D8FDBDF : public RuntimeObject { public: // System.String System.Text.RegularExpressions.Regex::pattern String_t* ___pattern_0; // System.Text.RegularExpressions.RegexRunnerFactory System.Text.RegularExpressions.Regex::factory RegexRunnerFactory_t0703F390E2102623B0189DEC095DB182698E404B * ___factory_1; // System.Text.RegularExpressions.RegexOptions System.Text.RegularExpressions.Regex::roptions int32_t ___roptions_2; // System.TimeSpan System.Text.RegularExpressions.Regex::internalMatchTimeout TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 ___internalMatchTimeout_5; // System.Collections.Hashtable System.Text.RegularExpressions.Regex::caps Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * ___caps_8; // System.Collections.Hashtable System.Text.RegularExpressions.Regex::capnames Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * ___capnames_9; // System.String[] System.Text.RegularExpressions.Regex::capslist StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* ___capslist_10; // System.Int32 System.Text.RegularExpressions.Regex::capsize int32_t ___capsize_11; // System.Text.RegularExpressions.ExclusiveReference System.Text.RegularExpressions.Regex::runnerref ExclusiveReference_t39E202CDB13A1E6EBA4CE0C7548B192CEB5C64DB * ___runnerref_12; // System.Text.RegularExpressions.SharedReference System.Text.RegularExpressions.Regex::replref SharedReference_t225BA5C249F9F1D6C959F151695BDF65EF2C92A5 * ___replref_13; // System.Text.RegularExpressions.RegexCode System.Text.RegularExpressions.Regex::code RegexCode_t12846533CAD1E4221CEDF5A4D15D4D649EA688FA * ___code_14; // System.Boolean System.Text.RegularExpressions.Regex::refsInitialized bool ___refsInitialized_15; public: inline static int32_t get_offset_of_pattern_0() { return static_cast<int32_t>(offsetof(Regex_tFD46E63A462E852189FD6AB4E2B0B67C4D8FDBDF, ___pattern_0)); } inline String_t* get_pattern_0() const { return ___pattern_0; } inline String_t** get_address_of_pattern_0() { return &___pattern_0; } inline void set_pattern_0(String_t* value) { ___pattern_0 = value; Il2CppCodeGenWriteBarrier((&___pattern_0), value); } inline static int32_t get_offset_of_factory_1() { return static_cast<int32_t>(offsetof(Regex_tFD46E63A462E852189FD6AB4E2B0B67C4D8FDBDF, ___factory_1)); } inline RegexRunnerFactory_t0703F390E2102623B0189DEC095DB182698E404B * get_factory_1() const { return ___factory_1; } inline RegexRunnerFactory_t0703F390E2102623B0189DEC095DB182698E404B ** get_address_of_factory_1() { return &___factory_1; } inline void set_factory_1(RegexRunnerFactory_t0703F390E2102623B0189DEC095DB182698E404B * value) { ___factory_1 = value; Il2CppCodeGenWriteBarrier((&___factory_1), value); } inline static int32_t get_offset_of_roptions_2() { return static_cast<int32_t>(offsetof(Regex_tFD46E63A462E852189FD6AB4E2B0B67C4D8FDBDF, ___roptions_2)); } inline int32_t get_roptions_2() const { return ___roptions_2; } inline int32_t* get_address_of_roptions_2() { return &___roptions_2; } inline void set_roptions_2(int32_t value) { ___roptions_2 = value; } inline static int32_t get_offset_of_internalMatchTimeout_5() { return static_cast<int32_t>(offsetof(Regex_tFD46E63A462E852189FD6AB4E2B0B67C4D8FDBDF, ___internalMatchTimeout_5)); } inline TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 get_internalMatchTimeout_5() const { return ___internalMatchTimeout_5; } inline TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 * get_address_of_internalMatchTimeout_5() { return &___internalMatchTimeout_5; } inline void set_internalMatchTimeout_5(TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 value) { ___internalMatchTimeout_5 = value; } inline static int32_t get_offset_of_caps_8() { return static_cast<int32_t>(offsetof(Regex_tFD46E63A462E852189FD6AB4E2B0B67C4D8FDBDF, ___caps_8)); } inline Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * get_caps_8() const { return ___caps_8; } inline Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 ** get_address_of_caps_8() { return &___caps_8; } inline void set_caps_8(Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * value) { ___caps_8 = value; Il2CppCodeGenWriteBarrier((&___caps_8), value); } inline static int32_t get_offset_of_capnames_9() { return static_cast<int32_t>(offsetof(Regex_tFD46E63A462E852189FD6AB4E2B0B67C4D8FDBDF, ___capnames_9)); } inline Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * get_capnames_9() const { return ___capnames_9; } inline Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 ** get_address_of_capnames_9() { return &___capnames_9; } inline void set_capnames_9(Hashtable_t978F65B8006C8F5504B286526AEC6608FF983FC9 * value) { ___capnames_9 = value; Il2CppCodeGenWriteBarrier((&___capnames_9), value); } inline static int32_t get_offset_of_capslist_10() { return static_cast<int32_t>(offsetof(Regex_tFD46E63A462E852189FD6AB4E2B0B67C4D8FDBDF, ___capslist_10)); } inline StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* get_capslist_10() const { return ___capslist_10; } inline StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E** get_address_of_capslist_10() { return &___capslist_10; } inline void set_capslist_10(StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* value) { ___capslist_10 = value; Il2CppCodeGenWriteBarrier((&___capslist_10), value); } inline static int32_t get_offset_of_capsize_11() { return static_cast<int32_t>(offsetof(Regex_tFD46E63A462E852189FD6AB4E2B0B67C4D8FDBDF, ___capsize_11)); } inline int32_t get_capsize_11() const { return ___capsize_11; } inline int32_t* get_address_of_capsize_11() { return &___capsize_11; } inline void set_capsize_11(int32_t value) { ___capsize_11 = value; } inline static int32_t get_offset_of_runnerref_12() { return static_cast<int32_t>(offsetof(Regex_tFD46E63A462E852189FD6AB4E2B0B67C4D8FDBDF, ___runnerref_12)); } inline ExclusiveReference_t39E202CDB13A1E6EBA4CE0C7548B192CEB5C64DB * get_runnerref_12() const { return ___runnerref_12; } inline ExclusiveReference_t39E202CDB13A1E6EBA4CE0C7548B192CEB5C64DB ** get_address_of_runnerref_12() { return &___runnerref_12; } inline void set_runnerref_12(ExclusiveReference_t39E202CDB13A1E6EBA4CE0C7548B192CEB5C64DB * value) { ___runnerref_12 = value; Il2CppCodeGenWriteBarrier((&___runnerref_12), value); } inline static int32_t get_offset_of_replref_13() { return static_cast<int32_t>(offsetof(Regex_tFD46E63A462E852189FD6AB4E2B0B67C4D8FDBDF, ___replref_13)); } inline SharedReference_t225BA5C249F9F1D6C959F151695BDF65EF2C92A5 * get_replref_13() const { return ___replref_13; } inline SharedReference_t225BA5C249F9F1D6C959F151695BDF65EF2C92A5 ** get_address_of_replref_13() { return &___replref_13; } inline void set_replref_13(SharedReference_t225BA5C249F9F1D6C959F151695BDF65EF2C92A5 * value) { ___replref_13 = value; Il2CppCodeGenWriteBarrier((&___replref_13), value); } inline static int32_t get_offset_of_code_14() { return static_cast<int32_t>(offsetof(Regex_tFD46E63A462E852189FD6AB4E2B0B67C4D8FDBDF, ___code_14)); } inline RegexCode_t12846533CAD1E4221CEDF5A4D15D4D649EA688FA * get_code_14() const { return ___code_14; } inline RegexCode_t12846533CAD1E4221CEDF5A4D15D4D649EA688FA ** get_address_of_code_14() { return &___code_14; } inline void set_code_14(RegexCode_t12846533CAD1E4221CEDF5A4D15D4D649EA688FA * value) { ___code_14 = value; Il2CppCodeGenWriteBarrier((&___code_14), value); } inline static int32_t get_offset_of_refsInitialized_15() { return static_cast<int32_t>(offsetof(Regex_tFD46E63A462E852189FD6AB4E2B0B67C4D8FDBDF, ___refsInitialized_15)); } inline bool get_refsInitialized_15() const { return ___refsInitialized_15; } inline bool* get_address_of_refsInitialized_15() { return &___refsInitialized_15; } inline void set_refsInitialized_15(bool value) { ___refsInitialized_15 = value; } }; struct Regex_tFD46E63A462E852189FD6AB4E2B0B67C4D8FDBDF_StaticFields { public: // System.TimeSpan System.Text.RegularExpressions.Regex::MaximumMatchTimeout TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 ___MaximumMatchTimeout_3; // System.TimeSpan System.Text.RegularExpressions.Regex::InfiniteMatchTimeout TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 ___InfiniteMatchTimeout_4; // System.TimeSpan System.Text.RegularExpressions.Regex::FallbackDefaultMatchTimeout TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 ___FallbackDefaultMatchTimeout_6; // System.TimeSpan System.Text.RegularExpressions.Regex::DefaultMatchTimeout TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 ___DefaultMatchTimeout_7; // System.Collections.Generic.LinkedList`1<System.Text.RegularExpressions.CachedCodeEntry> System.Text.RegularExpressions.Regex::livecode LinkedList_1_t44CA4EB2162DC04F96F29C8A68A05D05166137F7 * ___livecode_16; // System.Int32 System.Text.RegularExpressions.Regex::cacheSize int32_t ___cacheSize_17; public: inline static int32_t get_offset_of_MaximumMatchTimeout_3() { return static_cast<int32_t>(offsetof(Regex_tFD46E63A462E852189FD6AB4E2B0B67C4D8FDBDF_StaticFields, ___MaximumMatchTimeout_3)); } inline TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 get_MaximumMatchTimeout_3() const { return ___MaximumMatchTimeout_3; } inline TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 * get_address_of_MaximumMatchTimeout_3() { return &___MaximumMatchTimeout_3; } inline void set_MaximumMatchTimeout_3(TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 value) { ___MaximumMatchTimeout_3 = value; } inline static int32_t get_offset_of_InfiniteMatchTimeout_4() { return static_cast<int32_t>(offsetof(Regex_tFD46E63A462E852189FD6AB4E2B0B67C4D8FDBDF_StaticFields, ___InfiniteMatchTimeout_4)); } inline TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 get_InfiniteMatchTimeout_4() const { return ___InfiniteMatchTimeout_4; } inline TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 * get_address_of_InfiniteMatchTimeout_4() { return &___InfiniteMatchTimeout_4; } inline void set_InfiniteMatchTimeout_4(TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 value) { ___InfiniteMatchTimeout_4 = value; } inline static int32_t get_offset_of_FallbackDefaultMatchTimeout_6() { return static_cast<int32_t>(offsetof(Regex_tFD46E63A462E852189FD6AB4E2B0B67C4D8FDBDF_StaticFields, ___FallbackDefaultMatchTimeout_6)); } inline TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 get_FallbackDefaultMatchTimeout_6() const { return ___FallbackDefaultMatchTimeout_6; } inline TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 * get_address_of_FallbackDefaultMatchTimeout_6() { return &___FallbackDefaultMatchTimeout_6; } inline void set_FallbackDefaultMatchTimeout_6(TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 value) { ___FallbackDefaultMatchTimeout_6 = value; } inline static int32_t get_offset_of_DefaultMatchTimeout_7() { return static_cast<int32_t>(offsetof(Regex_tFD46E63A462E852189FD6AB4E2B0B67C4D8FDBDF_StaticFields, ___DefaultMatchTimeout_7)); } inline TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 get_DefaultMatchTimeout_7() const { return ___DefaultMatchTimeout_7; } inline TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 * get_address_of_DefaultMatchTimeout_7() { return &___DefaultMatchTimeout_7; } inline void set_DefaultMatchTimeout_7(TimeSpan_tA8069278ACE8A74D6DF7D514A9CD4432433F64C4 value) { ___DefaultMatchTimeout_7 = value; } inline static int32_t get_offset_of_livecode_16() { return static_cast<int32_t>(offsetof(Regex_tFD46E63A462E852189FD6AB4E2B0B67C4D8FDBDF_StaticFields, ___livecode_16)); } inline LinkedList_1_t44CA4EB2162DC04F96F29C8A68A05D05166137F7 * get_livecode_16() const { return ___livecode_16; } inline LinkedList_1_t44CA4EB2162DC04F96F29C8A68A05D05166137F7 ** get_address_of_livecode_16() { return &___livecode_16; } inline void set_livecode_16(LinkedList_1_t44CA4EB2162DC04F96F29C8A68A05D05166137F7 * value) { ___livecode_16 = value; Il2CppCodeGenWriteBarrier((&___livecode_16), value); } inline static int32_t get_offset_of_cacheSize_17() { return static_cast<int32_t>(offsetof(Regex_tFD46E63A462E852189FD6AB4E2B0B67C4D8FDBDF_StaticFields, ___cacheSize_17)); } inline int32_t get_cacheSize_17() const { return ___cacheSize_17; } inline int32_t* get_address_of_cacheSize_17() { return &___cacheSize_17; } inline void set_cacheSize_17(int32_t value) { ___cacheSize_17 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // REGEX_TFD46E63A462E852189FD6AB4E2B0B67C4D8FDBDF_H #ifndef URI_T87E4A94B2901F5EEDD18AA72C3DB1B00E672D68E_H #define URI_T87E4A94B2901F5EEDD18AA72C3DB1B00E672D68E_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Uri struct Uri_t87E4A94B2901F5EEDD18AA72C3DB1B00E672D68E : public RuntimeObject { public: // System.String System.Uri::m_String String_t* ___m_String_13; // System.String System.Uri::m_originalUnicodeString String_t* ___m_originalUnicodeString_14; // System.UriParser System.Uri::m_Syntax UriParser_t07C77D673CCE8D2DA253B8A7ACCB010147F1A4AC * ___m_Syntax_15; // System.String System.Uri::m_DnsSafeHost String_t* ___m_DnsSafeHost_16; // System.Uri_Flags System.Uri::m_Flags uint64_t ___m_Flags_17; // System.Uri_UriInfo System.Uri::m_Info UriInfo_t9FCC6BD4EC1EA14D75209E6A35417057BF6EDC5E * ___m_Info_18; // System.Boolean System.Uri::m_iriParsing bool ___m_iriParsing_19; public: inline static int32_t get_offset_of_m_String_13() { return static_cast<int32_t>(offsetof(Uri_t87E4A94B2901F5EEDD18AA72C3DB1B00E672D68E, ___m_String_13)); } inline String_t* get_m_String_13() const { return ___m_String_13; } inline String_t** get_address_of_m_String_13() { return &___m_String_13; } inline void set_m_String_13(String_t* value) { ___m_String_13 = value; Il2CppCodeGenWriteBarrier((&___m_String_13), value); } inline static int32_t get_offset_of_m_originalUnicodeString_14() { return static_cast<int32_t>(offsetof(Uri_t87E4A94B2901F5EEDD18AA72C3DB1B00E672D68E, ___m_originalUnicodeString_14)); } inline String_t* get_m_originalUnicodeString_14() const { return ___m_originalUnicodeString_14; } inline String_t** get_address_of_m_originalUnicodeString_14() { return &___m_originalUnicodeString_14; } inline void set_m_originalUnicodeString_14(String_t* value) { ___m_originalUnicodeString_14 = value; Il2CppCodeGenWriteBarrier((&___m_originalUnicodeString_14), value); } inline static int32_t get_offset_of_m_Syntax_15() { return static_cast<int32_t>(offsetof(Uri_t87E4A94B2901F5EEDD18AA72C3DB1B00E672D68E, ___m_Syntax_15)); } inline UriParser_t07C77D673CCE8D2DA253B8A7ACCB010147F1A4AC * get_m_Syntax_15() const { return ___m_Syntax_15; } inline UriParser_t07C77D673CCE8D2DA253B8A7ACCB010147F1A4AC ** get_address_of_m_Syntax_15() { return &___m_Syntax_15; } inline void set_m_Syntax_15(UriParser_t07C77D673CCE8D2DA253B8A7ACCB010147F1A4AC * value) { ___m_Syntax_15 = value; Il2CppCodeGenWriteBarrier((&___m_Syntax_15), value); } inline static int32_t get_offset_of_m_DnsSafeHost_16() { return static_cast<int32_t>(offsetof(Uri_t87E4A94B2901F5EEDD18AA72C3DB1B00E672D68E, ___m_DnsSafeHost_16)); } inline String_t* get_m_DnsSafeHost_16() const { return ___m_DnsSafeHost_16; } inline String_t** get_address_of_m_DnsSafeHost_16() { return &___m_DnsSafeHost_16; } inline void set_m_DnsSafeHost_16(String_t* value) { ___m_DnsSafeHost_16 = value; Il2CppCodeGenWriteBarrier((&___m_DnsSafeHost_16), value); } inline static int32_t get_offset_of_m_Flags_17() { return static_cast<int32_t>(offsetof(Uri_t87E4A94B2901F5EEDD18AA72C3DB1B00E672D68E, ___m_Flags_17)); } inline uint64_t get_m_Flags_17() const { return ___m_Flags_17; } inline uint64_t* get_address_of_m_Flags_17() { return &___m_Flags_17; } inline void set_m_Flags_17(uint64_t value) { ___m_Flags_17 = value; } inline static int32_t get_offset_of_m_Info_18() { return static_cast<int32_t>(offsetof(Uri_t87E4A94B2901F5EEDD18AA72C3DB1B00E672D68E, ___m_Info_18)); } inline UriInfo_t9FCC6BD4EC1EA14D75209E6A35417057BF6EDC5E * get_m_Info_18() const { return ___m_Info_18; } inline UriInfo_t9FCC6BD4EC1EA14D75209E6A35417057BF6EDC5E ** get_address_of_m_Info_18() { return &___m_Info_18; } inline void set_m_Info_18(UriInfo_t9FCC6BD4EC1EA14D75209E6A35417057BF6EDC5E * value) { ___m_Info_18 = value; Il2CppCodeGenWriteBarrier((&___m_Info_18), value); } inline static int32_t get_offset_of_m_iriParsing_19() { return static_cast<int32_t>(offsetof(Uri_t87E4A94B2901F5EEDD18AA72C3DB1B00E672D68E, ___m_iriParsing_19)); } inline bool get_m_iriParsing_19() const { return ___m_iriParsing_19; } inline bool* get_address_of_m_iriParsing_19() { return &___m_iriParsing_19; } inline void set_m_iriParsing_19(bool value) { ___m_iriParsing_19 = value; } }; struct Uri_t87E4A94B2901F5EEDD18AA72C3DB1B00E672D68E_StaticFields { public: // System.String System.Uri::UriSchemeFile String_t* ___UriSchemeFile_0; // System.String System.Uri::UriSchemeFtp String_t* ___UriSchemeFtp_1; // System.String System.Uri::UriSchemeGopher String_t* ___UriSchemeGopher_2; // System.String System.Uri::UriSchemeHttp String_t* ___UriSchemeHttp_3; // System.String System.Uri::UriSchemeHttps String_t* ___UriSchemeHttps_4; // System.String System.Uri::UriSchemeWs String_t* ___UriSchemeWs_5; // System.String System.Uri::UriSchemeWss String_t* ___UriSchemeWss_6; // System.String System.Uri::UriSchemeMailto String_t* ___UriSchemeMailto_7; // System.String System.Uri::UriSchemeNews String_t* ___UriSchemeNews_8; // System.String System.Uri::UriSchemeNntp String_t* ___UriSchemeNntp_9; // System.String System.Uri::UriSchemeNetTcp String_t* ___UriSchemeNetTcp_10; // System.String System.Uri::UriSchemeNetPipe String_t* ___UriSchemeNetPipe_11; // System.String System.Uri::SchemeDelimiter String_t* ___SchemeDelimiter_12; // System.Boolean modreq(System.Runtime.CompilerServices.IsVolatile) System.Uri::s_ConfigInitialized bool ___s_ConfigInitialized_20; // System.Boolean modreq(System.Runtime.CompilerServices.IsVolatile) System.Uri::s_ConfigInitializing bool ___s_ConfigInitializing_21; // System.UriIdnScope modreq(System.Runtime.CompilerServices.IsVolatile) System.Uri::s_IdnScope int32_t ___s_IdnScope_22; // System.Boolean modreq(System.Runtime.CompilerServices.IsVolatile) System.Uri::s_IriParsing bool ___s_IriParsing_23; // System.Boolean System.Uri::useDotNetRelativeOrAbsolute bool ___useDotNetRelativeOrAbsolute_24; // System.Boolean System.Uri::IsWindowsFileSystem bool ___IsWindowsFileSystem_25; // System.Object System.Uri::s_initLock RuntimeObject * ___s_initLock_26; // System.Char[] System.Uri::HexLowerChars CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* ___HexLowerChars_27; // System.Char[] System.Uri::_WSchars CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* ____WSchars_28; public: inline static int32_t get_offset_of_UriSchemeFile_0() { return static_cast<int32_t>(offsetof(Uri_t87E4A94B2901F5EEDD18AA72C3DB1B00E672D68E_StaticFields, ___UriSchemeFile_0)); } inline String_t* get_UriSchemeFile_0() const { return ___UriSchemeFile_0; } inline String_t** get_address_of_UriSchemeFile_0() { return &___UriSchemeFile_0; } inline void set_UriSchemeFile_0(String_t* value) { ___UriSchemeFile_0 = value; Il2CppCodeGenWriteBarrier((&___UriSchemeFile_0), value); } inline static int32_t get_offset_of_UriSchemeFtp_1() { return static_cast<int32_t>(offsetof(Uri_t87E4A94B2901F5EEDD18AA72C3DB1B00E672D68E_StaticFields, ___UriSchemeFtp_1)); } inline String_t* get_UriSchemeFtp_1() const { return ___UriSchemeFtp_1; } inline String_t** get_address_of_UriSchemeFtp_1() { return &___UriSchemeFtp_1; } inline void set_UriSchemeFtp_1(String_t* value) { ___UriSchemeFtp_1 = value; Il2CppCodeGenWriteBarrier((&___UriSchemeFtp_1), value); } inline static int32_t get_offset_of_UriSchemeGopher_2() { return static_cast<int32_t>(offsetof(Uri_t87E4A94B2901F5EEDD18AA72C3DB1B00E672D68E_StaticFields, ___UriSchemeGopher_2)); } inline String_t* get_UriSchemeGopher_2() const { return ___UriSchemeGopher_2; } inline String_t** get_address_of_UriSchemeGopher_2() { return &___UriSchemeGopher_2; } inline void set_UriSchemeGopher_2(String_t* value) { ___UriSchemeGopher_2 = value; Il2CppCodeGenWriteBarrier((&___UriSchemeGopher_2), value); } inline static int32_t get_offset_of_UriSchemeHttp_3() { return static_cast<int32_t>(offsetof(Uri_t87E4A94B2901F5EEDD18AA72C3DB1B00E672D68E_StaticFields, ___UriSchemeHttp_3)); } inline String_t* get_UriSchemeHttp_3() const { return ___UriSchemeHttp_3; } inline String_t** get_address_of_UriSchemeHttp_3() { return &___UriSchemeHttp_3; } inline void set_UriSchemeHttp_3(String_t* value) { ___UriSchemeHttp_3 = value; Il2CppCodeGenWriteBarrier((&___UriSchemeHttp_3), value); } inline static int32_t get_offset_of_UriSchemeHttps_4() { return static_cast<int32_t>(offsetof(Uri_t87E4A94B2901F5EEDD18AA72C3DB1B00E672D68E_StaticFields, ___UriSchemeHttps_4)); } inline String_t* get_UriSchemeHttps_4() const { return ___UriSchemeHttps_4; } inline String_t** get_address_of_UriSchemeHttps_4() { return &___UriSchemeHttps_4; } inline void set_UriSchemeHttps_4(String_t* value) { ___UriSchemeHttps_4 = value; Il2CppCodeGenWriteBarrier((&___UriSchemeHttps_4), value); } inline static int32_t get_offset_of_UriSchemeWs_5() { return static_cast<int32_t>(offsetof(Uri_t87E4A94B2901F5EEDD18AA72C3DB1B00E672D68E_StaticFields, ___UriSchemeWs_5)); } inline String_t* get_UriSchemeWs_5() const { return ___UriSchemeWs_5; } inline String_t** get_address_of_UriSchemeWs_5() { return &___UriSchemeWs_5; } inline void set_UriSchemeWs_5(String_t* value) { ___UriSchemeWs_5 = value; Il2CppCodeGenWriteBarrier((&___UriSchemeWs_5), value); } inline static int32_t get_offset_of_UriSchemeWss_6() { return static_cast<int32_t>(offsetof(Uri_t87E4A94B2901F5EEDD18AA72C3DB1B00E672D68E_StaticFields, ___UriSchemeWss_6)); } inline String_t* get_UriSchemeWss_6() const { return ___UriSchemeWss_6; } inline String_t** get_address_of_UriSchemeWss_6() { return &___UriSchemeWss_6; } inline void set_UriSchemeWss_6(String_t* value) { ___UriSchemeWss_6 = value; Il2CppCodeGenWriteBarrier((&___UriSchemeWss_6), value); } inline static int32_t get_offset_of_UriSchemeMailto_7() { return static_cast<int32_t>(offsetof(Uri_t87E4A94B2901F5EEDD18AA72C3DB1B00E672D68E_StaticFields, ___UriSchemeMailto_7)); } inline String_t* get_UriSchemeMailto_7() const { return ___UriSchemeMailto_7; } inline String_t** get_address_of_UriSchemeMailto_7() { return &___UriSchemeMailto_7; } inline void set_UriSchemeMailto_7(String_t* value) { ___UriSchemeMailto_7 = value; Il2CppCodeGenWriteBarrier((&___UriSchemeMailto_7), value); } inline static int32_t get_offset_of_UriSchemeNews_8() { return static_cast<int32_t>(offsetof(Uri_t87E4A94B2901F5EEDD18AA72C3DB1B00E672D68E_StaticFields, ___UriSchemeNews_8)); } inline String_t* get_UriSchemeNews_8() const { return ___UriSchemeNews_8; } inline String_t** get_address_of_UriSchemeNews_8() { return &___UriSchemeNews_8; } inline void set_UriSchemeNews_8(String_t* value) { ___UriSchemeNews_8 = value; Il2CppCodeGenWriteBarrier((&___UriSchemeNews_8), value); } inline static int32_t get_offset_of_UriSchemeNntp_9() { return static_cast<int32_t>(offsetof(Uri_t87E4A94B2901F5EEDD18AA72C3DB1B00E672D68E_StaticFields, ___UriSchemeNntp_9)); } inline String_t* get_UriSchemeNntp_9() const { return ___UriSchemeNntp_9; } inline String_t** get_address_of_UriSchemeNntp_9() { return &___UriSchemeNntp_9; } inline void set_UriSchemeNntp_9(String_t* value) { ___UriSchemeNntp_9 = value; Il2CppCodeGenWriteBarrier((&___UriSchemeNntp_9), value); } inline static int32_t get_offset_of_UriSchemeNetTcp_10() { return static_cast<int32_t>(offsetof(Uri_t87E4A94B2901F5EEDD18AA72C3DB1B00E672D68E_StaticFields, ___UriSchemeNetTcp_10)); } inline String_t* get_UriSchemeNetTcp_10() const { return ___UriSchemeNetTcp_10; } inline String_t** get_address_of_UriSchemeNetTcp_10() { return &___UriSchemeNetTcp_10; } inline void set_UriSchemeNetTcp_10(String_t* value) { ___UriSchemeNetTcp_10 = value; Il2CppCodeGenWriteBarrier((&___UriSchemeNetTcp_10), value); } inline static int32_t get_offset_of_UriSchemeNetPipe_11() { return static_cast<int32_t>(offsetof(Uri_t87E4A94B2901F5EEDD18AA72C3DB1B00E672D68E_StaticFields, ___UriSchemeNetPipe_11)); } inline String_t* get_UriSchemeNetPipe_11() const { return ___UriSchemeNetPipe_11; } inline String_t** get_address_of_UriSchemeNetPipe_11() { return &___UriSchemeNetPipe_11; } inline void set_UriSchemeNetPipe_11(String_t* value) { ___UriSchemeNetPipe_11 = value; Il2CppCodeGenWriteBarrier((&___UriSchemeNetPipe_11), value); } inline static int32_t get_offset_of_SchemeDelimiter_12() { return static_cast<int32_t>(offsetof(Uri_t87E4A94B2901F5EEDD18AA72C3DB1B00E672D68E_StaticFields, ___SchemeDelimiter_12)); } inline String_t* get_SchemeDelimiter_12() const { return ___SchemeDelimiter_12; } inline String_t** get_address_of_SchemeDelimiter_12() { return &___SchemeDelimiter_12; } inline void set_SchemeDelimiter_12(String_t* value) { ___SchemeDelimiter_12 = value; Il2CppCodeGenWriteBarrier((&___SchemeDelimiter_12), value); } inline static int32_t get_offset_of_s_ConfigInitialized_20() { return static_cast<int32_t>(offsetof(Uri_t87E4A94B2901F5EEDD18AA72C3DB1B00E672D68E_StaticFields, ___s_ConfigInitialized_20)); } inline bool get_s_ConfigInitialized_20() const { return ___s_ConfigInitialized_20; } inline bool* get_address_of_s_ConfigInitialized_20() { return &___s_ConfigInitialized_20; } inline void set_s_ConfigInitialized_20(bool value) { ___s_ConfigInitialized_20 = value; } inline static int32_t get_offset_of_s_ConfigInitializing_21() { return static_cast<int32_t>(offsetof(Uri_t87E4A94B2901F5EEDD18AA72C3DB1B00E672D68E_StaticFields, ___s_ConfigInitializing_21)); } inline bool get_s_ConfigInitializing_21() const { return ___s_ConfigInitializing_21; } inline bool* get_address_of_s_ConfigInitializing_21() { return &___s_ConfigInitializing_21; } inline void set_s_ConfigInitializing_21(bool value) { ___s_ConfigInitializing_21 = value; } inline static int32_t get_offset_of_s_IdnScope_22() { return static_cast<int32_t>(offsetof(Uri_t87E4A94B2901F5EEDD18AA72C3DB1B00E672D68E_StaticFields, ___s_IdnScope_22)); } inline int32_t get_s_IdnScope_22() const { return ___s_IdnScope_22; } inline int32_t* get_address_of_s_IdnScope_22() { return &___s_IdnScope_22; } inline void set_s_IdnScope_22(int32_t value) { ___s_IdnScope_22 = value; } inline static int32_t get_offset_of_s_IriParsing_23() { return static_cast<int32_t>(offsetof(Uri_t87E4A94B2901F5EEDD18AA72C3DB1B00E672D68E_StaticFields, ___s_IriParsing_23)); } inline bool get_s_IriParsing_23() const { return ___s_IriParsing_23; } inline bool* get_address_of_s_IriParsing_23() { return &___s_IriParsing_23; } inline void set_s_IriParsing_23(bool value) { ___s_IriParsing_23 = value; } inline static int32_t get_offset_of_useDotNetRelativeOrAbsolute_24() { return static_cast<int32_t>(offsetof(Uri_t87E4A94B2901F5EEDD18AA72C3DB1B00E672D68E_StaticFields, ___useDotNetRelativeOrAbsolute_24)); } inline bool get_useDotNetRelativeOrAbsolute_24() const { return ___useDotNetRelativeOrAbsolute_24; } inline bool* get_address_of_useDotNetRelativeOrAbsolute_24() { return &___useDotNetRelativeOrAbsolute_24; } inline void set_useDotNetRelativeOrAbsolute_24(bool value) { ___useDotNetRelativeOrAbsolute_24 = value; } inline static int32_t get_offset_of_IsWindowsFileSystem_25() { return static_cast<int32_t>(offsetof(Uri_t87E4A94B2901F5EEDD18AA72C3DB1B00E672D68E_StaticFields, ___IsWindowsFileSystem_25)); } inline bool get_IsWindowsFileSystem_25() const { return ___IsWindowsFileSystem_25; } inline bool* get_address_of_IsWindowsFileSystem_25() { return &___IsWindowsFileSystem_25; } inline void set_IsWindowsFileSystem_25(bool value) { ___IsWindowsFileSystem_25 = value; } inline static int32_t get_offset_of_s_initLock_26() { return static_cast<int32_t>(offsetof(Uri_t87E4A94B2901F5EEDD18AA72C3DB1B00E672D68E_StaticFields, ___s_initLock_26)); } inline RuntimeObject * get_s_initLock_26() const { return ___s_initLock_26; } inline RuntimeObject ** get_address_of_s_initLock_26() { return &___s_initLock_26; } inline void set_s_initLock_26(RuntimeObject * value) { ___s_initLock_26 = value; Il2CppCodeGenWriteBarrier((&___s_initLock_26), value); } inline static int32_t get_offset_of_HexLowerChars_27() { return static_cast<int32_t>(offsetof(Uri_t87E4A94B2901F5EEDD18AA72C3DB1B00E672D68E_StaticFields, ___HexLowerChars_27)); } inline CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* get_HexLowerChars_27() const { return ___HexLowerChars_27; } inline CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2** get_address_of_HexLowerChars_27() { return &___HexLowerChars_27; } inline void set_HexLowerChars_27(CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* value) { ___HexLowerChars_27 = value; Il2CppCodeGenWriteBarrier((&___HexLowerChars_27), value); } inline static int32_t get_offset_of__WSchars_28() { return static_cast<int32_t>(offsetof(Uri_t87E4A94B2901F5EEDD18AA72C3DB1B00E672D68E_StaticFields, ____WSchars_28)); } inline CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* get__WSchars_28() const { return ____WSchars_28; } inline CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2** get_address_of__WSchars_28() { return &____WSchars_28; } inline void set__WSchars_28(CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* value) { ____WSchars_28 = value; Il2CppCodeGenWriteBarrier((&____WSchars_28), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // URI_T87E4A94B2901F5EEDD18AA72C3DB1B00E672D68E_H #ifndef DOWNLOADHANDLERBUFFER_TF6A73B82C9EC807D36B904A58E1DF2DDA696B255_H #define DOWNLOADHANDLERBUFFER_TF6A73B82C9EC807D36B904A58E1DF2DDA696B255_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // UnityEngine.Networking.DownloadHandlerBuffer struct DownloadHandlerBuffer_tF6A73B82C9EC807D36B904A58E1DF2DDA696B255 : public DownloadHandler_t4A7802ADC97024B469C87FA454B6973951980EE9 { public: public: }; #ifdef __clang__ #pragma clang diagnostic pop #endif // Native definition for P/Invoke marshalling of UnityEngine.Networking.DownloadHandlerBuffer struct DownloadHandlerBuffer_tF6A73B82C9EC807D36B904A58E1DF2DDA696B255_marshaled_pinvoke : public DownloadHandler_t4A7802ADC97024B469C87FA454B6973951980EE9_marshaled_pinvoke { }; // Native definition for COM marshalling of UnityEngine.Networking.DownloadHandlerBuffer struct DownloadHandlerBuffer_tF6A73B82C9EC807D36B904A58E1DF2DDA696B255_marshaled_com : public DownloadHandler_t4A7802ADC97024B469C87FA454B6973951980EE9_marshaled_com { }; #endif // DOWNLOADHANDLERBUFFER_TF6A73B82C9EC807D36B904A58E1DF2DDA696B255_H #ifndef UNITYWEBREQUEST_T9120F5A2C7D43B936B49C0B7E4CA54C822689129_H #define UNITYWEBREQUEST_T9120F5A2C7D43B936B49C0B7E4CA54C822689129_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // UnityEngine.Networking.UnityWebRequest struct UnityWebRequest_t9120F5A2C7D43B936B49C0B7E4CA54C822689129 : public RuntimeObject { public: // System.IntPtr UnityEngine.Networking.UnityWebRequest::m_Ptr intptr_t ___m_Ptr_0; // UnityEngine.Networking.DownloadHandler UnityEngine.Networking.UnityWebRequest::m_DownloadHandler DownloadHandler_t4A7802ADC97024B469C87FA454B6973951980EE9 * ___m_DownloadHandler_1; // UnityEngine.Networking.UploadHandler UnityEngine.Networking.UnityWebRequest::m_UploadHandler UploadHandler_t24F4097D30A1E7C689D8881A27F251B4741601E4 * ___m_UploadHandler_2; // UnityEngine.Networking.CertificateHandler UnityEngine.Networking.UnityWebRequest::m_CertificateHandler CertificateHandler_tBD070BF4150A44AB482FD36EA3882C363117E8C0 * ___m_CertificateHandler_3; // System.Uri UnityEngine.Networking.UnityWebRequest::m_Uri Uri_t87E4A94B2901F5EEDD18AA72C3DB1B00E672D68E * ___m_Uri_4; // System.Boolean UnityEngine.Networking.UnityWebRequest::<disposeCertificateHandlerOnDispose>k__BackingField bool ___U3CdisposeCertificateHandlerOnDisposeU3Ek__BackingField_5; // System.Boolean UnityEngine.Networking.UnityWebRequest::<disposeDownloadHandlerOnDispose>k__BackingField bool ___U3CdisposeDownloadHandlerOnDisposeU3Ek__BackingField_6; // System.Boolean UnityEngine.Networking.UnityWebRequest::<disposeUploadHandlerOnDispose>k__BackingField bool ___U3CdisposeUploadHandlerOnDisposeU3Ek__BackingField_7; public: inline static int32_t get_offset_of_m_Ptr_0() { return static_cast<int32_t>(offsetof(UnityWebRequest_t9120F5A2C7D43B936B49C0B7E4CA54C822689129, ___m_Ptr_0)); } inline intptr_t get_m_Ptr_0() const { return ___m_Ptr_0; } inline intptr_t* get_address_of_m_Ptr_0() { return &___m_Ptr_0; } inline void set_m_Ptr_0(intptr_t value) { ___m_Ptr_0 = value; } inline static int32_t get_offset_of_m_DownloadHandler_1() { return static_cast<int32_t>(offsetof(UnityWebRequest_t9120F5A2C7D43B936B49C0B7E4CA54C822689129, ___m_DownloadHandler_1)); } inline DownloadHandler_t4A7802ADC97024B469C87FA454B6973951980EE9 * get_m_DownloadHandler_1() const { return ___m_DownloadHandler_1; } inline DownloadHandler_t4A7802ADC97024B469C87FA454B6973951980EE9 ** get_address_of_m_DownloadHandler_1() { return &___m_DownloadHandler_1; } inline void set_m_DownloadHandler_1(DownloadHandler_t4A7802ADC97024B469C87FA454B6973951980EE9 * value) { ___m_DownloadHandler_1 = value; Il2CppCodeGenWriteBarrier((&___m_DownloadHandler_1), value); } inline static int32_t get_offset_of_m_UploadHandler_2() { return static_cast<int32_t>(offsetof(UnityWebRequest_t9120F5A2C7D43B936B49C0B7E4CA54C822689129, ___m_UploadHandler_2)); } inline UploadHandler_t24F4097D30A1E7C689D8881A27F251B4741601E4 * get_m_UploadHandler_2() const { return ___m_UploadHandler_2; } inline UploadHandler_t24F4097D30A1E7C689D8881A27F251B4741601E4 ** get_address_of_m_UploadHandler_2() { return &___m_UploadHandler_2; } inline void set_m_UploadHandler_2(UploadHandler_t24F4097D30A1E7C689D8881A27F251B4741601E4 * value) { ___m_UploadHandler_2 = value; Il2CppCodeGenWriteBarrier((&___m_UploadHandler_2), value); } inline static int32_t get_offset_of_m_CertificateHandler_3() { return static_cast<int32_t>(offsetof(UnityWebRequest_t9120F5A2C7D43B936B49C0B7E4CA54C822689129, ___m_CertificateHandler_3)); } inline CertificateHandler_tBD070BF4150A44AB482FD36EA3882C363117E8C0 * get_m_CertificateHandler_3() const { return ___m_CertificateHandler_3; } inline CertificateHandler_tBD070BF4150A44AB482FD36EA3882C363117E8C0 ** get_address_of_m_CertificateHandler_3() { return &___m_CertificateHandler_3; } inline void set_m_CertificateHandler_3(CertificateHandler_tBD070BF4150A44AB482FD36EA3882C363117E8C0 * value) { ___m_CertificateHandler_3 = value; Il2CppCodeGenWriteBarrier((&___m_CertificateHandler_3), value); } inline static int32_t get_offset_of_m_Uri_4() { return static_cast<int32_t>(offsetof(UnityWebRequest_t9120F5A2C7D43B936B49C0B7E4CA54C822689129, ___m_Uri_4)); } inline Uri_t87E4A94B2901F5EEDD18AA72C3DB1B00E672D68E * get_m_Uri_4() const { return ___m_Uri_4; } inline Uri_t87E4A94B2901F5EEDD18AA72C3DB1B00E672D68E ** get_address_of_m_Uri_4() { return &___m_Uri_4; } inline void set_m_Uri_4(Uri_t87E4A94B2901F5EEDD18AA72C3DB1B00E672D68E * value) { ___m_Uri_4 = value; Il2CppCodeGenWriteBarrier((&___m_Uri_4), value); } inline static int32_t get_offset_of_U3CdisposeCertificateHandlerOnDisposeU3Ek__BackingField_5() { return static_cast<int32_t>(offsetof(UnityWebRequest_t9120F5A2C7D43B936B49C0B7E4CA54C822689129, ___U3CdisposeCertificateHandlerOnDisposeU3Ek__BackingField_5)); } inline bool get_U3CdisposeCertificateHandlerOnDisposeU3Ek__BackingField_5() const { return ___U3CdisposeCertificateHandlerOnDisposeU3Ek__BackingField_5; } inline bool* get_address_of_U3CdisposeCertificateHandlerOnDisposeU3Ek__BackingField_5() { return &___U3CdisposeCertificateHandlerOnDisposeU3Ek__BackingField_5; } inline void set_U3CdisposeCertificateHandlerOnDisposeU3Ek__BackingField_5(bool value) { ___U3CdisposeCertificateHandlerOnDisposeU3Ek__BackingField_5 = value; } inline static int32_t get_offset_of_U3CdisposeDownloadHandlerOnDisposeU3Ek__BackingField_6() { return static_cast<int32_t>(offsetof(UnityWebRequest_t9120F5A2C7D43B936B49C0B7E4CA54C822689129, ___U3CdisposeDownloadHandlerOnDisposeU3Ek__BackingField_6)); } inline bool get_U3CdisposeDownloadHandlerOnDisposeU3Ek__BackingField_6() const { return ___U3CdisposeDownloadHandlerOnDisposeU3Ek__BackingField_6; } inline bool* get_address_of_U3CdisposeDownloadHandlerOnDisposeU3Ek__BackingField_6() { return &___U3CdisposeDownloadHandlerOnDisposeU3Ek__BackingField_6; } inline void set_U3CdisposeDownloadHandlerOnDisposeU3Ek__BackingField_6(bool value) { ___U3CdisposeDownloadHandlerOnDisposeU3Ek__BackingField_6 = value; } inline static int32_t get_offset_of_U3CdisposeUploadHandlerOnDisposeU3Ek__BackingField_7() { return static_cast<int32_t>(offsetof(UnityWebRequest_t9120F5A2C7D43B936B49C0B7E4CA54C822689129, ___U3CdisposeUploadHandlerOnDisposeU3Ek__BackingField_7)); } inline bool get_U3CdisposeUploadHandlerOnDisposeU3Ek__BackingField_7() const { return ___U3CdisposeUploadHandlerOnDisposeU3Ek__BackingField_7; } inline bool* get_address_of_U3CdisposeUploadHandlerOnDisposeU3Ek__BackingField_7() { return &___U3CdisposeUploadHandlerOnDisposeU3Ek__BackingField_7; } inline void set_U3CdisposeUploadHandlerOnDisposeU3Ek__BackingField_7(bool value) { ___U3CdisposeUploadHandlerOnDisposeU3Ek__BackingField_7 = value; } }; #ifdef __clang__ #pragma clang diagnostic pop #endif // Native definition for P/Invoke marshalling of UnityEngine.Networking.UnityWebRequest struct UnityWebRequest_t9120F5A2C7D43B936B49C0B7E4CA54C822689129_marshaled_pinvoke { intptr_t ___m_Ptr_0; DownloadHandler_t4A7802ADC97024B469C87FA454B6973951980EE9_marshaled_pinvoke ___m_DownloadHandler_1; UploadHandler_t24F4097D30A1E7C689D8881A27F251B4741601E4_marshaled_pinvoke ___m_UploadHandler_2; CertificateHandler_tBD070BF4150A44AB482FD36EA3882C363117E8C0_marshaled_pinvoke ___m_CertificateHandler_3; Uri_t87E4A94B2901F5EEDD18AA72C3DB1B00E672D68E * ___m_Uri_4; int32_t ___U3CdisposeCertificateHandlerOnDisposeU3Ek__BackingField_5; int32_t ___U3CdisposeDownloadHandlerOnDisposeU3Ek__BackingField_6; int32_t ___U3CdisposeUploadHandlerOnDisposeU3Ek__BackingField_7; }; // Native definition for COM marshalling of UnityEngine.Networking.UnityWebRequest struct UnityWebRequest_t9120F5A2C7D43B936B49C0B7E4CA54C822689129_marshaled_com { intptr_t ___m_Ptr_0; DownloadHandler_t4A7802ADC97024B469C87FA454B6973951980EE9_marshaled_com* ___m_DownloadHandler_1; UploadHandler_t24F4097D30A1E7C689D8881A27F251B4741601E4_marshaled_com* ___m_UploadHandler_2; CertificateHandler_tBD070BF4150A44AB482FD36EA3882C363117E8C0_marshaled_com* ___m_CertificateHandler_3; Uri_t87E4A94B2901F5EEDD18AA72C3DB1B00E672D68E * ___m_Uri_4; int32_t ___U3CdisposeCertificateHandlerOnDisposeU3Ek__BackingField_5; int32_t ___U3CdisposeDownloadHandlerOnDisposeU3Ek__BackingField_6; int32_t ___U3CdisposeUploadHandlerOnDisposeU3Ek__BackingField_7; }; #endif // UNITYWEBREQUEST_T9120F5A2C7D43B936B49C0B7E4CA54C822689129_H #ifndef UNITYWEBREQUESTASYNCOPERATION_T726E134F16701A2671D40BEBE22110DC57156353_H #define UNITYWEBREQUESTASYNCOPERATION_T726E134F16701A2671D40BEBE22110DC57156353_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // UnityEngine.Networking.UnityWebRequestAsyncOperation struct UnityWebRequestAsyncOperation_t726E134F16701A2671D40BEBE22110DC57156353 : public AsyncOperation_t304C51ABED8AE734CC8DDDFE13013D8D5A44641D { public: // UnityEngine.Networking.UnityWebRequest UnityEngine.Networking.UnityWebRequestAsyncOperation::<webRequest>k__BackingField UnityWebRequest_t9120F5A2C7D43B936B49C0B7E4CA54C822689129 * ___U3CwebRequestU3Ek__BackingField_2; public: inline static int32_t get_offset_of_U3CwebRequestU3Ek__BackingField_2() { return static_cast<int32_t>(offsetof(UnityWebRequestAsyncOperation_t726E134F16701A2671D40BEBE22110DC57156353, ___U3CwebRequestU3Ek__BackingField_2)); } inline UnityWebRequest_t9120F5A2C7D43B936B49C0B7E4CA54C822689129 * get_U3CwebRequestU3Ek__BackingField_2() const { return ___U3CwebRequestU3Ek__BackingField_2; } inline UnityWebRequest_t9120F5A2C7D43B936B49C0B7E4CA54C822689129 ** get_address_of_U3CwebRequestU3Ek__BackingField_2() { return &___U3CwebRequestU3Ek__BackingField_2; } inline void set_U3CwebRequestU3Ek__BackingField_2(UnityWebRequest_t9120F5A2C7D43B936B49C0B7E4CA54C822689129 * value) { ___U3CwebRequestU3Ek__BackingField_2 = value; Il2CppCodeGenWriteBarrier((&___U3CwebRequestU3Ek__BackingField_2), value); } }; #ifdef __clang__ #pragma clang diagnostic pop #endif // Native definition for P/Invoke marshalling of UnityEngine.Networking.UnityWebRequestAsyncOperation struct UnityWebRequestAsyncOperation_t726E134F16701A2671D40BEBE22110DC57156353_marshaled_pinvoke : public AsyncOperation_t304C51ABED8AE734CC8DDDFE13013D8D5A44641D_marshaled_pinvoke { UnityWebRequest_t9120F5A2C7D43B936B49C0B7E4CA54C822689129_marshaled_pinvoke* ___U3CwebRequestU3Ek__BackingField_2; }; // Native definition for COM marshalling of UnityEngine.Networking.UnityWebRequestAsyncOperation struct UnityWebRequestAsyncOperation_t726E134F16701A2671D40BEBE22110DC57156353_marshaled_com : public AsyncOperation_t304C51ABED8AE734CC8DDDFE13013D8D5A44641D_marshaled_com { UnityWebRequest_t9120F5A2C7D43B936B49C0B7E4CA54C822689129_marshaled_com* ___U3CwebRequestU3Ek__BackingField_2; }; #endif // UNITYWEBREQUESTASYNCOPERATION_T726E134F16701A2671D40BEBE22110DC57156353_H #ifndef UPLOADHANDLERRAW_T9E6A69B7726F134F31F6744F5EFDF611E7C54F27_H #define UPLOADHANDLERRAW_T9E6A69B7726F134F31F6744F5EFDF611E7C54F27_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // UnityEngine.Networking.UploadHandlerRaw struct UploadHandlerRaw_t9E6A69B7726F134F31F6744F5EFDF611E7C54F27 : public UploadHandler_t24F4097D30A1E7C689D8881A27F251B4741601E4 { public: public: }; #ifdef __clang__ #pragma clang diagnostic pop #endif // Native definition for P/Invoke marshalling of UnityEngine.Networking.UploadHandlerRaw struct UploadHandlerRaw_t9E6A69B7726F134F31F6744F5EFDF611E7C54F27_marshaled_pinvoke : public UploadHandler_t24F4097D30A1E7C689D8881A27F251B4741601E4_marshaled_pinvoke { }; // Native definition for COM marshalling of UnityEngine.Networking.UploadHandlerRaw struct UploadHandlerRaw_t9E6A69B7726F134F31F6744F5EFDF611E7C54F27_marshaled_com : public UploadHandler_t24F4097D30A1E7C689D8881A27F251B4741601E4_marshaled_com { }; #endif // UPLOADHANDLERRAW_T9E6A69B7726F134F31F6744F5EFDF611E7C54F27_H #ifndef ACTION_1_TCBF754C290FAE894631BED8FD56E9E22C4C187F9_H #define ACTION_1_TCBF754C290FAE894631BED8FD56E9E22C4C187F9_H #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Action`1<UnityEngine.AsyncOperation> struct Action_1_tCBF754C290FAE894631BED8FD56E9E22C4C187F9 : public MulticastDelegate_t { public: public: }; #ifdef __clang__ #pragma clang diagnostic pop #endif #endif // ACTION_1_TCBF754C290FAE894631BED8FD56E9E22C4C187F9_H // System.Byte[] struct ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821 : public RuntimeArray { public: ALIGN_FIELD (8) uint8_t m_Items[1]; public: inline uint8_t GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline uint8_t* GetAddressAt(il2cpp_array_size_t index) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items + index; } inline void SetAt(il2cpp_array_size_t index, uint8_t value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; } inline uint8_t GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline uint8_t* GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, uint8_t value) { m_Items[index] = value; } }; // System.Char[] struct CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2 : public RuntimeArray { public: ALIGN_FIELD (8) Il2CppChar m_Items[1]; public: inline Il2CppChar GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline Il2CppChar* GetAddressAt(il2cpp_array_size_t index) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items + index; } inline void SetAt(il2cpp_array_size_t index, Il2CppChar value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; } inline Il2CppChar GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline Il2CppChar* GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, Il2CppChar value) { m_Items[index] = value; } }; // System.String[] struct StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E : public RuntimeArray { public: ALIGN_FIELD (8) String_t* m_Items[1]; public: inline String_t* GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline String_t** GetAddressAt(il2cpp_array_size_t index) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items + index; } inline void SetAt(il2cpp_array_size_t index, String_t* value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; Il2CppCodeGenWriteBarrier(m_Items + index, value); } inline String_t* GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline String_t** GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, String_t* value) { m_Items[index] = value; Il2CppCodeGenWriteBarrier(m_Items + index, value); } }; extern "C" void DownloadHandler_t4A7802ADC97024B469C87FA454B6973951980EE9_marshal_pinvoke(const DownloadHandler_t4A7802ADC97024B469C87FA454B6973951980EE9& unmarshaled, DownloadHandler_t4A7802ADC97024B469C87FA454B6973951980EE9_marshaled_pinvoke& marshaled); extern "C" void DownloadHandler_t4A7802ADC97024B469C87FA454B6973951980EE9_marshal_pinvoke_back(const DownloadHandler_t4A7802ADC97024B469C87FA454B6973951980EE9_marshaled_pinvoke& marshaled, DownloadHandler_t4A7802ADC97024B469C87FA454B6973951980EE9& unmarshaled); extern "C" void DownloadHandler_t4A7802ADC97024B469C87FA454B6973951980EE9_marshal_pinvoke_cleanup(DownloadHandler_t4A7802ADC97024B469C87FA454B6973951980EE9_marshaled_pinvoke& marshaled); extern "C" void UploadHandler_t24F4097D30A1E7C689D8881A27F251B4741601E4_marshal_pinvoke(const UploadHandler_t24F4097D30A1E7C689D8881A27F251B4741601E4& unmarshaled, UploadHandler_t24F4097D30A1E7C689D8881A27F251B4741601E4_marshaled_pinvoke& marshaled); extern "C" void UploadHandler_t24F4097D30A1E7C689D8881A27F251B4741601E4_marshal_pinvoke_back(const UploadHandler_t24F4097D30A1E7C689D8881A27F251B4741601E4_marshaled_pinvoke& marshaled, UploadHandler_t24F4097D30A1E7C689D8881A27F251B4741601E4& unmarshaled); extern "C" void UploadHandler_t24F4097D30A1E7C689D8881A27F251B4741601E4_marshal_pinvoke_cleanup(UploadHandler_t24F4097D30A1E7C689D8881A27F251B4741601E4_marshaled_pinvoke& marshaled); extern "C" void CertificateHandler_tBD070BF4150A44AB482FD36EA3882C363117E8C0_marshal_pinvoke(const CertificateHandler_tBD070BF4150A44AB482FD36EA3882C363117E8C0& unmarshaled, CertificateHandler_tBD070BF4150A44AB482FD36EA3882C363117E8C0_marshaled_pinvoke& marshaled); extern "C" void CertificateHandler_tBD070BF4150A44AB482FD36EA3882C363117E8C0_marshal_pinvoke_back(const CertificateHandler_tBD070BF4150A44AB482FD36EA3882C363117E8C0_marshaled_pinvoke& marshaled, CertificateHandler_tBD070BF4150A44AB482FD36EA3882C363117E8C0& unmarshaled); extern "C" void CertificateHandler_tBD070BF4150A44AB482FD36EA3882C363117E8C0_marshal_pinvoke_cleanup(CertificateHandler_tBD070BF4150A44AB482FD36EA3882C363117E8C0_marshaled_pinvoke& marshaled); extern "C" void DownloadHandler_t4A7802ADC97024B469C87FA454B6973951980EE9_marshal_com(const DownloadHandler_t4A7802ADC97024B469C87FA454B6973951980EE9& unmarshaled, DownloadHandler_t4A7802ADC97024B469C87FA454B6973951980EE9_marshaled_com& marshaled); extern "C" void DownloadHandler_t4A7802ADC97024B469C87FA454B6973951980EE9_marshal_com_back(const DownloadHandler_t4A7802ADC97024B469C87FA454B6973951980EE9_marshaled_com& marshaled, DownloadHandler_t4A7802ADC97024B469C87FA454B6973951980EE9& unmarshaled); extern "C" void DownloadHandler_t4A7802ADC97024B469C87FA454B6973951980EE9_marshal_com_cleanup(DownloadHandler_t4A7802ADC97024B469C87FA454B6973951980EE9_marshaled_com& marshaled); extern "C" void UploadHandler_t24F4097D30A1E7C689D8881A27F251B4741601E4_marshal_com(const UploadHandler_t24F4097D30A1E7C689D8881A27F251B4741601E4& unmarshaled, UploadHandler_t24F4097D30A1E7C689D8881A27F251B4741601E4_marshaled_com& marshaled); extern "C" void UploadHandler_t24F4097D30A1E7C689D8881A27F251B4741601E4_marshal_com_back(const UploadHandler_t24F4097D30A1E7C689D8881A27F251B4741601E4_marshaled_com& marshaled, UploadHandler_t24F4097D30A1E7C689D8881A27F251B4741601E4& unmarshaled); extern "C" void UploadHandler_t24F4097D30A1E7C689D8881A27F251B4741601E4_marshal_com_cleanup(UploadHandler_t24F4097D30A1E7C689D8881A27F251B4741601E4_marshaled_com& marshaled); extern "C" void CertificateHandler_tBD070BF4150A44AB482FD36EA3882C363117E8C0_marshal_com(const CertificateHandler_tBD070BF4150A44AB482FD36EA3882C363117E8C0& unmarshaled, CertificateHandler_tBD070BF4150A44AB482FD36EA3882C363117E8C0_marshaled_com& marshaled); extern "C" void CertificateHandler_tBD070BF4150A44AB482FD36EA3882C363117E8C0_marshal_com_back(const CertificateHandler_tBD070BF4150A44AB482FD36EA3882C363117E8C0_marshaled_com& marshaled, CertificateHandler_tBD070BF4150A44AB482FD36EA3882C363117E8C0& unmarshaled); extern "C" void CertificateHandler_tBD070BF4150A44AB482FD36EA3882C363117E8C0_marshal_com_cleanup(CertificateHandler_tBD070BF4150A44AB482FD36EA3882C363117E8C0_marshaled_com& marshaled); extern "C" void UnityWebRequest_t9120F5A2C7D43B936B49C0B7E4CA54C822689129_marshal_pinvoke(const UnityWebRequest_t9120F5A2C7D43B936B49C0B7E4CA54C822689129& unmarshaled, UnityWebRequest_t9120F5A2C7D43B936B49C0B7E4CA54C822689129_marshaled_pinvoke& marshaled); extern "C" void UnityWebRequest_t9120F5A2C7D43B936B49C0B7E4CA54C822689129_marshal_pinvoke_back(const UnityWebRequest_t9120F5A2C7D43B936B49C0B7E4CA54C822689129_marshaled_pinvoke& marshaled, UnityWebRequest_t9120F5A2C7D43B936B49C0B7E4CA54C822689129& unmarshaled); extern "C" void UnityWebRequest_t9120F5A2C7D43B936B49C0B7E4CA54C822689129_marshal_pinvoke_cleanup(UnityWebRequest_t9120F5A2C7D43B936B49C0B7E4CA54C822689129_marshaled_pinvoke& marshaled); extern "C" void UnityWebRequest_t9120F5A2C7D43B936B49C0B7E4CA54C822689129_marshal_com(const UnityWebRequest_t9120F5A2C7D43B936B49C0B7E4CA54C822689129& unmarshaled, UnityWebRequest_t9120F5A2C7D43B936B49C0B7E4CA54C822689129_marshaled_com& marshaled); extern "C" void UnityWebRequest_t9120F5A2C7D43B936B49C0B7E4CA54C822689129_marshal_com_back(const UnityWebRequest_t9120F5A2C7D43B936B49C0B7E4CA54C822689129_marshaled_com& marshaled, UnityWebRequest_t9120F5A2C7D43B936B49C0B7E4CA54C822689129& unmarshaled); extern "C" void UnityWebRequest_t9120F5A2C7D43B936B49C0B7E4CA54C822689129_marshal_com_cleanup(UnityWebRequest_t9120F5A2C7D43B936B49C0B7E4CA54C822689129_marshaled_com& marshaled); // System.Void System.Collections.Generic.Dictionary`2<System.Object,System.Object>::.ctor(System.Int32,System.Collections.Generic.IEqualityComparer`1<!0>) extern "C" IL2CPP_METHOD_ATTR void Dictionary_2__ctor_mA2D668E3A40E3C873F8E2AF89A76E0397C7DE90E_gshared (Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA * __this, int32_t p0, RuntimeObject* p1, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2<System.Object,System.Object>::Add(!0,!1) extern "C" IL2CPP_METHOD_ATTR void Dictionary_2_Add_mC741BBB0A647C814227953DB9B23CB1BDF571C5B_gshared (Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA * __this, RuntimeObject * p0, RuntimeObject * p1, const RuntimeMethod* method); // System.Collections.Generic.Dictionary`2/Enumerator<!0,!1> System.Collections.Generic.Dictionary`2<System.Object,System.Object>::GetEnumerator() extern "C" IL2CPP_METHOD_ATTR Enumerator_tED23DFBF3911229086C71CCE7A54D56F5FFB34CB Dictionary_2_GetEnumerator_mF1CF1D13F3E70C6D20D96D9AC88E44454E4C0053_gshared (Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA * __this, const RuntimeMethod* method); // System.Collections.Generic.KeyValuePair`2<!0,!1> System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Object>::get_Current() extern "C" IL2CPP_METHOD_ATTR KeyValuePair_2_t23481547E419E16E3B96A303578C1EB685C99EEE Enumerator_get_Current_m5B32A9FC8294CB723DCD1171744B32E1775B6318_gshared (Enumerator_tED23DFBF3911229086C71CCE7A54D56F5FFB34CB * __this, const RuntimeMethod* method); // !0 System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>::get_Key() extern "C" IL2CPP_METHOD_ATTR RuntimeObject * KeyValuePair_2_get_Key_m3AA5875E6F038F027D9B80929300B746525F9D65_gshared (KeyValuePair_2_t23481547E419E16E3B96A303578C1EB685C99EEE * __this, const RuntimeMethod* method); // !1 System.Collections.Generic.KeyValuePair`2<System.Object,System.Object>::get_Value() extern "C" IL2CPP_METHOD_ATTR RuntimeObject * KeyValuePair_2_get_Value_m8C7B882C4D425535288FAAD08EAF11D289A43AEC_gshared (KeyValuePair_2_t23481547E419E16E3B96A303578C1EB685C99EEE * __this, const RuntimeMethod* method); // System.Boolean System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Object>::MoveNext() extern "C" IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_m9B9FB07EC2C1D82E921C9316A4E0901C933BBF6C_gshared (Enumerator_tED23DFBF3911229086C71CCE7A54D56F5FFB34CB * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.Object,System.Object>::Dispose() extern "C" IL2CPP_METHOD_ATTR void Enumerator_Dispose_mE363888280B72ED50538416C060EF9FC94B3BB00_gshared (Enumerator_tED23DFBF3911229086C71CCE7A54D56F5FFB34CB * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.List`1<System.Object>::.ctor() extern "C" IL2CPP_METHOD_ATTR void List_1__ctor_mC832F1AC0F814BAEB19175F5D7972A7507508BC3_gshared (List_1_t05CC3C859AB5E6024394EF9A42E3E696628CA02D * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.List`1<System.Object>::Add(!0) extern "C" IL2CPP_METHOD_ATTR void List_1_Add_m6930161974C7504C80F52EC379EF012387D43138_gshared (List_1_t05CC3C859AB5E6024394EF9A42E3E696628CA02D * __this, RuntimeObject * p0, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2<System.Object,System.Object>::.ctor() extern "C" IL2CPP_METHOD_ATTR void Dictionary_2__ctor_m2C7E51568033239B506E15E7804A0B8658246498_gshared (Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2<System.Object,System.Object>::set_Item(!0,!1) extern "C" IL2CPP_METHOD_ATTR void Dictionary_2_set_Item_m466D001F105E25DEB5C9BCB17837EE92A27FDE93_gshared (Dictionary_2_t32F25F093828AA9F93CB11C2A2B4648FD62A09BA * __this, RuntimeObject * p0, RuntimeObject * p1, const RuntimeMethod* method); // !0 System.Collections.Generic.List`1<System.Object>::get_Item(System.Int32) extern "C" IL2CPP_METHOD_ATTR RuntimeObject * List_1_get_Item_mFDB8AD680C600072736579BBF5F38F7416396588_gshared (List_1_t05CC3C859AB5E6024394EF9A42E3E696628CA02D * __this, int32_t p0, const RuntimeMethod* method); // System.Int32 System.Collections.Generic.List`1<System.Object>::get_Count() extern "C" IL2CPP_METHOD_ATTR int32_t List_1_get_Count_m507C9149FF7F83AAC72C29091E745D557DA47D22_gshared (List_1_t05CC3C859AB5E6024394EF9A42E3E696628CA02D * __this, const RuntimeMethod* method); // System.Void UnityEngine.Networking.CertificateHandler::Dispose() extern "C" IL2CPP_METHOD_ATTR void CertificateHandler_Dispose_m9C71BAA51760FDF05AB999B6AB6E6BC71BCB8CA0 (CertificateHandler_tBD070BF4150A44AB482FD36EA3882C363117E8C0 * __this, const RuntimeMethod* method); // System.Void System.Object::Finalize() extern "C" IL2CPP_METHOD_ATTR void Object_Finalize_m4015B7D3A44DE125C5FE34D7276CD4697C06F380 (RuntimeObject * __this, const RuntimeMethod* method); // System.Boolean System.IntPtr::op_Inequality(System.IntPtr,System.IntPtr) extern "C" IL2CPP_METHOD_ATTR bool IntPtr_op_Inequality_mB4886A806009EA825EFCC60CD2A7F6EB8E273A61 (intptr_t p0, intptr_t p1, const RuntimeMethod* method); // System.Void UnityEngine.Networking.CertificateHandler::Release() extern "C" IL2CPP_METHOD_ATTR void CertificateHandler_Release_m8D680D11AF8B070587DA5C73E2AE652208BDA90A (CertificateHandler_tBD070BF4150A44AB482FD36EA3882C363117E8C0 * __this, const RuntimeMethod* method); // System.Void System.Object::.ctor() extern "C" IL2CPP_METHOD_ATTR void Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0 (RuntimeObject * __this, const RuntimeMethod* method); // System.Void UnityEngine.Networking.DownloadHandler::Dispose() extern "C" IL2CPP_METHOD_ATTR void DownloadHandler_Dispose_m7478E72B2DBA4B55FAA25F7A1975A13BA5891D4B (DownloadHandler_t4A7802ADC97024B469C87FA454B6973951980EE9 * __this, const RuntimeMethod* method); // System.Void UnityEngine.Networking.DownloadHandler::Release() extern "C" IL2CPP_METHOD_ATTR void DownloadHandler_Release_m913DA503E4183F3323A3D0121FFC978D0F220D5D (DownloadHandler_t4A7802ADC97024B469C87FA454B6973951980EE9 * __this, const RuntimeMethod* method); // System.Text.Encoding UnityEngine.Networking.DownloadHandler::GetTextEncoder() extern "C" IL2CPP_METHOD_ATTR Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * DownloadHandler_GetTextEncoder_m601540FD9D16122709582833632A9DEEDBF07E64 (DownloadHandler_t4A7802ADC97024B469C87FA454B6973951980EE9 * __this, const RuntimeMethod* method); // System.String UnityEngine.Networking.DownloadHandler::GetContentType() extern "C" IL2CPP_METHOD_ATTR String_t* DownloadHandler_GetContentType_mB1653D4D9CA539D1D622C32B52DF5C38548D30E8 (DownloadHandler_t4A7802ADC97024B469C87FA454B6973951980EE9 * __this, const RuntimeMethod* method); // System.Boolean System.String::IsNullOrEmpty(System.String) extern "C" IL2CPP_METHOD_ATTR bool String_IsNullOrEmpty_m06A85A206AC2106D1982826C5665B9BD35324229 (String_t* p0, const RuntimeMethod* method); // System.Int32 System.String::IndexOf(System.String,System.StringComparison) extern "C" IL2CPP_METHOD_ATTR int32_t String_IndexOf_mF9EA8429E9D1B7475D5A297E67435CF34E965F28 (String_t* __this, String_t* p0, int32_t p1, const RuntimeMethod* method); // System.Int32 System.String::IndexOf(System.Char,System.Int32) extern "C" IL2CPP_METHOD_ATTR int32_t String_IndexOf_m66F6178DB4B2F61F4FAFD8B75787D0AB142ADD7D (String_t* __this, Il2CppChar p0, int32_t p1, const RuntimeMethod* method); // System.String System.String::Substring(System.Int32) extern "C" IL2CPP_METHOD_ATTR String_t* String_Substring_m2C4AFF5E79DD8BADFD2DFBCF156BF728FBB8E1AE (String_t* __this, int32_t p0, const RuntimeMethod* method); // System.String System.String::Trim() extern "C" IL2CPP_METHOD_ATTR String_t* String_Trim_mB52EB7876C7132358B76B7DC95DEACA20722EF4D (String_t* __this, const RuntimeMethod* method); // System.String System.String::Trim(System.Char[]) extern "C" IL2CPP_METHOD_ATTR String_t* String_Trim_m788DE5AEFDAC40E778745C4DF4AFD45A4BC1007E (String_t* __this, CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* p0, const RuntimeMethod* method); // System.Int32 System.String::IndexOf(System.Char) extern "C" IL2CPP_METHOD_ATTR int32_t String_IndexOf_m2909B8CF585E1BD0C81E11ACA2F48012156FD5BD (String_t* __this, Il2CppChar p0, const RuntimeMethod* method); // System.String System.String::Substring(System.Int32,System.Int32) extern "C" IL2CPP_METHOD_ATTR String_t* String_Substring_mB593C0A320C683E6E47EFFC0A12B7A465E5E43BB (String_t* __this, int32_t p0, int32_t p1, const RuntimeMethod* method); // System.Text.Encoding System.Text.Encoding::GetEncoding(System.String) extern "C" IL2CPP_METHOD_ATTR Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * Encoding_GetEncoding_mA19D07F2E88F8FF58D42B73AFF5E22241607D54E (String_t* p0, const RuntimeMethod* method); // System.String System.String::Format(System.String,System.Object,System.Object) extern "C" IL2CPP_METHOD_ATTR String_t* String_Format_m19325298DBC61AAC016C16F7B3CF97A8A3DEA34A (String_t* p0, RuntimeObject * p1, RuntimeObject * p2, const RuntimeMethod* method); // System.Void UnityEngine.Debug::LogWarning(System.Object) extern "C" IL2CPP_METHOD_ATTR void Debug_LogWarning_m37338644DC81F640CCDFEAE35A223F0E965F0568 (RuntimeObject * p0, const RuntimeMethod* method); // System.Text.Encoding System.Text.Encoding::get_UTF8() extern "C" IL2CPP_METHOD_ATTR Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * Encoding_get_UTF8_m67C8652936B681E7BC7505E459E88790E0FF16D9 (const RuntimeMethod* method); // System.Void UnityEngine.Networking.DownloadHandler::.ctor() extern "C" IL2CPP_METHOD_ATTR void DownloadHandler__ctor_m39F80F1C9B379B0D0362DF9264DE42604BDB24E0 (DownloadHandler_t4A7802ADC97024B469C87FA454B6973951980EE9 * __this, const RuntimeMethod* method); // System.Void UnityEngine.Networking.DownloadHandlerBuffer::InternalCreateBuffer() extern "C" IL2CPP_METHOD_ATTR void DownloadHandlerBuffer_InternalCreateBuffer_m661B598DF8BD7BF86374FD84C52C8AEA8FA7BEF6 (DownloadHandlerBuffer_tF6A73B82C9EC807D36B904A58E1DF2DDA696B255 * __this, const RuntimeMethod* method); // System.IntPtr UnityEngine.Networking.DownloadHandlerBuffer::Create(UnityEngine.Networking.DownloadHandlerBuffer) extern "C" IL2CPP_METHOD_ATTR intptr_t DownloadHandlerBuffer_Create_m39E26BEA64B617123CEF559999C8352CA9FA5137 (DownloadHandlerBuffer_tF6A73B82C9EC807D36B904A58E1DF2DDA696B255 * ___obj0, const RuntimeMethod* method); // System.Byte[] UnityEngine.Networking.DownloadHandlerBuffer::InternalGetData() extern "C" IL2CPP_METHOD_ATTR ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* DownloadHandlerBuffer_InternalGetData_m9266395B691394754B68543A2FF2F19566C5ABBF (DownloadHandlerBuffer_tF6A73B82C9EC807D36B904A58E1DF2DDA696B255 * __this, const RuntimeMethod* method); // System.Byte[] UnityEngine.Networking.DownloadHandler::InternalGetByteArray(UnityEngine.Networking.DownloadHandler) extern "C" IL2CPP_METHOD_ATTR ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* DownloadHandler_InternalGetByteArray_mD6D13BFFBF2F56415E10FFEFDC4A68FE29D6D4FD (DownloadHandler_t4A7802ADC97024B469C87FA454B6973951980EE9 * ___dh0, const RuntimeMethod* method); // System.IntPtr UnityEngine.Networking.UnityWebRequest::Create() extern "C" IL2CPP_METHOD_ATTR intptr_t UnityWebRequest_Create_m98363C34C71AA034B47FA64589711B6F0AEF6698 (const RuntimeMethod* method); // System.Void UnityEngine.Networking.UnityWebRequest::InternalSetDefaults() extern "C" IL2CPP_METHOD_ATTR void UnityWebRequest_InternalSetDefaults_m644CC3C1C737838385F0EC9523A8930E696A9309 (UnityWebRequest_t9120F5A2C7D43B936B49C0B7E4CA54C822689129 * __this, const RuntimeMethod* method); // System.Void UnityEngine.Networking.UnityWebRequest::set_url(System.String) extern "C" IL2CPP_METHOD_ATTR void UnityWebRequest_set_url_mA698FD94C447FF7C1C429D50C2EBAEEDD473007D (UnityWebRequest_t9120F5A2C7D43B936B49C0B7E4CA54C822689129 * __this, String_t* ___value0, const RuntimeMethod* method); // System.Void UnityEngine.Networking.UnityWebRequest::set_method(System.String) extern "C" IL2CPP_METHOD_ATTR void UnityWebRequest_set_method_mF2DAC86EB05D65B9BCB52056B7CBB2C1AD87EEC6 (UnityWebRequest_t9120F5A2C7D43B936B49C0B7E4CA54C822689129 * __this, String_t* ___value0, const RuntimeMethod* method); // System.Void UnityEngine.Networking.UnityWebRequest::set_downloadHandler(UnityEngine.Networking.DownloadHandler) extern "C" IL2CPP_METHOD_ATTR void UnityWebRequest_set_downloadHandler_mB481C2EE30F84B62396C1A837F46046F12B8FA7E (UnityWebRequest_t9120F5A2C7D43B936B49C0B7E4CA54C822689129 * __this, DownloadHandler_t4A7802ADC97024B469C87FA454B6973951980EE9 * ___value0, const RuntimeMethod* method); // System.Void UnityEngine.Networking.UnityWebRequest::set_uploadHandler(UnityEngine.Networking.UploadHandler) extern "C" IL2CPP_METHOD_ATTR void UnityWebRequest_set_uploadHandler_m7B33656584914FB3F6FB0FF73C08F671262724A1 (UnityWebRequest_t9120F5A2C7D43B936B49C0B7E4CA54C822689129 * __this, UploadHandler_t24F4097D30A1E7C689D8881A27F251B4741601E4 * ___value0, const RuntimeMethod* method); // System.Void UnityEngine.Networking.UnityWebRequest::Abort() extern "C" IL2CPP_METHOD_ATTR void UnityWebRequest_Abort_mF2C9BD010E5B32FF9F57C2EB4A9A0C8D0289CA7E (UnityWebRequest_t9120F5A2C7D43B936B49C0B7E4CA54C822689129 * __this, const RuntimeMethod* method); // System.Void UnityEngine.Networking.UnityWebRequest::Release() extern "C" IL2CPP_METHOD_ATTR void UnityWebRequest_Release_mD168D309DCE6696163B3357FA21047689D1A7D74 (UnityWebRequest_t9120F5A2C7D43B936B49C0B7E4CA54C822689129 * __this, const RuntimeMethod* method); // System.Void UnityEngine.Networking.UnityWebRequest::set_disposeDownloadHandlerOnDispose(System.Boolean) extern "C" IL2CPP_METHOD_ATTR void UnityWebRequest_set_disposeDownloadHandlerOnDispose_mA888301C47844E383DEC96D88CAD6CB8D9E7B9FA (UnityWebRequest_t9120F5A2C7D43B936B49C0B7E4CA54C822689129 * __this, bool ___value0, const RuntimeMethod* method); // System.Void UnityEngine.Networking.UnityWebRequest::set_disposeUploadHandlerOnDispose(System.Boolean) extern "C" IL2CPP_METHOD_ATTR void UnityWebRequest_set_disposeUploadHandlerOnDispose_mC176753B8AFBB40B69FAD7F1E2B2711CA5D6AA71 (UnityWebRequest_t9120F5A2C7D43B936B49C0B7E4CA54C822689129 * __this, bool ___value0, const RuntimeMethod* method); // System.Void UnityEngine.Networking.UnityWebRequest::set_disposeCertificateHandlerOnDispose(System.Boolean) extern "C" IL2CPP_METHOD_ATTR void UnityWebRequest_set_disposeCertificateHandlerOnDispose_m8609E1213309D1796E00860ECA9228F6454114AE (UnityWebRequest_t9120F5A2C7D43B936B49C0B7E4CA54C822689129 * __this, bool ___value0, const RuntimeMethod* method); // System.Void UnityEngine.Networking.UnityWebRequest::DisposeHandlers() extern "C" IL2CPP_METHOD_ATTR void UnityWebRequest_DisposeHandlers_m0E54EE2A704090B2C2F1F3C90D30A47E3BF2B5C9 (UnityWebRequest_t9120F5A2C7D43B936B49C0B7E4CA54C822689129 * __this, const RuntimeMethod* method); // System.Void UnityEngine.Networking.UnityWebRequest::InternalDestroy() extern "C" IL2CPP_METHOD_ATTR void UnityWebRequest_InternalDestroy_mF5D7484808AEAE24A43B678614D257FBF885026B (UnityWebRequest_t9120F5A2C7D43B936B49C0B7E4CA54C822689129 * __this, const RuntimeMethod* method); // System.Void System.GC::SuppressFinalize(System.Object) extern "C" IL2CPP_METHOD_ATTR void GC_SuppressFinalize_m037319A9B95A5BA437E806DE592802225EE5B425 (RuntimeObject * p0, const RuntimeMethod* method); // System.Boolean UnityEngine.Networking.UnityWebRequest::get_disposeDownloadHandlerOnDispose() extern "C" IL2CPP_METHOD_ATTR bool UnityWebRequest_get_disposeDownloadHandlerOnDispose_m3BE68E08A94D92D7076F49CB5196019E6E5E17AA (UnityWebRequest_t9120F5A2C7D43B936B49C0B7E4CA54C822689129 * __this, const RuntimeMethod* method); // UnityEngine.Networking.DownloadHandler UnityEngine.Networking.UnityWebRequest::get_downloadHandler() extern "C" IL2CPP_METHOD_ATTR DownloadHandler_t4A7802ADC97024B469C87FA454B6973951980EE9 * UnityWebRequest_get_downloadHandler_m83044026479E6B4B2739DCE9EEA8A0FAE7D9AF41 (UnityWebRequest_t9120F5A2C7D43B936B49C0B7E4CA54C822689129 * __this, const RuntimeMethod* method); // System.Boolean UnityEngine.Networking.UnityWebRequest::get_disposeUploadHandlerOnDispose() extern "C" IL2CPP_METHOD_ATTR bool UnityWebRequest_get_disposeUploadHandlerOnDispose_mE4A39A3A06DB4450DA49972254B4498A5F8F69DE (UnityWebRequest_t9120F5A2C7D43B936B49C0B7E4CA54C822689129 * __this, const RuntimeMethod* method); // UnityEngine.Networking.UploadHandler UnityEngine.Networking.UnityWebRequest::get_uploadHandler() extern "C" IL2CPP_METHOD_ATTR UploadHandler_t24F4097D30A1E7C689D8881A27F251B4741601E4 * UnityWebRequest_get_uploadHandler_mB23A35C2412258E44538F37AA540421C95E69A5C (UnityWebRequest_t9120F5A2C7D43B936B49C0B7E4CA54C822689129 * __this, const RuntimeMethod* method); // System.Void UnityEngine.Networking.UploadHandler::Dispose() extern "C" IL2CPP_METHOD_ATTR void UploadHandler_Dispose_m9BBE8D7D2BBAAC2DE84B52BADA0B79CEA6F2DAB2 (UploadHandler_t24F4097D30A1E7C689D8881A27F251B4741601E4 * __this, const RuntimeMethod* method); // System.Boolean UnityEngine.Networking.UnityWebRequest::get_disposeCertificateHandlerOnDispose() extern "C" IL2CPP_METHOD_ATTR bool UnityWebRequest_get_disposeCertificateHandlerOnDispose_m98EFCAC30D637479DC0DC45CFD8A15D402328F99 (UnityWebRequest_t9120F5A2C7D43B936B49C0B7E4CA54C822689129 * __this, const RuntimeMethod* method); // UnityEngine.Networking.CertificateHandler UnityEngine.Networking.UnityWebRequest::get_certificateHandler() extern "C" IL2CPP_METHOD_ATTR CertificateHandler_tBD070BF4150A44AB482FD36EA3882C363117E8C0 * UnityWebRequest_get_certificateHandler_mD3C46D07991190373A7144A6732E390FFBE6DF00 (UnityWebRequest_t9120F5A2C7D43B936B49C0B7E4CA54C822689129 * __this, const RuntimeMethod* method); // UnityEngine.Networking.UnityWebRequestAsyncOperation UnityEngine.Networking.UnityWebRequest::BeginWebRequest() extern "C" IL2CPP_METHOD_ATTR UnityWebRequestAsyncOperation_t726E134F16701A2671D40BEBE22110DC57156353 * UnityWebRequest_BeginWebRequest_m1EF3612D316F7924F6E40D63DD3B0D0118C50CC0 (UnityWebRequest_t9120F5A2C7D43B936B49C0B7E4CA54C822689129 * __this, const RuntimeMethod* method); // System.Void UnityEngine.Networking.UnityWebRequestAsyncOperation::set_webRequest(UnityEngine.Networking.UnityWebRequest) extern "C" IL2CPP_METHOD_ATTR void UnityWebRequestAsyncOperation_set_webRequest_m07869D44180E2A93042A18260FA5A2BB934AC42F (UnityWebRequestAsyncOperation_t726E134F16701A2671D40BEBE22110DC57156353 * __this, UnityWebRequest_t9120F5A2C7D43B936B49C0B7E4CA54C822689129 * ___value0, const RuntimeMethod* method); // System.Boolean UnityEngine.Networking.UnityWebRequest::get_isModifiable() extern "C" IL2CPP_METHOD_ATTR bool UnityWebRequest_get_isModifiable_mD7583537BBC7111555FF73846D120103D2563342 (UnityWebRequest_t9120F5A2C7D43B936B49C0B7E4CA54C822689129 * __this, const RuntimeMethod* method); // System.Void System.InvalidOperationException::.ctor(System.String) extern "C" IL2CPP_METHOD_ATTR void InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706 (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * __this, String_t* p0, const RuntimeMethod* method); // UnityEngine.Networking.UnityWebRequest/UnityWebRequestError UnityEngine.Networking.UnityWebRequest::SetMethod(UnityEngine.Networking.UnityWebRequest/UnityWebRequestMethod) extern "C" IL2CPP_METHOD_ATTR int32_t UnityWebRequest_SetMethod_mEE55FF0E071E784318B8C2110E3A3688BF4661CB (UnityWebRequest_t9120F5A2C7D43B936B49C0B7E4CA54C822689129 * __this, int32_t ___methodType0, const RuntimeMethod* method); // System.String UnityEngine.Networking.UnityWebRequest::GetWebErrorString(UnityEngine.Networking.UnityWebRequest/UnityWebRequestError) extern "C" IL2CPP_METHOD_ATTR String_t* UnityWebRequest_GetWebErrorString_m92A1DDF2ADFFF8AEE6B1A7FAE384743C31F9E01D (int32_t ___err0, const RuntimeMethod* method); // UnityEngine.Networking.UnityWebRequest/UnityWebRequestError UnityEngine.Networking.UnityWebRequest::SetCustomMethod(System.String) extern "C" IL2CPP_METHOD_ATTR int32_t UnityWebRequest_SetCustomMethod_mC818FAC0FD8B91FD454C6DFBF7561EEE2D0BA4F4 (UnityWebRequest_t9120F5A2C7D43B936B49C0B7E4CA54C822689129 * __this, String_t* ___customMethodName0, const RuntimeMethod* method); // UnityEngine.Networking.UnityWebRequest/UnityWebRequestMethod UnityEngine.Networking.UnityWebRequest::GetMethod() extern "C" IL2CPP_METHOD_ATTR int32_t UnityWebRequest_GetMethod_mF7CCE2E767F50DB55D0F8E02E6B56B8117558D6F (UnityWebRequest_t9120F5A2C7D43B936B49C0B7E4CA54C822689129 * __this, const RuntimeMethod* method); // System.String UnityEngine.Networking.UnityWebRequest::GetCustomMethod() extern "C" IL2CPP_METHOD_ATTR String_t* UnityWebRequest_GetCustomMethod_m0A7D30C190B85377439370D9DCD105E1EFB73E2F (UnityWebRequest_t9120F5A2C7D43B936B49C0B7E4CA54C822689129 * __this, const RuntimeMethod* method); // System.Void System.ArgumentException::.ctor(System.String) extern "C" IL2CPP_METHOD_ATTR void ArgumentException__ctor_m9A85EF7FEFEC21DDD525A67E831D77278E5165B7 (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * __this, String_t* p0, const RuntimeMethod* method); // System.String System.String::ToUpper() extern "C" IL2CPP_METHOD_ATTR String_t* String_ToUpper_m23D019B7C5EF2C5C01F524EB8137A424B33EEFE2 (String_t* __this, const RuntimeMethod* method); // System.Boolean System.String::op_Equality(System.String,System.String) extern "C" IL2CPP_METHOD_ATTR bool String_op_Equality_m139F0E4195AE2F856019E63B241F36F016997FCE (String_t* p0, String_t* p1, const RuntimeMethod* method); // System.Void UnityEngine.Networking.UnityWebRequest::InternalSetMethod(UnityEngine.Networking.UnityWebRequest/UnityWebRequestMethod) extern "C" IL2CPP_METHOD_ATTR void UnityWebRequest_InternalSetMethod_m636508AA8E6EF12B3255D8ED108BFF7EB1AB68C9 (UnityWebRequest_t9120F5A2C7D43B936B49C0B7E4CA54C822689129 * __this, int32_t ___methodType0, const RuntimeMethod* method); // System.Void UnityEngine.Networking.UnityWebRequest::InternalSetCustomMethod(System.String) extern "C" IL2CPP_METHOD_ATTR void UnityWebRequest_InternalSetCustomMethod_mE9F0C84C6DCD5412AEDD76280EEC4FB82516EF16 (UnityWebRequest_t9120F5A2C7D43B936B49C0B7E4CA54C822689129 * __this, String_t* ___customMethodName0, const RuntimeMethod* method); // System.String UnityEngineInternal.WebRequestUtils::MakeInitialUrl(System.String,System.String) extern "C" IL2CPP_METHOD_ATTR String_t* WebRequestUtils_MakeInitialUrl_m446CCE4EFB276BE27A9380D55B9E704D01107B83 (String_t* ___targetUrl0, String_t* ___localUrl1, const RuntimeMethod* method); // System.Void UnityEngine.Networking.UnityWebRequest::InternalSetUrl(System.String) extern "C" IL2CPP_METHOD_ATTR void UnityWebRequest_InternalSetUrl_m2E2C837A6F32065CAAAF6EFA7D0237C9E206689A (UnityWebRequest_t9120F5A2C7D43B936B49C0B7E4CA54C822689129 * __this, String_t* ___url0, const RuntimeMethod* method); // UnityEngine.Networking.UnityWebRequest/UnityWebRequestError UnityEngine.Networking.UnityWebRequest::SetUrl(System.String) extern "C" IL2CPP_METHOD_ATTR int32_t UnityWebRequest_SetUrl_mED007912E89AA114D1A3D6905586116F74C8D774 (UnityWebRequest_t9120F5A2C7D43B936B49C0B7E4CA54C822689129 * __this, String_t* ___url0, const RuntimeMethod* method); // UnityEngine.Networking.UnityWebRequest/UnityWebRequestError UnityEngine.Networking.UnityWebRequest::InternalSetRequestHeader(System.String,System.String) extern "C" IL2CPP_METHOD_ATTR int32_t UnityWebRequest_InternalSetRequestHeader_m7481D7E49B6E6078598E40B81D1A3DA9B8D2BD10 (UnityWebRequest_t9120F5A2C7D43B936B49C0B7E4CA54C822689129 * __this, String_t* ___name0, String_t* ___value1, const RuntimeMethod* method); // System.String[] UnityEngine.Networking.UnityWebRequest::GetResponseHeaderKeys() extern "C" IL2CPP_METHOD_ATTR StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* UnityWebRequest_GetResponseHeaderKeys_mCA197A30EE7652C300682B5B7560BF7D86FC30AD (UnityWebRequest_t9120F5A2C7D43B936B49C0B7E4CA54C822689129 * __this, const RuntimeMethod* method); // System.StringComparer System.StringComparer::get_OrdinalIgnoreCase() extern "C" IL2CPP_METHOD_ATTR StringComparer_t588BC7FEF85D6E7425E0A8147A3D5A334F1F82DE * StringComparer_get_OrdinalIgnoreCase_m3F2527D9A11521E8B51F0AC8F70DB272DA8334C9 (const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2<System.String,System.String>::.ctor(System.Int32,System.Collections.Generic.IEqualityComparer`1<!0>) inline void Dictionary_2__ctor_m1DDEF700172660887162F8B6AA94679C3113AB9F (Dictionary_2_t931BF283048C4E74FC063C3036E5F3FE328861FC * __this, int32_t p0, RuntimeObject* p1, const RuntimeMethod* method) { (( void (*) (Dictionary_2_t931BF283048C4E74FC063C3036E5F3FE328861FC *, int32_t, RuntimeObject*, const RuntimeMethod*))Dictionary_2__ctor_mA2D668E3A40E3C873F8E2AF89A76E0397C7DE90E_gshared)(__this, p0, p1, method); } // System.String UnityEngine.Networking.UnityWebRequest::GetResponseHeader(System.String) extern "C" IL2CPP_METHOD_ATTR String_t* UnityWebRequest_GetResponseHeader_m3C6A64338B5B11F5CE2941FEE37DDAB0B67AC5C2 (UnityWebRequest_t9120F5A2C7D43B936B49C0B7E4CA54C822689129 * __this, String_t* ___name0, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2<System.String,System.String>::Add(!0,!1) inline void Dictionary_2_Add_m8E1E97EC586BFF6D3F84BB3429DF6198853F25AC (Dictionary_2_t931BF283048C4E74FC063C3036E5F3FE328861FC * __this, String_t* p0, String_t* p1, const RuntimeMethod* method) { (( void (*) (Dictionary_2_t931BF283048C4E74FC063C3036E5F3FE328861FC *, String_t*, String_t*, const RuntimeMethod*))Dictionary_2_Add_mC741BBB0A647C814227953DB9B23CB1BDF571C5B_gshared)(__this, p0, p1, method); } // UnityEngine.Networking.UnityWebRequest/UnityWebRequestError UnityEngine.Networking.UnityWebRequest::SetUploadHandler(UnityEngine.Networking.UploadHandler) extern "C" IL2CPP_METHOD_ATTR int32_t UnityWebRequest_SetUploadHandler_m046EF4089035441F661AED13F703024DEE030525 (UnityWebRequest_t9120F5A2C7D43B936B49C0B7E4CA54C822689129 * __this, UploadHandler_t24F4097D30A1E7C689D8881A27F251B4741601E4 * ___uh0, const RuntimeMethod* method); // UnityEngine.Networking.UnityWebRequest/UnityWebRequestError UnityEngine.Networking.UnityWebRequest::SetDownloadHandler(UnityEngine.Networking.DownloadHandler) extern "C" IL2CPP_METHOD_ATTR int32_t UnityWebRequest_SetDownloadHandler_mDE4E6137C34A90754C41B3A0B7B303135771EEDD (UnityWebRequest_t9120F5A2C7D43B936B49C0B7E4CA54C822689129 * __this, DownloadHandler_t4A7802ADC97024B469C87FA454B6973951980EE9 * ___dh0, const RuntimeMethod* method); // System.Int32 System.Math::Max(System.Int32,System.Int32) extern "C" IL2CPP_METHOD_ATTR int32_t Math_Max_mA99E48BB021F2E4B62D4EA9F52EA6928EED618A2 (int32_t p0, int32_t p1, const RuntimeMethod* method); // UnityEngine.Networking.UnityWebRequest/UnityWebRequestError UnityEngine.Networking.UnityWebRequest::SetTimeoutMsec(System.Int32) extern "C" IL2CPP_METHOD_ATTR int32_t UnityWebRequest_SetTimeoutMsec_m53542B77D1BA4486039178C0BEBED3005A6AF079 (UnityWebRequest_t9120F5A2C7D43B936B49C0B7E4CA54C822689129 * __this, int32_t ___timeout0, const RuntimeMethod* method); // System.Void UnityEngine.Networking.DownloadHandlerBuffer::.ctor() extern "C" IL2CPP_METHOD_ATTR void DownloadHandlerBuffer__ctor_m2134187D8FB07FBAEA2CE23BFCEB13FD94261A9A (DownloadHandlerBuffer_tF6A73B82C9EC807D36B904A58E1DF2DDA696B255 * __this, const RuntimeMethod* method); // System.Void UnityEngine.Networking.UnityWebRequest::.ctor(System.String,System.String,UnityEngine.Networking.DownloadHandler,UnityEngine.Networking.UploadHandler) extern "C" IL2CPP_METHOD_ATTR void UnityWebRequest__ctor_m0D2F8F3E1202EF4256D17E91B95DB6CC673FC8D6 (UnityWebRequest_t9120F5A2C7D43B936B49C0B7E4CA54C822689129 * __this, String_t* ___url0, String_t* ___method1, DownloadHandler_t4A7802ADC97024B469C87FA454B6973951980EE9 * ___downloadHandler2, UploadHandler_t24F4097D30A1E7C689D8881A27F251B4741601E4 * ___uploadHandler3, const RuntimeMethod* method); // System.Void UnityEngine.Networking.UnityWebRequest::.ctor(System.String,System.String) extern "C" IL2CPP_METHOD_ATTR void UnityWebRequest__ctor_m3CBA159B3514D89C931002DFD333B9768A08EBFA (UnityWebRequest_t9120F5A2C7D43B936B49C0B7E4CA54C822689129 * __this, String_t* ___url0, String_t* ___method1, const RuntimeMethod* method); // System.Void UnityEngine.Networking.UploadHandlerRaw::.ctor(System.Byte[]) extern "C" IL2CPP_METHOD_ATTR void UploadHandlerRaw__ctor_m9F7643CA3314C8CE46DD41FBF584C268E2546935 (UploadHandlerRaw_t9E6A69B7726F134F31F6744F5EFDF611E7C54F27 * __this, ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___data0, const RuntimeMethod* method); // System.Void UnityEngine.Networking.UnityWebRequest::SetupPost(UnityEngine.Networking.UnityWebRequest,System.String) extern "C" IL2CPP_METHOD_ATTR void UnityWebRequest_SetupPost_mAB03D6DF06B96684D7E1A25449868CD4D1AABA57 (UnityWebRequest_t9120F5A2C7D43B936B49C0B7E4CA54C822689129 * ___request0, String_t* ___postData1, const RuntimeMethod* method); // System.String UnityEngine.WWWTranscoder::DataEncode(System.String,System.Text.Encoding) extern "C" IL2CPP_METHOD_ATTR String_t* WWWTranscoder_DataEncode_m991CA7AD8C98345736244A24979E440E23E5035A (String_t* ___toEncode0, Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * ___e1, const RuntimeMethod* method); // System.Void UnityEngine.Networking.UploadHandler::set_contentType(System.String) extern "C" IL2CPP_METHOD_ATTR void UploadHandler_set_contentType_mB90BEE88AD0FCD496BED349F4E8086AB3C76FF3E (UploadHandler_t24F4097D30A1E7C689D8881A27F251B4741601E4 * __this, String_t* ___value0, const RuntimeMethod* method); // System.Void UnityEngine.Networking.UnityWebRequest::SetupPost(UnityEngine.Networking.UnityWebRequest,UnityEngine.WWWForm) extern "C" IL2CPP_METHOD_ATTR void UnityWebRequest_SetupPost_m31EFAEB2EC83463CD04E93B292A32DF3027FF82C (UnityWebRequest_t9120F5A2C7D43B936B49C0B7E4CA54C822689129 * ___request0, WWWForm_t8D5ED7CAC180C102E377B21A70CC6A9AD5EAAD24 * ___formData1, const RuntimeMethod* method); // System.Byte[] UnityEngine.WWWForm::get_data() extern "C" IL2CPP_METHOD_ATTR ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* WWWForm_get_data_m5ED2243249BE32F26F3020BB39BBEF834BE56303 (WWWForm_t8D5ED7CAC180C102E377B21A70CC6A9AD5EAAD24 * __this, const RuntimeMethod* method); // System.Collections.Generic.Dictionary`2<System.String,System.String> UnityEngine.WWWForm::get_headers() extern "C" IL2CPP_METHOD_ATTR Dictionary_2_t931BF283048C4E74FC063C3036E5F3FE328861FC * WWWForm_get_headers_mE1BA0494A43C8EF12C0217297411EFD6B4EC601A (WWWForm_t8D5ED7CAC180C102E377B21A70CC6A9AD5EAAD24 * __this, const RuntimeMethod* method); // System.Collections.Generic.Dictionary`2/Enumerator<!0,!1> System.Collections.Generic.Dictionary`2<System.String,System.String>::GetEnumerator() inline Enumerator_tEE17C0B6306B38B4D74140569F93EA8C3BDD05A3 Dictionary_2_GetEnumerator_m3378B4792B81EF81397CB9D9A761BD7149BD27F5 (Dictionary_2_t931BF283048C4E74FC063C3036E5F3FE328861FC * __this, const RuntimeMethod* method) { return (( Enumerator_tEE17C0B6306B38B4D74140569F93EA8C3BDD05A3 (*) (Dictionary_2_t931BF283048C4E74FC063C3036E5F3FE328861FC *, const RuntimeMethod*))Dictionary_2_GetEnumerator_mF1CF1D13F3E70C6D20D96D9AC88E44454E4C0053_gshared)(__this, method); } // System.Collections.Generic.KeyValuePair`2<!0,!1> System.Collections.Generic.Dictionary`2/Enumerator<System.String,System.String>::get_Current() inline KeyValuePair_2_t1A58906CCD7ED79792916B56DB716477495C85D8 Enumerator_get_Current_mBEC9B470213860581893E0F197CAAE657B8B6C69 (Enumerator_tEE17C0B6306B38B4D74140569F93EA8C3BDD05A3 * __this, const RuntimeMethod* method) { return (( KeyValuePair_2_t1A58906CCD7ED79792916B56DB716477495C85D8 (*) (Enumerator_tEE17C0B6306B38B4D74140569F93EA8C3BDD05A3 *, const RuntimeMethod*))Enumerator_get_Current_m5B32A9FC8294CB723DCD1171744B32E1775B6318_gshared)(__this, method); } // !0 System.Collections.Generic.KeyValuePair`2<System.String,System.String>::get_Key() inline String_t* KeyValuePair_2_get_Key_m434E29A1251E81B5A2124466105823011C462BF2 (KeyValuePair_2_t1A58906CCD7ED79792916B56DB716477495C85D8 * __this, const RuntimeMethod* method) { return (( String_t* (*) (KeyValuePair_2_t1A58906CCD7ED79792916B56DB716477495C85D8 *, const RuntimeMethod*))KeyValuePair_2_get_Key_m3AA5875E6F038F027D9B80929300B746525F9D65_gshared)(__this, method); } // !1 System.Collections.Generic.KeyValuePair`2<System.String,System.String>::get_Value() inline String_t* KeyValuePair_2_get_Value_mEAF4B15DEEAC6EB29683A5C6569F0F50B4DEBDA2 (KeyValuePair_2_t1A58906CCD7ED79792916B56DB716477495C85D8 * __this, const RuntimeMethod* method) { return (( String_t* (*) (KeyValuePair_2_t1A58906CCD7ED79792916B56DB716477495C85D8 *, const RuntimeMethod*))KeyValuePair_2_get_Value_m8C7B882C4D425535288FAAD08EAF11D289A43AEC_gshared)(__this, method); } // System.Void UnityEngine.Networking.UnityWebRequest::SetRequestHeader(System.String,System.String) extern "C" IL2CPP_METHOD_ATTR void UnityWebRequest_SetRequestHeader_m1B54D38BDACC2789FC8EE889EA72EDD7844D2309 (UnityWebRequest_t9120F5A2C7D43B936B49C0B7E4CA54C822689129 * __this, String_t* ___name0, String_t* ___value1, const RuntimeMethod* method); // System.Boolean System.Collections.Generic.Dictionary`2/Enumerator<System.String,System.String>::MoveNext() inline bool Enumerator_MoveNext_m6E6A22A8620F5A5582BB67E367BE5086D7D895A6 (Enumerator_tEE17C0B6306B38B4D74140569F93EA8C3BDD05A3 * __this, const RuntimeMethod* method) { return (( bool (*) (Enumerator_tEE17C0B6306B38B4D74140569F93EA8C3BDD05A3 *, const RuntimeMethod*))Enumerator_MoveNext_m9B9FB07EC2C1D82E921C9316A4E0901C933BBF6C_gshared)(__this, method); } // System.Void System.Collections.Generic.Dictionary`2/Enumerator<System.String,System.String>::Dispose() inline void Enumerator_Dispose_m16C0E963A012498CD27422B463DB327BA4C7A321 (Enumerator_tEE17C0B6306B38B4D74140569F93EA8C3BDD05A3 * __this, const RuntimeMethod* method) { (( void (*) (Enumerator_tEE17C0B6306B38B4D74140569F93EA8C3BDD05A3 *, const RuntimeMethod*))Enumerator_Dispose_mE363888280B72ED50538416C060EF9FC94B3BB00_gshared)(__this, method); } // System.String UnityEngine.Networking.UnityWebRequest::EscapeURL(System.String,System.Text.Encoding) extern "C" IL2CPP_METHOD_ATTR String_t* UnityWebRequest_EscapeURL_m024D2743C55CB2E079B382ECFCAF23505B13A8E3 (String_t* ___s0, Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * ___e1, const RuntimeMethod* method); // System.Byte[] UnityEngine.WWWTranscoder::URLEncode(System.Byte[]) extern "C" IL2CPP_METHOD_ATTR ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* WWWTranscoder_URLEncode_mD0BEAAE6DBA432657E18FA17F3BCC87A34C0973B (ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___toEncode0, const RuntimeMethod* method); // System.Void UnityEngine.AsyncOperation::.ctor() extern "C" IL2CPP_METHOD_ATTR void AsyncOperation__ctor_mEEE6114B72B8807F4AA6FF48FA79E4EFE480293F (AsyncOperation_t304C51ABED8AE734CC8DDDFE13013D8D5A44641D * __this, const RuntimeMethod* method); // System.Void UnityEngine.Networking.UploadHandler::Release() extern "C" IL2CPP_METHOD_ATTR void UploadHandler_Release_m1723A22438AF0A7BE616D512E54190D9CE0EC3C4 (UploadHandler_t24F4097D30A1E7C689D8881A27F251B4741601E4 * __this, const RuntimeMethod* method); // System.Void UnityEngine.Networking.UploadHandler::.ctor() extern "C" IL2CPP_METHOD_ATTR void UploadHandler__ctor_m3F76154710C5CB7099388479FA02E6555D077F6E (UploadHandler_t24F4097D30A1E7C689D8881A27F251B4741601E4 * __this, const RuntimeMethod* method); // System.IntPtr UnityEngine.Networking.UploadHandlerRaw::Create(UnityEngine.Networking.UploadHandlerRaw,System.Byte[]) extern "C" IL2CPP_METHOD_ATTR intptr_t UploadHandlerRaw_Create_m921D80A8952FC740F358E5FD28E6D5A70622687B (UploadHandlerRaw_t9E6A69B7726F134F31F6744F5EFDF611E7C54F27 * ___self0, ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___data1, const RuntimeMethod* method); // System.Void UnityEngine.Networking.UploadHandlerRaw::InternalSetContentType(System.String) extern "C" IL2CPP_METHOD_ATTR void UploadHandlerRaw_InternalSetContentType_mA62DF10D9DB6A5D8EA322F7E3B315EA182C3A898 (UploadHandlerRaw_t9E6A69B7726F134F31F6744F5EFDF611E7C54F27 * __this, String_t* ___newContentType0, const RuntimeMethod* method); // System.Void System.Collections.Generic.List`1<System.Byte[]>::.ctor() inline void List_1__ctor_m52FC81AB50BD21B6BFA16546E3AF9C94611D9811 (List_1_t4AB280456F4DE770AC993DE9A7C8C563A6311531 * __this, const RuntimeMethod* method) { (( void (*) (List_1_t4AB280456F4DE770AC993DE9A7C8C563A6311531 *, const RuntimeMethod*))List_1__ctor_mC832F1AC0F814BAEB19175F5D7972A7507508BC3_gshared)(__this, method); } // System.Void System.Collections.Generic.List`1<System.String>::.ctor() inline void List_1__ctor_mDA22758D73530683C950C5CCF39BDB4E7E1F3F06 (List_1_tE8032E48C661C350FF9550E9063D595C0AB25CD3 * __this, const RuntimeMethod* method) { (( void (*) (List_1_tE8032E48C661C350FF9550E9063D595C0AB25CD3 *, const RuntimeMethod*))List_1__ctor_mC832F1AC0F814BAEB19175F5D7972A7507508BC3_gshared)(__this, method); } // System.Int32 UnityEngine.Random::Range(System.Int32,System.Int32) extern "C" IL2CPP_METHOD_ATTR int32_t Random_Range_mD0C8F37FF3CAB1D87AAA6C45130BD59626BD6780 (int32_t p0, int32_t p1, const RuntimeMethod* method); // System.Void UnityEngine.WWWForm::AddBinaryData(System.String,System.Byte[],System.String,System.String) extern "C" IL2CPP_METHOD_ATTR void WWWForm_AddBinaryData_m6D70BA4B0246D26B365138CBFF9EF4780A579782 (WWWForm_t8D5ED7CAC180C102E377B21A70CC6A9AD5EAAD24 * __this, String_t* ___fieldName0, ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___contents1, String_t* ___fileName2, String_t* ___mimeType3, const RuntimeMethod* method); // System.String System.String::Concat(System.String,System.String) extern "C" IL2CPP_METHOD_ATTR String_t* String_Concat_mB78D0094592718DA6D5DB6C712A9C225631666BE (String_t* p0, String_t* p1, const RuntimeMethod* method); // System.Void System.Collections.Generic.List`1<System.String>::Add(!0) inline void List_1_Add_mA348FA1140766465189459D25B01EB179001DE83 (List_1_tE8032E48C661C350FF9550E9063D595C0AB25CD3 * __this, String_t* p0, const RuntimeMethod* method) { (( void (*) (List_1_tE8032E48C661C350FF9550E9063D595C0AB25CD3 *, String_t*, const RuntimeMethod*))List_1_Add_m6930161974C7504C80F52EC379EF012387D43138_gshared)(__this, p0, method); } // System.Void System.Collections.Generic.List`1<System.Byte[]>::Add(!0) inline void List_1_Add_mCC9D38BB3CBE3F2E67EDF3390D36ABFAD293468E (List_1_t4AB280456F4DE770AC993DE9A7C8C563A6311531 * __this, ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* p0, const RuntimeMethod* method) { (( void (*) (List_1_t4AB280456F4DE770AC993DE9A7C8C563A6311531 *, ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*, const RuntimeMethod*))List_1_Add_m6930161974C7504C80F52EC379EF012387D43138_gshared)(__this, p0, method); } // System.Void System.Collections.Generic.Dictionary`2<System.String,System.String>::.ctor() inline void Dictionary_2__ctor_m5B1C279E77422BB0B2C7B0374ECF89E3224AF62B (Dictionary_2_t931BF283048C4E74FC063C3036E5F3FE328861FC * __this, const RuntimeMethod* method) { (( void (*) (Dictionary_2_t931BF283048C4E74FC063C3036E5F3FE328861FC *, const RuntimeMethod*))Dictionary_2__ctor_m2C7E51568033239B506E15E7804A0B8658246498_gshared)(__this, method); } // System.String System.String::Concat(System.String,System.String,System.String) extern "C" IL2CPP_METHOD_ATTR String_t* String_Concat_mF4626905368D6558695A823466A1AF65EADB9923 (String_t* p0, String_t* p1, String_t* p2, const RuntimeMethod* method); // System.Void System.Collections.Generic.Dictionary`2<System.String,System.String>::set_Item(!0,!1) inline void Dictionary_2_set_Item_m597918251624A4BF29104324490143CFCA659FAD (Dictionary_2_t931BF283048C4E74FC063C3036E5F3FE328861FC * __this, String_t* p0, String_t* p1, const RuntimeMethod* method) { (( void (*) (Dictionary_2_t931BF283048C4E74FC063C3036E5F3FE328861FC *, String_t*, String_t*, const RuntimeMethod*))Dictionary_2_set_Item_m466D001F105E25DEB5C9BCB17837EE92A27FDE93_gshared)(__this, p0, p1, method); } // System.Text.Encoding UnityEngine.WWWForm::get_DefaultEncoding() extern "C" IL2CPP_METHOD_ATTR Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * WWWForm_get_DefaultEncoding_m13BB72339201269AB257B275B20A5A35B233BC3F (const RuntimeMethod* method); // System.Void System.IO.MemoryStream::.ctor(System.Int32) extern "C" IL2CPP_METHOD_ATTR void MemoryStream__ctor_m78689C82DED9ACE5022B7EABF28F17FF318DF2AA (MemoryStream_t495F44B85E6B4DDE2BB7E17DE963256A74E2298C * __this, int32_t p0, const RuntimeMethod* method); // !0 System.Collections.Generic.List`1<System.String>::get_Item(System.Int32) inline String_t* List_1_get_Item_mB739B0066E5F7EBDBA9978F24A73D26D4FAE5BED (List_1_tE8032E48C661C350FF9550E9063D595C0AB25CD3 * __this, int32_t p0, const RuntimeMethod* method) { return (( String_t* (*) (List_1_tE8032E48C661C350FF9550E9063D595C0AB25CD3 *, int32_t, const RuntimeMethod*))List_1_get_Item_mFDB8AD680C600072736579BBF5F38F7416396588_gshared)(__this, p0, method); } // System.Boolean UnityEngine.WWWTranscoder::SevenBitClean(System.String,System.Text.Encoding) extern "C" IL2CPP_METHOD_ATTR bool WWWTranscoder_SevenBitClean_m6805326B108F514EF531375332C90963B9A99EA6 (String_t* ___s0, Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * ___e1, const RuntimeMethod* method); // System.Int32 System.String::IndexOf(System.String) extern "C" IL2CPP_METHOD_ATTR int32_t String_IndexOf_mA9A0117D68338238E51E5928CDA8EB3DC9DA497B (String_t* __this, String_t* p0, const RuntimeMethod* method); // System.String UnityEngine.WWWTranscoder::QPEncode(System.String,System.Text.Encoding) extern "C" IL2CPP_METHOD_ATTR String_t* WWWTranscoder_QPEncode_m8D6CDDD2224B115D869C330D10270027C48446E7 (String_t* ___toEncode0, Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * ___e1, const RuntimeMethod* method); // System.String System.String::Concat(System.String[]) extern "C" IL2CPP_METHOD_ATTR String_t* String_Concat_m232E857CA5107EA6AC52E7DD7018716C021F237B (StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* p0, const RuntimeMethod* method); // !0 System.Collections.Generic.List`1<System.Byte[]>::get_Item(System.Int32) inline ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* List_1_get_Item_m2BE218005C01E5A3FE3CD353F077053DD13B0476 (List_1_t4AB280456F4DE770AC993DE9A7C8C563A6311531 * __this, int32_t p0, const RuntimeMethod* method) { return (( ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* (*) (List_1_t4AB280456F4DE770AC993DE9A7C8C563A6311531 *, int32_t, const RuntimeMethod*))List_1_get_Item_mFDB8AD680C600072736579BBF5F38F7416396588_gshared)(__this, p0, method); } // System.Int32 System.Collections.Generic.List`1<System.Byte[]>::get_Count() inline int32_t List_1_get_Count_m60AE24FF9D8000083F8EE65662CAA6EE46ADA29A (List_1_t4AB280456F4DE770AC993DE9A7C8C563A6311531 * __this, const RuntimeMethod* method) { return (( int32_t (*) (List_1_t4AB280456F4DE770AC993DE9A7C8C563A6311531 *, const RuntimeMethod*))List_1_get_Count_m507C9149FF7F83AAC72C29091E745D557DA47D22_gshared)(__this, method); } // System.Byte[] UnityEngine.WWWTranscoder::DataEncode(System.Byte[]) extern "C" IL2CPP_METHOD_ATTR ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* WWWTranscoder_DataEncode_mAD3C2EBF2E04CAEBDFB8873DC7987378C88A67F4 (ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___toEncode0, const RuntimeMethod* method); // System.Byte[] UnityEngine.WWWTranscoder::Encode(System.Byte[],System.Byte,System.Byte[],System.Byte[],System.Boolean) extern "C" IL2CPP_METHOD_ATTR ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* WWWTranscoder_Encode_m2D65124BA0FF6E92A66B5804596B75898068CF84 (ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___input0, uint8_t ___escapeChar1, ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___space2, ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___forbidden3, bool ___uppercase4, const RuntimeMethod* method); // System.Boolean UnityEngine.WWWTranscoder::ByteArrayContains(System.Byte[],System.Byte) extern "C" IL2CPP_METHOD_ATTR bool WWWTranscoder_ByteArrayContains_mC89ADE5434606470BB3BAF857D786138825E2D0B (ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___array0, uint8_t ___b1, const RuntimeMethod* method); // System.Byte[] UnityEngine.WWWTranscoder::Byte2Hex(System.Byte,System.Byte[]) extern "C" IL2CPP_METHOD_ATTR ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* WWWTranscoder_Byte2Hex_mA129675BFEDFED879713DAB1592772BC52FA04FB (uint8_t ___b0, ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___hexChars1, const RuntimeMethod* method); // System.Byte[] UnityEngine.WWWTranscoder::Decode(System.Byte[],System.Byte,System.Byte[]) extern "C" IL2CPP_METHOD_ATTR ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* WWWTranscoder_Decode_m2533830DAAAE6F33AA6EE85A5BF63C96F5D631D4 (ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___input0, uint8_t ___escapeChar1, ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___space2, const RuntimeMethod* method); // System.Boolean UnityEngine.WWWTranscoder::ByteSubArrayEquals(System.Byte[],System.Int32,System.Byte[]) extern "C" IL2CPP_METHOD_ATTR bool WWWTranscoder_ByteSubArrayEquals_m268C2A9B31CCF4D81E7BEEF843DF5D477ECA9958 (ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___array0, int32_t ___index1, ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___comperand2, const RuntimeMethod* method); // System.Byte UnityEngine.WWWTranscoder::Hex2Byte(System.Byte[],System.Int32) extern "C" IL2CPP_METHOD_ATTR uint8_t WWWTranscoder_Hex2Byte_mD417CA540CFBE045FCE32959CD3443EB9C8C7423 (ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___b0, int32_t ___offset1, const RuntimeMethod* method); // System.Boolean UnityEngine.WWWTranscoder::SevenBitClean(System.Byte[]) extern "C" IL2CPP_METHOD_ATTR bool WWWTranscoder_SevenBitClean_mC37FC90C62CF3B311A46A529C9BB6727BA81F8BD (ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___input0, const RuntimeMethod* method); // System.Char System.String::get_Chars(System.Int32) extern "C" IL2CPP_METHOD_ATTR Il2CppChar String_get_Chars_m14308AC3B95F8C1D9F1D1055B116B37D595F1D96 (String_t* __this, int32_t p0, const RuntimeMethod* method); // System.Void System.Uri::.ctor(System.String,System.UriKind) extern "C" IL2CPP_METHOD_ATTR void Uri__ctor_mA02DB222F4F35380DE2700D84F58EB42497FDDE4 (Uri_t87E4A94B2901F5EEDD18AA72C3DB1B00E672D68E * __this, String_t* p0, int32_t p1, const RuntimeMethod* method); // System.Boolean System.Uri::get_IsAbsoluteUri() extern "C" IL2CPP_METHOD_ATTR bool Uri_get_IsAbsoluteUri_m8C189085F1C675DBC3148AA70C38074EC075D722 (Uri_t87E4A94B2901F5EEDD18AA72C3DB1B00E672D68E * __this, const RuntimeMethod* method); // System.String System.Uri::get_AbsoluteUri() extern "C" IL2CPP_METHOD_ATTR String_t* Uri_get_AbsoluteUri_m4326730E572E7E3874021E802813EB6F49F7F99E (Uri_t87E4A94B2901F5EEDD18AA72C3DB1B00E672D68E * __this, const RuntimeMethod* method); // System.Void System.Uri::.ctor(System.Uri,System.Uri) extern "C" IL2CPP_METHOD_ATTR void Uri__ctor_m42192656437FBEF1EEA8724D3EF2BB67DA0ED6BF (Uri_t87E4A94B2901F5EEDD18AA72C3DB1B00E672D68E * __this, Uri_t87E4A94B2901F5EEDD18AA72C3DB1B00E672D68E * p0, Uri_t87E4A94B2901F5EEDD18AA72C3DB1B00E672D68E * p1, const RuntimeMethod* method); // System.Void System.Uri::.ctor(System.String) extern "C" IL2CPP_METHOD_ATTR void Uri__ctor_mBA69907A1D799CD12ED44B611985B25FE4C626A2 (Uri_t87E4A94B2901F5EEDD18AA72C3DB1B00E672D68E * __this, String_t* p0, const RuntimeMethod* method); // System.Void System.Uri::.ctor(System.Uri,System.String) extern "C" IL2CPP_METHOD_ATTR void Uri__ctor_m41A759BF295FB902084DD289849793E01A65A14E (Uri_t87E4A94B2901F5EEDD18AA72C3DB1B00E672D68E * __this, Uri_t87E4A94B2901F5EEDD18AA72C3DB1B00E672D68E * p0, String_t* p1, const RuntimeMethod* method); // System.Boolean System.Uri::op_Equality(System.Uri,System.Uri) extern "C" IL2CPP_METHOD_ATTR bool Uri_op_Equality_mFED3D4AFAB090B76D2088C485507F8F702ADA18F (Uri_t87E4A94B2901F5EEDD18AA72C3DB1B00E672D68E * p0, Uri_t87E4A94B2901F5EEDD18AA72C3DB1B00E672D68E * p1, const RuntimeMethod* method); // System.Boolean System.Text.RegularExpressions.Regex::IsMatch(System.String) extern "C" IL2CPP_METHOD_ATTR bool Regex_IsMatch_m79684C4D2CE6C5495BCCE9A32AC029E1E5950B7C (Regex_tFD46E63A462E852189FD6AB4E2B0B67C4D8FDBDF * __this, String_t* p0, const RuntimeMethod* method); // System.String System.Uri::get_Scheme() extern "C" IL2CPP_METHOD_ATTR String_t* Uri_get_Scheme_m14A8F0018D8AACADBEF39600A59944F33EE39187 (Uri_t87E4A94B2901F5EEDD18AA72C3DB1B00E672D68E * __this, const RuntimeMethod* method); // System.String UnityEngineInternal.WebRequestUtils::MakeUriString(System.Uri,System.String,System.Boolean) extern "C" IL2CPP_METHOD_ATTR String_t* WebRequestUtils_MakeUriString_m5693EA04230335B9611278EFC189BD58339D01E4 (Uri_t87E4A94B2901F5EEDD18AA72C3DB1B00E672D68E * ___targetUri0, String_t* ___targetUrl1, bool ___prependProtocol2, const RuntimeMethod* method); // System.Boolean System.Uri::get_IsFile() extern "C" IL2CPP_METHOD_ATTR bool Uri_get_IsFile_m06AB5A15E2A34BBC5177C6E902C5C9D7E766A213 (Uri_t87E4A94B2901F5EEDD18AA72C3DB1B00E672D68E * __this, const RuntimeMethod* method); // System.Boolean System.Uri::get_IsLoopback() extern "C" IL2CPP_METHOD_ATTR bool Uri_get_IsLoopback_mCD7E1228C8296730CBD31C713B0A81B660D99BC4 (Uri_t87E4A94B2901F5EEDD18AA72C3DB1B00E672D68E * __this, const RuntimeMethod* method); // System.String System.Uri::get_OriginalString() extern "C" IL2CPP_METHOD_ATTR String_t* Uri_get_OriginalString_m56099E46276F0A52524347F1F46A2F88E948504F (Uri_t87E4A94B2901F5EEDD18AA72C3DB1B00E672D68E * __this, const RuntimeMethod* method); // System.String System.Uri::get_AbsolutePath() extern "C" IL2CPP_METHOD_ATTR String_t* Uri_get_AbsolutePath_mA9A825E2BBD0A43AD76EB9A9765E29E45FE32F31 (Uri_t87E4A94B2901F5EEDD18AA72C3DB1B00E672D68E * __this, const RuntimeMethod* method); // System.Boolean System.String::Contains(System.String) extern "C" IL2CPP_METHOD_ATTR bool String_Contains_m4488034AF8CB3EEA9A205EB8A1F25D438FF8704B (String_t* __this, String_t* p0, const RuntimeMethod* method); // System.String UnityEngineInternal.WebRequestUtils::URLDecode(System.String) extern "C" IL2CPP_METHOD_ATTR String_t* WebRequestUtils_URLDecode_m3F75FA29F50FB340B93815988517E9208C52EE62 (String_t* ___encoded0, const RuntimeMethod* method); // System.Int32 System.String::get_Length() extern "C" IL2CPP_METHOD_ATTR int32_t String_get_Length_mD48C8A16A5CF1914F330DCE82D9BE15C3BEDD018 (String_t* __this, const RuntimeMethod* method); // System.String System.String::Concat(System.Object,System.Object) extern "C" IL2CPP_METHOD_ATTR String_t* String_Concat_mBB19C73816BDD1C3519F248E1ADC8E11A6FDB495 (RuntimeObject * p0, RuntimeObject * p1, const RuntimeMethod* method); // System.Void System.Text.StringBuilder::.ctor(System.String,System.Int32) extern "C" IL2CPP_METHOD_ATTR void StringBuilder__ctor_m786CAFE74FE0D479747A0D474BE6EBCFDA5743EA (StringBuilder_t * __this, String_t* p0, int32_t p1, const RuntimeMethod* method); // System.Text.StringBuilder System.Text.StringBuilder::Append(System.Char) extern "C" IL2CPP_METHOD_ATTR StringBuilder_t * StringBuilder_Append_m05C12F58ADC2D807613A9301DF438CB3CD09B75A (StringBuilder_t * __this, Il2CppChar p0, const RuntimeMethod* method); // System.Boolean System.String::StartsWith(System.String) extern "C" IL2CPP_METHOD_ATTR bool String_StartsWith_m7D468FB7C801D9C2DBEEEEC86F8BA8F4EC3243C1 (String_t* __this, String_t* p0, const RuntimeMethod* method); // System.Text.StringBuilder System.Text.StringBuilder::Append(System.String) extern "C" IL2CPP_METHOD_ATTR StringBuilder_t * StringBuilder_Append_mDBB8CCBB7750C67BE2F2D92F47E6C0FA42793260 (StringBuilder_t * __this, String_t* p0, const RuntimeMethod* method); // System.String System.Uri::get_PathAndQuery() extern "C" IL2CPP_METHOD_ATTR String_t* Uri_get_PathAndQuery_mF079BA04B7A397B2729E5B5DEE72B3654A44E384 (Uri_t87E4A94B2901F5EEDD18AA72C3DB1B00E672D68E * __this, const RuntimeMethod* method); // System.String System.Uri::get_Fragment() extern "C" IL2CPP_METHOD_ATTR String_t* Uri_get_Fragment_m111666DD668AC59B9F3C3D3CEEEC7F70F6904D41 (Uri_t87E4A94B2901F5EEDD18AA72C3DB1B00E672D68E * __this, const RuntimeMethod* method); // System.Byte[] UnityEngine.WWWTranscoder::URLDecode(System.Byte[]) extern "C" IL2CPP_METHOD_ATTR ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* WWWTranscoder_URLDecode_m591A567154B1B8737ECBFE065AF4FCA59217F5D8 (ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___toEncode0, const RuntimeMethod* method); // System.Void System.Text.RegularExpressions.Regex::.ctor(System.String) extern "C" IL2CPP_METHOD_ATTR void Regex__ctor_m2769A5BA7B7A835514F6C0E4D30FAD467C6B1B0C (Regex_tFD46E63A462E852189FD6AB4E2B0B67C4D8FDBDF * __this, String_t* p0, const RuntimeMethod* method); #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 // Conversion methods for marshalling of: UnityEngine.Networking.CertificateHandler extern "C" void CertificateHandler_tBD070BF4150A44AB482FD36EA3882C363117E8C0_marshal_pinvoke(const CertificateHandler_tBD070BF4150A44AB482FD36EA3882C363117E8C0& unmarshaled, CertificateHandler_tBD070BF4150A44AB482FD36EA3882C363117E8C0_marshaled_pinvoke& marshaled) { marshaled.___m_Ptr_0 = unmarshaled.get_m_Ptr_0(); } extern "C" void CertificateHandler_tBD070BF4150A44AB482FD36EA3882C363117E8C0_marshal_pinvoke_back(const CertificateHandler_tBD070BF4150A44AB482FD36EA3882C363117E8C0_marshaled_pinvoke& marshaled, CertificateHandler_tBD070BF4150A44AB482FD36EA3882C363117E8C0& unmarshaled) { intptr_t unmarshaled_m_Ptr_temp_0; memset(&unmarshaled_m_Ptr_temp_0, 0, sizeof(unmarshaled_m_Ptr_temp_0)); unmarshaled_m_Ptr_temp_0 = marshaled.___m_Ptr_0; unmarshaled.set_m_Ptr_0(unmarshaled_m_Ptr_temp_0); } // Conversion method for clean up from marshalling of: UnityEngine.Networking.CertificateHandler extern "C" void CertificateHandler_tBD070BF4150A44AB482FD36EA3882C363117E8C0_marshal_pinvoke_cleanup(CertificateHandler_tBD070BF4150A44AB482FD36EA3882C363117E8C0_marshaled_pinvoke& marshaled) { } // Conversion methods for marshalling of: UnityEngine.Networking.CertificateHandler extern "C" void CertificateHandler_tBD070BF4150A44AB482FD36EA3882C363117E8C0_marshal_com(const CertificateHandler_tBD070BF4150A44AB482FD36EA3882C363117E8C0& unmarshaled, CertificateHandler_tBD070BF4150A44AB482FD36EA3882C363117E8C0_marshaled_com& marshaled) { marshaled.___m_Ptr_0 = unmarshaled.get_m_Ptr_0(); } extern "C" void CertificateHandler_tBD070BF4150A44AB482FD36EA3882C363117E8C0_marshal_com_back(const CertificateHandler_tBD070BF4150A44AB482FD36EA3882C363117E8C0_marshaled_com& marshaled, CertificateHandler_tBD070BF4150A44AB482FD36EA3882C363117E8C0& unmarshaled) { intptr_t unmarshaled_m_Ptr_temp_0; memset(&unmarshaled_m_Ptr_temp_0, 0, sizeof(unmarshaled_m_Ptr_temp_0)); unmarshaled_m_Ptr_temp_0 = marshaled.___m_Ptr_0; unmarshaled.set_m_Ptr_0(unmarshaled_m_Ptr_temp_0); } // Conversion method for clean up from marshalling of: UnityEngine.Networking.CertificateHandler extern "C" void CertificateHandler_tBD070BF4150A44AB482FD36EA3882C363117E8C0_marshal_com_cleanup(CertificateHandler_tBD070BF4150A44AB482FD36EA3882C363117E8C0_marshaled_com& marshaled) { } // System.Void UnityEngine.Networking.CertificateHandler::Release() extern "C" IL2CPP_METHOD_ATTR void CertificateHandler_Release_m8D680D11AF8B070587DA5C73E2AE652208BDA90A (CertificateHandler_tBD070BF4150A44AB482FD36EA3882C363117E8C0 * __this, const RuntimeMethod* method) { typedef void (*CertificateHandler_Release_m8D680D11AF8B070587DA5C73E2AE652208BDA90A_ftn) (CertificateHandler_tBD070BF4150A44AB482FD36EA3882C363117E8C0 *); static CertificateHandler_Release_m8D680D11AF8B070587DA5C73E2AE652208BDA90A_ftn _il2cpp_icall_func; if (!_il2cpp_icall_func) _il2cpp_icall_func = (CertificateHandler_Release_m8D680D11AF8B070587DA5C73E2AE652208BDA90A_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.Networking.CertificateHandler::Release()"); _il2cpp_icall_func(__this); } // System.Void UnityEngine.Networking.CertificateHandler::Finalize() extern "C" IL2CPP_METHOD_ATTR void CertificateHandler_Finalize_m897F6342A2C8D1AC7AA32B6B12E3C961844BF9ED (CertificateHandler_tBD070BF4150A44AB482FD36EA3882C363117E8C0 * __this, const RuntimeMethod* method) { Exception_t * __last_unhandled_exception = 0; NO_UNUSED_WARNING (__last_unhandled_exception); Exception_t * __exception_local = 0; NO_UNUSED_WARNING (__exception_local); int32_t __leave_target = -1; NO_UNUSED_WARNING (__leave_target); { } IL_0001: try { // begin try (depth: 1) CertificateHandler_Dispose_m9C71BAA51760FDF05AB999B6AB6E6BC71BCB8CA0(__this, /*hidden argument*/NULL); IL2CPP_LEAVE(0x13, FINALLY_000c); } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __last_unhandled_exception = (Exception_t *)e.ex; goto FINALLY_000c; } FINALLY_000c: { // begin finally (depth: 1) Object_Finalize_m4015B7D3A44DE125C5FE34D7276CD4697C06F380(__this, /*hidden argument*/NULL); IL2CPP_RESET_LEAVE(0x13); IL2CPP_END_FINALLY(12) } // end finally (depth: 1) IL2CPP_CLEANUP(12) { IL2CPP_JUMP_TBL(0x13, IL_0013) IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *) } IL_0013: { return; } } // System.Boolean UnityEngine.Networking.CertificateHandler::ValidateCertificate(System.Byte[]) extern "C" IL2CPP_METHOD_ATTR bool CertificateHandler_ValidateCertificate_m10584FA8D39D238AA435AB440279D3943273817D (CertificateHandler_tBD070BF4150A44AB482FD36EA3882C363117E8C0 * __this, ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___certificateData0, const RuntimeMethod* method) { bool V_0 = false; { V_0 = (bool)0; goto IL_0008; } IL_0008: { bool L_0 = V_0; return L_0; } } // System.Boolean UnityEngine.Networking.CertificateHandler::ValidateCertificateNative(System.Byte[]) extern "C" IL2CPP_METHOD_ATTR bool CertificateHandler_ValidateCertificateNative_mE500FAB5B59229D61E85A5DC0E28A0F583679170 (CertificateHandler_tBD070BF4150A44AB482FD36EA3882C363117E8C0 * __this, ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___certificateData0, const RuntimeMethod* method) { bool V_0 = false; { ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_0 = ___certificateData0; bool L_1 = VirtFuncInvoker1< bool, ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* >::Invoke(5 /* System.Boolean UnityEngine.Networking.CertificateHandler::ValidateCertificate(System.Byte[]) */, __this, L_0); V_0 = L_1; goto IL_000e; } IL_000e: { bool L_2 = V_0; return L_2; } } // System.Void UnityEngine.Networking.CertificateHandler::Dispose() extern "C" IL2CPP_METHOD_ATTR void CertificateHandler_Dispose_m9C71BAA51760FDF05AB999B6AB6E6BC71BCB8CA0 (CertificateHandler_tBD070BF4150A44AB482FD36EA3882C363117E8C0 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (CertificateHandler_Dispose_m9C71BAA51760FDF05AB999B6AB6E6BC71BCB8CA0_MetadataUsageId); s_Il2CppMethodInitialized = true; } { intptr_t L_0 = __this->get_m_Ptr_0(); bool L_1 = IntPtr_op_Inequality_mB4886A806009EA825EFCC60CD2A7F6EB8E273A61((intptr_t)L_0, (intptr_t)(0), /*hidden argument*/NULL); if (!L_1) { goto IL_0029; } } { CertificateHandler_Release_m8D680D11AF8B070587DA5C73E2AE652208BDA90A(__this, /*hidden argument*/NULL); __this->set_m_Ptr_0((intptr_t)(0)); } IL_0029: { return; } } #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 // Conversion methods for marshalling of: UnityEngine.Networking.DownloadHandler extern "C" void DownloadHandler_t4A7802ADC97024B469C87FA454B6973951980EE9_marshal_pinvoke(const DownloadHandler_t4A7802ADC97024B469C87FA454B6973951980EE9& unmarshaled, DownloadHandler_t4A7802ADC97024B469C87FA454B6973951980EE9_marshaled_pinvoke& marshaled) { marshaled.___m_Ptr_0 = unmarshaled.get_m_Ptr_0(); } extern "C" void DownloadHandler_t4A7802ADC97024B469C87FA454B6973951980EE9_marshal_pinvoke_back(const DownloadHandler_t4A7802ADC97024B469C87FA454B6973951980EE9_marshaled_pinvoke& marshaled, DownloadHandler_t4A7802ADC97024B469C87FA454B6973951980EE9& unmarshaled) { intptr_t unmarshaled_m_Ptr_temp_0; memset(&unmarshaled_m_Ptr_temp_0, 0, sizeof(unmarshaled_m_Ptr_temp_0)); unmarshaled_m_Ptr_temp_0 = marshaled.___m_Ptr_0; unmarshaled.set_m_Ptr_0(unmarshaled_m_Ptr_temp_0); } // Conversion method for clean up from marshalling of: UnityEngine.Networking.DownloadHandler extern "C" void DownloadHandler_t4A7802ADC97024B469C87FA454B6973951980EE9_marshal_pinvoke_cleanup(DownloadHandler_t4A7802ADC97024B469C87FA454B6973951980EE9_marshaled_pinvoke& marshaled) { } // Conversion methods for marshalling of: UnityEngine.Networking.DownloadHandler extern "C" void DownloadHandler_t4A7802ADC97024B469C87FA454B6973951980EE9_marshal_com(const DownloadHandler_t4A7802ADC97024B469C87FA454B6973951980EE9& unmarshaled, DownloadHandler_t4A7802ADC97024B469C87FA454B6973951980EE9_marshaled_com& marshaled) { marshaled.___m_Ptr_0 = unmarshaled.get_m_Ptr_0(); } extern "C" void DownloadHandler_t4A7802ADC97024B469C87FA454B6973951980EE9_marshal_com_back(const DownloadHandler_t4A7802ADC97024B469C87FA454B6973951980EE9_marshaled_com& marshaled, DownloadHandler_t4A7802ADC97024B469C87FA454B6973951980EE9& unmarshaled) { intptr_t unmarshaled_m_Ptr_temp_0; memset(&unmarshaled_m_Ptr_temp_0, 0, sizeof(unmarshaled_m_Ptr_temp_0)); unmarshaled_m_Ptr_temp_0 = marshaled.___m_Ptr_0; unmarshaled.set_m_Ptr_0(unmarshaled_m_Ptr_temp_0); } // Conversion method for clean up from marshalling of: UnityEngine.Networking.DownloadHandler extern "C" void DownloadHandler_t4A7802ADC97024B469C87FA454B6973951980EE9_marshal_com_cleanup(DownloadHandler_t4A7802ADC97024B469C87FA454B6973951980EE9_marshaled_com& marshaled) { } // System.Void UnityEngine.Networking.DownloadHandler::.ctor() extern "C" IL2CPP_METHOD_ATTR void DownloadHandler__ctor_m39F80F1C9B379B0D0362DF9264DE42604BDB24E0 (DownloadHandler_t4A7802ADC97024B469C87FA454B6973951980EE9 * __this, const RuntimeMethod* method) { { Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0(__this, /*hidden argument*/NULL); return; } } // System.Void UnityEngine.Networking.DownloadHandler::Release() extern "C" IL2CPP_METHOD_ATTR void DownloadHandler_Release_m913DA503E4183F3323A3D0121FFC978D0F220D5D (DownloadHandler_t4A7802ADC97024B469C87FA454B6973951980EE9 * __this, const RuntimeMethod* method) { typedef void (*DownloadHandler_Release_m913DA503E4183F3323A3D0121FFC978D0F220D5D_ftn) (DownloadHandler_t4A7802ADC97024B469C87FA454B6973951980EE9 *); static DownloadHandler_Release_m913DA503E4183F3323A3D0121FFC978D0F220D5D_ftn _il2cpp_icall_func; if (!_il2cpp_icall_func) _il2cpp_icall_func = (DownloadHandler_Release_m913DA503E4183F3323A3D0121FFC978D0F220D5D_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.Networking.DownloadHandler::Release()"); _il2cpp_icall_func(__this); } // System.Void UnityEngine.Networking.DownloadHandler::Finalize() extern "C" IL2CPP_METHOD_ATTR void DownloadHandler_Finalize_mC6CBFA6D7B38827B12D64D265D5D4FB6B57D50CA (DownloadHandler_t4A7802ADC97024B469C87FA454B6973951980EE9 * __this, const RuntimeMethod* method) { Exception_t * __last_unhandled_exception = 0; NO_UNUSED_WARNING (__last_unhandled_exception); Exception_t * __exception_local = 0; NO_UNUSED_WARNING (__exception_local); int32_t __leave_target = -1; NO_UNUSED_WARNING (__leave_target); { } IL_0001: try { // begin try (depth: 1) DownloadHandler_Dispose_m7478E72B2DBA4B55FAA25F7A1975A13BA5891D4B(__this, /*hidden argument*/NULL); IL2CPP_LEAVE(0x13, FINALLY_000c); } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __last_unhandled_exception = (Exception_t *)e.ex; goto FINALLY_000c; } FINALLY_000c: { // begin finally (depth: 1) Object_Finalize_m4015B7D3A44DE125C5FE34D7276CD4697C06F380(__this, /*hidden argument*/NULL); IL2CPP_RESET_LEAVE(0x13); IL2CPP_END_FINALLY(12) } // end finally (depth: 1) IL2CPP_CLEANUP(12) { IL2CPP_JUMP_TBL(0x13, IL_0013) IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *) } IL_0013: { return; } } // System.Void UnityEngine.Networking.DownloadHandler::Dispose() extern "C" IL2CPP_METHOD_ATTR void DownloadHandler_Dispose_m7478E72B2DBA4B55FAA25F7A1975A13BA5891D4B (DownloadHandler_t4A7802ADC97024B469C87FA454B6973951980EE9 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (DownloadHandler_Dispose_m7478E72B2DBA4B55FAA25F7A1975A13BA5891D4B_MetadataUsageId); s_Il2CppMethodInitialized = true; } { intptr_t L_0 = __this->get_m_Ptr_0(); bool L_1 = IntPtr_op_Inequality_mB4886A806009EA825EFCC60CD2A7F6EB8E273A61((intptr_t)L_0, (intptr_t)(0), /*hidden argument*/NULL); if (!L_1) { goto IL_0029; } } { DownloadHandler_Release_m913DA503E4183F3323A3D0121FFC978D0F220D5D(__this, /*hidden argument*/NULL); __this->set_m_Ptr_0((intptr_t)(0)); } IL_0029: { return; } } // System.Byte[] UnityEngine.Networking.DownloadHandler::get_data() extern "C" IL2CPP_METHOD_ATTR ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* DownloadHandler_get_data_m4AE4E3764FBE186ABA89B5F3A7F91048EE5E38FB (DownloadHandler_t4A7802ADC97024B469C87FA454B6973951980EE9 * __this, const RuntimeMethod* method) { ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* V_0 = NULL; { ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_0 = VirtFuncInvoker0< ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* >::Invoke(5 /* System.Byte[] UnityEngine.Networking.DownloadHandler::GetData() */, __this); V_0 = L_0; goto IL_000d; } IL_000d: { ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_1 = V_0; return L_1; } } // System.String UnityEngine.Networking.DownloadHandler::get_text() extern "C" IL2CPP_METHOD_ATTR String_t* DownloadHandler_get_text_m1D707E375899B4F4F0434B79AB8D57ADFE5424FF (DownloadHandler_t4A7802ADC97024B469C87FA454B6973951980EE9 * __this, const RuntimeMethod* method) { String_t* V_0 = NULL; { String_t* L_0 = VirtFuncInvoker0< String_t* >::Invoke(6 /* System.String UnityEngine.Networking.DownloadHandler::GetText() */, __this); V_0 = L_0; goto IL_000d; } IL_000d: { String_t* L_1 = V_0; return L_1; } } // System.Byte[] UnityEngine.Networking.DownloadHandler::GetData() extern "C" IL2CPP_METHOD_ATTR ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* DownloadHandler_GetData_m684807DC14346A128E64E455E8DD147C32125E04 (DownloadHandler_t4A7802ADC97024B469C87FA454B6973951980EE9 * __this, const RuntimeMethod* method) { ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* V_0 = NULL; { V_0 = (ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*)NULL; goto IL_0008; } IL_0008: { ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_0 = V_0; return L_0; } } // System.String UnityEngine.Networking.DownloadHandler::GetText() extern "C" IL2CPP_METHOD_ATTR String_t* DownloadHandler_GetText_mA51553E65D6A397E07AAAC21214C817AD72550FD (DownloadHandler_t4A7802ADC97024B469C87FA454B6973951980EE9 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (DownloadHandler_GetText_mA51553E65D6A397E07AAAC21214C817AD72550FD_MetadataUsageId); s_Il2CppMethodInitialized = true; } ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* V_0 = NULL; String_t* V_1 = NULL; { ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_0 = VirtFuncInvoker0< ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* >::Invoke(5 /* System.Byte[] UnityEngine.Networking.DownloadHandler::GetData() */, __this); V_0 = L_0; ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_1 = V_0; if (!L_1) { goto IL_002e; } } { ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_2 = V_0; NullCheck(L_2); if ((((int32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_2)->max_length))))) <= ((int32_t)0))) { goto IL_002e; } } { Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * L_3 = DownloadHandler_GetTextEncoder_m601540FD9D16122709582833632A9DEEDBF07E64(__this, /*hidden argument*/NULL); ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_4 = V_0; ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_5 = V_0; NullCheck(L_5); NullCheck(L_3); String_t* L_6 = VirtFuncInvoker3< String_t*, ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*, int32_t, int32_t >::Invoke(43 /* System.String System.Text.Encoding::GetString(System.Byte[],System.Int32,System.Int32) */, L_3, L_4, 0, (((int32_t)((int32_t)(((RuntimeArray *)L_5)->max_length))))); V_1 = L_6; goto IL_003a; } IL_002e: { V_1 = _stringLiteralDA39A3EE5E6B4B0D3255BFEF95601890AFD80709; goto IL_003a; } IL_003a: { String_t* L_7 = V_1; return L_7; } } // System.Text.Encoding UnityEngine.Networking.DownloadHandler::GetTextEncoder() extern "C" IL2CPP_METHOD_ATTR Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * DownloadHandler_GetTextEncoder_m601540FD9D16122709582833632A9DEEDBF07E64 (DownloadHandler_t4A7802ADC97024B469C87FA454B6973951980EE9 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (DownloadHandler_GetTextEncoder_m601540FD9D16122709582833632A9DEEDBF07E64_MetadataUsageId); s_Il2CppMethodInitialized = true; } String_t* V_0 = NULL; int32_t V_1 = 0; int32_t V_2 = 0; String_t* V_3 = NULL; int32_t V_4 = 0; Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * V_5 = NULL; ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * V_6 = NULL; Exception_t * __last_unhandled_exception = 0; NO_UNUSED_WARNING (__last_unhandled_exception); Exception_t * __exception_local = 0; NO_UNUSED_WARNING (__exception_local); int32_t __leave_target = -1; NO_UNUSED_WARNING (__leave_target); { String_t* L_0 = DownloadHandler_GetContentType_mB1653D4D9CA539D1D622C32B52DF5C38548D30E8(__this, /*hidden argument*/NULL); V_0 = L_0; String_t* L_1 = V_0; bool L_2 = String_IsNullOrEmpty_m06A85A206AC2106D1982826C5665B9BD35324229(L_1, /*hidden argument*/NULL); if (L_2) { goto IL_00b1; } } { String_t* L_3 = V_0; NullCheck(L_3); int32_t L_4 = String_IndexOf_mF9EA8429E9D1B7475D5A297E67435CF34E965F28(L_3, _stringLiteralDCB16D9AACB079FE42FBDE349C3319DE8033DDD1, 5, /*hidden argument*/NULL); V_1 = L_4; int32_t L_5 = V_1; if ((((int32_t)L_5) <= ((int32_t)(-1)))) { goto IL_00b0; } } { String_t* L_6 = V_0; int32_t L_7 = V_1; NullCheck(L_6); int32_t L_8 = String_IndexOf_m66F6178DB4B2F61F4FAFD8B75787D0AB142ADD7D(L_6, ((int32_t)61), L_7, /*hidden argument*/NULL); V_2 = L_8; int32_t L_9 = V_2; if ((((int32_t)L_9) <= ((int32_t)(-1)))) { goto IL_00af; } } { String_t* L_10 = V_0; int32_t L_11 = V_2; NullCheck(L_10); String_t* L_12 = String_Substring_m2C4AFF5E79DD8BADFD2DFBCF156BF728FBB8E1AE(L_10, ((int32_t)il2cpp_codegen_add((int32_t)L_11, (int32_t)1)), /*hidden argument*/NULL); NullCheck(L_12); String_t* L_13 = String_Trim_mB52EB7876C7132358B76B7DC95DEACA20722EF4D(L_12, /*hidden argument*/NULL); CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_14 = (CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2*)SZArrayNew(CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2_il2cpp_TypeInfo_var, (uint32_t)2); CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_15 = L_14; NullCheck(L_15); (L_15)->SetAt(static_cast<il2cpp_array_size_t>(0), (Il2CppChar)((int32_t)39)); CharU5BU5D_t4CC6ABF0AD71BEC97E3C2F1E9C5677E46D3A75C2* L_16 = L_15; NullCheck(L_16); (L_16)->SetAt(static_cast<il2cpp_array_size_t>(1), (Il2CppChar)((int32_t)34)); NullCheck(L_13); String_t* L_17 = String_Trim_m788DE5AEFDAC40E778745C4DF4AFD45A4BC1007E(L_13, L_16, /*hidden argument*/NULL); NullCheck(L_17); String_t* L_18 = String_Trim_mB52EB7876C7132358B76B7DC95DEACA20722EF4D(L_17, /*hidden argument*/NULL); V_3 = L_18; String_t* L_19 = V_3; NullCheck(L_19); int32_t L_20 = String_IndexOf_m2909B8CF585E1BD0C81E11ACA2F48012156FD5BD(L_19, ((int32_t)59), /*hidden argument*/NULL); V_4 = L_20; int32_t L_21 = V_4; if ((((int32_t)L_21) <= ((int32_t)(-1)))) { goto IL_0080; } } { String_t* L_22 = V_3; int32_t L_23 = V_4; NullCheck(L_22); String_t* L_24 = String_Substring_mB593C0A320C683E6E47EFFC0A12B7A465E5E43BB(L_22, 0, L_23, /*hidden argument*/NULL); V_3 = L_24; } IL_0080: try { // begin try (depth: 1) String_t* L_25 = V_3; Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * L_26 = Encoding_GetEncoding_mA19D07F2E88F8FF58D42B73AFF5E22241607D54E(L_25, /*hidden argument*/NULL); V_5 = L_26; goto IL_00bd; } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __exception_local = (Exception_t *)e.ex; if(il2cpp_codegen_class_is_assignable_from (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var, il2cpp_codegen_object_class(e.ex))) goto CATCH_008e; throw e; } CATCH_008e: { // begin catch(System.ArgumentException) V_6 = ((ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)__exception_local); String_t* L_27 = V_3; ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_28 = V_6; NullCheck(L_28); String_t* L_29 = VirtFuncInvoker0< String_t* >::Invoke(5 /* System.String System.Exception::get_Message() */, L_28); String_t* L_30 = String_Format_m19325298DBC61AAC016C16F7B3CF97A8A3DEA34A(_stringLiteral88DADF72F0A8F76B45A836CE12A3DC82857776DB, L_27, L_29, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(Debug_t7B5FCB117E2FD63B6838BC52821B252E2BFB61C4_il2cpp_TypeInfo_var); Debug_LogWarning_m37338644DC81F640CCDFEAE35A223F0E965F0568(L_30, /*hidden argument*/NULL); goto IL_00ae; } // end catch (depth: 1) IL_00ae: { } IL_00af: { } IL_00b0: { } IL_00b1: { Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * L_31 = Encoding_get_UTF8_m67C8652936B681E7BC7505E459E88790E0FF16D9(/*hidden argument*/NULL); V_5 = L_31; goto IL_00bd; } IL_00bd: { Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * L_32 = V_5; return L_32; } } // System.String UnityEngine.Networking.DownloadHandler::GetContentType() extern "C" IL2CPP_METHOD_ATTR String_t* DownloadHandler_GetContentType_mB1653D4D9CA539D1D622C32B52DF5C38548D30E8 (DownloadHandler_t4A7802ADC97024B469C87FA454B6973951980EE9 * __this, const RuntimeMethod* method) { typedef String_t* (*DownloadHandler_GetContentType_mB1653D4D9CA539D1D622C32B52DF5C38548D30E8_ftn) (DownloadHandler_t4A7802ADC97024B469C87FA454B6973951980EE9 *); static DownloadHandler_GetContentType_mB1653D4D9CA539D1D622C32B52DF5C38548D30E8_ftn _il2cpp_icall_func; if (!_il2cpp_icall_func) _il2cpp_icall_func = (DownloadHandler_GetContentType_mB1653D4D9CA539D1D622C32B52DF5C38548D30E8_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.Networking.DownloadHandler::GetContentType()"); String_t* retVal = _il2cpp_icall_func(__this); return retVal; } // System.Byte[] UnityEngine.Networking.DownloadHandler::InternalGetByteArray(UnityEngine.Networking.DownloadHandler) extern "C" IL2CPP_METHOD_ATTR ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* DownloadHandler_InternalGetByteArray_mD6D13BFFBF2F56415E10FFEFDC4A68FE29D6D4FD (DownloadHandler_t4A7802ADC97024B469C87FA454B6973951980EE9 * ___dh0, const RuntimeMethod* method) { typedef ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* (*DownloadHandler_InternalGetByteArray_mD6D13BFFBF2F56415E10FFEFDC4A68FE29D6D4FD_ftn) (DownloadHandler_t4A7802ADC97024B469C87FA454B6973951980EE9 *); static DownloadHandler_InternalGetByteArray_mD6D13BFFBF2F56415E10FFEFDC4A68FE29D6D4FD_ftn _il2cpp_icall_func; if (!_il2cpp_icall_func) _il2cpp_icall_func = (DownloadHandler_InternalGetByteArray_mD6D13BFFBF2F56415E10FFEFDC4A68FE29D6D4FD_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.Networking.DownloadHandler::InternalGetByteArray(UnityEngine.Networking.DownloadHandler)"); ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* retVal = _il2cpp_icall_func(___dh0); return retVal; } #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 // Conversion methods for marshalling of: UnityEngine.Networking.DownloadHandlerBuffer extern "C" void DownloadHandlerBuffer_tF6A73B82C9EC807D36B904A58E1DF2DDA696B255_marshal_pinvoke(const DownloadHandlerBuffer_tF6A73B82C9EC807D36B904A58E1DF2DDA696B255& unmarshaled, DownloadHandlerBuffer_tF6A73B82C9EC807D36B904A58E1DF2DDA696B255_marshaled_pinvoke& marshaled) { marshaled.___m_Ptr_0 = unmarshaled.get_m_Ptr_0(); } extern "C" void DownloadHandlerBuffer_tF6A73B82C9EC807D36B904A58E1DF2DDA696B255_marshal_pinvoke_back(const DownloadHandlerBuffer_tF6A73B82C9EC807D36B904A58E1DF2DDA696B255_marshaled_pinvoke& marshaled, DownloadHandlerBuffer_tF6A73B82C9EC807D36B904A58E1DF2DDA696B255& unmarshaled) { intptr_t unmarshaled_m_Ptr_temp_0; memset(&unmarshaled_m_Ptr_temp_0, 0, sizeof(unmarshaled_m_Ptr_temp_0)); unmarshaled_m_Ptr_temp_0 = marshaled.___m_Ptr_0; unmarshaled.set_m_Ptr_0(unmarshaled_m_Ptr_temp_0); } // Conversion method for clean up from marshalling of: UnityEngine.Networking.DownloadHandlerBuffer extern "C" void DownloadHandlerBuffer_tF6A73B82C9EC807D36B904A58E1DF2DDA696B255_marshal_pinvoke_cleanup(DownloadHandlerBuffer_tF6A73B82C9EC807D36B904A58E1DF2DDA696B255_marshaled_pinvoke& marshaled) { } // Conversion methods for marshalling of: UnityEngine.Networking.DownloadHandlerBuffer extern "C" void DownloadHandlerBuffer_tF6A73B82C9EC807D36B904A58E1DF2DDA696B255_marshal_com(const DownloadHandlerBuffer_tF6A73B82C9EC807D36B904A58E1DF2DDA696B255& unmarshaled, DownloadHandlerBuffer_tF6A73B82C9EC807D36B904A58E1DF2DDA696B255_marshaled_com& marshaled) { marshaled.___m_Ptr_0 = unmarshaled.get_m_Ptr_0(); } extern "C" void DownloadHandlerBuffer_tF6A73B82C9EC807D36B904A58E1DF2DDA696B255_marshal_com_back(const DownloadHandlerBuffer_tF6A73B82C9EC807D36B904A58E1DF2DDA696B255_marshaled_com& marshaled, DownloadHandlerBuffer_tF6A73B82C9EC807D36B904A58E1DF2DDA696B255& unmarshaled) { intptr_t unmarshaled_m_Ptr_temp_0; memset(&unmarshaled_m_Ptr_temp_0, 0, sizeof(unmarshaled_m_Ptr_temp_0)); unmarshaled_m_Ptr_temp_0 = marshaled.___m_Ptr_0; unmarshaled.set_m_Ptr_0(unmarshaled_m_Ptr_temp_0); } // Conversion method for clean up from marshalling of: UnityEngine.Networking.DownloadHandlerBuffer extern "C" void DownloadHandlerBuffer_tF6A73B82C9EC807D36B904A58E1DF2DDA696B255_marshal_com_cleanup(DownloadHandlerBuffer_tF6A73B82C9EC807D36B904A58E1DF2DDA696B255_marshaled_com& marshaled) { } // System.Void UnityEngine.Networking.DownloadHandlerBuffer::.ctor() extern "C" IL2CPP_METHOD_ATTR void DownloadHandlerBuffer__ctor_m2134187D8FB07FBAEA2CE23BFCEB13FD94261A9A (DownloadHandlerBuffer_tF6A73B82C9EC807D36B904A58E1DF2DDA696B255 * __this, const RuntimeMethod* method) { { DownloadHandler__ctor_m39F80F1C9B379B0D0362DF9264DE42604BDB24E0(__this, /*hidden argument*/NULL); DownloadHandlerBuffer_InternalCreateBuffer_m661B598DF8BD7BF86374FD84C52C8AEA8FA7BEF6(__this, /*hidden argument*/NULL); return; } } // System.IntPtr UnityEngine.Networking.DownloadHandlerBuffer::Create(UnityEngine.Networking.DownloadHandlerBuffer) extern "C" IL2CPP_METHOD_ATTR intptr_t DownloadHandlerBuffer_Create_m39E26BEA64B617123CEF559999C8352CA9FA5137 (DownloadHandlerBuffer_tF6A73B82C9EC807D36B904A58E1DF2DDA696B255 * ___obj0, const RuntimeMethod* method) { typedef intptr_t (*DownloadHandlerBuffer_Create_m39E26BEA64B617123CEF559999C8352CA9FA5137_ftn) (DownloadHandlerBuffer_tF6A73B82C9EC807D36B904A58E1DF2DDA696B255 *); static DownloadHandlerBuffer_Create_m39E26BEA64B617123CEF559999C8352CA9FA5137_ftn _il2cpp_icall_func; if (!_il2cpp_icall_func) _il2cpp_icall_func = (DownloadHandlerBuffer_Create_m39E26BEA64B617123CEF559999C8352CA9FA5137_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.Networking.DownloadHandlerBuffer::Create(UnityEngine.Networking.DownloadHandlerBuffer)"); intptr_t retVal = _il2cpp_icall_func(___obj0); return retVal; } // System.Void UnityEngine.Networking.DownloadHandlerBuffer::InternalCreateBuffer() extern "C" IL2CPP_METHOD_ATTR void DownloadHandlerBuffer_InternalCreateBuffer_m661B598DF8BD7BF86374FD84C52C8AEA8FA7BEF6 (DownloadHandlerBuffer_tF6A73B82C9EC807D36B904A58E1DF2DDA696B255 * __this, const RuntimeMethod* method) { { intptr_t L_0 = DownloadHandlerBuffer_Create_m39E26BEA64B617123CEF559999C8352CA9FA5137(__this, /*hidden argument*/NULL); ((DownloadHandler_t4A7802ADC97024B469C87FA454B6973951980EE9 *)__this)->set_m_Ptr_0((intptr_t)L_0); return; } } // System.Byte[] UnityEngine.Networking.DownloadHandlerBuffer::GetData() extern "C" IL2CPP_METHOD_ATTR ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* DownloadHandlerBuffer_GetData_m5A7FFA694EA35F1CE0731803F41E50BBDB16BF14 (DownloadHandlerBuffer_tF6A73B82C9EC807D36B904A58E1DF2DDA696B255 * __this, const RuntimeMethod* method) { ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* V_0 = NULL; { ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_0 = DownloadHandlerBuffer_InternalGetData_m9266395B691394754B68543A2FF2F19566C5ABBF(__this, /*hidden argument*/NULL); V_0 = L_0; goto IL_000d; } IL_000d: { ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_1 = V_0; return L_1; } } // System.Byte[] UnityEngine.Networking.DownloadHandlerBuffer::InternalGetData() extern "C" IL2CPP_METHOD_ATTR ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* DownloadHandlerBuffer_InternalGetData_m9266395B691394754B68543A2FF2F19566C5ABBF (DownloadHandlerBuffer_tF6A73B82C9EC807D36B904A58E1DF2DDA696B255 * __this, const RuntimeMethod* method) { ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* V_0 = NULL; { ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_0 = DownloadHandler_InternalGetByteArray_mD6D13BFFBF2F56415E10FFEFDC4A68FE29D6D4FD(__this, /*hidden argument*/NULL); V_0 = L_0; goto IL_000d; } IL_000d: { ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_1 = V_0; return L_1; } } #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 // Conversion methods for marshalling of: UnityEngine.Networking.UnityWebRequest extern "C" void UnityWebRequest_t9120F5A2C7D43B936B49C0B7E4CA54C822689129_marshal_pinvoke(const UnityWebRequest_t9120F5A2C7D43B936B49C0B7E4CA54C822689129& unmarshaled, UnityWebRequest_t9120F5A2C7D43B936B49C0B7E4CA54C822689129_marshaled_pinvoke& marshaled) { Exception_t* ___m_Uri_4Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'm_Uri' of type 'UnityWebRequest': Reference type field marshaling is not supported."); IL2CPP_RAISE_MANAGED_EXCEPTION(___m_Uri_4Exception, NULL, NULL); } extern "C" void UnityWebRequest_t9120F5A2C7D43B936B49C0B7E4CA54C822689129_marshal_pinvoke_back(const UnityWebRequest_t9120F5A2C7D43B936B49C0B7E4CA54C822689129_marshaled_pinvoke& marshaled, UnityWebRequest_t9120F5A2C7D43B936B49C0B7E4CA54C822689129& unmarshaled) { Exception_t* ___m_Uri_4Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'm_Uri' of type 'UnityWebRequest': Reference type field marshaling is not supported."); IL2CPP_RAISE_MANAGED_EXCEPTION(___m_Uri_4Exception, NULL, NULL); } // Conversion method for clean up from marshalling of: UnityEngine.Networking.UnityWebRequest extern "C" void UnityWebRequest_t9120F5A2C7D43B936B49C0B7E4CA54C822689129_marshal_pinvoke_cleanup(UnityWebRequest_t9120F5A2C7D43B936B49C0B7E4CA54C822689129_marshaled_pinvoke& marshaled) { } // Conversion methods for marshalling of: UnityEngine.Networking.UnityWebRequest extern "C" void UnityWebRequest_t9120F5A2C7D43B936B49C0B7E4CA54C822689129_marshal_com(const UnityWebRequest_t9120F5A2C7D43B936B49C0B7E4CA54C822689129& unmarshaled, UnityWebRequest_t9120F5A2C7D43B936B49C0B7E4CA54C822689129_marshaled_com& marshaled) { Exception_t* ___m_Uri_4Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'm_Uri' of type 'UnityWebRequest': Reference type field marshaling is not supported."); IL2CPP_RAISE_MANAGED_EXCEPTION(___m_Uri_4Exception, NULL, NULL); } extern "C" void UnityWebRequest_t9120F5A2C7D43B936B49C0B7E4CA54C822689129_marshal_com_back(const UnityWebRequest_t9120F5A2C7D43B936B49C0B7E4CA54C822689129_marshaled_com& marshaled, UnityWebRequest_t9120F5A2C7D43B936B49C0B7E4CA54C822689129& unmarshaled) { Exception_t* ___m_Uri_4Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'm_Uri' of type 'UnityWebRequest': Reference type field marshaling is not supported."); IL2CPP_RAISE_MANAGED_EXCEPTION(___m_Uri_4Exception, NULL, NULL); } // Conversion method for clean up from marshalling of: UnityEngine.Networking.UnityWebRequest extern "C" void UnityWebRequest_t9120F5A2C7D43B936B49C0B7E4CA54C822689129_marshal_com_cleanup(UnityWebRequest_t9120F5A2C7D43B936B49C0B7E4CA54C822689129_marshaled_com& marshaled) { } // System.Void UnityEngine.Networking.UnityWebRequest::.ctor(System.String,System.String) extern "C" IL2CPP_METHOD_ATTR void UnityWebRequest__ctor_m3CBA159B3514D89C931002DFD333B9768A08EBFA (UnityWebRequest_t9120F5A2C7D43B936B49C0B7E4CA54C822689129 * __this, String_t* ___url0, String_t* ___method1, const RuntimeMethod* method) { { Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0(__this, /*hidden argument*/NULL); intptr_t L_0 = UnityWebRequest_Create_m98363C34C71AA034B47FA64589711B6F0AEF6698(/*hidden argument*/NULL); __this->set_m_Ptr_0((intptr_t)L_0); UnityWebRequest_InternalSetDefaults_m644CC3C1C737838385F0EC9523A8930E696A9309(__this, /*hidden argument*/NULL); String_t* L_1 = ___url0; UnityWebRequest_set_url_mA698FD94C447FF7C1C429D50C2EBAEEDD473007D(__this, L_1, /*hidden argument*/NULL); String_t* L_2 = ___method1; UnityWebRequest_set_method_mF2DAC86EB05D65B9BCB52056B7CBB2C1AD87EEC6(__this, L_2, /*hidden argument*/NULL); return; } } // System.Void UnityEngine.Networking.UnityWebRequest::.ctor(System.String,System.String,UnityEngine.Networking.DownloadHandler,UnityEngine.Networking.UploadHandler) extern "C" IL2CPP_METHOD_ATTR void UnityWebRequest__ctor_m0D2F8F3E1202EF4256D17E91B95DB6CC673FC8D6 (UnityWebRequest_t9120F5A2C7D43B936B49C0B7E4CA54C822689129 * __this, String_t* ___url0, String_t* ___method1, DownloadHandler_t4A7802ADC97024B469C87FA454B6973951980EE9 * ___downloadHandler2, UploadHandler_t24F4097D30A1E7C689D8881A27F251B4741601E4 * ___uploadHandler3, const RuntimeMethod* method) { { Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0(__this, /*hidden argument*/NULL); intptr_t L_0 = UnityWebRequest_Create_m98363C34C71AA034B47FA64589711B6F0AEF6698(/*hidden argument*/NULL); __this->set_m_Ptr_0((intptr_t)L_0); UnityWebRequest_InternalSetDefaults_m644CC3C1C737838385F0EC9523A8930E696A9309(__this, /*hidden argument*/NULL); String_t* L_1 = ___url0; UnityWebRequest_set_url_mA698FD94C447FF7C1C429D50C2EBAEEDD473007D(__this, L_1, /*hidden argument*/NULL); String_t* L_2 = ___method1; UnityWebRequest_set_method_mF2DAC86EB05D65B9BCB52056B7CBB2C1AD87EEC6(__this, L_2, /*hidden argument*/NULL); DownloadHandler_t4A7802ADC97024B469C87FA454B6973951980EE9 * L_3 = ___downloadHandler2; UnityWebRequest_set_downloadHandler_mB481C2EE30F84B62396C1A837F46046F12B8FA7E(__this, L_3, /*hidden argument*/NULL); UploadHandler_t24F4097D30A1E7C689D8881A27F251B4741601E4 * L_4 = ___uploadHandler3; UnityWebRequest_set_uploadHandler_m7B33656584914FB3F6FB0FF73C08F671262724A1(__this, L_4, /*hidden argument*/NULL); return; } } // System.String UnityEngine.Networking.UnityWebRequest::GetWebErrorString(UnityEngine.Networking.UnityWebRequest_UnityWebRequestError) extern "C" IL2CPP_METHOD_ATTR String_t* UnityWebRequest_GetWebErrorString_m92A1DDF2ADFFF8AEE6B1A7FAE384743C31F9E01D (int32_t ___err0, const RuntimeMethod* method) { typedef String_t* (*UnityWebRequest_GetWebErrorString_m92A1DDF2ADFFF8AEE6B1A7FAE384743C31F9E01D_ftn) (int32_t); static UnityWebRequest_GetWebErrorString_m92A1DDF2ADFFF8AEE6B1A7FAE384743C31F9E01D_ftn _il2cpp_icall_func; if (!_il2cpp_icall_func) _il2cpp_icall_func = (UnityWebRequest_GetWebErrorString_m92A1DDF2ADFFF8AEE6B1A7FAE384743C31F9E01D_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.Networking.UnityWebRequest::GetWebErrorString(UnityEngine.Networking.UnityWebRequest/UnityWebRequestError)"); String_t* retVal = _il2cpp_icall_func(___err0); return retVal; } // System.Boolean UnityEngine.Networking.UnityWebRequest::get_disposeCertificateHandlerOnDispose() extern "C" IL2CPP_METHOD_ATTR bool UnityWebRequest_get_disposeCertificateHandlerOnDispose_m98EFCAC30D637479DC0DC45CFD8A15D402328F99 (UnityWebRequest_t9120F5A2C7D43B936B49C0B7E4CA54C822689129 * __this, const RuntimeMethod* method) { bool V_0 = false; { bool L_0 = __this->get_U3CdisposeCertificateHandlerOnDisposeU3Ek__BackingField_5(); V_0 = L_0; goto IL_000c; } IL_000c: { bool L_1 = V_0; return L_1; } } // System.Void UnityEngine.Networking.UnityWebRequest::set_disposeCertificateHandlerOnDispose(System.Boolean) extern "C" IL2CPP_METHOD_ATTR void UnityWebRequest_set_disposeCertificateHandlerOnDispose_m8609E1213309D1796E00860ECA9228F6454114AE (UnityWebRequest_t9120F5A2C7D43B936B49C0B7E4CA54C822689129 * __this, bool ___value0, const RuntimeMethod* method) { { bool L_0 = ___value0; __this->set_U3CdisposeCertificateHandlerOnDisposeU3Ek__BackingField_5(L_0); return; } } // System.Boolean UnityEngine.Networking.UnityWebRequest::get_disposeDownloadHandlerOnDispose() extern "C" IL2CPP_METHOD_ATTR bool UnityWebRequest_get_disposeDownloadHandlerOnDispose_m3BE68E08A94D92D7076F49CB5196019E6E5E17AA (UnityWebRequest_t9120F5A2C7D43B936B49C0B7E4CA54C822689129 * __this, const RuntimeMethod* method) { bool V_0 = false; { bool L_0 = __this->get_U3CdisposeDownloadHandlerOnDisposeU3Ek__BackingField_6(); V_0 = L_0; goto IL_000c; } IL_000c: { bool L_1 = V_0; return L_1; } } // System.Void UnityEngine.Networking.UnityWebRequest::set_disposeDownloadHandlerOnDispose(System.Boolean) extern "C" IL2CPP_METHOD_ATTR void UnityWebRequest_set_disposeDownloadHandlerOnDispose_mA888301C47844E383DEC96D88CAD6CB8D9E7B9FA (UnityWebRequest_t9120F5A2C7D43B936B49C0B7E4CA54C822689129 * __this, bool ___value0, const RuntimeMethod* method) { { bool L_0 = ___value0; __this->set_U3CdisposeDownloadHandlerOnDisposeU3Ek__BackingField_6(L_0); return; } } // System.Boolean UnityEngine.Networking.UnityWebRequest::get_disposeUploadHandlerOnDispose() extern "C" IL2CPP_METHOD_ATTR bool UnityWebRequest_get_disposeUploadHandlerOnDispose_mE4A39A3A06DB4450DA49972254B4498A5F8F69DE (UnityWebRequest_t9120F5A2C7D43B936B49C0B7E4CA54C822689129 * __this, const RuntimeMethod* method) { bool V_0 = false; { bool L_0 = __this->get_U3CdisposeUploadHandlerOnDisposeU3Ek__BackingField_7(); V_0 = L_0; goto IL_000c; } IL_000c: { bool L_1 = V_0; return L_1; } } // System.Void UnityEngine.Networking.UnityWebRequest::set_disposeUploadHandlerOnDispose(System.Boolean) extern "C" IL2CPP_METHOD_ATTR void UnityWebRequest_set_disposeUploadHandlerOnDispose_mC176753B8AFBB40B69FAD7F1E2B2711CA5D6AA71 (UnityWebRequest_t9120F5A2C7D43B936B49C0B7E4CA54C822689129 * __this, bool ___value0, const RuntimeMethod* method) { { bool L_0 = ___value0; __this->set_U3CdisposeUploadHandlerOnDisposeU3Ek__BackingField_7(L_0); return; } } // System.IntPtr UnityEngine.Networking.UnityWebRequest::Create() extern "C" IL2CPP_METHOD_ATTR intptr_t UnityWebRequest_Create_m98363C34C71AA034B47FA64589711B6F0AEF6698 (const RuntimeMethod* method) { typedef intptr_t (*UnityWebRequest_Create_m98363C34C71AA034B47FA64589711B6F0AEF6698_ftn) (); static UnityWebRequest_Create_m98363C34C71AA034B47FA64589711B6F0AEF6698_ftn _il2cpp_icall_func; if (!_il2cpp_icall_func) _il2cpp_icall_func = (UnityWebRequest_Create_m98363C34C71AA034B47FA64589711B6F0AEF6698_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.Networking.UnityWebRequest::Create()"); intptr_t retVal = _il2cpp_icall_func(); return retVal; } // System.Void UnityEngine.Networking.UnityWebRequest::Release() extern "C" IL2CPP_METHOD_ATTR void UnityWebRequest_Release_mD168D309DCE6696163B3357FA21047689D1A7D74 (UnityWebRequest_t9120F5A2C7D43B936B49C0B7E4CA54C822689129 * __this, const RuntimeMethod* method) { typedef void (*UnityWebRequest_Release_mD168D309DCE6696163B3357FA21047689D1A7D74_ftn) (UnityWebRequest_t9120F5A2C7D43B936B49C0B7E4CA54C822689129 *); static UnityWebRequest_Release_mD168D309DCE6696163B3357FA21047689D1A7D74_ftn _il2cpp_icall_func; if (!_il2cpp_icall_func) _il2cpp_icall_func = (UnityWebRequest_Release_mD168D309DCE6696163B3357FA21047689D1A7D74_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.Networking.UnityWebRequest::Release()"); _il2cpp_icall_func(__this); } // System.Void UnityEngine.Networking.UnityWebRequest::InternalDestroy() extern "C" IL2CPP_METHOD_ATTR void UnityWebRequest_InternalDestroy_mF5D7484808AEAE24A43B678614D257FBF885026B (UnityWebRequest_t9120F5A2C7D43B936B49C0B7E4CA54C822689129 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (UnityWebRequest_InternalDestroy_mF5D7484808AEAE24A43B678614D257FBF885026B_MetadataUsageId); s_Il2CppMethodInitialized = true; } { intptr_t L_0 = __this->get_m_Ptr_0(); bool L_1 = IntPtr_op_Inequality_mB4886A806009EA825EFCC60CD2A7F6EB8E273A61((intptr_t)L_0, (intptr_t)(0), /*hidden argument*/NULL); if (!L_1) { goto IL_002f; } } { UnityWebRequest_Abort_mF2C9BD010E5B32FF9F57C2EB4A9A0C8D0289CA7E(__this, /*hidden argument*/NULL); UnityWebRequest_Release_mD168D309DCE6696163B3357FA21047689D1A7D74(__this, /*hidden argument*/NULL); __this->set_m_Ptr_0((intptr_t)(0)); } IL_002f: { return; } } // System.Void UnityEngine.Networking.UnityWebRequest::InternalSetDefaults() extern "C" IL2CPP_METHOD_ATTR void UnityWebRequest_InternalSetDefaults_m644CC3C1C737838385F0EC9523A8930E696A9309 (UnityWebRequest_t9120F5A2C7D43B936B49C0B7E4CA54C822689129 * __this, const RuntimeMethod* method) { { UnityWebRequest_set_disposeDownloadHandlerOnDispose_mA888301C47844E383DEC96D88CAD6CB8D9E7B9FA(__this, (bool)1, /*hidden argument*/NULL); UnityWebRequest_set_disposeUploadHandlerOnDispose_mC176753B8AFBB40B69FAD7F1E2B2711CA5D6AA71(__this, (bool)1, /*hidden argument*/NULL); UnityWebRequest_set_disposeCertificateHandlerOnDispose_m8609E1213309D1796E00860ECA9228F6454114AE(__this, (bool)1, /*hidden argument*/NULL); return; } } // System.Void UnityEngine.Networking.UnityWebRequest::Finalize() extern "C" IL2CPP_METHOD_ATTR void UnityWebRequest_Finalize_mEBEE0B5A630F0D75CE9F23CDA91DB5048D92CF2C (UnityWebRequest_t9120F5A2C7D43B936B49C0B7E4CA54C822689129 * __this, const RuntimeMethod* method) { Exception_t * __last_unhandled_exception = 0; NO_UNUSED_WARNING (__last_unhandled_exception); Exception_t * __exception_local = 0; NO_UNUSED_WARNING (__exception_local); int32_t __leave_target = -1; NO_UNUSED_WARNING (__leave_target); { } IL_0001: try { // begin try (depth: 1) UnityWebRequest_DisposeHandlers_m0E54EE2A704090B2C2F1F3C90D30A47E3BF2B5C9(__this, /*hidden argument*/NULL); UnityWebRequest_InternalDestroy_mF5D7484808AEAE24A43B678614D257FBF885026B(__this, /*hidden argument*/NULL); IL2CPP_LEAVE(0x19, FINALLY_0012); } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __last_unhandled_exception = (Exception_t *)e.ex; goto FINALLY_0012; } FINALLY_0012: { // begin finally (depth: 1) Object_Finalize_m4015B7D3A44DE125C5FE34D7276CD4697C06F380(__this, /*hidden argument*/NULL); IL2CPP_RESET_LEAVE(0x19); IL2CPP_END_FINALLY(18) } // end finally (depth: 1) IL2CPP_CLEANUP(18) { IL2CPP_JUMP_TBL(0x19, IL_0019) IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *) } IL_0019: { return; } } // System.Void UnityEngine.Networking.UnityWebRequest::Dispose() extern "C" IL2CPP_METHOD_ATTR void UnityWebRequest_Dispose_m6AFA87DA329282058723E5ACE016B0B08CFE806D (UnityWebRequest_t9120F5A2C7D43B936B49C0B7E4CA54C822689129 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (UnityWebRequest_Dispose_m6AFA87DA329282058723E5ACE016B0B08CFE806D_MetadataUsageId); s_Il2CppMethodInitialized = true; } { UnityWebRequest_DisposeHandlers_m0E54EE2A704090B2C2F1F3C90D30A47E3BF2B5C9(__this, /*hidden argument*/NULL); UnityWebRequest_InternalDestroy_mF5D7484808AEAE24A43B678614D257FBF885026B(__this, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(GC_tC1D7BD74E8F44ECCEF5CD2B5D84BFF9AAE02D01D_il2cpp_TypeInfo_var); GC_SuppressFinalize_m037319A9B95A5BA437E806DE592802225EE5B425(__this, /*hidden argument*/NULL); return; } } // System.Void UnityEngine.Networking.UnityWebRequest::DisposeHandlers() extern "C" IL2CPP_METHOD_ATTR void UnityWebRequest_DisposeHandlers_m0E54EE2A704090B2C2F1F3C90D30A47E3BF2B5C9 (UnityWebRequest_t9120F5A2C7D43B936B49C0B7E4CA54C822689129 * __this, const RuntimeMethod* method) { DownloadHandler_t4A7802ADC97024B469C87FA454B6973951980EE9 * V_0 = NULL; UploadHandler_t24F4097D30A1E7C689D8881A27F251B4741601E4 * V_1 = NULL; CertificateHandler_tBD070BF4150A44AB482FD36EA3882C363117E8C0 * V_2 = NULL; { bool L_0 = UnityWebRequest_get_disposeDownloadHandlerOnDispose_m3BE68E08A94D92D7076F49CB5196019E6E5E17AA(__this, /*hidden argument*/NULL); if (!L_0) { goto IL_0023; } } { DownloadHandler_t4A7802ADC97024B469C87FA454B6973951980EE9 * L_1 = UnityWebRequest_get_downloadHandler_m83044026479E6B4B2739DCE9EEA8A0FAE7D9AF41(__this, /*hidden argument*/NULL); V_0 = L_1; DownloadHandler_t4A7802ADC97024B469C87FA454B6973951980EE9 * L_2 = V_0; if (!L_2) { goto IL_0022; } } { DownloadHandler_t4A7802ADC97024B469C87FA454B6973951980EE9 * L_3 = V_0; NullCheck(L_3); DownloadHandler_Dispose_m7478E72B2DBA4B55FAA25F7A1975A13BA5891D4B(L_3, /*hidden argument*/NULL); } IL_0022: { } IL_0023: { bool L_4 = UnityWebRequest_get_disposeUploadHandlerOnDispose_mE4A39A3A06DB4450DA49972254B4498A5F8F69DE(__this, /*hidden argument*/NULL); if (!L_4) { goto IL_0045; } } { UploadHandler_t24F4097D30A1E7C689D8881A27F251B4741601E4 * L_5 = UnityWebRequest_get_uploadHandler_mB23A35C2412258E44538F37AA540421C95E69A5C(__this, /*hidden argument*/NULL); V_1 = L_5; UploadHandler_t24F4097D30A1E7C689D8881A27F251B4741601E4 * L_6 = V_1; if (!L_6) { goto IL_0044; } } { UploadHandler_t24F4097D30A1E7C689D8881A27F251B4741601E4 * L_7 = V_1; NullCheck(L_7); UploadHandler_Dispose_m9BBE8D7D2BBAAC2DE84B52BADA0B79CEA6F2DAB2(L_7, /*hidden argument*/NULL); } IL_0044: { } IL_0045: { bool L_8 = UnityWebRequest_get_disposeCertificateHandlerOnDispose_m98EFCAC30D637479DC0DC45CFD8A15D402328F99(__this, /*hidden argument*/NULL); if (!L_8) { goto IL_0067; } } { CertificateHandler_tBD070BF4150A44AB482FD36EA3882C363117E8C0 * L_9 = UnityWebRequest_get_certificateHandler_mD3C46D07991190373A7144A6732E390FFBE6DF00(__this, /*hidden argument*/NULL); V_2 = L_9; CertificateHandler_tBD070BF4150A44AB482FD36EA3882C363117E8C0 * L_10 = V_2; if (!L_10) { goto IL_0066; } } { CertificateHandler_tBD070BF4150A44AB482FD36EA3882C363117E8C0 * L_11 = V_2; NullCheck(L_11); CertificateHandler_Dispose_m9C71BAA51760FDF05AB999B6AB6E6BC71BCB8CA0(L_11, /*hidden argument*/NULL); } IL_0066: { } IL_0067: { return; } } // UnityEngine.Networking.UnityWebRequestAsyncOperation UnityEngine.Networking.UnityWebRequest::BeginWebRequest() extern "C" IL2CPP_METHOD_ATTR UnityWebRequestAsyncOperation_t726E134F16701A2671D40BEBE22110DC57156353 * UnityWebRequest_BeginWebRequest_m1EF3612D316F7924F6E40D63DD3B0D0118C50CC0 (UnityWebRequest_t9120F5A2C7D43B936B49C0B7E4CA54C822689129 * __this, const RuntimeMethod* method) { typedef UnityWebRequestAsyncOperation_t726E134F16701A2671D40BEBE22110DC57156353 * (*UnityWebRequest_BeginWebRequest_m1EF3612D316F7924F6E40D63DD3B0D0118C50CC0_ftn) (UnityWebRequest_t9120F5A2C7D43B936B49C0B7E4CA54C822689129 *); static UnityWebRequest_BeginWebRequest_m1EF3612D316F7924F6E40D63DD3B0D0118C50CC0_ftn _il2cpp_icall_func; if (!_il2cpp_icall_func) _il2cpp_icall_func = (UnityWebRequest_BeginWebRequest_m1EF3612D316F7924F6E40D63DD3B0D0118C50CC0_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.Networking.UnityWebRequest::BeginWebRequest()"); UnityWebRequestAsyncOperation_t726E134F16701A2671D40BEBE22110DC57156353 * retVal = _il2cpp_icall_func(__this); return retVal; } // UnityEngine.Networking.UnityWebRequestAsyncOperation UnityEngine.Networking.UnityWebRequest::SendWebRequest() extern "C" IL2CPP_METHOD_ATTR UnityWebRequestAsyncOperation_t726E134F16701A2671D40BEBE22110DC57156353 * UnityWebRequest_SendWebRequest_mF536CB2A0A39354A54B555B66B017816C5833EBD (UnityWebRequest_t9120F5A2C7D43B936B49C0B7E4CA54C822689129 * __this, const RuntimeMethod* method) { UnityWebRequestAsyncOperation_t726E134F16701A2671D40BEBE22110DC57156353 * V_0 = NULL; UnityWebRequestAsyncOperation_t726E134F16701A2671D40BEBE22110DC57156353 * V_1 = NULL; { UnityWebRequestAsyncOperation_t726E134F16701A2671D40BEBE22110DC57156353 * L_0 = UnityWebRequest_BeginWebRequest_m1EF3612D316F7924F6E40D63DD3B0D0118C50CC0(__this, /*hidden argument*/NULL); V_0 = L_0; UnityWebRequestAsyncOperation_t726E134F16701A2671D40BEBE22110DC57156353 * L_1 = V_0; if (!L_1) { goto IL_0015; } } { UnityWebRequestAsyncOperation_t726E134F16701A2671D40BEBE22110DC57156353 * L_2 = V_0; NullCheck(L_2); UnityWebRequestAsyncOperation_set_webRequest_m07869D44180E2A93042A18260FA5A2BB934AC42F(L_2, __this, /*hidden argument*/NULL); } IL_0015: { UnityWebRequestAsyncOperation_t726E134F16701A2671D40BEBE22110DC57156353 * L_3 = V_0; V_1 = L_3; goto IL_001c; } IL_001c: { UnityWebRequestAsyncOperation_t726E134F16701A2671D40BEBE22110DC57156353 * L_4 = V_1; return L_4; } } // System.Void UnityEngine.Networking.UnityWebRequest::Abort() extern "C" IL2CPP_METHOD_ATTR void UnityWebRequest_Abort_mF2C9BD010E5B32FF9F57C2EB4A9A0C8D0289CA7E (UnityWebRequest_t9120F5A2C7D43B936B49C0B7E4CA54C822689129 * __this, const RuntimeMethod* method) { typedef void (*UnityWebRequest_Abort_mF2C9BD010E5B32FF9F57C2EB4A9A0C8D0289CA7E_ftn) (UnityWebRequest_t9120F5A2C7D43B936B49C0B7E4CA54C822689129 *); static UnityWebRequest_Abort_mF2C9BD010E5B32FF9F57C2EB4A9A0C8D0289CA7E_ftn _il2cpp_icall_func; if (!_il2cpp_icall_func) _il2cpp_icall_func = (UnityWebRequest_Abort_mF2C9BD010E5B32FF9F57C2EB4A9A0C8D0289CA7E_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.Networking.UnityWebRequest::Abort()"); _il2cpp_icall_func(__this); } // UnityEngine.Networking.UnityWebRequest_UnityWebRequestError UnityEngine.Networking.UnityWebRequest::SetMethod(UnityEngine.Networking.UnityWebRequest_UnityWebRequestMethod) extern "C" IL2CPP_METHOD_ATTR int32_t UnityWebRequest_SetMethod_mEE55FF0E071E784318B8C2110E3A3688BF4661CB (UnityWebRequest_t9120F5A2C7D43B936B49C0B7E4CA54C822689129 * __this, int32_t ___methodType0, const RuntimeMethod* method) { typedef int32_t (*UnityWebRequest_SetMethod_mEE55FF0E071E784318B8C2110E3A3688BF4661CB_ftn) (UnityWebRequest_t9120F5A2C7D43B936B49C0B7E4CA54C822689129 *, int32_t); static UnityWebRequest_SetMethod_mEE55FF0E071E784318B8C2110E3A3688BF4661CB_ftn _il2cpp_icall_func; if (!_il2cpp_icall_func) _il2cpp_icall_func = (UnityWebRequest_SetMethod_mEE55FF0E071E784318B8C2110E3A3688BF4661CB_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.Networking.UnityWebRequest::SetMethod(UnityEngine.Networking.UnityWebRequest/UnityWebRequestMethod)"); int32_t retVal = _il2cpp_icall_func(__this, ___methodType0); return retVal; } // System.Void UnityEngine.Networking.UnityWebRequest::InternalSetMethod(UnityEngine.Networking.UnityWebRequest_UnityWebRequestMethod) extern "C" IL2CPP_METHOD_ATTR void UnityWebRequest_InternalSetMethod_m636508AA8E6EF12B3255D8ED108BFF7EB1AB68C9 (UnityWebRequest_t9120F5A2C7D43B936B49C0B7E4CA54C822689129 * __this, int32_t ___methodType0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (UnityWebRequest_InternalSetMethod_m636508AA8E6EF12B3255D8ED108BFF7EB1AB68C9_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; { bool L_0 = UnityWebRequest_get_isModifiable_mD7583537BBC7111555FF73846D120103D2563342(__this, /*hidden argument*/NULL); if (L_0) { goto IL_0017; } } { InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_1 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var); InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_1, _stringLiteral70EE7E18113E0328AAE2B1D5D212C2735F1C00F8, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, UnityWebRequest_InternalSetMethod_m636508AA8E6EF12B3255D8ED108BFF7EB1AB68C9_RuntimeMethod_var); } IL_0017: { int32_t L_2 = ___methodType0; int32_t L_3 = UnityWebRequest_SetMethod_mEE55FF0E071E784318B8C2110E3A3688BF4661CB(__this, L_2, /*hidden argument*/NULL); V_0 = L_3; int32_t L_4 = V_0; if (!L_4) { goto IL_0031; } } { int32_t L_5 = V_0; String_t* L_6 = UnityWebRequest_GetWebErrorString_m92A1DDF2ADFFF8AEE6B1A7FAE384743C31F9E01D(L_5, /*hidden argument*/NULL); InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_7 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var); InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_7, L_6, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_7, NULL, UnityWebRequest_InternalSetMethod_m636508AA8E6EF12B3255D8ED108BFF7EB1AB68C9_RuntimeMethod_var); } IL_0031: { return; } } // UnityEngine.Networking.UnityWebRequest_UnityWebRequestError UnityEngine.Networking.UnityWebRequest::SetCustomMethod(System.String) extern "C" IL2CPP_METHOD_ATTR int32_t UnityWebRequest_SetCustomMethod_mC818FAC0FD8B91FD454C6DFBF7561EEE2D0BA4F4 (UnityWebRequest_t9120F5A2C7D43B936B49C0B7E4CA54C822689129 * __this, String_t* ___customMethodName0, const RuntimeMethod* method) { typedef int32_t (*UnityWebRequest_SetCustomMethod_mC818FAC0FD8B91FD454C6DFBF7561EEE2D0BA4F4_ftn) (UnityWebRequest_t9120F5A2C7D43B936B49C0B7E4CA54C822689129 *, String_t*); static UnityWebRequest_SetCustomMethod_mC818FAC0FD8B91FD454C6DFBF7561EEE2D0BA4F4_ftn _il2cpp_icall_func; if (!_il2cpp_icall_func) _il2cpp_icall_func = (UnityWebRequest_SetCustomMethod_mC818FAC0FD8B91FD454C6DFBF7561EEE2D0BA4F4_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.Networking.UnityWebRequest::SetCustomMethod(System.String)"); int32_t retVal = _il2cpp_icall_func(__this, ___customMethodName0); return retVal; } // System.Void UnityEngine.Networking.UnityWebRequest::InternalSetCustomMethod(System.String) extern "C" IL2CPP_METHOD_ATTR void UnityWebRequest_InternalSetCustomMethod_mE9F0C84C6DCD5412AEDD76280EEC4FB82516EF16 (UnityWebRequest_t9120F5A2C7D43B936B49C0B7E4CA54C822689129 * __this, String_t* ___customMethodName0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (UnityWebRequest_InternalSetCustomMethod_mE9F0C84C6DCD5412AEDD76280EEC4FB82516EF16_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; { bool L_0 = UnityWebRequest_get_isModifiable_mD7583537BBC7111555FF73846D120103D2563342(__this, /*hidden argument*/NULL); if (L_0) { goto IL_0017; } } { InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_1 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var); InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_1, _stringLiteral70EE7E18113E0328AAE2B1D5D212C2735F1C00F8, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, UnityWebRequest_InternalSetCustomMethod_mE9F0C84C6DCD5412AEDD76280EEC4FB82516EF16_RuntimeMethod_var); } IL_0017: { String_t* L_2 = ___customMethodName0; int32_t L_3 = UnityWebRequest_SetCustomMethod_mC818FAC0FD8B91FD454C6DFBF7561EEE2D0BA4F4(__this, L_2, /*hidden argument*/NULL); V_0 = L_3; int32_t L_4 = V_0; if (!L_4) { goto IL_0031; } } { int32_t L_5 = V_0; String_t* L_6 = UnityWebRequest_GetWebErrorString_m92A1DDF2ADFFF8AEE6B1A7FAE384743C31F9E01D(L_5, /*hidden argument*/NULL); InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_7 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var); InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_7, L_6, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_7, NULL, UnityWebRequest_InternalSetCustomMethod_mE9F0C84C6DCD5412AEDD76280EEC4FB82516EF16_RuntimeMethod_var); } IL_0031: { return; } } // UnityEngine.Networking.UnityWebRequest_UnityWebRequestMethod UnityEngine.Networking.UnityWebRequest::GetMethod() extern "C" IL2CPP_METHOD_ATTR int32_t UnityWebRequest_GetMethod_mF7CCE2E767F50DB55D0F8E02E6B56B8117558D6F (UnityWebRequest_t9120F5A2C7D43B936B49C0B7E4CA54C822689129 * __this, const RuntimeMethod* method) { typedef int32_t (*UnityWebRequest_GetMethod_mF7CCE2E767F50DB55D0F8E02E6B56B8117558D6F_ftn) (UnityWebRequest_t9120F5A2C7D43B936B49C0B7E4CA54C822689129 *); static UnityWebRequest_GetMethod_mF7CCE2E767F50DB55D0F8E02E6B56B8117558D6F_ftn _il2cpp_icall_func; if (!_il2cpp_icall_func) _il2cpp_icall_func = (UnityWebRequest_GetMethod_mF7CCE2E767F50DB55D0F8E02E6B56B8117558D6F_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.Networking.UnityWebRequest::GetMethod()"); int32_t retVal = _il2cpp_icall_func(__this); return retVal; } // System.String UnityEngine.Networking.UnityWebRequest::GetCustomMethod() extern "C" IL2CPP_METHOD_ATTR String_t* UnityWebRequest_GetCustomMethod_m0A7D30C190B85377439370D9DCD105E1EFB73E2F (UnityWebRequest_t9120F5A2C7D43B936B49C0B7E4CA54C822689129 * __this, const RuntimeMethod* method) { typedef String_t* (*UnityWebRequest_GetCustomMethod_m0A7D30C190B85377439370D9DCD105E1EFB73E2F_ftn) (UnityWebRequest_t9120F5A2C7D43B936B49C0B7E4CA54C822689129 *); static UnityWebRequest_GetCustomMethod_m0A7D30C190B85377439370D9DCD105E1EFB73E2F_ftn _il2cpp_icall_func; if (!_il2cpp_icall_func) _il2cpp_icall_func = (UnityWebRequest_GetCustomMethod_m0A7D30C190B85377439370D9DCD105E1EFB73E2F_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.Networking.UnityWebRequest::GetCustomMethod()"); String_t* retVal = _il2cpp_icall_func(__this); return retVal; } // System.String UnityEngine.Networking.UnityWebRequest::get_method() extern "C" IL2CPP_METHOD_ATTR String_t* UnityWebRequest_get_method_m0F039F28DD8309D25824D732CE7FF7394E195855 (UnityWebRequest_t9120F5A2C7D43B936B49C0B7E4CA54C822689129 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (UnityWebRequest_get_method_m0F039F28DD8309D25824D732CE7FF7394E195855_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; String_t* V_1 = NULL; { int32_t L_0 = UnityWebRequest_GetMethod_mF7CCE2E767F50DB55D0F8E02E6B56B8117558D6F(__this, /*hidden argument*/NULL); V_0 = L_0; int32_t L_1 = V_0; switch (L_1) { case 0: { goto IL_0023; } case 1: { goto IL_002e; } case 2: { goto IL_0039; } case 3: { goto IL_0044; } } } { goto IL_004f; } IL_0023: { V_1 = _stringLiteralF030BBBD32966CDE41037B98A8849C46B76E4BC1; goto IL_005b; } IL_002e: { V_1 = _stringLiteral61FF81C30AA3C76E78AFEA62B2E3BD1DFA49E854; goto IL_005b; } IL_0039: { V_1 = _stringLiteral091B0CE42EB0BD96169EA00B16DD938F6D63AC95; goto IL_005b; } IL_0044: { V_1 = _stringLiteral7138A51661947B19B5088DA5A2BFEDE2876F49B9; goto IL_005b; } IL_004f: { String_t* L_2 = UnityWebRequest_GetCustomMethod_m0A7D30C190B85377439370D9DCD105E1EFB73E2F(__this, /*hidden argument*/NULL); V_1 = L_2; goto IL_005b; } IL_005b: { String_t* L_3 = V_1; return L_3; } } // System.Void UnityEngine.Networking.UnityWebRequest::set_method(System.String) extern "C" IL2CPP_METHOD_ATTR void UnityWebRequest_set_method_mF2DAC86EB05D65B9BCB52056B7CBB2C1AD87EEC6 (UnityWebRequest_t9120F5A2C7D43B936B49C0B7E4CA54C822689129 * __this, String_t* ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (UnityWebRequest_set_method_mF2DAC86EB05D65B9BCB52056B7CBB2C1AD87EEC6_MetadataUsageId); s_Il2CppMethodInitialized = true; } String_t* V_0 = NULL; { String_t* L_0 = ___value0; bool L_1 = String_IsNullOrEmpty_m06A85A206AC2106D1982826C5665B9BD35324229(L_0, /*hidden argument*/NULL); if (!L_1) { goto IL_0018; } } { ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_2 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var); ArgumentException__ctor_m9A85EF7FEFEC21DDD525A67E831D77278E5165B7(L_2, _stringLiteralF37BF1E2A7C84A010A6E65E2E41A03F1C044F04B, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, UnityWebRequest_set_method_mF2DAC86EB05D65B9BCB52056B7CBB2C1AD87EEC6_RuntimeMethod_var); } IL_0018: { String_t* L_3 = ___value0; NullCheck(L_3); String_t* L_4 = String_ToUpper_m23D019B7C5EF2C5C01F524EB8137A424B33EEFE2(L_3, /*hidden argument*/NULL); V_0 = L_4; String_t* L_5 = V_0; if (!L_5) { goto IL_009a; } } { String_t* L_6 = V_0; bool L_7 = String_op_Equality_m139F0E4195AE2F856019E63B241F36F016997FCE(L_6, _stringLiteralF030BBBD32966CDE41037B98A8849C46B76E4BC1, /*hidden argument*/NULL); if (L_7) { goto IL_006a; } } { String_t* L_8 = V_0; bool L_9 = String_op_Equality_m139F0E4195AE2F856019E63B241F36F016997FCE(L_8, _stringLiteral61FF81C30AA3C76E78AFEA62B2E3BD1DFA49E854, /*hidden argument*/NULL); if (L_9) { goto IL_0076; } } { String_t* L_10 = V_0; bool L_11 = String_op_Equality_m139F0E4195AE2F856019E63B241F36F016997FCE(L_10, _stringLiteral091B0CE42EB0BD96169EA00B16DD938F6D63AC95, /*hidden argument*/NULL); if (L_11) { goto IL_0082; } } { String_t* L_12 = V_0; bool L_13 = String_op_Equality_m139F0E4195AE2F856019E63B241F36F016997FCE(L_12, _stringLiteral7138A51661947B19B5088DA5A2BFEDE2876F49B9, /*hidden argument*/NULL); if (L_13) { goto IL_008e; } } { goto IL_009a; } IL_006a: { UnityWebRequest_InternalSetMethod_m636508AA8E6EF12B3255D8ED108BFF7EB1AB68C9(__this, 0, /*hidden argument*/NULL); goto IL_00ab; } IL_0076: { UnityWebRequest_InternalSetMethod_m636508AA8E6EF12B3255D8ED108BFF7EB1AB68C9(__this, 1, /*hidden argument*/NULL); goto IL_00ab; } IL_0082: { UnityWebRequest_InternalSetMethod_m636508AA8E6EF12B3255D8ED108BFF7EB1AB68C9(__this, 2, /*hidden argument*/NULL); goto IL_00ab; } IL_008e: { UnityWebRequest_InternalSetMethod_m636508AA8E6EF12B3255D8ED108BFF7EB1AB68C9(__this, 3, /*hidden argument*/NULL); goto IL_00ab; } IL_009a: { String_t* L_14 = ___value0; NullCheck(L_14); String_t* L_15 = String_ToUpper_m23D019B7C5EF2C5C01F524EB8137A424B33EEFE2(L_14, /*hidden argument*/NULL); UnityWebRequest_InternalSetCustomMethod_mE9F0C84C6DCD5412AEDD76280EEC4FB82516EF16(__this, L_15, /*hidden argument*/NULL); goto IL_00ab; } IL_00ab: { return; } } // System.Void UnityEngine.Networking.UnityWebRequest::set_url(System.String) extern "C" IL2CPP_METHOD_ATTR void UnityWebRequest_set_url_mA698FD94C447FF7C1C429D50C2EBAEEDD473007D (UnityWebRequest_t9120F5A2C7D43B936B49C0B7E4CA54C822689129 * __this, String_t* ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (UnityWebRequest_set_url_mA698FD94C447FF7C1C429D50C2EBAEEDD473007D_MetadataUsageId); s_Il2CppMethodInitialized = true; } String_t* V_0 = NULL; { V_0 = _stringLiteralF6C97A7F64063CFEE7C2DC2157847204D4DBF093; String_t* L_0 = ___value0; String_t* L_1 = V_0; IL2CPP_RUNTIME_CLASS_INIT(WebRequestUtils_tBE8F8607E3A9633419968F6AF2F706A029AE1296_il2cpp_TypeInfo_var); String_t* L_2 = WebRequestUtils_MakeInitialUrl_m446CCE4EFB276BE27A9380D55B9E704D01107B83(L_0, L_1, /*hidden argument*/NULL); UnityWebRequest_InternalSetUrl_m2E2C837A6F32065CAAAF6EFA7D0237C9E206689A(__this, L_2, /*hidden argument*/NULL); return; } } // UnityEngine.Networking.UnityWebRequest_UnityWebRequestError UnityEngine.Networking.UnityWebRequest::SetUrl(System.String) extern "C" IL2CPP_METHOD_ATTR int32_t UnityWebRequest_SetUrl_mED007912E89AA114D1A3D6905586116F74C8D774 (UnityWebRequest_t9120F5A2C7D43B936B49C0B7E4CA54C822689129 * __this, String_t* ___url0, const RuntimeMethod* method) { typedef int32_t (*UnityWebRequest_SetUrl_mED007912E89AA114D1A3D6905586116F74C8D774_ftn) (UnityWebRequest_t9120F5A2C7D43B936B49C0B7E4CA54C822689129 *, String_t*); static UnityWebRequest_SetUrl_mED007912E89AA114D1A3D6905586116F74C8D774_ftn _il2cpp_icall_func; if (!_il2cpp_icall_func) _il2cpp_icall_func = (UnityWebRequest_SetUrl_mED007912E89AA114D1A3D6905586116F74C8D774_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.Networking.UnityWebRequest::SetUrl(System.String)"); int32_t retVal = _il2cpp_icall_func(__this, ___url0); return retVal; } // System.Void UnityEngine.Networking.UnityWebRequest::InternalSetUrl(System.String) extern "C" IL2CPP_METHOD_ATTR void UnityWebRequest_InternalSetUrl_m2E2C837A6F32065CAAAF6EFA7D0237C9E206689A (UnityWebRequest_t9120F5A2C7D43B936B49C0B7E4CA54C822689129 * __this, String_t* ___url0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (UnityWebRequest_InternalSetUrl_m2E2C837A6F32065CAAAF6EFA7D0237C9E206689A_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; { bool L_0 = UnityWebRequest_get_isModifiable_mD7583537BBC7111555FF73846D120103D2563342(__this, /*hidden argument*/NULL); if (L_0) { goto IL_0017; } } { InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_1 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var); InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_1, _stringLiteral81D42CE01525C0213D5284260BDB58819D046FB9, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, UnityWebRequest_InternalSetUrl_m2E2C837A6F32065CAAAF6EFA7D0237C9E206689A_RuntimeMethod_var); } IL_0017: { String_t* L_2 = ___url0; int32_t L_3 = UnityWebRequest_SetUrl_mED007912E89AA114D1A3D6905586116F74C8D774(__this, L_2, /*hidden argument*/NULL); V_0 = L_3; int32_t L_4 = V_0; if (!L_4) { goto IL_0031; } } { int32_t L_5 = V_0; String_t* L_6 = UnityWebRequest_GetWebErrorString_m92A1DDF2ADFFF8AEE6B1A7FAE384743C31F9E01D(L_5, /*hidden argument*/NULL); InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_7 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var); InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_7, L_6, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_7, NULL, UnityWebRequest_InternalSetUrl_m2E2C837A6F32065CAAAF6EFA7D0237C9E206689A_RuntimeMethod_var); } IL_0031: { return; } } // System.Int64 UnityEngine.Networking.UnityWebRequest::get_responseCode() extern "C" IL2CPP_METHOD_ATTR int64_t UnityWebRequest_get_responseCode_m34819872549939D1EF9EA3D4010974FBEBAF0070 (UnityWebRequest_t9120F5A2C7D43B936B49C0B7E4CA54C822689129 * __this, const RuntimeMethod* method) { typedef int64_t (*UnityWebRequest_get_responseCode_m34819872549939D1EF9EA3D4010974FBEBAF0070_ftn) (UnityWebRequest_t9120F5A2C7D43B936B49C0B7E4CA54C822689129 *); static UnityWebRequest_get_responseCode_m34819872549939D1EF9EA3D4010974FBEBAF0070_ftn _il2cpp_icall_func; if (!_il2cpp_icall_func) _il2cpp_icall_func = (UnityWebRequest_get_responseCode_m34819872549939D1EF9EA3D4010974FBEBAF0070_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.Networking.UnityWebRequest::get_responseCode()"); int64_t retVal = _il2cpp_icall_func(__this); return retVal; } // System.Boolean UnityEngine.Networking.UnityWebRequest::get_isModifiable() extern "C" IL2CPP_METHOD_ATTR bool UnityWebRequest_get_isModifiable_mD7583537BBC7111555FF73846D120103D2563342 (UnityWebRequest_t9120F5A2C7D43B936B49C0B7E4CA54C822689129 * __this, const RuntimeMethod* method) { typedef bool (*UnityWebRequest_get_isModifiable_mD7583537BBC7111555FF73846D120103D2563342_ftn) (UnityWebRequest_t9120F5A2C7D43B936B49C0B7E4CA54C822689129 *); static UnityWebRequest_get_isModifiable_mD7583537BBC7111555FF73846D120103D2563342_ftn _il2cpp_icall_func; if (!_il2cpp_icall_func) _il2cpp_icall_func = (UnityWebRequest_get_isModifiable_mD7583537BBC7111555FF73846D120103D2563342_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.Networking.UnityWebRequest::get_isModifiable()"); bool retVal = _il2cpp_icall_func(__this); return retVal; } // System.Boolean UnityEngine.Networking.UnityWebRequest::get_isNetworkError() extern "C" IL2CPP_METHOD_ATTR bool UnityWebRequest_get_isNetworkError_m082AFE1A58A330AC4CBD179606B61CB39DD44588 (UnityWebRequest_t9120F5A2C7D43B936B49C0B7E4CA54C822689129 * __this, const RuntimeMethod* method) { typedef bool (*UnityWebRequest_get_isNetworkError_m082AFE1A58A330AC4CBD179606B61CB39DD44588_ftn) (UnityWebRequest_t9120F5A2C7D43B936B49C0B7E4CA54C822689129 *); static UnityWebRequest_get_isNetworkError_m082AFE1A58A330AC4CBD179606B61CB39DD44588_ftn _il2cpp_icall_func; if (!_il2cpp_icall_func) _il2cpp_icall_func = (UnityWebRequest_get_isNetworkError_m082AFE1A58A330AC4CBD179606B61CB39DD44588_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.Networking.UnityWebRequest::get_isNetworkError()"); bool retVal = _il2cpp_icall_func(__this); return retVal; } // System.Boolean UnityEngine.Networking.UnityWebRequest::get_isHttpError() extern "C" IL2CPP_METHOD_ATTR bool UnityWebRequest_get_isHttpError_m8F636B70C239EC848FACC83189DE0C22CADEC1C3 (UnityWebRequest_t9120F5A2C7D43B936B49C0B7E4CA54C822689129 * __this, const RuntimeMethod* method) { typedef bool (*UnityWebRequest_get_isHttpError_m8F636B70C239EC848FACC83189DE0C22CADEC1C3_ftn) (UnityWebRequest_t9120F5A2C7D43B936B49C0B7E4CA54C822689129 *); static UnityWebRequest_get_isHttpError_m8F636B70C239EC848FACC83189DE0C22CADEC1C3_ftn _il2cpp_icall_func; if (!_il2cpp_icall_func) _il2cpp_icall_func = (UnityWebRequest_get_isHttpError_m8F636B70C239EC848FACC83189DE0C22CADEC1C3_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.Networking.UnityWebRequest::get_isHttpError()"); bool retVal = _il2cpp_icall_func(__this); return retVal; } // System.String UnityEngine.Networking.UnityWebRequest::GetRequestHeader(System.String) extern "C" IL2CPP_METHOD_ATTR String_t* UnityWebRequest_GetRequestHeader_m386CAA2410C062B1FC1DAA107125ADC43C6AB238 (UnityWebRequest_t9120F5A2C7D43B936B49C0B7E4CA54C822689129 * __this, String_t* ___name0, const RuntimeMethod* method) { typedef String_t* (*UnityWebRequest_GetRequestHeader_m386CAA2410C062B1FC1DAA107125ADC43C6AB238_ftn) (UnityWebRequest_t9120F5A2C7D43B936B49C0B7E4CA54C822689129 *, String_t*); static UnityWebRequest_GetRequestHeader_m386CAA2410C062B1FC1DAA107125ADC43C6AB238_ftn _il2cpp_icall_func; if (!_il2cpp_icall_func) _il2cpp_icall_func = (UnityWebRequest_GetRequestHeader_m386CAA2410C062B1FC1DAA107125ADC43C6AB238_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.Networking.UnityWebRequest::GetRequestHeader(System.String)"); String_t* retVal = _il2cpp_icall_func(__this, ___name0); return retVal; } // UnityEngine.Networking.UnityWebRequest_UnityWebRequestError UnityEngine.Networking.UnityWebRequest::InternalSetRequestHeader(System.String,System.String) extern "C" IL2CPP_METHOD_ATTR int32_t UnityWebRequest_InternalSetRequestHeader_m7481D7E49B6E6078598E40B81D1A3DA9B8D2BD10 (UnityWebRequest_t9120F5A2C7D43B936B49C0B7E4CA54C822689129 * __this, String_t* ___name0, String_t* ___value1, const RuntimeMethod* method) { typedef int32_t (*UnityWebRequest_InternalSetRequestHeader_m7481D7E49B6E6078598E40B81D1A3DA9B8D2BD10_ftn) (UnityWebRequest_t9120F5A2C7D43B936B49C0B7E4CA54C822689129 *, String_t*, String_t*); static UnityWebRequest_InternalSetRequestHeader_m7481D7E49B6E6078598E40B81D1A3DA9B8D2BD10_ftn _il2cpp_icall_func; if (!_il2cpp_icall_func) _il2cpp_icall_func = (UnityWebRequest_InternalSetRequestHeader_m7481D7E49B6E6078598E40B81D1A3DA9B8D2BD10_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.Networking.UnityWebRequest::InternalSetRequestHeader(System.String,System.String)"); int32_t retVal = _il2cpp_icall_func(__this, ___name0, ___value1); return retVal; } // System.Void UnityEngine.Networking.UnityWebRequest::SetRequestHeader(System.String,System.String) extern "C" IL2CPP_METHOD_ATTR void UnityWebRequest_SetRequestHeader_m1B54D38BDACC2789FC8EE889EA72EDD7844D2309 (UnityWebRequest_t9120F5A2C7D43B936B49C0B7E4CA54C822689129 * __this, String_t* ___name0, String_t* ___value1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (UnityWebRequest_SetRequestHeader_m1B54D38BDACC2789FC8EE889EA72EDD7844D2309_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; { String_t* L_0 = ___name0; bool L_1 = String_IsNullOrEmpty_m06A85A206AC2106D1982826C5665B9BD35324229(L_0, /*hidden argument*/NULL); if (!L_1) { goto IL_0017; } } { ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_2 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var); ArgumentException__ctor_m9A85EF7FEFEC21DDD525A67E831D77278E5165B7(L_2, _stringLiteralBEDBFCA635D617975AC8C4A6D1FBC9714BC86399, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, UnityWebRequest_SetRequestHeader_m1B54D38BDACC2789FC8EE889EA72EDD7844D2309_RuntimeMethod_var); } IL_0017: { String_t* L_3 = ___value1; if (L_3) { goto IL_0028; } } { ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_4 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var); ArgumentException__ctor_m9A85EF7FEFEC21DDD525A67E831D77278E5165B7(L_4, _stringLiteralA288E90C6C4E12B4E76A10851EF1ABD903F1EAE7, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_4, NULL, UnityWebRequest_SetRequestHeader_m1B54D38BDACC2789FC8EE889EA72EDD7844D2309_RuntimeMethod_var); } IL_0028: { bool L_5 = UnityWebRequest_get_isModifiable_mD7583537BBC7111555FF73846D120103D2563342(__this, /*hidden argument*/NULL); if (L_5) { goto IL_003e; } } { InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_6 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var); InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_6, _stringLiteralAEA05C1AAB9D42F987C023592D1AF2F1D8403D2F, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_6, NULL, UnityWebRequest_SetRequestHeader_m1B54D38BDACC2789FC8EE889EA72EDD7844D2309_RuntimeMethod_var); } IL_003e: { String_t* L_7 = ___name0; String_t* L_8 = ___value1; int32_t L_9 = UnityWebRequest_InternalSetRequestHeader_m7481D7E49B6E6078598E40B81D1A3DA9B8D2BD10(__this, L_7, L_8, /*hidden argument*/NULL); V_0 = L_9; int32_t L_10 = V_0; if (!L_10) { goto IL_0059; } } { int32_t L_11 = V_0; String_t* L_12 = UnityWebRequest_GetWebErrorString_m92A1DDF2ADFFF8AEE6B1A7FAE384743C31F9E01D(L_11, /*hidden argument*/NULL); InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_13 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var); InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_13, L_12, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_13, NULL, UnityWebRequest_SetRequestHeader_m1B54D38BDACC2789FC8EE889EA72EDD7844D2309_RuntimeMethod_var); } IL_0059: { return; } } // System.String UnityEngine.Networking.UnityWebRequest::GetResponseHeader(System.String) extern "C" IL2CPP_METHOD_ATTR String_t* UnityWebRequest_GetResponseHeader_m3C6A64338B5B11F5CE2941FEE37DDAB0B67AC5C2 (UnityWebRequest_t9120F5A2C7D43B936B49C0B7E4CA54C822689129 * __this, String_t* ___name0, const RuntimeMethod* method) { typedef String_t* (*UnityWebRequest_GetResponseHeader_m3C6A64338B5B11F5CE2941FEE37DDAB0B67AC5C2_ftn) (UnityWebRequest_t9120F5A2C7D43B936B49C0B7E4CA54C822689129 *, String_t*); static UnityWebRequest_GetResponseHeader_m3C6A64338B5B11F5CE2941FEE37DDAB0B67AC5C2_ftn _il2cpp_icall_func; if (!_il2cpp_icall_func) _il2cpp_icall_func = (UnityWebRequest_GetResponseHeader_m3C6A64338B5B11F5CE2941FEE37DDAB0B67AC5C2_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.Networking.UnityWebRequest::GetResponseHeader(System.String)"); String_t* retVal = _il2cpp_icall_func(__this, ___name0); return retVal; } // System.String[] UnityEngine.Networking.UnityWebRequest::GetResponseHeaderKeys() extern "C" IL2CPP_METHOD_ATTR StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* UnityWebRequest_GetResponseHeaderKeys_mCA197A30EE7652C300682B5B7560BF7D86FC30AD (UnityWebRequest_t9120F5A2C7D43B936B49C0B7E4CA54C822689129 * __this, const RuntimeMethod* method) { typedef StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* (*UnityWebRequest_GetResponseHeaderKeys_mCA197A30EE7652C300682B5B7560BF7D86FC30AD_ftn) (UnityWebRequest_t9120F5A2C7D43B936B49C0B7E4CA54C822689129 *); static UnityWebRequest_GetResponseHeaderKeys_mCA197A30EE7652C300682B5B7560BF7D86FC30AD_ftn _il2cpp_icall_func; if (!_il2cpp_icall_func) _il2cpp_icall_func = (UnityWebRequest_GetResponseHeaderKeys_mCA197A30EE7652C300682B5B7560BF7D86FC30AD_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.Networking.UnityWebRequest::GetResponseHeaderKeys()"); StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* retVal = _il2cpp_icall_func(__this); return retVal; } // System.Collections.Generic.Dictionary`2<System.String,System.String> UnityEngine.Networking.UnityWebRequest::GetResponseHeaders() extern "C" IL2CPP_METHOD_ATTR Dictionary_2_t931BF283048C4E74FC063C3036E5F3FE328861FC * UnityWebRequest_GetResponseHeaders_mFA5C7C10F2BA83F21826611AF204BC56E881A863 (UnityWebRequest_t9120F5A2C7D43B936B49C0B7E4CA54C822689129 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (UnityWebRequest_GetResponseHeaders_mFA5C7C10F2BA83F21826611AF204BC56E881A863_MetadataUsageId); s_Il2CppMethodInitialized = true; } StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* V_0 = NULL; Dictionary_2_t931BF283048C4E74FC063C3036E5F3FE328861FC * V_1 = NULL; Dictionary_2_t931BF283048C4E74FC063C3036E5F3FE328861FC * V_2 = NULL; int32_t V_3 = 0; String_t* V_4 = NULL; { StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_0 = UnityWebRequest_GetResponseHeaderKeys_mCA197A30EE7652C300682B5B7560BF7D86FC30AD(__this, /*hidden argument*/NULL); V_0 = L_0; StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_1 = V_0; if (!L_1) { goto IL_0016; } } { StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_2 = V_0; NullCheck(L_2); if ((((int32_t)((int32_t)(((RuntimeArray *)L_2)->max_length))))) { goto IL_001e; } } IL_0016: { V_1 = (Dictionary_2_t931BF283048C4E74FC063C3036E5F3FE328861FC *)NULL; goto IL_005f; } IL_001e: { StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_3 = V_0; NullCheck(L_3); IL2CPP_RUNTIME_CLASS_INIT(StringComparer_t588BC7FEF85D6E7425E0A8147A3D5A334F1F82DE_il2cpp_TypeInfo_var); StringComparer_t588BC7FEF85D6E7425E0A8147A3D5A334F1F82DE * L_4 = StringComparer_get_OrdinalIgnoreCase_m3F2527D9A11521E8B51F0AC8F70DB272DA8334C9(/*hidden argument*/NULL); Dictionary_2_t931BF283048C4E74FC063C3036E5F3FE328861FC * L_5 = (Dictionary_2_t931BF283048C4E74FC063C3036E5F3FE328861FC *)il2cpp_codegen_object_new(Dictionary_2_t931BF283048C4E74FC063C3036E5F3FE328861FC_il2cpp_TypeInfo_var); Dictionary_2__ctor_m1DDEF700172660887162F8B6AA94679C3113AB9F(L_5, (((int32_t)((int32_t)(((RuntimeArray *)L_3)->max_length)))), L_4, /*hidden argument*/Dictionary_2__ctor_m1DDEF700172660887162F8B6AA94679C3113AB9F_RuntimeMethod_var); V_2 = L_5; V_3 = 0; goto IL_004f; } IL_0033: { StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_6 = V_0; int32_t L_7 = V_3; NullCheck(L_6); int32_t L_8 = L_7; String_t* L_9 = (L_6)->GetAt(static_cast<il2cpp_array_size_t>(L_8)); String_t* L_10 = UnityWebRequest_GetResponseHeader_m3C6A64338B5B11F5CE2941FEE37DDAB0B67AC5C2(__this, L_9, /*hidden argument*/NULL); V_4 = L_10; Dictionary_2_t931BF283048C4E74FC063C3036E5F3FE328861FC * L_11 = V_2; StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_12 = V_0; int32_t L_13 = V_3; NullCheck(L_12); int32_t L_14 = L_13; String_t* L_15 = (L_12)->GetAt(static_cast<il2cpp_array_size_t>(L_14)); String_t* L_16 = V_4; NullCheck(L_11); Dictionary_2_Add_m8E1E97EC586BFF6D3F84BB3429DF6198853F25AC(L_11, L_15, L_16, /*hidden argument*/Dictionary_2_Add_m8E1E97EC586BFF6D3F84BB3429DF6198853F25AC_RuntimeMethod_var); int32_t L_17 = V_3; V_3 = ((int32_t)il2cpp_codegen_add((int32_t)L_17, (int32_t)1)); } IL_004f: { int32_t L_18 = V_3; StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_19 = V_0; NullCheck(L_19); if ((((int32_t)L_18) < ((int32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_19)->max_length))))))) { goto IL_0033; } } { Dictionary_2_t931BF283048C4E74FC063C3036E5F3FE328861FC * L_20 = V_2; V_1 = L_20; goto IL_005f; } IL_005f: { Dictionary_2_t931BF283048C4E74FC063C3036E5F3FE328861FC * L_21 = V_1; return L_21; } } // UnityEngine.Networking.UnityWebRequest_UnityWebRequestError UnityEngine.Networking.UnityWebRequest::SetUploadHandler(UnityEngine.Networking.UploadHandler) extern "C" IL2CPP_METHOD_ATTR int32_t UnityWebRequest_SetUploadHandler_m046EF4089035441F661AED13F703024DEE030525 (UnityWebRequest_t9120F5A2C7D43B936B49C0B7E4CA54C822689129 * __this, UploadHandler_t24F4097D30A1E7C689D8881A27F251B4741601E4 * ___uh0, const RuntimeMethod* method) { typedef int32_t (*UnityWebRequest_SetUploadHandler_m046EF4089035441F661AED13F703024DEE030525_ftn) (UnityWebRequest_t9120F5A2C7D43B936B49C0B7E4CA54C822689129 *, UploadHandler_t24F4097D30A1E7C689D8881A27F251B4741601E4 *); static UnityWebRequest_SetUploadHandler_m046EF4089035441F661AED13F703024DEE030525_ftn _il2cpp_icall_func; if (!_il2cpp_icall_func) _il2cpp_icall_func = (UnityWebRequest_SetUploadHandler_m046EF4089035441F661AED13F703024DEE030525_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.Networking.UnityWebRequest::SetUploadHandler(UnityEngine.Networking.UploadHandler)"); int32_t retVal = _il2cpp_icall_func(__this, ___uh0); return retVal; } // UnityEngine.Networking.UploadHandler UnityEngine.Networking.UnityWebRequest::get_uploadHandler() extern "C" IL2CPP_METHOD_ATTR UploadHandler_t24F4097D30A1E7C689D8881A27F251B4741601E4 * UnityWebRequest_get_uploadHandler_mB23A35C2412258E44538F37AA540421C95E69A5C (UnityWebRequest_t9120F5A2C7D43B936B49C0B7E4CA54C822689129 * __this, const RuntimeMethod* method) { UploadHandler_t24F4097D30A1E7C689D8881A27F251B4741601E4 * V_0 = NULL; { UploadHandler_t24F4097D30A1E7C689D8881A27F251B4741601E4 * L_0 = __this->get_m_UploadHandler_2(); V_0 = L_0; goto IL_000d; } IL_000d: { UploadHandler_t24F4097D30A1E7C689D8881A27F251B4741601E4 * L_1 = V_0; return L_1; } } // System.Void UnityEngine.Networking.UnityWebRequest::set_uploadHandler(UnityEngine.Networking.UploadHandler) extern "C" IL2CPP_METHOD_ATTR void UnityWebRequest_set_uploadHandler_m7B33656584914FB3F6FB0FF73C08F671262724A1 (UnityWebRequest_t9120F5A2C7D43B936B49C0B7E4CA54C822689129 * __this, UploadHandler_t24F4097D30A1E7C689D8881A27F251B4741601E4 * ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (UnityWebRequest_set_uploadHandler_m7B33656584914FB3F6FB0FF73C08F671262724A1_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; { bool L_0 = UnityWebRequest_get_isModifiable_mD7583537BBC7111555FF73846D120103D2563342(__this, /*hidden argument*/NULL); if (L_0) { goto IL_0017; } } { InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_1 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var); InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_1, _stringLiteralF80B07414273FEB6D1B5EAB1E91186C7CE65DE24, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, UnityWebRequest_set_uploadHandler_m7B33656584914FB3F6FB0FF73C08F671262724A1_RuntimeMethod_var); } IL_0017: { UploadHandler_t24F4097D30A1E7C689D8881A27F251B4741601E4 * L_2 = ___value0; int32_t L_3 = UnityWebRequest_SetUploadHandler_m046EF4089035441F661AED13F703024DEE030525(__this, L_2, /*hidden argument*/NULL); V_0 = L_3; int32_t L_4 = V_0; if (!L_4) { goto IL_0031; } } { int32_t L_5 = V_0; String_t* L_6 = UnityWebRequest_GetWebErrorString_m92A1DDF2ADFFF8AEE6B1A7FAE384743C31F9E01D(L_5, /*hidden argument*/NULL); InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_7 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var); InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_7, L_6, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_7, NULL, UnityWebRequest_set_uploadHandler_m7B33656584914FB3F6FB0FF73C08F671262724A1_RuntimeMethod_var); } IL_0031: { UploadHandler_t24F4097D30A1E7C689D8881A27F251B4741601E4 * L_8 = ___value0; __this->set_m_UploadHandler_2(L_8); return; } } // UnityEngine.Networking.UnityWebRequest_UnityWebRequestError UnityEngine.Networking.UnityWebRequest::SetDownloadHandler(UnityEngine.Networking.DownloadHandler) extern "C" IL2CPP_METHOD_ATTR int32_t UnityWebRequest_SetDownloadHandler_mDE4E6137C34A90754C41B3A0B7B303135771EEDD (UnityWebRequest_t9120F5A2C7D43B936B49C0B7E4CA54C822689129 * __this, DownloadHandler_t4A7802ADC97024B469C87FA454B6973951980EE9 * ___dh0, const RuntimeMethod* method) { typedef int32_t (*UnityWebRequest_SetDownloadHandler_mDE4E6137C34A90754C41B3A0B7B303135771EEDD_ftn) (UnityWebRequest_t9120F5A2C7D43B936B49C0B7E4CA54C822689129 *, DownloadHandler_t4A7802ADC97024B469C87FA454B6973951980EE9 *); static UnityWebRequest_SetDownloadHandler_mDE4E6137C34A90754C41B3A0B7B303135771EEDD_ftn _il2cpp_icall_func; if (!_il2cpp_icall_func) _il2cpp_icall_func = (UnityWebRequest_SetDownloadHandler_mDE4E6137C34A90754C41B3A0B7B303135771EEDD_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.Networking.UnityWebRequest::SetDownloadHandler(UnityEngine.Networking.DownloadHandler)"); int32_t retVal = _il2cpp_icall_func(__this, ___dh0); return retVal; } // UnityEngine.Networking.DownloadHandler UnityEngine.Networking.UnityWebRequest::get_downloadHandler() extern "C" IL2CPP_METHOD_ATTR DownloadHandler_t4A7802ADC97024B469C87FA454B6973951980EE9 * UnityWebRequest_get_downloadHandler_m83044026479E6B4B2739DCE9EEA8A0FAE7D9AF41 (UnityWebRequest_t9120F5A2C7D43B936B49C0B7E4CA54C822689129 * __this, const RuntimeMethod* method) { DownloadHandler_t4A7802ADC97024B469C87FA454B6973951980EE9 * V_0 = NULL; { DownloadHandler_t4A7802ADC97024B469C87FA454B6973951980EE9 * L_0 = __this->get_m_DownloadHandler_1(); V_0 = L_0; goto IL_000d; } IL_000d: { DownloadHandler_t4A7802ADC97024B469C87FA454B6973951980EE9 * L_1 = V_0; return L_1; } } // System.Void UnityEngine.Networking.UnityWebRequest::set_downloadHandler(UnityEngine.Networking.DownloadHandler) extern "C" IL2CPP_METHOD_ATTR void UnityWebRequest_set_downloadHandler_mB481C2EE30F84B62396C1A837F46046F12B8FA7E (UnityWebRequest_t9120F5A2C7D43B936B49C0B7E4CA54C822689129 * __this, DownloadHandler_t4A7802ADC97024B469C87FA454B6973951980EE9 * ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (UnityWebRequest_set_downloadHandler_mB481C2EE30F84B62396C1A837F46046F12B8FA7E_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; { bool L_0 = UnityWebRequest_get_isModifiable_mD7583537BBC7111555FF73846D120103D2563342(__this, /*hidden argument*/NULL); if (L_0) { goto IL_0017; } } { InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_1 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var); InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_1, _stringLiteralA58AA001D4152D20F7F8E0809B9CD782BE38A82C, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, UnityWebRequest_set_downloadHandler_mB481C2EE30F84B62396C1A837F46046F12B8FA7E_RuntimeMethod_var); } IL_0017: { DownloadHandler_t4A7802ADC97024B469C87FA454B6973951980EE9 * L_2 = ___value0; int32_t L_3 = UnityWebRequest_SetDownloadHandler_mDE4E6137C34A90754C41B3A0B7B303135771EEDD(__this, L_2, /*hidden argument*/NULL); V_0 = L_3; int32_t L_4 = V_0; if (!L_4) { goto IL_0031; } } { int32_t L_5 = V_0; String_t* L_6 = UnityWebRequest_GetWebErrorString_m92A1DDF2ADFFF8AEE6B1A7FAE384743C31F9E01D(L_5, /*hidden argument*/NULL); InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_7 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var); InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_7, L_6, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_7, NULL, UnityWebRequest_set_downloadHandler_mB481C2EE30F84B62396C1A837F46046F12B8FA7E_RuntimeMethod_var); } IL_0031: { DownloadHandler_t4A7802ADC97024B469C87FA454B6973951980EE9 * L_8 = ___value0; __this->set_m_DownloadHandler_1(L_8); return; } } // UnityEngine.Networking.CertificateHandler UnityEngine.Networking.UnityWebRequest::get_certificateHandler() extern "C" IL2CPP_METHOD_ATTR CertificateHandler_tBD070BF4150A44AB482FD36EA3882C363117E8C0 * UnityWebRequest_get_certificateHandler_mD3C46D07991190373A7144A6732E390FFBE6DF00 (UnityWebRequest_t9120F5A2C7D43B936B49C0B7E4CA54C822689129 * __this, const RuntimeMethod* method) { CertificateHandler_tBD070BF4150A44AB482FD36EA3882C363117E8C0 * V_0 = NULL; { CertificateHandler_tBD070BF4150A44AB482FD36EA3882C363117E8C0 * L_0 = __this->get_m_CertificateHandler_3(); V_0 = L_0; goto IL_000d; } IL_000d: { CertificateHandler_tBD070BF4150A44AB482FD36EA3882C363117E8C0 * L_1 = V_0; return L_1; } } // UnityEngine.Networking.UnityWebRequest_UnityWebRequestError UnityEngine.Networking.UnityWebRequest::SetTimeoutMsec(System.Int32) extern "C" IL2CPP_METHOD_ATTR int32_t UnityWebRequest_SetTimeoutMsec_m53542B77D1BA4486039178C0BEBED3005A6AF079 (UnityWebRequest_t9120F5A2C7D43B936B49C0B7E4CA54C822689129 * __this, int32_t ___timeout0, const RuntimeMethod* method) { typedef int32_t (*UnityWebRequest_SetTimeoutMsec_m53542B77D1BA4486039178C0BEBED3005A6AF079_ftn) (UnityWebRequest_t9120F5A2C7D43B936B49C0B7E4CA54C822689129 *, int32_t); static UnityWebRequest_SetTimeoutMsec_m53542B77D1BA4486039178C0BEBED3005A6AF079_ftn _il2cpp_icall_func; if (!_il2cpp_icall_func) _il2cpp_icall_func = (UnityWebRequest_SetTimeoutMsec_m53542B77D1BA4486039178C0BEBED3005A6AF079_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.Networking.UnityWebRequest::SetTimeoutMsec(System.Int32)"); int32_t retVal = _il2cpp_icall_func(__this, ___timeout0); return retVal; } // System.Void UnityEngine.Networking.UnityWebRequest::set_timeout(System.Int32) extern "C" IL2CPP_METHOD_ATTR void UnityWebRequest_set_timeout_mA80432BD1798C9227EAE77554A795293072C6E1F (UnityWebRequest_t9120F5A2C7D43B936B49C0B7E4CA54C822689129 * __this, int32_t ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (UnityWebRequest_set_timeout_mA80432BD1798C9227EAE77554A795293072C6E1F_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; { bool L_0 = UnityWebRequest_get_isModifiable_mD7583537BBC7111555FF73846D120103D2563342(__this, /*hidden argument*/NULL); if (L_0) { goto IL_0017; } } { InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_1 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var); InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_1, _stringLiteralD953731CD3AE7D9E5F32ADAB3A935068E83C5BB2, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_1, NULL, UnityWebRequest_set_timeout_mA80432BD1798C9227EAE77554A795293072C6E1F_RuntimeMethod_var); } IL_0017: { int32_t L_2 = ___value0; IL2CPP_RUNTIME_CLASS_INIT(Math_tFB388E53C7FDC6FCCF9A19ABF5A4E521FBD52E19_il2cpp_TypeInfo_var); int32_t L_3 = Math_Max_mA99E48BB021F2E4B62D4EA9F52EA6928EED618A2(L_2, 0, /*hidden argument*/NULL); ___value0 = L_3; int32_t L_4 = ___value0; int32_t L_5 = UnityWebRequest_SetTimeoutMsec_m53542B77D1BA4486039178C0BEBED3005A6AF079(__this, ((int32_t)il2cpp_codegen_multiply((int32_t)L_4, (int32_t)((int32_t)1000))), /*hidden argument*/NULL); V_0 = L_5; int32_t L_6 = V_0; if (!L_6) { goto IL_0040; } } { int32_t L_7 = V_0; String_t* L_8 = UnityWebRequest_GetWebErrorString_m92A1DDF2ADFFF8AEE6B1A7FAE384743C31F9E01D(L_7, /*hidden argument*/NULL); InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 * L_9 = (InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1 *)il2cpp_codegen_object_new(InvalidOperationException_t0530E734D823F78310CAFAFA424CA5164D93A1F1_il2cpp_TypeInfo_var); InvalidOperationException__ctor_m72027D5F1D513C25C05137E203EEED8FD8297706(L_9, L_8, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_9, NULL, UnityWebRequest_set_timeout_mA80432BD1798C9227EAE77554A795293072C6E1F_RuntimeMethod_var); } IL_0040: { return; } } // UnityEngine.Networking.UnityWebRequest UnityEngine.Networking.UnityWebRequest::Get(System.String) extern "C" IL2CPP_METHOD_ATTR UnityWebRequest_t9120F5A2C7D43B936B49C0B7E4CA54C822689129 * UnityWebRequest_Get_mF4E12AA47AAF25221AD738B434B0EA8D40659B18 (String_t* ___uri0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (UnityWebRequest_Get_mF4E12AA47AAF25221AD738B434B0EA8D40659B18_MetadataUsageId); s_Il2CppMethodInitialized = true; } UnityWebRequest_t9120F5A2C7D43B936B49C0B7E4CA54C822689129 * V_0 = NULL; UnityWebRequest_t9120F5A2C7D43B936B49C0B7E4CA54C822689129 * V_1 = NULL; { String_t* L_0 = ___uri0; DownloadHandlerBuffer_tF6A73B82C9EC807D36B904A58E1DF2DDA696B255 * L_1 = (DownloadHandlerBuffer_tF6A73B82C9EC807D36B904A58E1DF2DDA696B255 *)il2cpp_codegen_object_new(DownloadHandlerBuffer_tF6A73B82C9EC807D36B904A58E1DF2DDA696B255_il2cpp_TypeInfo_var); DownloadHandlerBuffer__ctor_m2134187D8FB07FBAEA2CE23BFCEB13FD94261A9A(L_1, /*hidden argument*/NULL); UnityWebRequest_t9120F5A2C7D43B936B49C0B7E4CA54C822689129 * L_2 = (UnityWebRequest_t9120F5A2C7D43B936B49C0B7E4CA54C822689129 *)il2cpp_codegen_object_new(UnityWebRequest_t9120F5A2C7D43B936B49C0B7E4CA54C822689129_il2cpp_TypeInfo_var); UnityWebRequest__ctor_m0D2F8F3E1202EF4256D17E91B95DB6CC673FC8D6(L_2, L_0, _stringLiteralF030BBBD32966CDE41037B98A8849C46B76E4BC1, L_1, (UploadHandler_t24F4097D30A1E7C689D8881A27F251B4741601E4 *)NULL, /*hidden argument*/NULL); V_0 = L_2; UnityWebRequest_t9120F5A2C7D43B936B49C0B7E4CA54C822689129 * L_3 = V_0; V_1 = L_3; goto IL_001a; } IL_001a: { UnityWebRequest_t9120F5A2C7D43B936B49C0B7E4CA54C822689129 * L_4 = V_1; return L_4; } } // UnityEngine.Networking.UnityWebRequest UnityEngine.Networking.UnityWebRequest::Delete(System.String) extern "C" IL2CPP_METHOD_ATTR UnityWebRequest_t9120F5A2C7D43B936B49C0B7E4CA54C822689129 * UnityWebRequest_Delete_m5F08DC19746922E5CCAADCAAF035AD227B061D95 (String_t* ___uri0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (UnityWebRequest_Delete_m5F08DC19746922E5CCAADCAAF035AD227B061D95_MetadataUsageId); s_Il2CppMethodInitialized = true; } UnityWebRequest_t9120F5A2C7D43B936B49C0B7E4CA54C822689129 * V_0 = NULL; UnityWebRequest_t9120F5A2C7D43B936B49C0B7E4CA54C822689129 * V_1 = NULL; { String_t* L_0 = ___uri0; UnityWebRequest_t9120F5A2C7D43B936B49C0B7E4CA54C822689129 * L_1 = (UnityWebRequest_t9120F5A2C7D43B936B49C0B7E4CA54C822689129 *)il2cpp_codegen_object_new(UnityWebRequest_t9120F5A2C7D43B936B49C0B7E4CA54C822689129_il2cpp_TypeInfo_var); UnityWebRequest__ctor_m3CBA159B3514D89C931002DFD333B9768A08EBFA(L_1, L_0, _stringLiteralD6F5636098CD458CE9D22939F8E3E8DEAB0E9BD0, /*hidden argument*/NULL); V_0 = L_1; UnityWebRequest_t9120F5A2C7D43B936B49C0B7E4CA54C822689129 * L_2 = V_0; V_1 = L_2; goto IL_0014; } IL_0014: { UnityWebRequest_t9120F5A2C7D43B936B49C0B7E4CA54C822689129 * L_3 = V_1; return L_3; } } // UnityEngine.Networking.UnityWebRequest UnityEngine.Networking.UnityWebRequest::Put(System.String,System.Byte[]) extern "C" IL2CPP_METHOD_ATTR UnityWebRequest_t9120F5A2C7D43B936B49C0B7E4CA54C822689129 * UnityWebRequest_Put_m3B499CCF1C4FB9FBCF58B1AACC2989581EB3F26C (String_t* ___uri0, ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___bodyData1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (UnityWebRequest_Put_m3B499CCF1C4FB9FBCF58B1AACC2989581EB3F26C_MetadataUsageId); s_Il2CppMethodInitialized = true; } UnityWebRequest_t9120F5A2C7D43B936B49C0B7E4CA54C822689129 * V_0 = NULL; UnityWebRequest_t9120F5A2C7D43B936B49C0B7E4CA54C822689129 * V_1 = NULL; { String_t* L_0 = ___uri0; DownloadHandlerBuffer_tF6A73B82C9EC807D36B904A58E1DF2DDA696B255 * L_1 = (DownloadHandlerBuffer_tF6A73B82C9EC807D36B904A58E1DF2DDA696B255 *)il2cpp_codegen_object_new(DownloadHandlerBuffer_tF6A73B82C9EC807D36B904A58E1DF2DDA696B255_il2cpp_TypeInfo_var); DownloadHandlerBuffer__ctor_m2134187D8FB07FBAEA2CE23BFCEB13FD94261A9A(L_1, /*hidden argument*/NULL); ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_2 = ___bodyData1; UploadHandlerRaw_t9E6A69B7726F134F31F6744F5EFDF611E7C54F27 * L_3 = (UploadHandlerRaw_t9E6A69B7726F134F31F6744F5EFDF611E7C54F27 *)il2cpp_codegen_object_new(UploadHandlerRaw_t9E6A69B7726F134F31F6744F5EFDF611E7C54F27_il2cpp_TypeInfo_var); UploadHandlerRaw__ctor_m9F7643CA3314C8CE46DD41FBF584C268E2546935(L_3, L_2, /*hidden argument*/NULL); UnityWebRequest_t9120F5A2C7D43B936B49C0B7E4CA54C822689129 * L_4 = (UnityWebRequest_t9120F5A2C7D43B936B49C0B7E4CA54C822689129 *)il2cpp_codegen_object_new(UnityWebRequest_t9120F5A2C7D43B936B49C0B7E4CA54C822689129_il2cpp_TypeInfo_var); UnityWebRequest__ctor_m0D2F8F3E1202EF4256D17E91B95DB6CC673FC8D6(L_4, L_0, _stringLiteral091B0CE42EB0BD96169EA00B16DD938F6D63AC95, L_1, L_3, /*hidden argument*/NULL); V_0 = L_4; UnityWebRequest_t9120F5A2C7D43B936B49C0B7E4CA54C822689129 * L_5 = V_0; V_1 = L_5; goto IL_001f; } IL_001f: { UnityWebRequest_t9120F5A2C7D43B936B49C0B7E4CA54C822689129 * L_6 = V_1; return L_6; } } // UnityEngine.Networking.UnityWebRequest UnityEngine.Networking.UnityWebRequest::Put(System.String,System.String) extern "C" IL2CPP_METHOD_ATTR UnityWebRequest_t9120F5A2C7D43B936B49C0B7E4CA54C822689129 * UnityWebRequest_Put_mF4F986692AF2279DDEDD8866E9611E2BA7D6A209 (String_t* ___uri0, String_t* ___bodyData1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (UnityWebRequest_Put_mF4F986692AF2279DDEDD8866E9611E2BA7D6A209_MetadataUsageId); s_Il2CppMethodInitialized = true; } UnityWebRequest_t9120F5A2C7D43B936B49C0B7E4CA54C822689129 * V_0 = NULL; UnityWebRequest_t9120F5A2C7D43B936B49C0B7E4CA54C822689129 * V_1 = NULL; { String_t* L_0 = ___uri0; DownloadHandlerBuffer_tF6A73B82C9EC807D36B904A58E1DF2DDA696B255 * L_1 = (DownloadHandlerBuffer_tF6A73B82C9EC807D36B904A58E1DF2DDA696B255 *)il2cpp_codegen_object_new(DownloadHandlerBuffer_tF6A73B82C9EC807D36B904A58E1DF2DDA696B255_il2cpp_TypeInfo_var); DownloadHandlerBuffer__ctor_m2134187D8FB07FBAEA2CE23BFCEB13FD94261A9A(L_1, /*hidden argument*/NULL); Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * L_2 = Encoding_get_UTF8_m67C8652936B681E7BC7505E459E88790E0FF16D9(/*hidden argument*/NULL); String_t* L_3 = ___bodyData1; NullCheck(L_2); ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_4 = VirtFuncInvoker1< ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*, String_t* >::Invoke(25 /* System.Byte[] System.Text.Encoding::GetBytes(System.String) */, L_2, L_3); UploadHandlerRaw_t9E6A69B7726F134F31F6744F5EFDF611E7C54F27 * L_5 = (UploadHandlerRaw_t9E6A69B7726F134F31F6744F5EFDF611E7C54F27 *)il2cpp_codegen_object_new(UploadHandlerRaw_t9E6A69B7726F134F31F6744F5EFDF611E7C54F27_il2cpp_TypeInfo_var); UploadHandlerRaw__ctor_m9F7643CA3314C8CE46DD41FBF584C268E2546935(L_5, L_4, /*hidden argument*/NULL); UnityWebRequest_t9120F5A2C7D43B936B49C0B7E4CA54C822689129 * L_6 = (UnityWebRequest_t9120F5A2C7D43B936B49C0B7E4CA54C822689129 *)il2cpp_codegen_object_new(UnityWebRequest_t9120F5A2C7D43B936B49C0B7E4CA54C822689129_il2cpp_TypeInfo_var); UnityWebRequest__ctor_m0D2F8F3E1202EF4256D17E91B95DB6CC673FC8D6(L_6, L_0, _stringLiteral091B0CE42EB0BD96169EA00B16DD938F6D63AC95, L_1, L_5, /*hidden argument*/NULL); V_0 = L_6; UnityWebRequest_t9120F5A2C7D43B936B49C0B7E4CA54C822689129 * L_7 = V_0; V_1 = L_7; goto IL_0029; } IL_0029: { UnityWebRequest_t9120F5A2C7D43B936B49C0B7E4CA54C822689129 * L_8 = V_1; return L_8; } } // UnityEngine.Networking.UnityWebRequest UnityEngine.Networking.UnityWebRequest::Post(System.String,System.String) extern "C" IL2CPP_METHOD_ATTR UnityWebRequest_t9120F5A2C7D43B936B49C0B7E4CA54C822689129 * UnityWebRequest_Post_m677069528E4C23CF91208E5A66D672568EDE17E5 (String_t* ___uri0, String_t* ___postData1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (UnityWebRequest_Post_m677069528E4C23CF91208E5A66D672568EDE17E5_MetadataUsageId); s_Il2CppMethodInitialized = true; } UnityWebRequest_t9120F5A2C7D43B936B49C0B7E4CA54C822689129 * V_0 = NULL; UnityWebRequest_t9120F5A2C7D43B936B49C0B7E4CA54C822689129 * V_1 = NULL; { String_t* L_0 = ___uri0; UnityWebRequest_t9120F5A2C7D43B936B49C0B7E4CA54C822689129 * L_1 = (UnityWebRequest_t9120F5A2C7D43B936B49C0B7E4CA54C822689129 *)il2cpp_codegen_object_new(UnityWebRequest_t9120F5A2C7D43B936B49C0B7E4CA54C822689129_il2cpp_TypeInfo_var); UnityWebRequest__ctor_m3CBA159B3514D89C931002DFD333B9768A08EBFA(L_1, L_0, _stringLiteral61FF81C30AA3C76E78AFEA62B2E3BD1DFA49E854, /*hidden argument*/NULL); V_0 = L_1; UnityWebRequest_t9120F5A2C7D43B936B49C0B7E4CA54C822689129 * L_2 = V_0; String_t* L_3 = ___postData1; UnityWebRequest_SetupPost_mAB03D6DF06B96684D7E1A25449868CD4D1AABA57(L_2, L_3, /*hidden argument*/NULL); UnityWebRequest_t9120F5A2C7D43B936B49C0B7E4CA54C822689129 * L_4 = V_0; V_1 = L_4; goto IL_001b; } IL_001b: { UnityWebRequest_t9120F5A2C7D43B936B49C0B7E4CA54C822689129 * L_5 = V_1; return L_5; } } // System.Void UnityEngine.Networking.UnityWebRequest::SetupPost(UnityEngine.Networking.UnityWebRequest,System.String) extern "C" IL2CPP_METHOD_ATTR void UnityWebRequest_SetupPost_mAB03D6DF06B96684D7E1A25449868CD4D1AABA57 (UnityWebRequest_t9120F5A2C7D43B936B49C0B7E4CA54C822689129 * ___request0, String_t* ___postData1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (UnityWebRequest_SetupPost_mAB03D6DF06B96684D7E1A25449868CD4D1AABA57_MetadataUsageId); s_Il2CppMethodInitialized = true; } ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* V_0 = NULL; String_t* V_1 = NULL; { V_0 = (ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*)NULL; String_t* L_0 = ___postData1; bool L_1 = String_IsNullOrEmpty_m06A85A206AC2106D1982826C5665B9BD35324229(L_0, /*hidden argument*/NULL); if (L_1) { goto IL_0028; } } { String_t* L_2 = ___postData1; Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * L_3 = Encoding_get_UTF8_m67C8652936B681E7BC7505E459E88790E0FF16D9(/*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(WWWTranscoder_t0B24F1F17629756E6464A925870CC39236F39C61_il2cpp_TypeInfo_var); String_t* L_4 = WWWTranscoder_DataEncode_m991CA7AD8C98345736244A24979E440E23E5035A(L_2, L_3, /*hidden argument*/NULL); V_1 = L_4; Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * L_5 = Encoding_get_UTF8_m67C8652936B681E7BC7505E459E88790E0FF16D9(/*hidden argument*/NULL); String_t* L_6 = V_1; NullCheck(L_5); ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_7 = VirtFuncInvoker1< ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*, String_t* >::Invoke(25 /* System.Byte[] System.Text.Encoding::GetBytes(System.String) */, L_5, L_6); V_0 = L_7; } IL_0028: { UnityWebRequest_t9120F5A2C7D43B936B49C0B7E4CA54C822689129 * L_8 = ___request0; ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_9 = V_0; UploadHandlerRaw_t9E6A69B7726F134F31F6744F5EFDF611E7C54F27 * L_10 = (UploadHandlerRaw_t9E6A69B7726F134F31F6744F5EFDF611E7C54F27 *)il2cpp_codegen_object_new(UploadHandlerRaw_t9E6A69B7726F134F31F6744F5EFDF611E7C54F27_il2cpp_TypeInfo_var); UploadHandlerRaw__ctor_m9F7643CA3314C8CE46DD41FBF584C268E2546935(L_10, L_9, /*hidden argument*/NULL); NullCheck(L_8); UnityWebRequest_set_uploadHandler_m7B33656584914FB3F6FB0FF73C08F671262724A1(L_8, L_10, /*hidden argument*/NULL); UnityWebRequest_t9120F5A2C7D43B936B49C0B7E4CA54C822689129 * L_11 = ___request0; NullCheck(L_11); UploadHandler_t24F4097D30A1E7C689D8881A27F251B4741601E4 * L_12 = UnityWebRequest_get_uploadHandler_mB23A35C2412258E44538F37AA540421C95E69A5C(L_11, /*hidden argument*/NULL); NullCheck(L_12); UploadHandler_set_contentType_mB90BEE88AD0FCD496BED349F4E8086AB3C76FF3E(L_12, _stringLiteralE3D6849AF2EC582D2E5BA2EE543CA6818D1B03AC, /*hidden argument*/NULL); UnityWebRequest_t9120F5A2C7D43B936B49C0B7E4CA54C822689129 * L_13 = ___request0; DownloadHandlerBuffer_tF6A73B82C9EC807D36B904A58E1DF2DDA696B255 * L_14 = (DownloadHandlerBuffer_tF6A73B82C9EC807D36B904A58E1DF2DDA696B255 *)il2cpp_codegen_object_new(DownloadHandlerBuffer_tF6A73B82C9EC807D36B904A58E1DF2DDA696B255_il2cpp_TypeInfo_var); DownloadHandlerBuffer__ctor_m2134187D8FB07FBAEA2CE23BFCEB13FD94261A9A(L_14, /*hidden argument*/NULL); NullCheck(L_13); UnityWebRequest_set_downloadHandler_mB481C2EE30F84B62396C1A837F46046F12B8FA7E(L_13, L_14, /*hidden argument*/NULL); return; } } // UnityEngine.Networking.UnityWebRequest UnityEngine.Networking.UnityWebRequest::Post(System.String,UnityEngine.WWWForm) extern "C" IL2CPP_METHOD_ATTR UnityWebRequest_t9120F5A2C7D43B936B49C0B7E4CA54C822689129 * UnityWebRequest_Post_mEC355EABB9732DF41AD216DB863EEB2A06AC4C87 (String_t* ___uri0, WWWForm_t8D5ED7CAC180C102E377B21A70CC6A9AD5EAAD24 * ___formData1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (UnityWebRequest_Post_mEC355EABB9732DF41AD216DB863EEB2A06AC4C87_MetadataUsageId); s_Il2CppMethodInitialized = true; } UnityWebRequest_t9120F5A2C7D43B936B49C0B7E4CA54C822689129 * V_0 = NULL; UnityWebRequest_t9120F5A2C7D43B936B49C0B7E4CA54C822689129 * V_1 = NULL; { String_t* L_0 = ___uri0; UnityWebRequest_t9120F5A2C7D43B936B49C0B7E4CA54C822689129 * L_1 = (UnityWebRequest_t9120F5A2C7D43B936B49C0B7E4CA54C822689129 *)il2cpp_codegen_object_new(UnityWebRequest_t9120F5A2C7D43B936B49C0B7E4CA54C822689129_il2cpp_TypeInfo_var); UnityWebRequest__ctor_m3CBA159B3514D89C931002DFD333B9768A08EBFA(L_1, L_0, _stringLiteral61FF81C30AA3C76E78AFEA62B2E3BD1DFA49E854, /*hidden argument*/NULL); V_0 = L_1; UnityWebRequest_t9120F5A2C7D43B936B49C0B7E4CA54C822689129 * L_2 = V_0; WWWForm_t8D5ED7CAC180C102E377B21A70CC6A9AD5EAAD24 * L_3 = ___formData1; UnityWebRequest_SetupPost_m31EFAEB2EC83463CD04E93B292A32DF3027FF82C(L_2, L_3, /*hidden argument*/NULL); UnityWebRequest_t9120F5A2C7D43B936B49C0B7E4CA54C822689129 * L_4 = V_0; V_1 = L_4; goto IL_001b; } IL_001b: { UnityWebRequest_t9120F5A2C7D43B936B49C0B7E4CA54C822689129 * L_5 = V_1; return L_5; } } // System.Void UnityEngine.Networking.UnityWebRequest::SetupPost(UnityEngine.Networking.UnityWebRequest,UnityEngine.WWWForm) extern "C" IL2CPP_METHOD_ATTR void UnityWebRequest_SetupPost_m31EFAEB2EC83463CD04E93B292A32DF3027FF82C (UnityWebRequest_t9120F5A2C7D43B936B49C0B7E4CA54C822689129 * ___request0, WWWForm_t8D5ED7CAC180C102E377B21A70CC6A9AD5EAAD24 * ___formData1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (UnityWebRequest_SetupPost_m31EFAEB2EC83463CD04E93B292A32DF3027FF82C_MetadataUsageId); s_Il2CppMethodInitialized = true; } ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* V_0 = NULL; Dictionary_2_t931BF283048C4E74FC063C3036E5F3FE328861FC * V_1 = NULL; KeyValuePair_2_t1A58906CCD7ED79792916B56DB716477495C85D8 V_2; memset(&V_2, 0, sizeof(V_2)); Enumerator_tEE17C0B6306B38B4D74140569F93EA8C3BDD05A3 V_3; memset(&V_3, 0, sizeof(V_3)); Exception_t * __last_unhandled_exception = 0; NO_UNUSED_WARNING (__last_unhandled_exception); Exception_t * __exception_local = 0; NO_UNUSED_WARNING (__exception_local); int32_t __leave_target = -1; NO_UNUSED_WARNING (__leave_target); { V_0 = (ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*)NULL; WWWForm_t8D5ED7CAC180C102E377B21A70CC6A9AD5EAAD24 * L_0 = ___formData1; if (!L_0) { goto IL_001c; } } { WWWForm_t8D5ED7CAC180C102E377B21A70CC6A9AD5EAAD24 * L_1 = ___formData1; NullCheck(L_1); ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_2 = WWWForm_get_data_m5ED2243249BE32F26F3020BB39BBEF834BE56303(L_1, /*hidden argument*/NULL); V_0 = L_2; ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_3 = V_0; NullCheck(L_3); if ((((int32_t)((int32_t)(((RuntimeArray *)L_3)->max_length))))) { goto IL_001b; } } { V_0 = (ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*)NULL; } IL_001b: { } IL_001c: { UnityWebRequest_t9120F5A2C7D43B936B49C0B7E4CA54C822689129 * L_4 = ___request0; ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_5 = V_0; UploadHandlerRaw_t9E6A69B7726F134F31F6744F5EFDF611E7C54F27 * L_6 = (UploadHandlerRaw_t9E6A69B7726F134F31F6744F5EFDF611E7C54F27 *)il2cpp_codegen_object_new(UploadHandlerRaw_t9E6A69B7726F134F31F6744F5EFDF611E7C54F27_il2cpp_TypeInfo_var); UploadHandlerRaw__ctor_m9F7643CA3314C8CE46DD41FBF584C268E2546935(L_6, L_5, /*hidden argument*/NULL); NullCheck(L_4); UnityWebRequest_set_uploadHandler_m7B33656584914FB3F6FB0FF73C08F671262724A1(L_4, L_6, /*hidden argument*/NULL); UnityWebRequest_t9120F5A2C7D43B936B49C0B7E4CA54C822689129 * L_7 = ___request0; DownloadHandlerBuffer_tF6A73B82C9EC807D36B904A58E1DF2DDA696B255 * L_8 = (DownloadHandlerBuffer_tF6A73B82C9EC807D36B904A58E1DF2DDA696B255 *)il2cpp_codegen_object_new(DownloadHandlerBuffer_tF6A73B82C9EC807D36B904A58E1DF2DDA696B255_il2cpp_TypeInfo_var); DownloadHandlerBuffer__ctor_m2134187D8FB07FBAEA2CE23BFCEB13FD94261A9A(L_8, /*hidden argument*/NULL); NullCheck(L_7); UnityWebRequest_set_downloadHandler_mB481C2EE30F84B62396C1A837F46046F12B8FA7E(L_7, L_8, /*hidden argument*/NULL); WWWForm_t8D5ED7CAC180C102E377B21A70CC6A9AD5EAAD24 * L_9 = ___formData1; if (!L_9) { goto IL_008a; } } { WWWForm_t8D5ED7CAC180C102E377B21A70CC6A9AD5EAAD24 * L_10 = ___formData1; NullCheck(L_10); Dictionary_2_t931BF283048C4E74FC063C3036E5F3FE328861FC * L_11 = WWWForm_get_headers_mE1BA0494A43C8EF12C0217297411EFD6B4EC601A(L_10, /*hidden argument*/NULL); V_1 = L_11; Dictionary_2_t931BF283048C4E74FC063C3036E5F3FE328861FC * L_12 = V_1; NullCheck(L_12); Enumerator_tEE17C0B6306B38B4D74140569F93EA8C3BDD05A3 L_13 = Dictionary_2_GetEnumerator_m3378B4792B81EF81397CB9D9A761BD7149BD27F5(L_12, /*hidden argument*/Dictionary_2_GetEnumerator_m3378B4792B81EF81397CB9D9A761BD7149BD27F5_RuntimeMethod_var); V_3 = L_13; } IL_0049: try { // begin try (depth: 1) { goto IL_006a; } IL_004e: { KeyValuePair_2_t1A58906CCD7ED79792916B56DB716477495C85D8 L_14 = Enumerator_get_Current_mBEC9B470213860581893E0F197CAAE657B8B6C69((Enumerator_tEE17C0B6306B38B4D74140569F93EA8C3BDD05A3 *)(&V_3), /*hidden argument*/Enumerator_get_Current_mBEC9B470213860581893E0F197CAAE657B8B6C69_RuntimeMethod_var); V_2 = L_14; UnityWebRequest_t9120F5A2C7D43B936B49C0B7E4CA54C822689129 * L_15 = ___request0; String_t* L_16 = KeyValuePair_2_get_Key_m434E29A1251E81B5A2124466105823011C462BF2((KeyValuePair_2_t1A58906CCD7ED79792916B56DB716477495C85D8 *)(&V_2), /*hidden argument*/KeyValuePair_2_get_Key_m434E29A1251E81B5A2124466105823011C462BF2_RuntimeMethod_var); String_t* L_17 = KeyValuePair_2_get_Value_mEAF4B15DEEAC6EB29683A5C6569F0F50B4DEBDA2((KeyValuePair_2_t1A58906CCD7ED79792916B56DB716477495C85D8 *)(&V_2), /*hidden argument*/KeyValuePair_2_get_Value_mEAF4B15DEEAC6EB29683A5C6569F0F50B4DEBDA2_RuntimeMethod_var); NullCheck(L_15); UnityWebRequest_SetRequestHeader_m1B54D38BDACC2789FC8EE889EA72EDD7844D2309(L_15, L_16, L_17, /*hidden argument*/NULL); } IL_006a: { bool L_18 = Enumerator_MoveNext_m6E6A22A8620F5A5582BB67E367BE5086D7D895A6((Enumerator_tEE17C0B6306B38B4D74140569F93EA8C3BDD05A3 *)(&V_3), /*hidden argument*/Enumerator_MoveNext_m6E6A22A8620F5A5582BB67E367BE5086D7D895A6_RuntimeMethod_var); if (L_18) { goto IL_004e; } } IL_0076: { IL2CPP_LEAVE(0x89, FINALLY_007b); } } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __last_unhandled_exception = (Exception_t *)e.ex; goto FINALLY_007b; } FINALLY_007b: { // begin finally (depth: 1) Enumerator_Dispose_m16C0E963A012498CD27422B463DB327BA4C7A321((Enumerator_tEE17C0B6306B38B4D74140569F93EA8C3BDD05A3 *)(&V_3), /*hidden argument*/Enumerator_Dispose_m16C0E963A012498CD27422B463DB327BA4C7A321_RuntimeMethod_var); IL2CPP_RESET_LEAVE(0x89); IL2CPP_END_FINALLY(123) } // end finally (depth: 1) IL2CPP_CLEANUP(123) { IL2CPP_JUMP_TBL(0x89, IL_0089) IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *) } IL_0089: { } IL_008a: { return; } } // System.String UnityEngine.Networking.UnityWebRequest::EscapeURL(System.String) extern "C" IL2CPP_METHOD_ATTR String_t* UnityWebRequest_EscapeURL_m95ACCD28C59C1A12E4CAF186002A31C84A7CA13F (String_t* ___s0, const RuntimeMethod* method) { String_t* V_0 = NULL; { String_t* L_0 = ___s0; Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * L_1 = Encoding_get_UTF8_m67C8652936B681E7BC7505E459E88790E0FF16D9(/*hidden argument*/NULL); String_t* L_2 = UnityWebRequest_EscapeURL_m024D2743C55CB2E079B382ECFCAF23505B13A8E3(L_0, L_1, /*hidden argument*/NULL); V_0 = L_2; goto IL_0012; } IL_0012: { String_t* L_3 = V_0; return L_3; } } // System.String UnityEngine.Networking.UnityWebRequest::EscapeURL(System.String,System.Text.Encoding) extern "C" IL2CPP_METHOD_ATTR String_t* UnityWebRequest_EscapeURL_m024D2743C55CB2E079B382ECFCAF23505B13A8E3 (String_t* ___s0, Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * ___e1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (UnityWebRequest_EscapeURL_m024D2743C55CB2E079B382ECFCAF23505B13A8E3_MetadataUsageId); s_Il2CppMethodInitialized = true; } String_t* V_0 = NULL; ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* V_1 = NULL; ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* V_2 = NULL; { String_t* L_0 = ___s0; if (L_0) { goto IL_000e; } } { V_0 = (String_t*)NULL; goto IL_0056; } IL_000e: { String_t* L_1 = ___s0; bool L_2 = String_op_Equality_m139F0E4195AE2F856019E63B241F36F016997FCE(L_1, _stringLiteralDA39A3EE5E6B4B0D3255BFEF95601890AFD80709, /*hidden argument*/NULL); if (!L_2) { goto IL_0029; } } { V_0 = _stringLiteralDA39A3EE5E6B4B0D3255BFEF95601890AFD80709; goto IL_0056; } IL_0029: { Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * L_3 = ___e1; if (L_3) { goto IL_0036; } } { V_0 = (String_t*)NULL; goto IL_0056; } IL_0036: { Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * L_4 = Encoding_get_UTF8_m67C8652936B681E7BC7505E459E88790E0FF16D9(/*hidden argument*/NULL); String_t* L_5 = ___s0; NullCheck(L_4); ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_6 = VirtFuncInvoker1< ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*, String_t* >::Invoke(25 /* System.Byte[] System.Text.Encoding::GetBytes(System.String) */, L_4, L_5); V_1 = L_6; ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_7 = V_1; IL2CPP_RUNTIME_CLASS_INIT(WWWTranscoder_t0B24F1F17629756E6464A925870CC39236F39C61_il2cpp_TypeInfo_var); ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_8 = WWWTranscoder_URLEncode_mD0BEAAE6DBA432657E18FA17F3BCC87A34C0973B(L_7, /*hidden argument*/NULL); V_2 = L_8; Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * L_9 = ___e1; ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_10 = V_2; NullCheck(L_9); String_t* L_11 = VirtFuncInvoker1< String_t*, ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* >::Invoke(42 /* System.String System.Text.Encoding::GetString(System.Byte[]) */, L_9, L_10); V_0 = L_11; goto IL_0056; } IL_0056: { String_t* L_12 = V_0; return L_12; } } #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 #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 // Conversion methods for marshalling of: UnityEngine.Networking.UnityWebRequestAsyncOperation extern "C" void UnityWebRequestAsyncOperation_t726E134F16701A2671D40BEBE22110DC57156353_marshal_pinvoke(const UnityWebRequestAsyncOperation_t726E134F16701A2671D40BEBE22110DC57156353& unmarshaled, UnityWebRequestAsyncOperation_t726E134F16701A2671D40BEBE22110DC57156353_marshaled_pinvoke& marshaled) { Exception_t* ___U3CwebRequestU3Ek__BackingField_2Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field '<webRequest>k__BackingField' of type 'UnityWebRequestAsyncOperation': Reference type field marshaling is not supported."); IL2CPP_RAISE_MANAGED_EXCEPTION(___U3CwebRequestU3Ek__BackingField_2Exception, NULL, NULL); } extern "C" void UnityWebRequestAsyncOperation_t726E134F16701A2671D40BEBE22110DC57156353_marshal_pinvoke_back(const UnityWebRequestAsyncOperation_t726E134F16701A2671D40BEBE22110DC57156353_marshaled_pinvoke& marshaled, UnityWebRequestAsyncOperation_t726E134F16701A2671D40BEBE22110DC57156353& unmarshaled) { Exception_t* ___U3CwebRequestU3Ek__BackingField_2Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field '<webRequest>k__BackingField' of type 'UnityWebRequestAsyncOperation': Reference type field marshaling is not supported."); IL2CPP_RAISE_MANAGED_EXCEPTION(___U3CwebRequestU3Ek__BackingField_2Exception, NULL, NULL); } // Conversion method for clean up from marshalling of: UnityEngine.Networking.UnityWebRequestAsyncOperation extern "C" void UnityWebRequestAsyncOperation_t726E134F16701A2671D40BEBE22110DC57156353_marshal_pinvoke_cleanup(UnityWebRequestAsyncOperation_t726E134F16701A2671D40BEBE22110DC57156353_marshaled_pinvoke& marshaled) { } // Conversion methods for marshalling of: UnityEngine.Networking.UnityWebRequestAsyncOperation extern "C" void UnityWebRequestAsyncOperation_t726E134F16701A2671D40BEBE22110DC57156353_marshal_com(const UnityWebRequestAsyncOperation_t726E134F16701A2671D40BEBE22110DC57156353& unmarshaled, UnityWebRequestAsyncOperation_t726E134F16701A2671D40BEBE22110DC57156353_marshaled_com& marshaled) { Exception_t* ___U3CwebRequestU3Ek__BackingField_2Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field '<webRequest>k__BackingField' of type 'UnityWebRequestAsyncOperation': Reference type field marshaling is not supported."); IL2CPP_RAISE_MANAGED_EXCEPTION(___U3CwebRequestU3Ek__BackingField_2Exception, NULL, NULL); } extern "C" void UnityWebRequestAsyncOperation_t726E134F16701A2671D40BEBE22110DC57156353_marshal_com_back(const UnityWebRequestAsyncOperation_t726E134F16701A2671D40BEBE22110DC57156353_marshaled_com& marshaled, UnityWebRequestAsyncOperation_t726E134F16701A2671D40BEBE22110DC57156353& unmarshaled) { Exception_t* ___U3CwebRequestU3Ek__BackingField_2Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field '<webRequest>k__BackingField' of type 'UnityWebRequestAsyncOperation': Reference type field marshaling is not supported."); IL2CPP_RAISE_MANAGED_EXCEPTION(___U3CwebRequestU3Ek__BackingField_2Exception, NULL, NULL); } // Conversion method for clean up from marshalling of: UnityEngine.Networking.UnityWebRequestAsyncOperation extern "C" void UnityWebRequestAsyncOperation_t726E134F16701A2671D40BEBE22110DC57156353_marshal_com_cleanup(UnityWebRequestAsyncOperation_t726E134F16701A2671D40BEBE22110DC57156353_marshaled_com& marshaled) { } // System.Void UnityEngine.Networking.UnityWebRequestAsyncOperation::.ctor() extern "C" IL2CPP_METHOD_ATTR void UnityWebRequestAsyncOperation__ctor_mB260FD4CE600B27EB9A2ABA0BDD20FAF8449D523 (UnityWebRequestAsyncOperation_t726E134F16701A2671D40BEBE22110DC57156353 * __this, const RuntimeMethod* method) { { AsyncOperation__ctor_mEEE6114B72B8807F4AA6FF48FA79E4EFE480293F(__this, /*hidden argument*/NULL); return; } } // System.Void UnityEngine.Networking.UnityWebRequestAsyncOperation::set_webRequest(UnityEngine.Networking.UnityWebRequest) extern "C" IL2CPP_METHOD_ATTR void UnityWebRequestAsyncOperation_set_webRequest_m07869D44180E2A93042A18260FA5A2BB934AC42F (UnityWebRequestAsyncOperation_t726E134F16701A2671D40BEBE22110DC57156353 * __this, UnityWebRequest_t9120F5A2C7D43B936B49C0B7E4CA54C822689129 * ___value0, const RuntimeMethod* method) { { UnityWebRequest_t9120F5A2C7D43B936B49C0B7E4CA54C822689129 * L_0 = ___value0; __this->set_U3CwebRequestU3Ek__BackingField_2(L_0); return; } } #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 // Conversion methods for marshalling of: UnityEngine.Networking.UploadHandler extern "C" void UploadHandler_t24F4097D30A1E7C689D8881A27F251B4741601E4_marshal_pinvoke(const UploadHandler_t24F4097D30A1E7C689D8881A27F251B4741601E4& unmarshaled, UploadHandler_t24F4097D30A1E7C689D8881A27F251B4741601E4_marshaled_pinvoke& marshaled) { marshaled.___m_Ptr_0 = unmarshaled.get_m_Ptr_0(); } extern "C" void UploadHandler_t24F4097D30A1E7C689D8881A27F251B4741601E4_marshal_pinvoke_back(const UploadHandler_t24F4097D30A1E7C689D8881A27F251B4741601E4_marshaled_pinvoke& marshaled, UploadHandler_t24F4097D30A1E7C689D8881A27F251B4741601E4& unmarshaled) { intptr_t unmarshaled_m_Ptr_temp_0; memset(&unmarshaled_m_Ptr_temp_0, 0, sizeof(unmarshaled_m_Ptr_temp_0)); unmarshaled_m_Ptr_temp_0 = marshaled.___m_Ptr_0; unmarshaled.set_m_Ptr_0(unmarshaled_m_Ptr_temp_0); } // Conversion method for clean up from marshalling of: UnityEngine.Networking.UploadHandler extern "C" void UploadHandler_t24F4097D30A1E7C689D8881A27F251B4741601E4_marshal_pinvoke_cleanup(UploadHandler_t24F4097D30A1E7C689D8881A27F251B4741601E4_marshaled_pinvoke& marshaled) { } // Conversion methods for marshalling of: UnityEngine.Networking.UploadHandler extern "C" void UploadHandler_t24F4097D30A1E7C689D8881A27F251B4741601E4_marshal_com(const UploadHandler_t24F4097D30A1E7C689D8881A27F251B4741601E4& unmarshaled, UploadHandler_t24F4097D30A1E7C689D8881A27F251B4741601E4_marshaled_com& marshaled) { marshaled.___m_Ptr_0 = unmarshaled.get_m_Ptr_0(); } extern "C" void UploadHandler_t24F4097D30A1E7C689D8881A27F251B4741601E4_marshal_com_back(const UploadHandler_t24F4097D30A1E7C689D8881A27F251B4741601E4_marshaled_com& marshaled, UploadHandler_t24F4097D30A1E7C689D8881A27F251B4741601E4& unmarshaled) { intptr_t unmarshaled_m_Ptr_temp_0; memset(&unmarshaled_m_Ptr_temp_0, 0, sizeof(unmarshaled_m_Ptr_temp_0)); unmarshaled_m_Ptr_temp_0 = marshaled.___m_Ptr_0; unmarshaled.set_m_Ptr_0(unmarshaled_m_Ptr_temp_0); } // Conversion method for clean up from marshalling of: UnityEngine.Networking.UploadHandler extern "C" void UploadHandler_t24F4097D30A1E7C689D8881A27F251B4741601E4_marshal_com_cleanup(UploadHandler_t24F4097D30A1E7C689D8881A27F251B4741601E4_marshaled_com& marshaled) { } // System.Void UnityEngine.Networking.UploadHandler::.ctor() extern "C" IL2CPP_METHOD_ATTR void UploadHandler__ctor_m3F76154710C5CB7099388479FA02E6555D077F6E (UploadHandler_t24F4097D30A1E7C689D8881A27F251B4741601E4 * __this, const RuntimeMethod* method) { { Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0(__this, /*hidden argument*/NULL); return; } } // System.Void UnityEngine.Networking.UploadHandler::Release() extern "C" IL2CPP_METHOD_ATTR void UploadHandler_Release_m1723A22438AF0A7BE616D512E54190D9CE0EC3C4 (UploadHandler_t24F4097D30A1E7C689D8881A27F251B4741601E4 * __this, const RuntimeMethod* method) { typedef void (*UploadHandler_Release_m1723A22438AF0A7BE616D512E54190D9CE0EC3C4_ftn) (UploadHandler_t24F4097D30A1E7C689D8881A27F251B4741601E4 *); static UploadHandler_Release_m1723A22438AF0A7BE616D512E54190D9CE0EC3C4_ftn _il2cpp_icall_func; if (!_il2cpp_icall_func) _il2cpp_icall_func = (UploadHandler_Release_m1723A22438AF0A7BE616D512E54190D9CE0EC3C4_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.Networking.UploadHandler::Release()"); _il2cpp_icall_func(__this); } // System.Void UnityEngine.Networking.UploadHandler::Finalize() extern "C" IL2CPP_METHOD_ATTR void UploadHandler_Finalize_m68B0CC0B647B11B53908CA4E577AEA5DBA31E4D8 (UploadHandler_t24F4097D30A1E7C689D8881A27F251B4741601E4 * __this, const RuntimeMethod* method) { Exception_t * __last_unhandled_exception = 0; NO_UNUSED_WARNING (__last_unhandled_exception); Exception_t * __exception_local = 0; NO_UNUSED_WARNING (__exception_local); int32_t __leave_target = -1; NO_UNUSED_WARNING (__leave_target); { } IL_0001: try { // begin try (depth: 1) UploadHandler_Dispose_m9BBE8D7D2BBAAC2DE84B52BADA0B79CEA6F2DAB2(__this, /*hidden argument*/NULL); IL2CPP_LEAVE(0x13, FINALLY_000c); } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __last_unhandled_exception = (Exception_t *)e.ex; goto FINALLY_000c; } FINALLY_000c: { // begin finally (depth: 1) Object_Finalize_m4015B7D3A44DE125C5FE34D7276CD4697C06F380(__this, /*hidden argument*/NULL); IL2CPP_RESET_LEAVE(0x13); IL2CPP_END_FINALLY(12) } // end finally (depth: 1) IL2CPP_CLEANUP(12) { IL2CPP_JUMP_TBL(0x13, IL_0013) IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *) } IL_0013: { return; } } // System.Void UnityEngine.Networking.UploadHandler::Dispose() extern "C" IL2CPP_METHOD_ATTR void UploadHandler_Dispose_m9BBE8D7D2BBAAC2DE84B52BADA0B79CEA6F2DAB2 (UploadHandler_t24F4097D30A1E7C689D8881A27F251B4741601E4 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (UploadHandler_Dispose_m9BBE8D7D2BBAAC2DE84B52BADA0B79CEA6F2DAB2_MetadataUsageId); s_Il2CppMethodInitialized = true; } { intptr_t L_0 = __this->get_m_Ptr_0(); bool L_1 = IntPtr_op_Inequality_mB4886A806009EA825EFCC60CD2A7F6EB8E273A61((intptr_t)L_0, (intptr_t)(0), /*hidden argument*/NULL); if (!L_1) { goto IL_0029; } } { UploadHandler_Release_m1723A22438AF0A7BE616D512E54190D9CE0EC3C4(__this, /*hidden argument*/NULL); __this->set_m_Ptr_0((intptr_t)(0)); } IL_0029: { return; } } // System.Void UnityEngine.Networking.UploadHandler::set_contentType(System.String) extern "C" IL2CPP_METHOD_ATTR void UploadHandler_set_contentType_mB90BEE88AD0FCD496BED349F4E8086AB3C76FF3E (UploadHandler_t24F4097D30A1E7C689D8881A27F251B4741601E4 * __this, String_t* ___value0, const RuntimeMethod* method) { { String_t* L_0 = ___value0; VirtActionInvoker1< String_t* >::Invoke(5 /* System.Void UnityEngine.Networking.UploadHandler::SetContentType(System.String) */, __this, L_0); return; } } // System.Void UnityEngine.Networking.UploadHandler::SetContentType(System.String) extern "C" IL2CPP_METHOD_ATTR void UploadHandler_SetContentType_m71CDE15CBF56F82F32A6BFA79BD8B53A16743602 (UploadHandler_t24F4097D30A1E7C689D8881A27F251B4741601E4 * __this, String_t* ___newContentType0, const RuntimeMethod* method) { { return; } } #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 // Conversion methods for marshalling of: UnityEngine.Networking.UploadHandlerRaw extern "C" void UploadHandlerRaw_t9E6A69B7726F134F31F6744F5EFDF611E7C54F27_marshal_pinvoke(const UploadHandlerRaw_t9E6A69B7726F134F31F6744F5EFDF611E7C54F27& unmarshaled, UploadHandlerRaw_t9E6A69B7726F134F31F6744F5EFDF611E7C54F27_marshaled_pinvoke& marshaled) { marshaled.___m_Ptr_0 = unmarshaled.get_m_Ptr_0(); } extern "C" void UploadHandlerRaw_t9E6A69B7726F134F31F6744F5EFDF611E7C54F27_marshal_pinvoke_back(const UploadHandlerRaw_t9E6A69B7726F134F31F6744F5EFDF611E7C54F27_marshaled_pinvoke& marshaled, UploadHandlerRaw_t9E6A69B7726F134F31F6744F5EFDF611E7C54F27& unmarshaled) { intptr_t unmarshaled_m_Ptr_temp_0; memset(&unmarshaled_m_Ptr_temp_0, 0, sizeof(unmarshaled_m_Ptr_temp_0)); unmarshaled_m_Ptr_temp_0 = marshaled.___m_Ptr_0; unmarshaled.set_m_Ptr_0(unmarshaled_m_Ptr_temp_0); } // Conversion method for clean up from marshalling of: UnityEngine.Networking.UploadHandlerRaw extern "C" void UploadHandlerRaw_t9E6A69B7726F134F31F6744F5EFDF611E7C54F27_marshal_pinvoke_cleanup(UploadHandlerRaw_t9E6A69B7726F134F31F6744F5EFDF611E7C54F27_marshaled_pinvoke& marshaled) { } // Conversion methods for marshalling of: UnityEngine.Networking.UploadHandlerRaw extern "C" void UploadHandlerRaw_t9E6A69B7726F134F31F6744F5EFDF611E7C54F27_marshal_com(const UploadHandlerRaw_t9E6A69B7726F134F31F6744F5EFDF611E7C54F27& unmarshaled, UploadHandlerRaw_t9E6A69B7726F134F31F6744F5EFDF611E7C54F27_marshaled_com& marshaled) { marshaled.___m_Ptr_0 = unmarshaled.get_m_Ptr_0(); } extern "C" void UploadHandlerRaw_t9E6A69B7726F134F31F6744F5EFDF611E7C54F27_marshal_com_back(const UploadHandlerRaw_t9E6A69B7726F134F31F6744F5EFDF611E7C54F27_marshaled_com& marshaled, UploadHandlerRaw_t9E6A69B7726F134F31F6744F5EFDF611E7C54F27& unmarshaled) { intptr_t unmarshaled_m_Ptr_temp_0; memset(&unmarshaled_m_Ptr_temp_0, 0, sizeof(unmarshaled_m_Ptr_temp_0)); unmarshaled_m_Ptr_temp_0 = marshaled.___m_Ptr_0; unmarshaled.set_m_Ptr_0(unmarshaled_m_Ptr_temp_0); } // Conversion method for clean up from marshalling of: UnityEngine.Networking.UploadHandlerRaw extern "C" void UploadHandlerRaw_t9E6A69B7726F134F31F6744F5EFDF611E7C54F27_marshal_com_cleanup(UploadHandlerRaw_t9E6A69B7726F134F31F6744F5EFDF611E7C54F27_marshaled_com& marshaled) { } // System.Void UnityEngine.Networking.UploadHandlerRaw::.ctor(System.Byte[]) extern "C" IL2CPP_METHOD_ATTR void UploadHandlerRaw__ctor_m9F7643CA3314C8CE46DD41FBF584C268E2546935 (UploadHandlerRaw_t9E6A69B7726F134F31F6744F5EFDF611E7C54F27 * __this, ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___data0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (UploadHandlerRaw__ctor_m9F7643CA3314C8CE46DD41FBF584C268E2546935_MetadataUsageId); s_Il2CppMethodInitialized = true; } { UploadHandler__ctor_m3F76154710C5CB7099388479FA02E6555D077F6E(__this, /*hidden argument*/NULL); ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_0 = ___data0; if (!L_0) { goto IL_0020; } } { ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_1 = ___data0; NullCheck(L_1); if ((((int32_t)((int32_t)(((RuntimeArray *)L_1)->max_length))))) { goto IL_0020; } } { ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 * L_2 = (ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1 *)il2cpp_codegen_object_new(ArgumentException_tEDCD16F20A09ECE461C3DA766C16EDA8864057D1_il2cpp_TypeInfo_var); ArgumentException__ctor_m9A85EF7FEFEC21DDD525A67E831D77278E5165B7(L_2, _stringLiteral4E5057793E1875AA08F21BE7F738453AD461E5F0, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, NULL, UploadHandlerRaw__ctor_m9F7643CA3314C8CE46DD41FBF584C268E2546935_RuntimeMethod_var); } IL_0020: { ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_3 = ___data0; intptr_t L_4 = UploadHandlerRaw_Create_m921D80A8952FC740F358E5FD28E6D5A70622687B(__this, L_3, /*hidden argument*/NULL); ((UploadHandler_t24F4097D30A1E7C689D8881A27F251B4741601E4 *)__this)->set_m_Ptr_0((intptr_t)L_4); return; } } // System.IntPtr UnityEngine.Networking.UploadHandlerRaw::Create(UnityEngine.Networking.UploadHandlerRaw,System.Byte[]) extern "C" IL2CPP_METHOD_ATTR intptr_t UploadHandlerRaw_Create_m921D80A8952FC740F358E5FD28E6D5A70622687B (UploadHandlerRaw_t9E6A69B7726F134F31F6744F5EFDF611E7C54F27 * ___self0, ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___data1, const RuntimeMethod* method) { typedef intptr_t (*UploadHandlerRaw_Create_m921D80A8952FC740F358E5FD28E6D5A70622687B_ftn) (UploadHandlerRaw_t9E6A69B7726F134F31F6744F5EFDF611E7C54F27 *, ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*); static UploadHandlerRaw_Create_m921D80A8952FC740F358E5FD28E6D5A70622687B_ftn _il2cpp_icall_func; if (!_il2cpp_icall_func) _il2cpp_icall_func = (UploadHandlerRaw_Create_m921D80A8952FC740F358E5FD28E6D5A70622687B_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.Networking.UploadHandlerRaw::Create(UnityEngine.Networking.UploadHandlerRaw,System.Byte[])"); intptr_t retVal = _il2cpp_icall_func(___self0, ___data1); return retVal; } // System.Void UnityEngine.Networking.UploadHandlerRaw::InternalSetContentType(System.String) extern "C" IL2CPP_METHOD_ATTR void UploadHandlerRaw_InternalSetContentType_mA62DF10D9DB6A5D8EA322F7E3B315EA182C3A898 (UploadHandlerRaw_t9E6A69B7726F134F31F6744F5EFDF611E7C54F27 * __this, String_t* ___newContentType0, const RuntimeMethod* method) { typedef void (*UploadHandlerRaw_InternalSetContentType_mA62DF10D9DB6A5D8EA322F7E3B315EA182C3A898_ftn) (UploadHandlerRaw_t9E6A69B7726F134F31F6744F5EFDF611E7C54F27 *, String_t*); static UploadHandlerRaw_InternalSetContentType_mA62DF10D9DB6A5D8EA322F7E3B315EA182C3A898_ftn _il2cpp_icall_func; if (!_il2cpp_icall_func) _il2cpp_icall_func = (UploadHandlerRaw_InternalSetContentType_mA62DF10D9DB6A5D8EA322F7E3B315EA182C3A898_ftn)il2cpp_codegen_resolve_icall ("UnityEngine.Networking.UploadHandlerRaw::InternalSetContentType(System.String)"); _il2cpp_icall_func(__this, ___newContentType0); } // System.Void UnityEngine.Networking.UploadHandlerRaw::SetContentType(System.String) extern "C" IL2CPP_METHOD_ATTR void UploadHandlerRaw_SetContentType_mD245E302B53C361C5CBF9CE0F11E7A0DB142BB11 (UploadHandlerRaw_t9E6A69B7726F134F31F6744F5EFDF611E7C54F27 * __this, String_t* ___newContentType0, const RuntimeMethod* method) { { String_t* L_0 = ___newContentType0; UploadHandlerRaw_InternalSetContentType_mA62DF10D9DB6A5D8EA322F7E3B315EA182C3A898(__this, L_0, /*hidden argument*/NULL); return; } } #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.Void UnityEngine.WWWForm::.ctor() extern "C" IL2CPP_METHOD_ATTR void WWWForm__ctor_m51016B707A3BDC515538D44EB08D54402CF6F695 (WWWForm_t8D5ED7CAC180C102E377B21A70CC6A9AD5EAAD24 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (WWWForm__ctor_m51016B707A3BDC515538D44EB08D54402CF6F695_MetadataUsageId); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; { __this->set_containsFiles_5((bool)0); Object__ctor_m925ECA5E85CA100E3FB86A4F9E15C120E9A184C0(__this, /*hidden argument*/NULL); List_1_t4AB280456F4DE770AC993DE9A7C8C563A6311531 * L_0 = (List_1_t4AB280456F4DE770AC993DE9A7C8C563A6311531 *)il2cpp_codegen_object_new(List_1_t4AB280456F4DE770AC993DE9A7C8C563A6311531_il2cpp_TypeInfo_var); List_1__ctor_m52FC81AB50BD21B6BFA16546E3AF9C94611D9811(L_0, /*hidden argument*/List_1__ctor_m52FC81AB50BD21B6BFA16546E3AF9C94611D9811_RuntimeMethod_var); __this->set_formData_0(L_0); List_1_tE8032E48C661C350FF9550E9063D595C0AB25CD3 * L_1 = (List_1_tE8032E48C661C350FF9550E9063D595C0AB25CD3 *)il2cpp_codegen_object_new(List_1_tE8032E48C661C350FF9550E9063D595C0AB25CD3_il2cpp_TypeInfo_var); List_1__ctor_mDA22758D73530683C950C5CCF39BDB4E7E1F3F06(L_1, /*hidden argument*/List_1__ctor_mDA22758D73530683C950C5CCF39BDB4E7E1F3F06_RuntimeMethod_var); __this->set_fieldNames_1(L_1); List_1_tE8032E48C661C350FF9550E9063D595C0AB25CD3 * L_2 = (List_1_tE8032E48C661C350FF9550E9063D595C0AB25CD3 *)il2cpp_codegen_object_new(List_1_tE8032E48C661C350FF9550E9063D595C0AB25CD3_il2cpp_TypeInfo_var); List_1__ctor_mDA22758D73530683C950C5CCF39BDB4E7E1F3F06(L_2, /*hidden argument*/List_1__ctor_mDA22758D73530683C950C5CCF39BDB4E7E1F3F06_RuntimeMethod_var); __this->set_fileNames_2(L_2); List_1_tE8032E48C661C350FF9550E9063D595C0AB25CD3 * L_3 = (List_1_tE8032E48C661C350FF9550E9063D595C0AB25CD3 *)il2cpp_codegen_object_new(List_1_tE8032E48C661C350FF9550E9063D595C0AB25CD3_il2cpp_TypeInfo_var); List_1__ctor_mDA22758D73530683C950C5CCF39BDB4E7E1F3F06(L_3, /*hidden argument*/List_1__ctor_mDA22758D73530683C950C5CCF39BDB4E7E1F3F06_RuntimeMethod_var); __this->set_types_3(L_3); ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_4 = (ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*)SZArrayNew(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821_il2cpp_TypeInfo_var, (uint32_t)((int32_t)40)); __this->set_boundary_4(L_4); V_0 = 0; goto IL_0080; } IL_004e: { int32_t L_5 = Random_Range_mD0C8F37FF3CAB1D87AAA6C45130BD59626BD6780(((int32_t)48), ((int32_t)110), /*hidden argument*/NULL); V_1 = L_5; int32_t L_6 = V_1; if ((((int32_t)L_6) <= ((int32_t)((int32_t)57)))) { goto IL_0065; } } { int32_t L_7 = V_1; V_1 = ((int32_t)il2cpp_codegen_add((int32_t)L_7, (int32_t)7)); } IL_0065: { int32_t L_8 = V_1; if ((((int32_t)L_8) <= ((int32_t)((int32_t)90)))) { goto IL_0071; } } { int32_t L_9 = V_1; V_1 = ((int32_t)il2cpp_codegen_add((int32_t)L_9, (int32_t)6)); } IL_0071: { ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_10 = __this->get_boundary_4(); int32_t L_11 = V_0; int32_t L_12 = V_1; NullCheck(L_10); (L_10)->SetAt(static_cast<il2cpp_array_size_t>(L_11), (uint8_t)(((int32_t)((uint8_t)L_12)))); int32_t L_13 = V_0; V_0 = ((int32_t)il2cpp_codegen_add((int32_t)L_13, (int32_t)1)); } IL_0080: { int32_t L_14 = V_0; if ((((int32_t)L_14) < ((int32_t)((int32_t)40)))) { goto IL_004e; } } { return; } } // System.Text.Encoding UnityEngine.WWWForm::get_DefaultEncoding() extern "C" IL2CPP_METHOD_ATTR Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * WWWForm_get_DefaultEncoding_m13BB72339201269AB257B275B20A5A35B233BC3F (const RuntimeMethod* method) { Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * V_0 = NULL; { Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * L_0 = Encoding_get_UTF8_m67C8652936B681E7BC7505E459E88790E0FF16D9(/*hidden argument*/NULL); V_0 = L_0; goto IL_000c; } IL_000c: { Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * L_1 = V_0; return L_1; } } // System.Void UnityEngine.WWWForm::AddBinaryData(System.String,System.Byte[],System.String) extern "C" IL2CPP_METHOD_ATTR void WWWForm_AddBinaryData_mDC01404EEF71794A04210CA2696C11CB81FCF30F (WWWForm_t8D5ED7CAC180C102E377B21A70CC6A9AD5EAAD24 * __this, String_t* ___fieldName0, ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___contents1, String_t* ___fileName2, const RuntimeMethod* method) { { String_t* L_0 = ___fieldName0; ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_1 = ___contents1; String_t* L_2 = ___fileName2; WWWForm_AddBinaryData_m6D70BA4B0246D26B365138CBFF9EF4780A579782(__this, L_0, L_1, L_2, (String_t*)NULL, /*hidden argument*/NULL); return; } } // System.Void UnityEngine.WWWForm::AddBinaryData(System.String,System.Byte[],System.String,System.String) extern "C" IL2CPP_METHOD_ATTR void WWWForm_AddBinaryData_m6D70BA4B0246D26B365138CBFF9EF4780A579782 (WWWForm_t8D5ED7CAC180C102E377B21A70CC6A9AD5EAAD24 * __this, String_t* ___fieldName0, ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___contents1, String_t* ___fileName2, String_t* ___mimeType3, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (WWWForm_AddBinaryData_m6D70BA4B0246D26B365138CBFF9EF4780A579782_MetadataUsageId); s_Il2CppMethodInitialized = true; } bool V_0 = false; int32_t G_B10_0 = 0; String_t* G_B13_0 = NULL; String_t* G_B12_0 = NULL; String_t* G_B14_0 = NULL; String_t* G_B14_1 = NULL; { __this->set_containsFiles_5((bool)1); ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_0 = ___contents1; NullCheck(L_0); if ((((int32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_0)->max_length))))) <= ((int32_t)8))) { goto IL_0063; } } { ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_1 = ___contents1; NullCheck(L_1); int32_t L_2 = 0; uint8_t L_3 = (L_1)->GetAt(static_cast<il2cpp_array_size_t>(L_2)); if ((!(((uint32_t)L_3) == ((uint32_t)((int32_t)137))))) { goto IL_0063; } } { ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_4 = ___contents1; NullCheck(L_4); int32_t L_5 = 1; uint8_t L_6 = (L_4)->GetAt(static_cast<il2cpp_array_size_t>(L_5)); if ((!(((uint32_t)L_6) == ((uint32_t)((int32_t)80))))) { goto IL_0063; } } { ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_7 = ___contents1; NullCheck(L_7); int32_t L_8 = 2; uint8_t L_9 = (L_7)->GetAt(static_cast<il2cpp_array_size_t>(L_8)); if ((!(((uint32_t)L_9) == ((uint32_t)((int32_t)78))))) { goto IL_0063; } } { ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_10 = ___contents1; NullCheck(L_10); int32_t L_11 = 3; uint8_t L_12 = (L_10)->GetAt(static_cast<il2cpp_array_size_t>(L_11)); if ((!(((uint32_t)L_12) == ((uint32_t)((int32_t)71))))) { goto IL_0063; } } { ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_13 = ___contents1; NullCheck(L_13); int32_t L_14 = 4; uint8_t L_15 = (L_13)->GetAt(static_cast<il2cpp_array_size_t>(L_14)); if ((!(((uint32_t)L_15) == ((uint32_t)((int32_t)13))))) { goto IL_0063; } } { ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_16 = ___contents1; NullCheck(L_16); int32_t L_17 = 5; uint8_t L_18 = (L_16)->GetAt(static_cast<il2cpp_array_size_t>(L_17)); if ((!(((uint32_t)L_18) == ((uint32_t)((int32_t)10))))) { goto IL_0063; } } { ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_19 = ___contents1; NullCheck(L_19); int32_t L_20 = 6; uint8_t L_21 = (L_19)->GetAt(static_cast<il2cpp_array_size_t>(L_20)); if ((!(((uint32_t)L_21) == ((uint32_t)((int32_t)26))))) { goto IL_0063; } } { ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_22 = ___contents1; NullCheck(L_22); int32_t L_23 = 7; uint8_t L_24 = (L_22)->GetAt(static_cast<il2cpp_array_size_t>(L_23)); G_B10_0 = ((((int32_t)L_24) == ((int32_t)((int32_t)10)))? 1 : 0); goto IL_0064; } IL_0063: { G_B10_0 = 0; } IL_0064: { V_0 = (bool)G_B10_0; String_t* L_25 = ___fileName2; if (L_25) { goto IL_008a; } } { String_t* L_26 = ___fieldName0; bool L_27 = V_0; G_B12_0 = L_26; if (!L_27) { G_B13_0 = L_26; goto IL_007d; } } { G_B14_0 = _stringLiteral339F5868588CFC8FDA4A1EC94EAD8F737C5FCFC0; G_B14_1 = G_B12_0; goto IL_0082; } IL_007d: { G_B14_0 = _stringLiteral2C369AE8D884989C5D09309DAEBE9014DA1B29D7; G_B14_1 = G_B13_0; } IL_0082: { String_t* L_28 = String_Concat_mB78D0094592718DA6D5DB6C712A9C225631666BE(G_B14_1, G_B14_0, /*hidden argument*/NULL); ___fileName2 = L_28; } IL_008a: { String_t* L_29 = ___mimeType3; if (L_29) { goto IL_00ac; } } { bool L_30 = V_0; if (!L_30) { goto IL_00a4; } } { ___mimeType3 = _stringLiteral34D71611DCE9C30419B3C3EA42DC9426E931CDDE; goto IL_00ab; } IL_00a4: { ___mimeType3 = _stringLiteral10B12D00A7D3C421266B22114A2233F8F8621481; } IL_00ab: { } IL_00ac: { List_1_tE8032E48C661C350FF9550E9063D595C0AB25CD3 * L_31 = __this->get_fieldNames_1(); String_t* L_32 = ___fieldName0; NullCheck(L_31); List_1_Add_mA348FA1140766465189459D25B01EB179001DE83(L_31, L_32, /*hidden argument*/List_1_Add_mA348FA1140766465189459D25B01EB179001DE83_RuntimeMethod_var); List_1_tE8032E48C661C350FF9550E9063D595C0AB25CD3 * L_33 = __this->get_fileNames_2(); String_t* L_34 = ___fileName2; NullCheck(L_33); List_1_Add_mA348FA1140766465189459D25B01EB179001DE83(L_33, L_34, /*hidden argument*/List_1_Add_mA348FA1140766465189459D25B01EB179001DE83_RuntimeMethod_var); List_1_t4AB280456F4DE770AC993DE9A7C8C563A6311531 * L_35 = __this->get_formData_0(); ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_36 = ___contents1; NullCheck(L_35); List_1_Add_mCC9D38BB3CBE3F2E67EDF3390D36ABFAD293468E(L_35, L_36, /*hidden argument*/List_1_Add_mCC9D38BB3CBE3F2E67EDF3390D36ABFAD293468E_RuntimeMethod_var); List_1_tE8032E48C661C350FF9550E9063D595C0AB25CD3 * L_37 = __this->get_types_3(); String_t* L_38 = ___mimeType3; NullCheck(L_37); List_1_Add_mA348FA1140766465189459D25B01EB179001DE83(L_37, L_38, /*hidden argument*/List_1_Add_mA348FA1140766465189459D25B01EB179001DE83_RuntimeMethod_var); return; } } // System.Collections.Generic.Dictionary`2<System.String,System.String> UnityEngine.WWWForm::get_headers() extern "C" IL2CPP_METHOD_ATTR Dictionary_2_t931BF283048C4E74FC063C3036E5F3FE328861FC * WWWForm_get_headers_mE1BA0494A43C8EF12C0217297411EFD6B4EC601A (WWWForm_t8D5ED7CAC180C102E377B21A70CC6A9AD5EAAD24 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (WWWForm_get_headers_mE1BA0494A43C8EF12C0217297411EFD6B4EC601A_MetadataUsageId); s_Il2CppMethodInitialized = true; } Dictionary_2_t931BF283048C4E74FC063C3036E5F3FE328861FC * V_0 = NULL; Dictionary_2_t931BF283048C4E74FC063C3036E5F3FE328861FC * V_1 = NULL; { Dictionary_2_t931BF283048C4E74FC063C3036E5F3FE328861FC * L_0 = (Dictionary_2_t931BF283048C4E74FC063C3036E5F3FE328861FC *)il2cpp_codegen_object_new(Dictionary_2_t931BF283048C4E74FC063C3036E5F3FE328861FC_il2cpp_TypeInfo_var); Dictionary_2__ctor_m5B1C279E77422BB0B2C7B0374ECF89E3224AF62B(L_0, /*hidden argument*/Dictionary_2__ctor_m5B1C279E77422BB0B2C7B0374ECF89E3224AF62B_RuntimeMethod_var); V_0 = L_0; bool L_1 = __this->get_containsFiles_5(); if (!L_1) { goto IL_004a; } } { Dictionary_2_t931BF283048C4E74FC063C3036E5F3FE328861FC * L_2 = V_0; Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * L_3 = Encoding_get_UTF8_m67C8652936B681E7BC7505E459E88790E0FF16D9(/*hidden argument*/NULL); ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_4 = __this->get_boundary_4(); ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_5 = __this->get_boundary_4(); NullCheck(L_5); NullCheck(L_3); String_t* L_6 = VirtFuncInvoker3< String_t*, ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*, int32_t, int32_t >::Invoke(43 /* System.String System.Text.Encoding::GetString(System.Byte[],System.Int32,System.Int32) */, L_3, L_4, 0, (((int32_t)((int32_t)(((RuntimeArray *)L_5)->max_length))))); String_t* L_7 = String_Concat_mF4626905368D6558695A823466A1AF65EADB9923(_stringLiteral31B5C4DB6D1904156356E63972C52395A9F0A008, L_6, _stringLiteral2ACE62C1BEFA19E3EA37DD52BE9F6D508C5163E6, /*hidden argument*/NULL); NullCheck(L_2); Dictionary_2_set_Item_m597918251624A4BF29104324490143CFCA659FAD(L_2, _stringLiteral77D12B97BA61FFCCB079E0DD2EF6809C1E957255, L_7, /*hidden argument*/Dictionary_2_set_Item_m597918251624A4BF29104324490143CFCA659FAD_RuntimeMethod_var); goto IL_005a; } IL_004a: { Dictionary_2_t931BF283048C4E74FC063C3036E5F3FE328861FC * L_8 = V_0; NullCheck(L_8); Dictionary_2_set_Item_m597918251624A4BF29104324490143CFCA659FAD(L_8, _stringLiteral77D12B97BA61FFCCB079E0DD2EF6809C1E957255, _stringLiteralE3D6849AF2EC582D2E5BA2EE543CA6818D1B03AC, /*hidden argument*/Dictionary_2_set_Item_m597918251624A4BF29104324490143CFCA659FAD_RuntimeMethod_var); } IL_005a: { Dictionary_2_t931BF283048C4E74FC063C3036E5F3FE328861FC * L_9 = V_0; V_1 = L_9; goto IL_0061; } IL_0061: { Dictionary_2_t931BF283048C4E74FC063C3036E5F3FE328861FC * L_10 = V_1; return L_10; } } // System.Byte[] UnityEngine.WWWForm::get_data() extern "C" IL2CPP_METHOD_ATTR ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* WWWForm_get_data_m5ED2243249BE32F26F3020BB39BBEF834BE56303 (WWWForm_t8D5ED7CAC180C102E377B21A70CC6A9AD5EAAD24 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (WWWForm_get_data_m5ED2243249BE32F26F3020BB39BBEF834BE56303_MetadataUsageId); s_Il2CppMethodInitialized = true; } ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* V_0 = NULL; ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* V_1 = NULL; ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* V_2 = NULL; ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* V_3 = NULL; ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* V_4 = NULL; ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* V_5 = NULL; MemoryStream_t495F44B85E6B4DDE2BB7E17DE963256A74E2298C * V_6 = NULL; int32_t V_7 = 0; ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* V_8 = NULL; String_t* V_9 = NULL; String_t* V_10 = NULL; ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* V_11 = NULL; String_t* V_12 = NULL; ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* V_13 = NULL; ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* V_14 = NULL; ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* V_15 = NULL; ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* V_16 = NULL; ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* V_17 = NULL; MemoryStream_t495F44B85E6B4DDE2BB7E17DE963256A74E2298C * V_18 = NULL; int32_t V_19 = 0; ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* V_20 = NULL; ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* V_21 = NULL; ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* V_22 = NULL; Exception_t * __last_unhandled_exception = 0; NO_UNUSED_WARNING (__last_unhandled_exception); Exception_t * __exception_local = 0; NO_UNUSED_WARNING (__exception_local); int32_t __leave_target = -1; NO_UNUSED_WARNING (__leave_target); { bool L_0 = __this->get_containsFiles_5(); if (!L_0) { goto IL_0317; } } { Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * L_1 = WWWForm_get_DefaultEncoding_m13BB72339201269AB257B275B20A5A35B233BC3F(/*hidden argument*/NULL); NullCheck(L_1); ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_2 = VirtFuncInvoker1< ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*, String_t* >::Invoke(25 /* System.Byte[] System.Text.Encoding::GetBytes(System.String) */, L_1, _stringLiteralE6A9FC04320A924F46C7C737432BB0389D9DD095); V_0 = L_2; Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * L_3 = WWWForm_get_DefaultEncoding_m13BB72339201269AB257B275B20A5A35B233BC3F(/*hidden argument*/NULL); NullCheck(L_3); ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_4 = VirtFuncInvoker1< ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*, String_t* >::Invoke(25 /* System.Byte[] System.Text.Encoding::GetBytes(System.String) */, L_3, _stringLiteralBA8AB5A0280B953AA97435FF8946CBCBB2755A27); V_1 = L_4; Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * L_5 = WWWForm_get_DefaultEncoding_m13BB72339201269AB257B275B20A5A35B233BC3F(/*hidden argument*/NULL); NullCheck(L_5); ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_6 = VirtFuncInvoker1< ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*, String_t* >::Invoke(25 /* System.Byte[] System.Text.Encoding::GetBytes(System.String) */, L_5, _stringLiteral178DA31EFB7AC9D3B6EC10D75BB88993C89D22ED); V_2 = L_6; Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * L_7 = WWWForm_get_DefaultEncoding_m13BB72339201269AB257B275B20A5A35B233BC3F(/*hidden argument*/NULL); NullCheck(L_7); ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_8 = VirtFuncInvoker1< ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*, String_t* >::Invoke(25 /* System.Byte[] System.Text.Encoding::GetBytes(System.String) */, L_7, _stringLiteral12FF01C982EBD84225A433218F3E5B57AE810B5D); V_3 = L_8; Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * L_9 = WWWForm_get_DefaultEncoding_m13BB72339201269AB257B275B20A5A35B233BC3F(/*hidden argument*/NULL); NullCheck(L_9); ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_10 = VirtFuncInvoker1< ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*, String_t* >::Invoke(25 /* System.Byte[] System.Text.Encoding::GetBytes(System.String) */, L_9, _stringLiteral2ACE62C1BEFA19E3EA37DD52BE9F6D508C5163E6); V_4 = L_10; Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * L_11 = WWWForm_get_DefaultEncoding_m13BB72339201269AB257B275B20A5A35B233BC3F(/*hidden argument*/NULL); NullCheck(L_11); ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_12 = VirtFuncInvoker1< ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*, String_t* >::Invoke(25 /* System.Byte[] System.Text.Encoding::GetBytes(System.String) */, L_11, _stringLiteral83194C1BD83D4901B58754955875591793EB2C65); V_5 = L_12; MemoryStream_t495F44B85E6B4DDE2BB7E17DE963256A74E2298C * L_13 = (MemoryStream_t495F44B85E6B4DDE2BB7E17DE963256A74E2298C *)il2cpp_codegen_object_new(MemoryStream_t495F44B85E6B4DDE2BB7E17DE963256A74E2298C_il2cpp_TypeInfo_var); MemoryStream__ctor_m78689C82DED9ACE5022B7EABF28F17FF318DF2AA(L_13, ((int32_t)1024), /*hidden argument*/NULL); V_6 = L_13; } IL_007b: try { // begin try (depth: 1) { V_7 = 0; goto IL_02a2; } IL_0084: { MemoryStream_t495F44B85E6B4DDE2BB7E17DE963256A74E2298C * L_14 = V_6; ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_15 = V_1; ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_16 = V_1; NullCheck(L_16); NullCheck(L_14); VirtActionInvoker3< ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*, int32_t, int32_t >::Invoke(27 /* System.Void System.IO.Stream::Write(System.Byte[],System.Int32,System.Int32) */, L_14, L_15, 0, (((int32_t)((int32_t)(((RuntimeArray *)L_16)->max_length))))); MemoryStream_t495F44B85E6B4DDE2BB7E17DE963256A74E2298C * L_17 = V_6; ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_18 = V_0; ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_19 = V_0; NullCheck(L_19); NullCheck(L_17); VirtActionInvoker3< ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*, int32_t, int32_t >::Invoke(27 /* System.Void System.IO.Stream::Write(System.Byte[],System.Int32,System.Int32) */, L_17, L_18, 0, (((int32_t)((int32_t)(((RuntimeArray *)L_19)->max_length))))); MemoryStream_t495F44B85E6B4DDE2BB7E17DE963256A74E2298C * L_20 = V_6; ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_21 = __this->get_boundary_4(); ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_22 = __this->get_boundary_4(); NullCheck(L_22); NullCheck(L_20); VirtActionInvoker3< ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*, int32_t, int32_t >::Invoke(27 /* System.Void System.IO.Stream::Write(System.Byte[],System.Int32,System.Int32) */, L_20, L_21, 0, (((int32_t)((int32_t)(((RuntimeArray *)L_22)->max_length))))); MemoryStream_t495F44B85E6B4DDE2BB7E17DE963256A74E2298C * L_23 = V_6; ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_24 = V_1; ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_25 = V_1; NullCheck(L_25); NullCheck(L_23); VirtActionInvoker3< ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*, int32_t, int32_t >::Invoke(27 /* System.Void System.IO.Stream::Write(System.Byte[],System.Int32,System.Int32) */, L_23, L_24, 0, (((int32_t)((int32_t)(((RuntimeArray *)L_25)->max_length))))); MemoryStream_t495F44B85E6B4DDE2BB7E17DE963256A74E2298C * L_26 = V_6; ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_27 = V_2; ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_28 = V_2; NullCheck(L_28); NullCheck(L_26); VirtActionInvoker3< ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*, int32_t, int32_t >::Invoke(27 /* System.Void System.IO.Stream::Write(System.Byte[],System.Int32,System.Int32) */, L_26, L_27, 0, (((int32_t)((int32_t)(((RuntimeArray *)L_28)->max_length))))); Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * L_29 = Encoding_get_UTF8_m67C8652936B681E7BC7505E459E88790E0FF16D9(/*hidden argument*/NULL); List_1_tE8032E48C661C350FF9550E9063D595C0AB25CD3 * L_30 = __this->get_types_3(); int32_t L_31 = V_7; NullCheck(L_30); String_t* L_32 = List_1_get_Item_mB739B0066E5F7EBDBA9978F24A73D26D4FAE5BED(L_30, L_31, /*hidden argument*/List_1_get_Item_mB739B0066E5F7EBDBA9978F24A73D26D4FAE5BED_RuntimeMethod_var); NullCheck(L_29); ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_33 = VirtFuncInvoker1< ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*, String_t* >::Invoke(25 /* System.Byte[] System.Text.Encoding::GetBytes(System.String) */, L_29, L_32); V_8 = L_33; MemoryStream_t495F44B85E6B4DDE2BB7E17DE963256A74E2298C * L_34 = V_6; ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_35 = V_8; ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_36 = V_8; NullCheck(L_36); NullCheck(L_34); VirtActionInvoker3< ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*, int32_t, int32_t >::Invoke(27 /* System.Void System.IO.Stream::Write(System.Byte[],System.Int32,System.Int32) */, L_34, L_35, 0, (((int32_t)((int32_t)(((RuntimeArray *)L_36)->max_length))))); MemoryStream_t495F44B85E6B4DDE2BB7E17DE963256A74E2298C * L_37 = V_6; ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_38 = V_1; ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_39 = V_1; NullCheck(L_39); NullCheck(L_37); VirtActionInvoker3< ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*, int32_t, int32_t >::Invoke(27 /* System.Void System.IO.Stream::Write(System.Byte[],System.Int32,System.Int32) */, L_37, L_38, 0, (((int32_t)((int32_t)(((RuntimeArray *)L_39)->max_length))))); MemoryStream_t495F44B85E6B4DDE2BB7E17DE963256A74E2298C * L_40 = V_6; ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_41 = V_3; ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_42 = V_3; NullCheck(L_42); NullCheck(L_40); VirtActionInvoker3< ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*, int32_t, int32_t >::Invoke(27 /* System.Void System.IO.Stream::Write(System.Byte[],System.Int32,System.Int32) */, L_40, L_41, 0, (((int32_t)((int32_t)(((RuntimeArray *)L_42)->max_length))))); Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * L_43 = Encoding_get_UTF8_m67C8652936B681E7BC7505E459E88790E0FF16D9(/*hidden argument*/NULL); NullCheck(L_43); String_t* L_44 = VirtFuncInvoker0< String_t* >::Invoke(9 /* System.String System.Text.Encoding::get_HeaderName() */, L_43); V_9 = L_44; List_1_tE8032E48C661C350FF9550E9063D595C0AB25CD3 * L_45 = __this->get_fieldNames_1(); int32_t L_46 = V_7; NullCheck(L_45); String_t* L_47 = List_1_get_Item_mB739B0066E5F7EBDBA9978F24A73D26D4FAE5BED(L_45, L_46, /*hidden argument*/List_1_get_Item_mB739B0066E5F7EBDBA9978F24A73D26D4FAE5BED_RuntimeMethod_var); V_10 = L_47; String_t* L_48 = V_10; Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * L_49 = Encoding_get_UTF8_m67C8652936B681E7BC7505E459E88790E0FF16D9(/*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(WWWTranscoder_t0B24F1F17629756E6464A925870CC39236F39C61_il2cpp_TypeInfo_var); bool L_50 = WWWTranscoder_SevenBitClean_m6805326B108F514EF531375332C90963B9A99EA6(L_48, L_49, /*hidden argument*/NULL); if (!L_50) { goto IL_0148; } } IL_0136: { String_t* L_51 = V_10; NullCheck(L_51); int32_t L_52 = String_IndexOf_mA9A0117D68338238E51E5928CDA8EB3DC9DA497B(L_51, _stringLiteral9F64D1D497EFAA2D4DE4945729BE32D97B43EF0D, /*hidden argument*/NULL); if ((((int32_t)L_52) <= ((int32_t)(-1)))) { goto IL_0183; } } IL_0148: { StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_53 = (StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E*)SZArrayNew(StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E_il2cpp_TypeInfo_var, (uint32_t)5); StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_54 = L_53; NullCheck(L_54); ArrayElementTypeCheck (L_54, _stringLiteral9F64D1D497EFAA2D4DE4945729BE32D97B43EF0D); (L_54)->SetAt(static_cast<il2cpp_array_size_t>(0), (String_t*)_stringLiteral9F64D1D497EFAA2D4DE4945729BE32D97B43EF0D); StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_55 = L_54; String_t* L_56 = V_9; NullCheck(L_55); ArrayElementTypeCheck (L_55, L_56); (L_55)->SetAt(static_cast<il2cpp_array_size_t>(1), (String_t*)L_56); StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_57 = L_55; NullCheck(L_57); ArrayElementTypeCheck (L_57, _stringLiteral13A4D5190AC8DA3D8F73CD82E9291E36C394015F); (L_57)->SetAt(static_cast<il2cpp_array_size_t>(2), (String_t*)_stringLiteral13A4D5190AC8DA3D8F73CD82E9291E36C394015F); StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_58 = L_57; String_t* L_59 = V_10; Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * L_60 = Encoding_get_UTF8_m67C8652936B681E7BC7505E459E88790E0FF16D9(/*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(WWWTranscoder_t0B24F1F17629756E6464A925870CC39236F39C61_il2cpp_TypeInfo_var); String_t* L_61 = WWWTranscoder_QPEncode_m8D6CDDD2224B115D869C330D10270027C48446E7(L_59, L_60, /*hidden argument*/NULL); NullCheck(L_58); ArrayElementTypeCheck (L_58, L_61); (L_58)->SetAt(static_cast<il2cpp_array_size_t>(3), (String_t*)L_61); StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_62 = L_58; NullCheck(L_62); ArrayElementTypeCheck (L_62, _stringLiteral8D18625F5AE9389EC29A55BDC45AB0F67A53CA98); (L_62)->SetAt(static_cast<il2cpp_array_size_t>(4), (String_t*)_stringLiteral8D18625F5AE9389EC29A55BDC45AB0F67A53CA98); String_t* L_63 = String_Concat_m232E857CA5107EA6AC52E7DD7018716C021F237B(L_62, /*hidden argument*/NULL); V_10 = L_63; } IL_0183: { Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * L_64 = Encoding_get_UTF8_m67C8652936B681E7BC7505E459E88790E0FF16D9(/*hidden argument*/NULL); String_t* L_65 = V_10; NullCheck(L_64); ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_66 = VirtFuncInvoker1< ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*, String_t* >::Invoke(25 /* System.Byte[] System.Text.Encoding::GetBytes(System.String) */, L_64, L_65); V_11 = L_66; MemoryStream_t495F44B85E6B4DDE2BB7E17DE963256A74E2298C * L_67 = V_6; ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_68 = V_11; ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_69 = V_11; NullCheck(L_69); NullCheck(L_67); VirtActionInvoker3< ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*, int32_t, int32_t >::Invoke(27 /* System.Void System.IO.Stream::Write(System.Byte[],System.Int32,System.Int32) */, L_67, L_68, 0, (((int32_t)((int32_t)(((RuntimeArray *)L_69)->max_length))))); MemoryStream_t495F44B85E6B4DDE2BB7E17DE963256A74E2298C * L_70 = V_6; ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_71 = V_4; ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_72 = V_4; NullCheck(L_72); NullCheck(L_70); VirtActionInvoker3< ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*, int32_t, int32_t >::Invoke(27 /* System.Void System.IO.Stream::Write(System.Byte[],System.Int32,System.Int32) */, L_70, L_71, 0, (((int32_t)((int32_t)(((RuntimeArray *)L_72)->max_length))))); List_1_tE8032E48C661C350FF9550E9063D595C0AB25CD3 * L_73 = __this->get_fileNames_2(); int32_t L_74 = V_7; NullCheck(L_73); String_t* L_75 = List_1_get_Item_mB739B0066E5F7EBDBA9978F24A73D26D4FAE5BED(L_73, L_74, /*hidden argument*/List_1_get_Item_mB739B0066E5F7EBDBA9978F24A73D26D4FAE5BED_RuntimeMethod_var); if (!L_75) { goto IL_0266; } } IL_01bf: { List_1_tE8032E48C661C350FF9550E9063D595C0AB25CD3 * L_76 = __this->get_fileNames_2(); int32_t L_77 = V_7; NullCheck(L_76); String_t* L_78 = List_1_get_Item_mB739B0066E5F7EBDBA9978F24A73D26D4FAE5BED(L_76, L_77, /*hidden argument*/List_1_get_Item_mB739B0066E5F7EBDBA9978F24A73D26D4FAE5BED_RuntimeMethod_var); V_12 = L_78; String_t* L_79 = V_12; Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * L_80 = Encoding_get_UTF8_m67C8652936B681E7BC7505E459E88790E0FF16D9(/*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(WWWTranscoder_t0B24F1F17629756E6464A925870CC39236F39C61_il2cpp_TypeInfo_var); bool L_81 = WWWTranscoder_SevenBitClean_m6805326B108F514EF531375332C90963B9A99EA6(L_79, L_80, /*hidden argument*/NULL); if (!L_81) { goto IL_01f2; } } IL_01e0: { String_t* L_82 = V_12; NullCheck(L_82); int32_t L_83 = String_IndexOf_mA9A0117D68338238E51E5928CDA8EB3DC9DA497B(L_82, _stringLiteral9F64D1D497EFAA2D4DE4945729BE32D97B43EF0D, /*hidden argument*/NULL); if ((((int32_t)L_83) <= ((int32_t)(-1)))) { goto IL_022d; } } IL_01f2: { StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_84 = (StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E*)SZArrayNew(StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E_il2cpp_TypeInfo_var, (uint32_t)5); StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_85 = L_84; NullCheck(L_85); ArrayElementTypeCheck (L_85, _stringLiteral9F64D1D497EFAA2D4DE4945729BE32D97B43EF0D); (L_85)->SetAt(static_cast<il2cpp_array_size_t>(0), (String_t*)_stringLiteral9F64D1D497EFAA2D4DE4945729BE32D97B43EF0D); StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_86 = L_85; String_t* L_87 = V_9; NullCheck(L_86); ArrayElementTypeCheck (L_86, L_87); (L_86)->SetAt(static_cast<il2cpp_array_size_t>(1), (String_t*)L_87); StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_88 = L_86; NullCheck(L_88); ArrayElementTypeCheck (L_88, _stringLiteral13A4D5190AC8DA3D8F73CD82E9291E36C394015F); (L_88)->SetAt(static_cast<il2cpp_array_size_t>(2), (String_t*)_stringLiteral13A4D5190AC8DA3D8F73CD82E9291E36C394015F); StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_89 = L_88; String_t* L_90 = V_12; Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * L_91 = Encoding_get_UTF8_m67C8652936B681E7BC7505E459E88790E0FF16D9(/*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(WWWTranscoder_t0B24F1F17629756E6464A925870CC39236F39C61_il2cpp_TypeInfo_var); String_t* L_92 = WWWTranscoder_QPEncode_m8D6CDDD2224B115D869C330D10270027C48446E7(L_90, L_91, /*hidden argument*/NULL); NullCheck(L_89); ArrayElementTypeCheck (L_89, L_92); (L_89)->SetAt(static_cast<il2cpp_array_size_t>(3), (String_t*)L_92); StringU5BU5D_t933FB07893230EA91C40FF900D5400665E87B14E* L_93 = L_89; NullCheck(L_93); ArrayElementTypeCheck (L_93, _stringLiteral8D18625F5AE9389EC29A55BDC45AB0F67A53CA98); (L_93)->SetAt(static_cast<il2cpp_array_size_t>(4), (String_t*)_stringLiteral8D18625F5AE9389EC29A55BDC45AB0F67A53CA98); String_t* L_94 = String_Concat_m232E857CA5107EA6AC52E7DD7018716C021F237B(L_93, /*hidden argument*/NULL); V_12 = L_94; } IL_022d: { Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * L_95 = Encoding_get_UTF8_m67C8652936B681E7BC7505E459E88790E0FF16D9(/*hidden argument*/NULL); String_t* L_96 = V_12; NullCheck(L_95); ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_97 = VirtFuncInvoker1< ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*, String_t* >::Invoke(25 /* System.Byte[] System.Text.Encoding::GetBytes(System.String) */, L_95, L_96); V_13 = L_97; MemoryStream_t495F44B85E6B4DDE2BB7E17DE963256A74E2298C * L_98 = V_6; ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_99 = V_5; ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_100 = V_5; NullCheck(L_100); NullCheck(L_98); VirtActionInvoker3< ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*, int32_t, int32_t >::Invoke(27 /* System.Void System.IO.Stream::Write(System.Byte[],System.Int32,System.Int32) */, L_98, L_99, 0, (((int32_t)((int32_t)(((RuntimeArray *)L_100)->max_length))))); MemoryStream_t495F44B85E6B4DDE2BB7E17DE963256A74E2298C * L_101 = V_6; ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_102 = V_13; ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_103 = V_13; NullCheck(L_103); NullCheck(L_101); VirtActionInvoker3< ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*, int32_t, int32_t >::Invoke(27 /* System.Void System.IO.Stream::Write(System.Byte[],System.Int32,System.Int32) */, L_101, L_102, 0, (((int32_t)((int32_t)(((RuntimeArray *)L_103)->max_length))))); MemoryStream_t495F44B85E6B4DDE2BB7E17DE963256A74E2298C * L_104 = V_6; ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_105 = V_4; ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_106 = V_4; NullCheck(L_106); NullCheck(L_104); VirtActionInvoker3< ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*, int32_t, int32_t >::Invoke(27 /* System.Void System.IO.Stream::Write(System.Byte[],System.Int32,System.Int32) */, L_104, L_105, 0, (((int32_t)((int32_t)(((RuntimeArray *)L_106)->max_length))))); } IL_0266: { MemoryStream_t495F44B85E6B4DDE2BB7E17DE963256A74E2298C * L_107 = V_6; ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_108 = V_1; ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_109 = V_1; NullCheck(L_109); NullCheck(L_107); VirtActionInvoker3< ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*, int32_t, int32_t >::Invoke(27 /* System.Void System.IO.Stream::Write(System.Byte[],System.Int32,System.Int32) */, L_107, L_108, 0, (((int32_t)((int32_t)(((RuntimeArray *)L_109)->max_length))))); MemoryStream_t495F44B85E6B4DDE2BB7E17DE963256A74E2298C * L_110 = V_6; ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_111 = V_1; ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_112 = V_1; NullCheck(L_112); NullCheck(L_110); VirtActionInvoker3< ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*, int32_t, int32_t >::Invoke(27 /* System.Void System.IO.Stream::Write(System.Byte[],System.Int32,System.Int32) */, L_110, L_111, 0, (((int32_t)((int32_t)(((RuntimeArray *)L_112)->max_length))))); List_1_t4AB280456F4DE770AC993DE9A7C8C563A6311531 * L_113 = __this->get_formData_0(); int32_t L_114 = V_7; NullCheck(L_113); ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_115 = List_1_get_Item_m2BE218005C01E5A3FE3CD353F077053DD13B0476(L_113, L_114, /*hidden argument*/List_1_get_Item_m2BE218005C01E5A3FE3CD353F077053DD13B0476_RuntimeMethod_var); V_14 = L_115; MemoryStream_t495F44B85E6B4DDE2BB7E17DE963256A74E2298C * L_116 = V_6; ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_117 = V_14; ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_118 = V_14; NullCheck(L_118); NullCheck(L_116); VirtActionInvoker3< ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*, int32_t, int32_t >::Invoke(27 /* System.Void System.IO.Stream::Write(System.Byte[],System.Int32,System.Int32) */, L_116, L_117, 0, (((int32_t)((int32_t)(((RuntimeArray *)L_118)->max_length))))); int32_t L_119 = V_7; V_7 = ((int32_t)il2cpp_codegen_add((int32_t)L_119, (int32_t)1)); } IL_02a2: { int32_t L_120 = V_7; List_1_t4AB280456F4DE770AC993DE9A7C8C563A6311531 * L_121 = __this->get_formData_0(); NullCheck(L_121); int32_t L_122 = List_1_get_Count_m60AE24FF9D8000083F8EE65662CAA6EE46ADA29A(L_121, /*hidden argument*/List_1_get_Count_m60AE24FF9D8000083F8EE65662CAA6EE46ADA29A_RuntimeMethod_var); if ((((int32_t)L_120) < ((int32_t)L_122))) { goto IL_0084; } } IL_02b4: { MemoryStream_t495F44B85E6B4DDE2BB7E17DE963256A74E2298C * L_123 = V_6; ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_124 = V_1; ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_125 = V_1; NullCheck(L_125); NullCheck(L_123); VirtActionInvoker3< ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*, int32_t, int32_t >::Invoke(27 /* System.Void System.IO.Stream::Write(System.Byte[],System.Int32,System.Int32) */, L_123, L_124, 0, (((int32_t)((int32_t)(((RuntimeArray *)L_125)->max_length))))); MemoryStream_t495F44B85E6B4DDE2BB7E17DE963256A74E2298C * L_126 = V_6; ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_127 = V_0; ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_128 = V_0; NullCheck(L_128); NullCheck(L_126); VirtActionInvoker3< ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*, int32_t, int32_t >::Invoke(27 /* System.Void System.IO.Stream::Write(System.Byte[],System.Int32,System.Int32) */, L_126, L_127, 0, (((int32_t)((int32_t)(((RuntimeArray *)L_128)->max_length))))); MemoryStream_t495F44B85E6B4DDE2BB7E17DE963256A74E2298C * L_129 = V_6; ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_130 = __this->get_boundary_4(); ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_131 = __this->get_boundary_4(); NullCheck(L_131); NullCheck(L_129); VirtActionInvoker3< ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*, int32_t, int32_t >::Invoke(27 /* System.Void System.IO.Stream::Write(System.Byte[],System.Int32,System.Int32) */, L_129, L_130, 0, (((int32_t)((int32_t)(((RuntimeArray *)L_131)->max_length))))); MemoryStream_t495F44B85E6B4DDE2BB7E17DE963256A74E2298C * L_132 = V_6; ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_133 = V_0; ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_134 = V_0; NullCheck(L_134); NullCheck(L_132); VirtActionInvoker3< ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*, int32_t, int32_t >::Invoke(27 /* System.Void System.IO.Stream::Write(System.Byte[],System.Int32,System.Int32) */, L_132, L_133, 0, (((int32_t)((int32_t)(((RuntimeArray *)L_134)->max_length))))); MemoryStream_t495F44B85E6B4DDE2BB7E17DE963256A74E2298C * L_135 = V_6; ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_136 = V_1; ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_137 = V_1; NullCheck(L_137); NullCheck(L_135); VirtActionInvoker3< ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*, int32_t, int32_t >::Invoke(27 /* System.Void System.IO.Stream::Write(System.Byte[],System.Int32,System.Int32) */, L_135, L_136, 0, (((int32_t)((int32_t)(((RuntimeArray *)L_137)->max_length))))); MemoryStream_t495F44B85E6B4DDE2BB7E17DE963256A74E2298C * L_138 = V_6; NullCheck(L_138); ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_139 = VirtFuncInvoker0< ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* >::Invoke(33 /* System.Byte[] System.IO.MemoryStream::ToArray() */, L_138); V_15 = L_139; IL2CPP_LEAVE(0x3FC, FINALLY_0308); } } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __last_unhandled_exception = (Exception_t *)e.ex; goto FINALLY_0308; } FINALLY_0308: { // begin finally (depth: 1) { MemoryStream_t495F44B85E6B4DDE2BB7E17DE963256A74E2298C * L_140 = V_6; if (!L_140) { goto IL_0316; } } IL_030f: { MemoryStream_t495F44B85E6B4DDE2BB7E17DE963256A74E2298C * L_141 = V_6; NullCheck(L_141); InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t7218B22548186B208D65EA5B7870503810A2D15A_il2cpp_TypeInfo_var, L_141); } IL_0316: { IL2CPP_RESET_LEAVE(0x3FC); IL2CPP_END_FINALLY(776) } } // end finally (depth: 1) IL2CPP_CLEANUP(776) { IL2CPP_JUMP_TBL(0x3FC, IL_03fc) IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *) } IL_0317: { Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * L_142 = WWWForm_get_DefaultEncoding_m13BB72339201269AB257B275B20A5A35B233BC3F(/*hidden argument*/NULL); NullCheck(L_142); ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_143 = VirtFuncInvoker1< ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*, String_t* >::Invoke(25 /* System.Byte[] System.Text.Encoding::GetBytes(System.String) */, L_142, _stringLiteral7C4D33785DAA5C2370201FFA236B427AA37C9996); V_16 = L_143; Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * L_144 = WWWForm_get_DefaultEncoding_m13BB72339201269AB257B275B20A5A35B233BC3F(/*hidden argument*/NULL); NullCheck(L_144); ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_145 = VirtFuncInvoker1< ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*, String_t* >::Invoke(25 /* System.Byte[] System.Text.Encoding::GetBytes(System.String) */, L_144, _stringLiteral21606782C65E44CAC7AFBB90977D8B6F82140E76); V_17 = L_145; MemoryStream_t495F44B85E6B4DDE2BB7E17DE963256A74E2298C * L_146 = (MemoryStream_t495F44B85E6B4DDE2BB7E17DE963256A74E2298C *)il2cpp_codegen_object_new(MemoryStream_t495F44B85E6B4DDE2BB7E17DE963256A74E2298C_il2cpp_TypeInfo_var); MemoryStream__ctor_m78689C82DED9ACE5022B7EABF28F17FF318DF2AA(L_146, ((int32_t)1024), /*hidden argument*/NULL); V_18 = L_146; } IL_0346: try { // begin try (depth: 1) { V_19 = 0; goto IL_03cd; } IL_034f: { Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * L_147 = Encoding_get_UTF8_m67C8652936B681E7BC7505E459E88790E0FF16D9(/*hidden argument*/NULL); List_1_tE8032E48C661C350FF9550E9063D595C0AB25CD3 * L_148 = __this->get_fieldNames_1(); int32_t L_149 = V_19; NullCheck(L_148); String_t* L_150 = List_1_get_Item_mB739B0066E5F7EBDBA9978F24A73D26D4FAE5BED(L_148, L_149, /*hidden argument*/List_1_get_Item_mB739B0066E5F7EBDBA9978F24A73D26D4FAE5BED_RuntimeMethod_var); NullCheck(L_147); ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_151 = VirtFuncInvoker1< ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*, String_t* >::Invoke(25 /* System.Byte[] System.Text.Encoding::GetBytes(System.String) */, L_147, L_150); IL2CPP_RUNTIME_CLASS_INIT(WWWTranscoder_t0B24F1F17629756E6464A925870CC39236F39C61_il2cpp_TypeInfo_var); ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_152 = WWWTranscoder_DataEncode_mAD3C2EBF2E04CAEBDFB8873DC7987378C88A67F4(L_151, /*hidden argument*/NULL); V_20 = L_152; List_1_t4AB280456F4DE770AC993DE9A7C8C563A6311531 * L_153 = __this->get_formData_0(); int32_t L_154 = V_19; NullCheck(L_153); ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_155 = List_1_get_Item_m2BE218005C01E5A3FE3CD353F077053DD13B0476(L_153, L_154, /*hidden argument*/List_1_get_Item_m2BE218005C01E5A3FE3CD353F077053DD13B0476_RuntimeMethod_var); V_21 = L_155; ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_156 = V_21; ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_157 = WWWTranscoder_DataEncode_mAD3C2EBF2E04CAEBDFB8873DC7987378C88A67F4(L_156, /*hidden argument*/NULL); V_22 = L_157; int32_t L_158 = V_19; if ((((int32_t)L_158) <= ((int32_t)0))) { goto IL_039c; } } IL_038e: { MemoryStream_t495F44B85E6B4DDE2BB7E17DE963256A74E2298C * L_159 = V_18; ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_160 = V_16; ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_161 = V_16; NullCheck(L_161); NullCheck(L_159); VirtActionInvoker3< ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*, int32_t, int32_t >::Invoke(27 /* System.Void System.IO.Stream::Write(System.Byte[],System.Int32,System.Int32) */, L_159, L_160, 0, (((int32_t)((int32_t)(((RuntimeArray *)L_161)->max_length))))); } IL_039c: { MemoryStream_t495F44B85E6B4DDE2BB7E17DE963256A74E2298C * L_162 = V_18; ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_163 = V_20; ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_164 = V_20; NullCheck(L_164); NullCheck(L_162); VirtActionInvoker3< ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*, int32_t, int32_t >::Invoke(27 /* System.Void System.IO.Stream::Write(System.Byte[],System.Int32,System.Int32) */, L_162, L_163, 0, (((int32_t)((int32_t)(((RuntimeArray *)L_164)->max_length))))); MemoryStream_t495F44B85E6B4DDE2BB7E17DE963256A74E2298C * L_165 = V_18; ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_166 = V_17; ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_167 = V_17; NullCheck(L_167); NullCheck(L_165); VirtActionInvoker3< ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*, int32_t, int32_t >::Invoke(27 /* System.Void System.IO.Stream::Write(System.Byte[],System.Int32,System.Int32) */, L_165, L_166, 0, (((int32_t)((int32_t)(((RuntimeArray *)L_167)->max_length))))); MemoryStream_t495F44B85E6B4DDE2BB7E17DE963256A74E2298C * L_168 = V_18; ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_169 = V_22; ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_170 = V_22; NullCheck(L_170); NullCheck(L_168); VirtActionInvoker3< ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*, int32_t, int32_t >::Invoke(27 /* System.Void System.IO.Stream::Write(System.Byte[],System.Int32,System.Int32) */, L_168, L_169, 0, (((int32_t)((int32_t)(((RuntimeArray *)L_170)->max_length))))); int32_t L_171 = V_19; V_19 = ((int32_t)il2cpp_codegen_add((int32_t)L_171, (int32_t)1)); } IL_03cd: { int32_t L_172 = V_19; List_1_t4AB280456F4DE770AC993DE9A7C8C563A6311531 * L_173 = __this->get_formData_0(); NullCheck(L_173); int32_t L_174 = List_1_get_Count_m60AE24FF9D8000083F8EE65662CAA6EE46ADA29A(L_173, /*hidden argument*/List_1_get_Count_m60AE24FF9D8000083F8EE65662CAA6EE46ADA29A_RuntimeMethod_var); if ((((int32_t)L_172) < ((int32_t)L_174))) { goto IL_034f; } } IL_03df: { MemoryStream_t495F44B85E6B4DDE2BB7E17DE963256A74E2298C * L_175 = V_18; NullCheck(L_175); ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_176 = VirtFuncInvoker0< ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* >::Invoke(33 /* System.Byte[] System.IO.MemoryStream::ToArray() */, L_175); V_15 = L_176; IL2CPP_LEAVE(0x3FC, FINALLY_03ed); } } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __last_unhandled_exception = (Exception_t *)e.ex; goto FINALLY_03ed; } FINALLY_03ed: { // begin finally (depth: 1) { MemoryStream_t495F44B85E6B4DDE2BB7E17DE963256A74E2298C * L_177 = V_18; if (!L_177) { goto IL_03fb; } } IL_03f4: { MemoryStream_t495F44B85E6B4DDE2BB7E17DE963256A74E2298C * L_178 = V_18; NullCheck(L_178); InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t7218B22548186B208D65EA5B7870503810A2D15A_il2cpp_TypeInfo_var, L_178); } IL_03fb: { IL2CPP_RESET_LEAVE(0x3FC); IL2CPP_END_FINALLY(1005) } } // end finally (depth: 1) IL2CPP_CLEANUP(1005) { IL2CPP_JUMP_TBL(0x3FC, IL_03fc) IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *) } IL_03fc: { ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_179 = V_15; return L_179; } } #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.Byte UnityEngine.WWWTranscoder::Hex2Byte(System.Byte[],System.Int32) extern "C" IL2CPP_METHOD_ATTR uint8_t WWWTranscoder_Hex2Byte_mD417CA540CFBE045FCE32959CD3443EB9C8C7423 (ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___b0, int32_t ___offset1, const RuntimeMethod* method) { uint8_t V_0 = 0x0; int32_t V_1 = 0; int32_t V_2 = 0; uint8_t V_3 = 0x0; { V_0 = (uint8_t)0; int32_t L_0 = ___offset1; V_1 = L_0; goto IL_007a; } IL_000a: { uint8_t L_1 = V_0; V_0 = (uint8_t)(((int32_t)((uint8_t)((int32_t)il2cpp_codegen_multiply((int32_t)L_1, (int32_t)((int32_t)16)))))); ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_2 = ___b0; int32_t L_3 = V_1; NullCheck(L_2); int32_t L_4 = L_3; uint8_t L_5 = (L_2)->GetAt(static_cast<il2cpp_array_size_t>(L_4)); V_2 = L_5; int32_t L_6 = V_2; if ((((int32_t)L_6) < ((int32_t)((int32_t)48)))) { goto IL_002f; } } { int32_t L_7 = V_2; if ((((int32_t)L_7) > ((int32_t)((int32_t)57)))) { goto IL_002f; } } { int32_t L_8 = V_2; V_2 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_8, (int32_t)((int32_t)48))); goto IL_005e; } IL_002f: { int32_t L_9 = V_2; if ((((int32_t)L_9) < ((int32_t)((int32_t)65)))) { goto IL_0049; } } { int32_t L_10 = V_2; if ((((int32_t)L_10) > ((int32_t)((int32_t)75)))) { goto IL_0049; } } { int32_t L_11 = V_2; V_2 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_11, (int32_t)((int32_t)55))); goto IL_005e; } IL_0049: { int32_t L_12 = V_2; if ((((int32_t)L_12) < ((int32_t)((int32_t)97)))) { goto IL_005e; } } { int32_t L_13 = V_2; if ((((int32_t)L_13) > ((int32_t)((int32_t)102)))) { goto IL_005e; } } { int32_t L_14 = V_2; V_2 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_14, (int32_t)((int32_t)87))); } IL_005e: { int32_t L_15 = V_2; if ((((int32_t)L_15) <= ((int32_t)((int32_t)15)))) { goto IL_006f; } } { V_3 = (uint8_t)((int32_t)63); goto IL_008a; } IL_006f: { uint8_t L_16 = V_0; int32_t L_17 = V_2; V_0 = (uint8_t)(((int32_t)((uint8_t)((int32_t)il2cpp_codegen_add((int32_t)L_16, (int32_t)(((int32_t)((uint8_t)L_17)))))))); int32_t L_18 = V_1; V_1 = ((int32_t)il2cpp_codegen_add((int32_t)L_18, (int32_t)1)); } IL_007a: { int32_t L_19 = V_1; int32_t L_20 = ___offset1; if ((((int32_t)L_19) < ((int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_20, (int32_t)2))))) { goto IL_000a; } } { uint8_t L_21 = V_0; V_3 = L_21; goto IL_008a; } IL_008a: { uint8_t L_22 = V_3; return L_22; } } // System.Byte[] UnityEngine.WWWTranscoder::Byte2Hex(System.Byte,System.Byte[]) extern "C" IL2CPP_METHOD_ATTR ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* WWWTranscoder_Byte2Hex_mA129675BFEDFED879713DAB1592772BC52FA04FB (uint8_t ___b0, ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___hexChars1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (WWWTranscoder_Byte2Hex_mA129675BFEDFED879713DAB1592772BC52FA04FB_MetadataUsageId); s_Il2CppMethodInitialized = true; } ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* V_0 = NULL; ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* V_1 = NULL; { ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_0 = (ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*)SZArrayNew(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821_il2cpp_TypeInfo_var, (uint32_t)2); V_0 = L_0; ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_1 = V_0; ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_2 = ___hexChars1; uint8_t L_3 = ___b0; NullCheck(L_2); int32_t L_4 = ((int32_t)((int32_t)L_3>>(int32_t)4)); uint8_t L_5 = (L_2)->GetAt(static_cast<il2cpp_array_size_t>(L_4)); NullCheck(L_1); (L_1)->SetAt(static_cast<il2cpp_array_size_t>(0), (uint8_t)L_5); ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_6 = V_0; ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_7 = ___hexChars1; uint8_t L_8 = ___b0; NullCheck(L_7); int32_t L_9 = ((int32_t)((int32_t)L_8&(int32_t)((int32_t)15))); uint8_t L_10 = (L_7)->GetAt(static_cast<il2cpp_array_size_t>(L_9)); NullCheck(L_6); (L_6)->SetAt(static_cast<il2cpp_array_size_t>(1), (uint8_t)L_10); ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_11 = V_0; V_1 = L_11; goto IL_0020; } IL_0020: { ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_12 = V_1; return L_12; } } // System.Byte[] UnityEngine.WWWTranscoder::URLEncode(System.Byte[]) extern "C" IL2CPP_METHOD_ATTR ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* WWWTranscoder_URLEncode_mD0BEAAE6DBA432657E18FA17F3BCC87A34C0973B (ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___toEncode0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (WWWTranscoder_URLEncode_mD0BEAAE6DBA432657E18FA17F3BCC87A34C0973B_MetadataUsageId); s_Il2CppMethodInitialized = true; } ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* V_0 = NULL; { ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_0 = ___toEncode0; IL2CPP_RUNTIME_CLASS_INIT(WWWTranscoder_t0B24F1F17629756E6464A925870CC39236F39C61_il2cpp_TypeInfo_var); uint8_t L_1 = ((WWWTranscoder_t0B24F1F17629756E6464A925870CC39236F39C61_StaticFields*)il2cpp_codegen_static_fields_for(WWWTranscoder_t0B24F1F17629756E6464A925870CC39236F39C61_il2cpp_TypeInfo_var))->get_urlEscapeChar_2(); ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_2 = ((WWWTranscoder_t0B24F1F17629756E6464A925870CC39236F39C61_StaticFields*)il2cpp_codegen_static_fields_for(WWWTranscoder_t0B24F1F17629756E6464A925870CC39236F39C61_il2cpp_TypeInfo_var))->get_urlSpace_3(); ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_3 = ((WWWTranscoder_t0B24F1F17629756E6464A925870CC39236F39C61_StaticFields*)il2cpp_codegen_static_fields_for(WWWTranscoder_t0B24F1F17629756E6464A925870CC39236F39C61_il2cpp_TypeInfo_var))->get_urlForbidden_5(); ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_4 = WWWTranscoder_Encode_m2D65124BA0FF6E92A66B5804596B75898068CF84(L_0, L_1, L_2, L_3, (bool)0, /*hidden argument*/NULL); V_0 = L_4; goto IL_001d; } IL_001d: { ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_5 = V_0; return L_5; } } // System.String UnityEngine.WWWTranscoder::DataEncode(System.String,System.Text.Encoding) extern "C" IL2CPP_METHOD_ATTR String_t* WWWTranscoder_DataEncode_m991CA7AD8C98345736244A24979E440E23E5035A (String_t* ___toEncode0, Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * ___e1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (WWWTranscoder_DataEncode_m991CA7AD8C98345736244A24979E440E23E5035A_MetadataUsageId); s_Il2CppMethodInitialized = true; } ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* V_0 = NULL; String_t* V_1 = NULL; { Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * L_0 = ___e1; String_t* L_1 = ___toEncode0; NullCheck(L_0); ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_2 = VirtFuncInvoker1< ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*, String_t* >::Invoke(25 /* System.Byte[] System.Text.Encoding::GetBytes(System.String) */, L_0, L_1); IL2CPP_RUNTIME_CLASS_INIT(WWWTranscoder_t0B24F1F17629756E6464A925870CC39236F39C61_il2cpp_TypeInfo_var); uint8_t L_3 = ((WWWTranscoder_t0B24F1F17629756E6464A925870CC39236F39C61_StaticFields*)il2cpp_codegen_static_fields_for(WWWTranscoder_t0B24F1F17629756E6464A925870CC39236F39C61_il2cpp_TypeInfo_var))->get_urlEscapeChar_2(); ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_4 = ((WWWTranscoder_t0B24F1F17629756E6464A925870CC39236F39C61_StaticFields*)il2cpp_codegen_static_fields_for(WWWTranscoder_t0B24F1F17629756E6464A925870CC39236F39C61_il2cpp_TypeInfo_var))->get_dataSpace_4(); ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_5 = ((WWWTranscoder_t0B24F1F17629756E6464A925870CC39236F39C61_StaticFields*)il2cpp_codegen_static_fields_for(WWWTranscoder_t0B24F1F17629756E6464A925870CC39236F39C61_il2cpp_TypeInfo_var))->get_urlForbidden_5(); ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_6 = WWWTranscoder_Encode_m2D65124BA0FF6E92A66B5804596B75898068CF84(L_2, L_3, L_4, L_5, (bool)0, /*hidden argument*/NULL); V_0 = L_6; Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * L_7 = WWWForm_get_DefaultEncoding_m13BB72339201269AB257B275B20A5A35B233BC3F(/*hidden argument*/NULL); ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_8 = V_0; ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_9 = V_0; NullCheck(L_9); NullCheck(L_7); String_t* L_10 = VirtFuncInvoker3< String_t*, ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*, int32_t, int32_t >::Invoke(43 /* System.String System.Text.Encoding::GetString(System.Byte[],System.Int32,System.Int32) */, L_7, L_8, 0, (((int32_t)((int32_t)(((RuntimeArray *)L_9)->max_length))))); V_1 = L_10; goto IL_0033; } IL_0033: { String_t* L_11 = V_1; return L_11; } } // System.Byte[] UnityEngine.WWWTranscoder::DataEncode(System.Byte[]) extern "C" IL2CPP_METHOD_ATTR ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* WWWTranscoder_DataEncode_mAD3C2EBF2E04CAEBDFB8873DC7987378C88A67F4 (ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___toEncode0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (WWWTranscoder_DataEncode_mAD3C2EBF2E04CAEBDFB8873DC7987378C88A67F4_MetadataUsageId); s_Il2CppMethodInitialized = true; } ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* V_0 = NULL; { ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_0 = ___toEncode0; IL2CPP_RUNTIME_CLASS_INIT(WWWTranscoder_t0B24F1F17629756E6464A925870CC39236F39C61_il2cpp_TypeInfo_var); uint8_t L_1 = ((WWWTranscoder_t0B24F1F17629756E6464A925870CC39236F39C61_StaticFields*)il2cpp_codegen_static_fields_for(WWWTranscoder_t0B24F1F17629756E6464A925870CC39236F39C61_il2cpp_TypeInfo_var))->get_urlEscapeChar_2(); ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_2 = ((WWWTranscoder_t0B24F1F17629756E6464A925870CC39236F39C61_StaticFields*)il2cpp_codegen_static_fields_for(WWWTranscoder_t0B24F1F17629756E6464A925870CC39236F39C61_il2cpp_TypeInfo_var))->get_dataSpace_4(); ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_3 = ((WWWTranscoder_t0B24F1F17629756E6464A925870CC39236F39C61_StaticFields*)il2cpp_codegen_static_fields_for(WWWTranscoder_t0B24F1F17629756E6464A925870CC39236F39C61_il2cpp_TypeInfo_var))->get_urlForbidden_5(); ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_4 = WWWTranscoder_Encode_m2D65124BA0FF6E92A66B5804596B75898068CF84(L_0, L_1, L_2, L_3, (bool)0, /*hidden argument*/NULL); V_0 = L_4; goto IL_001d; } IL_001d: { ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_5 = V_0; return L_5; } } // System.String UnityEngine.WWWTranscoder::QPEncode(System.String,System.Text.Encoding) extern "C" IL2CPP_METHOD_ATTR String_t* WWWTranscoder_QPEncode_m8D6CDDD2224B115D869C330D10270027C48446E7 (String_t* ___toEncode0, Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * ___e1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (WWWTranscoder_QPEncode_m8D6CDDD2224B115D869C330D10270027C48446E7_MetadataUsageId); s_Il2CppMethodInitialized = true; } ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* V_0 = NULL; String_t* V_1 = NULL; { Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * L_0 = ___e1; String_t* L_1 = ___toEncode0; NullCheck(L_0); ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_2 = VirtFuncInvoker1< ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*, String_t* >::Invoke(25 /* System.Byte[] System.Text.Encoding::GetBytes(System.String) */, L_0, L_1); IL2CPP_RUNTIME_CLASS_INIT(WWWTranscoder_t0B24F1F17629756E6464A925870CC39236F39C61_il2cpp_TypeInfo_var); uint8_t L_3 = ((WWWTranscoder_t0B24F1F17629756E6464A925870CC39236F39C61_StaticFields*)il2cpp_codegen_static_fields_for(WWWTranscoder_t0B24F1F17629756E6464A925870CC39236F39C61_il2cpp_TypeInfo_var))->get_qpEscapeChar_6(); ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_4 = ((WWWTranscoder_t0B24F1F17629756E6464A925870CC39236F39C61_StaticFields*)il2cpp_codegen_static_fields_for(WWWTranscoder_t0B24F1F17629756E6464A925870CC39236F39C61_il2cpp_TypeInfo_var))->get_qpSpace_7(); ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_5 = ((WWWTranscoder_t0B24F1F17629756E6464A925870CC39236F39C61_StaticFields*)il2cpp_codegen_static_fields_for(WWWTranscoder_t0B24F1F17629756E6464A925870CC39236F39C61_il2cpp_TypeInfo_var))->get_qpForbidden_8(); ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_6 = WWWTranscoder_Encode_m2D65124BA0FF6E92A66B5804596B75898068CF84(L_2, L_3, L_4, L_5, (bool)1, /*hidden argument*/NULL); V_0 = L_6; Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * L_7 = WWWForm_get_DefaultEncoding_m13BB72339201269AB257B275B20A5A35B233BC3F(/*hidden argument*/NULL); ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_8 = V_0; ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_9 = V_0; NullCheck(L_9); NullCheck(L_7); String_t* L_10 = VirtFuncInvoker3< String_t*, ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*, int32_t, int32_t >::Invoke(43 /* System.String System.Text.Encoding::GetString(System.Byte[],System.Int32,System.Int32) */, L_7, L_8, 0, (((int32_t)((int32_t)(((RuntimeArray *)L_9)->max_length))))); V_1 = L_10; goto IL_0033; } IL_0033: { String_t* L_11 = V_1; return L_11; } } // System.Byte[] UnityEngine.WWWTranscoder::Encode(System.Byte[],System.Byte,System.Byte[],System.Byte[],System.Boolean) extern "C" IL2CPP_METHOD_ATTR ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* WWWTranscoder_Encode_m2D65124BA0FF6E92A66B5804596B75898068CF84 (ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___input0, uint8_t ___escapeChar1, ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___space2, ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___forbidden3, bool ___uppercase4, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (WWWTranscoder_Encode_m2D65124BA0FF6E92A66B5804596B75898068CF84_MetadataUsageId); s_Il2CppMethodInitialized = true; } MemoryStream_t495F44B85E6B4DDE2BB7E17DE963256A74E2298C * V_0 = NULL; int32_t V_1 = 0; ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* V_2 = NULL; Exception_t * __last_unhandled_exception = 0; NO_UNUSED_WARNING (__last_unhandled_exception); Exception_t * __exception_local = 0; NO_UNUSED_WARNING (__exception_local); int32_t __leave_target = -1; NO_UNUSED_WARNING (__leave_target); int32_t G_B9_0 = 0; MemoryStream_t495F44B85E6B4DDE2BB7E17DE963256A74E2298C * G_B9_1 = NULL; int32_t G_B8_0 = 0; MemoryStream_t495F44B85E6B4DDE2BB7E17DE963256A74E2298C * G_B8_1 = NULL; ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* G_B10_0 = NULL; int32_t G_B10_1 = 0; MemoryStream_t495F44B85E6B4DDE2BB7E17DE963256A74E2298C * G_B10_2 = NULL; { ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_0 = ___input0; NullCheck(L_0); MemoryStream_t495F44B85E6B4DDE2BB7E17DE963256A74E2298C * L_1 = (MemoryStream_t495F44B85E6B4DDE2BB7E17DE963256A74E2298C *)il2cpp_codegen_object_new(MemoryStream_t495F44B85E6B4DDE2BB7E17DE963256A74E2298C_il2cpp_TypeInfo_var); MemoryStream__ctor_m78689C82DED9ACE5022B7EABF28F17FF318DF2AA(L_1, ((int32_t)il2cpp_codegen_multiply((int32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_0)->max_length)))), (int32_t)2)), /*hidden argument*/NULL); V_0 = L_1; } IL_000c: try { // begin try (depth: 1) { V_1 = 0; goto IL_0097; } IL_0014: { ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_2 = ___input0; int32_t L_3 = V_1; NullCheck(L_2); int32_t L_4 = L_3; uint8_t L_5 = (L_2)->GetAt(static_cast<il2cpp_array_size_t>(L_4)); if ((!(((uint32_t)L_5) == ((uint32_t)((int32_t)32))))) { goto IL_0031; } } IL_001f: { MemoryStream_t495F44B85E6B4DDE2BB7E17DE963256A74E2298C * L_6 = V_0; ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_7 = ___space2; ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_8 = ___space2; NullCheck(L_8); NullCheck(L_6); VirtActionInvoker3< ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*, int32_t, int32_t >::Invoke(27 /* System.Void System.IO.Stream::Write(System.Byte[],System.Int32,System.Int32) */, L_6, L_7, 0, (((int32_t)((int32_t)(((RuntimeArray *)L_8)->max_length))))); goto IL_0092; } IL_0031: { ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_9 = ___input0; int32_t L_10 = V_1; NullCheck(L_9); int32_t L_11 = L_10; uint8_t L_12 = (L_9)->GetAt(static_cast<il2cpp_array_size_t>(L_11)); if ((((int32_t)L_12) < ((int32_t)((int32_t)32)))) { goto IL_0053; } } IL_003b: { ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_13 = ___input0; int32_t L_14 = V_1; NullCheck(L_13); int32_t L_15 = L_14; uint8_t L_16 = (L_13)->GetAt(static_cast<il2cpp_array_size_t>(L_15)); if ((((int32_t)L_16) > ((int32_t)((int32_t)126)))) { goto IL_0053; } } IL_0045: { ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_17 = ___forbidden3; ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_18 = ___input0; int32_t L_19 = V_1; NullCheck(L_18); int32_t L_20 = L_19; uint8_t L_21 = (L_18)->GetAt(static_cast<il2cpp_array_size_t>(L_20)); IL2CPP_RUNTIME_CLASS_INIT(WWWTranscoder_t0B24F1F17629756E6464A925870CC39236F39C61_il2cpp_TypeInfo_var); bool L_22 = WWWTranscoder_ByteArrayContains_mC89ADE5434606470BB3BAF857D786138825E2D0B(L_17, L_21, /*hidden argument*/NULL); if (!L_22) { goto IL_0087; } } IL_0053: { MemoryStream_t495F44B85E6B4DDE2BB7E17DE963256A74E2298C * L_23 = V_0; uint8_t L_24 = ___escapeChar1; NullCheck(L_23); VirtActionInvoker1< uint8_t >::Invoke(28 /* System.Void System.IO.Stream::WriteByte(System.Byte) */, L_23, L_24); MemoryStream_t495F44B85E6B4DDE2BB7E17DE963256A74E2298C * L_25 = V_0; ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_26 = ___input0; int32_t L_27 = V_1; NullCheck(L_26); int32_t L_28 = L_27; uint8_t L_29 = (L_26)->GetAt(static_cast<il2cpp_array_size_t>(L_28)); bool L_30 = ___uppercase4; G_B8_0 = ((int32_t)(L_29)); G_B8_1 = L_25; if (!L_30) { G_B9_0 = ((int32_t)(L_29)); G_B9_1 = L_25; goto IL_0070; } } IL_0066: { IL2CPP_RUNTIME_CLASS_INIT(WWWTranscoder_t0B24F1F17629756E6464A925870CC39236F39C61_il2cpp_TypeInfo_var); ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_31 = ((WWWTranscoder_t0B24F1F17629756E6464A925870CC39236F39C61_StaticFields*)il2cpp_codegen_static_fields_for(WWWTranscoder_t0B24F1F17629756E6464A925870CC39236F39C61_il2cpp_TypeInfo_var))->get_ucHexChars_0(); G_B10_0 = L_31; G_B10_1 = G_B8_0; G_B10_2 = G_B8_1; goto IL_0075; } IL_0070: { IL2CPP_RUNTIME_CLASS_INIT(WWWTranscoder_t0B24F1F17629756E6464A925870CC39236F39C61_il2cpp_TypeInfo_var); ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_32 = ((WWWTranscoder_t0B24F1F17629756E6464A925870CC39236F39C61_StaticFields*)il2cpp_codegen_static_fields_for(WWWTranscoder_t0B24F1F17629756E6464A925870CC39236F39C61_il2cpp_TypeInfo_var))->get_lcHexChars_1(); G_B10_0 = L_32; G_B10_1 = G_B9_0; G_B10_2 = G_B9_1; } IL_0075: { IL2CPP_RUNTIME_CLASS_INIT(WWWTranscoder_t0B24F1F17629756E6464A925870CC39236F39C61_il2cpp_TypeInfo_var); ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_33 = WWWTranscoder_Byte2Hex_mA129675BFEDFED879713DAB1592772BC52FA04FB((uint8_t)G_B10_1, G_B10_0, /*hidden argument*/NULL); NullCheck(G_B10_2); VirtActionInvoker3< ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*, int32_t, int32_t >::Invoke(27 /* System.Void System.IO.Stream::Write(System.Byte[],System.Int32,System.Int32) */, G_B10_2, L_33, 0, 2); goto IL_0092; } IL_0087: { MemoryStream_t495F44B85E6B4DDE2BB7E17DE963256A74E2298C * L_34 = V_0; ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_35 = ___input0; int32_t L_36 = V_1; NullCheck(L_35); int32_t L_37 = L_36; uint8_t L_38 = (L_35)->GetAt(static_cast<il2cpp_array_size_t>(L_37)); NullCheck(L_34); VirtActionInvoker1< uint8_t >::Invoke(28 /* System.Void System.IO.Stream::WriteByte(System.Byte) */, L_34, L_38); } IL_0092: { int32_t L_39 = V_1; V_1 = ((int32_t)il2cpp_codegen_add((int32_t)L_39, (int32_t)1)); } IL_0097: { int32_t L_40 = V_1; ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_41 = ___input0; NullCheck(L_41); if ((((int32_t)L_40) < ((int32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_41)->max_length))))))) { goto IL_0014; } } IL_00a0: { MemoryStream_t495F44B85E6B4DDE2BB7E17DE963256A74E2298C * L_42 = V_0; NullCheck(L_42); ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_43 = VirtFuncInvoker0< ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* >::Invoke(33 /* System.Byte[] System.IO.MemoryStream::ToArray() */, L_42); V_2 = L_43; IL2CPP_LEAVE(0xB9, FINALLY_00ac); } } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __last_unhandled_exception = (Exception_t *)e.ex; goto FINALLY_00ac; } FINALLY_00ac: { // begin finally (depth: 1) { MemoryStream_t495F44B85E6B4DDE2BB7E17DE963256A74E2298C * L_44 = V_0; if (!L_44) { goto IL_00b8; } } IL_00b2: { MemoryStream_t495F44B85E6B4DDE2BB7E17DE963256A74E2298C * L_45 = V_0; NullCheck(L_45); InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t7218B22548186B208D65EA5B7870503810A2D15A_il2cpp_TypeInfo_var, L_45); } IL_00b8: { IL2CPP_RESET_LEAVE(0xB9); IL2CPP_END_FINALLY(172) } } // end finally (depth: 1) IL2CPP_CLEANUP(172) { IL2CPP_JUMP_TBL(0xB9, IL_00b9) IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *) } IL_00b9: { ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_46 = V_2; return L_46; } } // System.Boolean UnityEngine.WWWTranscoder::ByteArrayContains(System.Byte[],System.Byte) extern "C" IL2CPP_METHOD_ATTR bool WWWTranscoder_ByteArrayContains_mC89ADE5434606470BB3BAF857D786138825E2D0B (ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___array0, uint8_t ___b1, const RuntimeMethod* method) { int32_t V_0 = 0; int32_t V_1 = 0; bool V_2 = false; { ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_0 = ___array0; NullCheck(L_0); V_0 = (((int32_t)((int32_t)(((RuntimeArray *)L_0)->max_length)))); V_1 = 0; goto IL_0022; } IL_000c: { ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_1 = ___array0; int32_t L_2 = V_1; NullCheck(L_1); int32_t L_3 = L_2; uint8_t L_4 = (L_1)->GetAt(static_cast<il2cpp_array_size_t>(L_3)); uint8_t L_5 = ___b1; if ((!(((uint32_t)L_4) == ((uint32_t)L_5)))) { goto IL_001d; } } { V_2 = (bool)1; goto IL_0030; } IL_001d: { int32_t L_6 = V_1; V_1 = ((int32_t)il2cpp_codegen_add((int32_t)L_6, (int32_t)1)); } IL_0022: { int32_t L_7 = V_1; int32_t L_8 = V_0; if ((((int32_t)L_7) < ((int32_t)L_8))) { goto IL_000c; } } { V_2 = (bool)0; goto IL_0030; } IL_0030: { bool L_9 = V_2; return L_9; } } // System.Byte[] UnityEngine.WWWTranscoder::URLDecode(System.Byte[]) extern "C" IL2CPP_METHOD_ATTR ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* WWWTranscoder_URLDecode_m591A567154B1B8737ECBFE065AF4FCA59217F5D8 (ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___toEncode0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (WWWTranscoder_URLDecode_m591A567154B1B8737ECBFE065AF4FCA59217F5D8_MetadataUsageId); s_Il2CppMethodInitialized = true; } ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* V_0 = NULL; { ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_0 = ___toEncode0; IL2CPP_RUNTIME_CLASS_INIT(WWWTranscoder_t0B24F1F17629756E6464A925870CC39236F39C61_il2cpp_TypeInfo_var); uint8_t L_1 = ((WWWTranscoder_t0B24F1F17629756E6464A925870CC39236F39C61_StaticFields*)il2cpp_codegen_static_fields_for(WWWTranscoder_t0B24F1F17629756E6464A925870CC39236F39C61_il2cpp_TypeInfo_var))->get_urlEscapeChar_2(); ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_2 = ((WWWTranscoder_t0B24F1F17629756E6464A925870CC39236F39C61_StaticFields*)il2cpp_codegen_static_fields_for(WWWTranscoder_t0B24F1F17629756E6464A925870CC39236F39C61_il2cpp_TypeInfo_var))->get_urlSpace_3(); ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_3 = WWWTranscoder_Decode_m2533830DAAAE6F33AA6EE85A5BF63C96F5D631D4(L_0, L_1, L_2, /*hidden argument*/NULL); V_0 = L_3; goto IL_0017; } IL_0017: { ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_4 = V_0; return L_4; } } // System.Boolean UnityEngine.WWWTranscoder::ByteSubArrayEquals(System.Byte[],System.Int32,System.Byte[]) extern "C" IL2CPP_METHOD_ATTR bool WWWTranscoder_ByteSubArrayEquals_m268C2A9B31CCF4D81E7BEEF843DF5D477ECA9958 (ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___array0, int32_t ___index1, ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___comperand2, const RuntimeMethod* method) { bool V_0 = false; int32_t V_1 = 0; { ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_0 = ___array0; NullCheck(L_0); int32_t L_1 = ___index1; ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_2 = ___comperand2; NullCheck(L_2); if ((((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_0)->max_length)))), (int32_t)L_1))) >= ((int32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_2)->max_length))))))) { goto IL_0015; } } { V_0 = (bool)0; goto IL_0044; } IL_0015: { V_1 = 0; goto IL_0034; } IL_001c: { ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_3 = ___array0; int32_t L_4 = ___index1; int32_t L_5 = V_1; NullCheck(L_3); int32_t L_6 = ((int32_t)il2cpp_codegen_add((int32_t)L_4, (int32_t)L_5)); uint8_t L_7 = (L_3)->GetAt(static_cast<il2cpp_array_size_t>(L_6)); ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_8 = ___comperand2; int32_t L_9 = V_1; NullCheck(L_8); int32_t L_10 = L_9; uint8_t L_11 = (L_8)->GetAt(static_cast<il2cpp_array_size_t>(L_10)); if ((((int32_t)L_7) == ((int32_t)L_11))) { goto IL_0030; } } { V_0 = (bool)0; goto IL_0044; } IL_0030: { int32_t L_12 = V_1; V_1 = ((int32_t)il2cpp_codegen_add((int32_t)L_12, (int32_t)1)); } IL_0034: { int32_t L_13 = V_1; ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_14 = ___comperand2; NullCheck(L_14); if ((((int32_t)L_13) < ((int32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_14)->max_length))))))) { goto IL_001c; } } { V_0 = (bool)1; goto IL_0044; } IL_0044: { bool L_15 = V_0; return L_15; } } // System.Byte[] UnityEngine.WWWTranscoder::Decode(System.Byte[],System.Byte,System.Byte[]) extern "C" IL2CPP_METHOD_ATTR ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* WWWTranscoder_Decode_m2533830DAAAE6F33AA6EE85A5BF63C96F5D631D4 (ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___input0, uint8_t ___escapeChar1, ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___space2, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (WWWTranscoder_Decode_m2533830DAAAE6F33AA6EE85A5BF63C96F5D631D4_MetadataUsageId); s_Il2CppMethodInitialized = true; } MemoryStream_t495F44B85E6B4DDE2BB7E17DE963256A74E2298C * V_0 = NULL; int32_t V_1 = 0; ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* V_2 = NULL; Exception_t * __last_unhandled_exception = 0; NO_UNUSED_WARNING (__last_unhandled_exception); Exception_t * __exception_local = 0; NO_UNUSED_WARNING (__exception_local); int32_t __leave_target = -1; NO_UNUSED_WARNING (__leave_target); { ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_0 = ___input0; NullCheck(L_0); MemoryStream_t495F44B85E6B4DDE2BB7E17DE963256A74E2298C * L_1 = (MemoryStream_t495F44B85E6B4DDE2BB7E17DE963256A74E2298C *)il2cpp_codegen_object_new(MemoryStream_t495F44B85E6B4DDE2BB7E17DE963256A74E2298C_il2cpp_TypeInfo_var); MemoryStream__ctor_m78689C82DED9ACE5022B7EABF28F17FF318DF2AA(L_1, (((int32_t)((int32_t)(((RuntimeArray *)L_0)->max_length)))), /*hidden argument*/NULL); V_0 = L_1; } IL_000a: try { // begin try (depth: 1) { V_1 = 0; goto IL_0077; } IL_0012: { ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_2 = ___input0; int32_t L_3 = V_1; ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_4 = ___space2; IL2CPP_RUNTIME_CLASS_INIT(WWWTranscoder_t0B24F1F17629756E6464A925870CC39236F39C61_il2cpp_TypeInfo_var); bool L_5 = WWWTranscoder_ByteSubArrayEquals_m268C2A9B31CCF4D81E7BEEF843DF5D477ECA9958(L_2, L_3, L_4, /*hidden argument*/NULL); if (!L_5) { goto IL_0037; } } IL_0020: { int32_t L_6 = V_1; ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_7 = ___space2; NullCheck(L_7); V_1 = ((int32_t)il2cpp_codegen_add((int32_t)L_6, (int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_7)->max_length)))), (int32_t)1)))); MemoryStream_t495F44B85E6B4DDE2BB7E17DE963256A74E2298C * L_8 = V_0; NullCheck(L_8); VirtActionInvoker1< uint8_t >::Invoke(28 /* System.Void System.IO.Stream::WriteByte(System.Byte) */, L_8, (uint8_t)((int32_t)32)); goto IL_0072; } IL_0037: { ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_9 = ___input0; int32_t L_10 = V_1; NullCheck(L_9); int32_t L_11 = L_10; uint8_t L_12 = (L_9)->GetAt(static_cast<il2cpp_array_size_t>(L_11)); uint8_t L_13 = ___escapeChar1; if ((!(((uint32_t)L_12) == ((uint32_t)L_13)))) { goto IL_0067; } } IL_0040: { int32_t L_14 = V_1; ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_15 = ___input0; NullCheck(L_15); if ((((int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_14, (int32_t)2))) >= ((int32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_15)->max_length))))))) { goto IL_0067; } } IL_004b: { int32_t L_16 = V_1; V_1 = ((int32_t)il2cpp_codegen_add((int32_t)L_16, (int32_t)1)); MemoryStream_t495F44B85E6B4DDE2BB7E17DE963256A74E2298C * L_17 = V_0; ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_18 = ___input0; int32_t L_19 = V_1; int32_t L_20 = L_19; V_1 = ((int32_t)il2cpp_codegen_add((int32_t)L_20, (int32_t)1)); IL2CPP_RUNTIME_CLASS_INIT(WWWTranscoder_t0B24F1F17629756E6464A925870CC39236F39C61_il2cpp_TypeInfo_var); uint8_t L_21 = WWWTranscoder_Hex2Byte_mD417CA540CFBE045FCE32959CD3443EB9C8C7423(L_18, L_20, /*hidden argument*/NULL); NullCheck(L_17); VirtActionInvoker1< uint8_t >::Invoke(28 /* System.Void System.IO.Stream::WriteByte(System.Byte) */, L_17, L_21); goto IL_0072; } IL_0067: { MemoryStream_t495F44B85E6B4DDE2BB7E17DE963256A74E2298C * L_22 = V_0; ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_23 = ___input0; int32_t L_24 = V_1; NullCheck(L_23); int32_t L_25 = L_24; uint8_t L_26 = (L_23)->GetAt(static_cast<il2cpp_array_size_t>(L_25)); NullCheck(L_22); VirtActionInvoker1< uint8_t >::Invoke(28 /* System.Void System.IO.Stream::WriteByte(System.Byte) */, L_22, L_26); } IL_0072: { int32_t L_27 = V_1; V_1 = ((int32_t)il2cpp_codegen_add((int32_t)L_27, (int32_t)1)); } IL_0077: { int32_t L_28 = V_1; ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_29 = ___input0; NullCheck(L_29); if ((((int32_t)L_28) < ((int32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_29)->max_length))))))) { goto IL_0012; } } IL_0080: { MemoryStream_t495F44B85E6B4DDE2BB7E17DE963256A74E2298C * L_30 = V_0; NullCheck(L_30); ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_31 = VirtFuncInvoker0< ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* >::Invoke(33 /* System.Byte[] System.IO.MemoryStream::ToArray() */, L_30); V_2 = L_31; IL2CPP_LEAVE(0x99, FINALLY_008c); } } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __last_unhandled_exception = (Exception_t *)e.ex; goto FINALLY_008c; } FINALLY_008c: { // begin finally (depth: 1) { MemoryStream_t495F44B85E6B4DDE2BB7E17DE963256A74E2298C * L_32 = V_0; if (!L_32) { goto IL_0098; } } IL_0092: { MemoryStream_t495F44B85E6B4DDE2BB7E17DE963256A74E2298C * L_33 = V_0; NullCheck(L_33); InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t7218B22548186B208D65EA5B7870503810A2D15A_il2cpp_TypeInfo_var, L_33); } IL_0098: { IL2CPP_RESET_LEAVE(0x99); IL2CPP_END_FINALLY(140) } } // end finally (depth: 1) IL2CPP_CLEANUP(140) { IL2CPP_JUMP_TBL(0x99, IL_0099) IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *) } IL_0099: { ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_34 = V_2; return L_34; } } // System.Boolean UnityEngine.WWWTranscoder::SevenBitClean(System.String,System.Text.Encoding) extern "C" IL2CPP_METHOD_ATTR bool WWWTranscoder_SevenBitClean_m6805326B108F514EF531375332C90963B9A99EA6 (String_t* ___s0, Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * ___e1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (WWWTranscoder_SevenBitClean_m6805326B108F514EF531375332C90963B9A99EA6_MetadataUsageId); s_Il2CppMethodInitialized = true; } bool V_0 = false; { Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * L_0 = ___e1; String_t* L_1 = ___s0; NullCheck(L_0); ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_2 = VirtFuncInvoker1< ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*, String_t* >::Invoke(25 /* System.Byte[] System.Text.Encoding::GetBytes(System.String) */, L_0, L_1); IL2CPP_RUNTIME_CLASS_INIT(WWWTranscoder_t0B24F1F17629756E6464A925870CC39236F39C61_il2cpp_TypeInfo_var); bool L_3 = WWWTranscoder_SevenBitClean_mC37FC90C62CF3B311A46A529C9BB6727BA81F8BD(L_2, /*hidden argument*/NULL); V_0 = L_3; goto IL_0013; } IL_0013: { bool L_4 = V_0; return L_4; } } // System.Boolean UnityEngine.WWWTranscoder::SevenBitClean(System.Byte[]) extern "C" IL2CPP_METHOD_ATTR bool WWWTranscoder_SevenBitClean_mC37FC90C62CF3B311A46A529C9BB6727BA81F8BD (ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* ___input0, const RuntimeMethod* method) { int32_t V_0 = 0; bool V_1 = false; { V_0 = 0; goto IL_0029; } IL_0008: { ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_0 = ___input0; int32_t L_1 = V_0; NullCheck(L_0); int32_t L_2 = L_1; uint8_t L_3 = (L_0)->GetAt(static_cast<il2cpp_array_size_t>(L_2)); if ((((int32_t)L_3) < ((int32_t)((int32_t)32)))) { goto IL_001d; } } { ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_4 = ___input0; int32_t L_5 = V_0; NullCheck(L_4); int32_t L_6 = L_5; uint8_t L_7 = (L_4)->GetAt(static_cast<il2cpp_array_size_t>(L_6)); if ((((int32_t)L_7) <= ((int32_t)((int32_t)126)))) { goto IL_0024; } } IL_001d: { V_1 = (bool)0; goto IL_0039; } IL_0024: { int32_t L_8 = V_0; V_0 = ((int32_t)il2cpp_codegen_add((int32_t)L_8, (int32_t)1)); } IL_0029: { int32_t L_9 = V_0; ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_10 = ___input0; NullCheck(L_10); if ((((int32_t)L_9) < ((int32_t)(((int32_t)((int32_t)(((RuntimeArray *)L_10)->max_length))))))) { goto IL_0008; } } { V_1 = (bool)1; goto IL_0039; } IL_0039: { bool L_11 = V_1; return L_11; } } // System.Void UnityEngine.WWWTranscoder::.cctor() extern "C" IL2CPP_METHOD_ATTR void WWWTranscoder__cctor_m3436CCA2D8667A6BCF6981B6573EF048BDA49F51 (const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (WWWTranscoder__cctor_m3436CCA2D8667A6BCF6981B6573EF048BDA49F51_MetadataUsageId); s_Il2CppMethodInitialized = true; } { Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * L_0 = WWWForm_get_DefaultEncoding_m13BB72339201269AB257B275B20A5A35B233BC3F(/*hidden argument*/NULL); NullCheck(L_0); ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_1 = VirtFuncInvoker1< ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*, String_t* >::Invoke(25 /* System.Byte[] System.Text.Encoding::GetBytes(System.String) */, L_0, _stringLiteralCE27CB141098FEB00714E758646BE3E99C185B71); ((WWWTranscoder_t0B24F1F17629756E6464A925870CC39236F39C61_StaticFields*)il2cpp_codegen_static_fields_for(WWWTranscoder_t0B24F1F17629756E6464A925870CC39236F39C61_il2cpp_TypeInfo_var))->set_ucHexChars_0(L_1); Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * L_2 = WWWForm_get_DefaultEncoding_m13BB72339201269AB257B275B20A5A35B233BC3F(/*hidden argument*/NULL); NullCheck(L_2); ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_3 = VirtFuncInvoker1< ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*, String_t* >::Invoke(25 /* System.Byte[] System.Text.Encoding::GetBytes(System.String) */, L_2, _stringLiteralFE5567E8D769550852182CDF69D74BB16DFF8E29); ((WWWTranscoder_t0B24F1F17629756E6464A925870CC39236F39C61_StaticFields*)il2cpp_codegen_static_fields_for(WWWTranscoder_t0B24F1F17629756E6464A925870CC39236F39C61_il2cpp_TypeInfo_var))->set_lcHexChars_1(L_3); ((WWWTranscoder_t0B24F1F17629756E6464A925870CC39236F39C61_StaticFields*)il2cpp_codegen_static_fields_for(WWWTranscoder_t0B24F1F17629756E6464A925870CC39236F39C61_il2cpp_TypeInfo_var))->set_urlEscapeChar_2((uint8_t)((int32_t)37)); ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_4 = (ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*)SZArrayNew(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821_il2cpp_TypeInfo_var, (uint32_t)1); ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_5 = L_4; NullCheck(L_5); (L_5)->SetAt(static_cast<il2cpp_array_size_t>(0), (uint8_t)((int32_t)43)); ((WWWTranscoder_t0B24F1F17629756E6464A925870CC39236F39C61_StaticFields*)il2cpp_codegen_static_fields_for(WWWTranscoder_t0B24F1F17629756E6464A925870CC39236F39C61_il2cpp_TypeInfo_var))->set_urlSpace_3(L_5); Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * L_6 = WWWForm_get_DefaultEncoding_m13BB72339201269AB257B275B20A5A35B233BC3F(/*hidden argument*/NULL); NullCheck(L_6); ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_7 = VirtFuncInvoker1< ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*, String_t* >::Invoke(25 /* System.Byte[] System.Text.Encoding::GetBytes(System.String) */, L_6, _stringLiteral986F2ED15C79ED805000ECCD85519810B2DB2A93); ((WWWTranscoder_t0B24F1F17629756E6464A925870CC39236F39C61_StaticFields*)il2cpp_codegen_static_fields_for(WWWTranscoder_t0B24F1F17629756E6464A925870CC39236F39C61_il2cpp_TypeInfo_var))->set_dataSpace_4(L_7); Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * L_8 = WWWForm_get_DefaultEncoding_m13BB72339201269AB257B275B20A5A35B233BC3F(/*hidden argument*/NULL); NullCheck(L_8); ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_9 = VirtFuncInvoker1< ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*, String_t* >::Invoke(25 /* System.Byte[] System.Text.Encoding::GetBytes(System.String) */, L_8, _stringLiteral1C5E5F29CEB079B561835055FFA20C2E0B53F397); ((WWWTranscoder_t0B24F1F17629756E6464A925870CC39236F39C61_StaticFields*)il2cpp_codegen_static_fields_for(WWWTranscoder_t0B24F1F17629756E6464A925870CC39236F39C61_il2cpp_TypeInfo_var))->set_urlForbidden_5(L_9); ((WWWTranscoder_t0B24F1F17629756E6464A925870CC39236F39C61_StaticFields*)il2cpp_codegen_static_fields_for(WWWTranscoder_t0B24F1F17629756E6464A925870CC39236F39C61_il2cpp_TypeInfo_var))->set_qpEscapeChar_6((uint8_t)((int32_t)61)); ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_10 = (ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*)SZArrayNew(ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821_il2cpp_TypeInfo_var, (uint32_t)1); ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_11 = L_10; NullCheck(L_11); (L_11)->SetAt(static_cast<il2cpp_array_size_t>(0), (uint8_t)((int32_t)95)); ((WWWTranscoder_t0B24F1F17629756E6464A925870CC39236F39C61_StaticFields*)il2cpp_codegen_static_fields_for(WWWTranscoder_t0B24F1F17629756E6464A925870CC39236F39C61_il2cpp_TypeInfo_var))->set_qpSpace_7(L_11); Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * L_12 = WWWForm_get_DefaultEncoding_m13BB72339201269AB257B275B20A5A35B233BC3F(/*hidden argument*/NULL); NullCheck(L_12); ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_13 = VirtFuncInvoker1< ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*, String_t* >::Invoke(25 /* System.Byte[] System.Text.Encoding::GetBytes(System.String) */, L_12, _stringLiteral38263C0B87E5FC0881F12EF855C8F694115D8213); ((WWWTranscoder_t0B24F1F17629756E6464A925870CC39236F39C61_StaticFields*)il2cpp_codegen_static_fields_for(WWWTranscoder_t0B24F1F17629756E6464A925870CC39236F39C61_il2cpp_TypeInfo_var))->set_qpForbidden_8(L_13); return; } } #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.String UnityEngineInternal.WebRequestUtils::RedirectTo(System.String,System.String) extern "C" IL2CPP_METHOD_ATTR String_t* WebRequestUtils_RedirectTo_m8AC7C0BFC562550118F6FF4AE218898717E922C1 (String_t* ___baseUri0, String_t* ___redirectUri1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (WebRequestUtils_RedirectTo_m8AC7C0BFC562550118F6FF4AE218898717E922C1_MetadataUsageId); s_Il2CppMethodInitialized = true; } Uri_t87E4A94B2901F5EEDD18AA72C3DB1B00E672D68E * V_0 = NULL; String_t* V_1 = NULL; Uri_t87E4A94B2901F5EEDD18AA72C3DB1B00E672D68E * V_2 = NULL; Uri_t87E4A94B2901F5EEDD18AA72C3DB1B00E672D68E * V_3 = NULL; { String_t* L_0 = ___redirectUri1; NullCheck(L_0); Il2CppChar L_1 = String_get_Chars_m14308AC3B95F8C1D9F1D1055B116B37D595F1D96(L_0, 0, /*hidden argument*/NULL); if ((!(((uint32_t)L_1) == ((uint32_t)((int32_t)47))))) { goto IL_001c; } } { String_t* L_2 = ___redirectUri1; Uri_t87E4A94B2901F5EEDD18AA72C3DB1B00E672D68E * L_3 = (Uri_t87E4A94B2901F5EEDD18AA72C3DB1B00E672D68E *)il2cpp_codegen_object_new(Uri_t87E4A94B2901F5EEDD18AA72C3DB1B00E672D68E_il2cpp_TypeInfo_var); Uri__ctor_mA02DB222F4F35380DE2700D84F58EB42497FDDE4(L_3, L_2, 2, /*hidden argument*/NULL); V_0 = L_3; goto IL_0024; } IL_001c: { String_t* L_4 = ___redirectUri1; Uri_t87E4A94B2901F5EEDD18AA72C3DB1B00E672D68E * L_5 = (Uri_t87E4A94B2901F5EEDD18AA72C3DB1B00E672D68E *)il2cpp_codegen_object_new(Uri_t87E4A94B2901F5EEDD18AA72C3DB1B00E672D68E_il2cpp_TypeInfo_var); Uri__ctor_mA02DB222F4F35380DE2700D84F58EB42497FDDE4(L_5, L_4, 0, /*hidden argument*/NULL); V_0 = L_5; } IL_0024: { Uri_t87E4A94B2901F5EEDD18AA72C3DB1B00E672D68E * L_6 = V_0; NullCheck(L_6); bool L_7 = Uri_get_IsAbsoluteUri_m8C189085F1C675DBC3148AA70C38074EC075D722(L_6, /*hidden argument*/NULL); if (!L_7) { goto IL_003b; } } { Uri_t87E4A94B2901F5EEDD18AA72C3DB1B00E672D68E * L_8 = V_0; NullCheck(L_8); String_t* L_9 = Uri_get_AbsoluteUri_m4326730E572E7E3874021E802813EB6F49F7F99E(L_8, /*hidden argument*/NULL); V_1 = L_9; goto IL_0057; } IL_003b: { String_t* L_10 = ___baseUri0; Uri_t87E4A94B2901F5EEDD18AA72C3DB1B00E672D68E * L_11 = (Uri_t87E4A94B2901F5EEDD18AA72C3DB1B00E672D68E *)il2cpp_codegen_object_new(Uri_t87E4A94B2901F5EEDD18AA72C3DB1B00E672D68E_il2cpp_TypeInfo_var); Uri__ctor_mA02DB222F4F35380DE2700D84F58EB42497FDDE4(L_11, L_10, 1, /*hidden argument*/NULL); V_2 = L_11; Uri_t87E4A94B2901F5EEDD18AA72C3DB1B00E672D68E * L_12 = V_2; Uri_t87E4A94B2901F5EEDD18AA72C3DB1B00E672D68E * L_13 = V_0; Uri_t87E4A94B2901F5EEDD18AA72C3DB1B00E672D68E * L_14 = (Uri_t87E4A94B2901F5EEDD18AA72C3DB1B00E672D68E *)il2cpp_codegen_object_new(Uri_t87E4A94B2901F5EEDD18AA72C3DB1B00E672D68E_il2cpp_TypeInfo_var); Uri__ctor_m42192656437FBEF1EEA8724D3EF2BB67DA0ED6BF(L_14, L_12, L_13, /*hidden argument*/NULL); V_3 = L_14; Uri_t87E4A94B2901F5EEDD18AA72C3DB1B00E672D68E * L_15 = V_3; NullCheck(L_15); String_t* L_16 = Uri_get_AbsoluteUri_m4326730E572E7E3874021E802813EB6F49F7F99E(L_15, /*hidden argument*/NULL); V_1 = L_16; goto IL_0057; } IL_0057: { String_t* L_17 = V_1; return L_17; } } // System.String UnityEngineInternal.WebRequestUtils::MakeInitialUrl(System.String,System.String) extern "C" IL2CPP_METHOD_ATTR String_t* WebRequestUtils_MakeInitialUrl_m446CCE4EFB276BE27A9380D55B9E704D01107B83 (String_t* ___targetUrl0, String_t* ___localUrl1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (WebRequestUtils_MakeInitialUrl_m446CCE4EFB276BE27A9380D55B9E704D01107B83_MetadataUsageId); s_Il2CppMethodInitialized = true; } String_t* V_0 = NULL; bool V_1 = false; Uri_t87E4A94B2901F5EEDD18AA72C3DB1B00E672D68E * V_2 = NULL; Uri_t87E4A94B2901F5EEDD18AA72C3DB1B00E672D68E * V_3 = NULL; FormatException_t2808E076CDE4650AF89F55FD78F49290D0EC5BDC * V_4 = NULL; FormatException_t2808E076CDE4650AF89F55FD78F49290D0EC5BDC * V_5 = NULL; Exception_t * __last_unhandled_exception = 0; NO_UNUSED_WARNING (__last_unhandled_exception); Exception_t * __exception_local = 0; NO_UNUSED_WARNING (__exception_local); int32_t __leave_target = -1; NO_UNUSED_WARNING (__leave_target); { String_t* L_0 = ___targetUrl0; bool L_1 = String_IsNullOrEmpty_m06A85A206AC2106D1982826C5665B9BD35324229(L_0, /*hidden argument*/NULL); if (!L_1) { goto IL_0017; } } { V_0 = _stringLiteralDA39A3EE5E6B4B0D3255BFEF95601890AFD80709; goto IL_00d7; } IL_0017: { V_1 = (bool)0; String_t* L_2 = ___localUrl1; Uri_t87E4A94B2901F5EEDD18AA72C3DB1B00E672D68E * L_3 = (Uri_t87E4A94B2901F5EEDD18AA72C3DB1B00E672D68E *)il2cpp_codegen_object_new(Uri_t87E4A94B2901F5EEDD18AA72C3DB1B00E672D68E_il2cpp_TypeInfo_var); Uri__ctor_mBA69907A1D799CD12ED44B611985B25FE4C626A2(L_3, L_2, /*hidden argument*/NULL); V_2 = L_3; V_3 = (Uri_t87E4A94B2901F5EEDD18AA72C3DB1B00E672D68E *)NULL; String_t* L_4 = ___targetUrl0; NullCheck(L_4); Il2CppChar L_5 = String_get_Chars_m14308AC3B95F8C1D9F1D1055B116B37D595F1D96(L_4, 0, /*hidden argument*/NULL); if ((!(((uint32_t)L_5) == ((uint32_t)((int32_t)47))))) { goto IL_003c; } } { Uri_t87E4A94B2901F5EEDD18AA72C3DB1B00E672D68E * L_6 = V_2; String_t* L_7 = ___targetUrl0; Uri_t87E4A94B2901F5EEDD18AA72C3DB1B00E672D68E * L_8 = (Uri_t87E4A94B2901F5EEDD18AA72C3DB1B00E672D68E *)il2cpp_codegen_object_new(Uri_t87E4A94B2901F5EEDD18AA72C3DB1B00E672D68E_il2cpp_TypeInfo_var); Uri__ctor_m41A759BF295FB902084DD289849793E01A65A14E(L_8, L_6, L_7, /*hidden argument*/NULL); V_3 = L_8; V_1 = (bool)1; } IL_003c: { Uri_t87E4A94B2901F5EEDD18AA72C3DB1B00E672D68E * L_9 = V_3; IL2CPP_RUNTIME_CLASS_INIT(Uri_t87E4A94B2901F5EEDD18AA72C3DB1B00E672D68E_il2cpp_TypeInfo_var); bool L_10 = Uri_op_Equality_mFED3D4AFAB090B76D2088C485507F8F702ADA18F(L_9, (Uri_t87E4A94B2901F5EEDD18AA72C3DB1B00E672D68E *)NULL, /*hidden argument*/NULL); if (!L_10) { goto IL_006f; } } { IL2CPP_RUNTIME_CLASS_INIT(WebRequestUtils_tBE8F8607E3A9633419968F6AF2F706A029AE1296_il2cpp_TypeInfo_var); Regex_tFD46E63A462E852189FD6AB4E2B0B67C4D8FDBDF * L_11 = ((WebRequestUtils_tBE8F8607E3A9633419968F6AF2F706A029AE1296_StaticFields*)il2cpp_codegen_static_fields_for(WebRequestUtils_tBE8F8607E3A9633419968F6AF2F706A029AE1296_il2cpp_TypeInfo_var))->get_domainRegex_0(); String_t* L_12 = ___targetUrl0; NullCheck(L_11); bool L_13 = Regex_IsMatch_m79684C4D2CE6C5495BCCE9A32AC029E1E5950B7C(L_11, L_12, /*hidden argument*/NULL); if (!L_13) { goto IL_006f; } } { Uri_t87E4A94B2901F5EEDD18AA72C3DB1B00E672D68E * L_14 = V_2; NullCheck(L_14); String_t* L_15 = Uri_get_Scheme_m14A8F0018D8AACADBEF39600A59944F33EE39187(L_14, /*hidden argument*/NULL); String_t* L_16 = ___targetUrl0; String_t* L_17 = String_Concat_mF4626905368D6558695A823466A1AF65EADB9923(L_15, _stringLiteralEF81042E1E86ACB765718EA37393A1292452BBCC, L_16, /*hidden argument*/NULL); ___targetUrl0 = L_17; V_1 = (bool)1; } IL_006f: { V_4 = (FormatException_t2808E076CDE4650AF89F55FD78F49290D0EC5BDC *)NULL; } IL_0072: try { // begin try (depth: 1) { Uri_t87E4A94B2901F5EEDD18AA72C3DB1B00E672D68E * L_18 = V_3; IL2CPP_RUNTIME_CLASS_INIT(Uri_t87E4A94B2901F5EEDD18AA72C3DB1B00E672D68E_il2cpp_TypeInfo_var); bool L_19 = Uri_op_Equality_mFED3D4AFAB090B76D2088C485507F8F702ADA18F(L_18, (Uri_t87E4A94B2901F5EEDD18AA72C3DB1B00E672D68E *)NULL, /*hidden argument*/NULL); if (!L_19) { goto IL_0094; } } IL_007f: { String_t* L_20 = ___targetUrl0; NullCheck(L_20); Il2CppChar L_21 = String_get_Chars_m14308AC3B95F8C1D9F1D1055B116B37D595F1D96(L_20, 0, /*hidden argument*/NULL); if ((((int32_t)L_21) == ((int32_t)((int32_t)46)))) { goto IL_0094; } } IL_008d: { String_t* L_22 = ___targetUrl0; Uri_t87E4A94B2901F5EEDD18AA72C3DB1B00E672D68E * L_23 = (Uri_t87E4A94B2901F5EEDD18AA72C3DB1B00E672D68E *)il2cpp_codegen_object_new(Uri_t87E4A94B2901F5EEDD18AA72C3DB1B00E672D68E_il2cpp_TypeInfo_var); Uri__ctor_mBA69907A1D799CD12ED44B611985B25FE4C626A2(L_23, L_22, /*hidden argument*/NULL); V_3 = L_23; } IL_0094: { goto IL_00a7; } } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __exception_local = (Exception_t *)e.ex; if(il2cpp_codegen_class_is_assignable_from (FormatException_t2808E076CDE4650AF89F55FD78F49290D0EC5BDC_il2cpp_TypeInfo_var, il2cpp_codegen_object_class(e.ex))) goto CATCH_009a; throw e; } CATCH_009a: { // begin catch(System.FormatException) V_5 = ((FormatException_t2808E076CDE4650AF89F55FD78F49290D0EC5BDC *)__exception_local); FormatException_t2808E076CDE4650AF89F55FD78F49290D0EC5BDC * L_24 = V_5; V_4 = L_24; goto IL_00a7; } // end catch (depth: 1) IL_00a7: { Uri_t87E4A94B2901F5EEDD18AA72C3DB1B00E672D68E * L_25 = V_3; IL2CPP_RUNTIME_CLASS_INIT(Uri_t87E4A94B2901F5EEDD18AA72C3DB1B00E672D68E_il2cpp_TypeInfo_var); bool L_26 = Uri_op_Equality_mFED3D4AFAB090B76D2088C485507F8F702ADA18F(L_25, (Uri_t87E4A94B2901F5EEDD18AA72C3DB1B00E672D68E *)NULL, /*hidden argument*/NULL); if (!L_26) { goto IL_00c9; } } IL_00b3: try { // begin try (depth: 1) Uri_t87E4A94B2901F5EEDD18AA72C3DB1B00E672D68E * L_27 = V_2; String_t* L_28 = ___targetUrl0; Uri_t87E4A94B2901F5EEDD18AA72C3DB1B00E672D68E * L_29 = (Uri_t87E4A94B2901F5EEDD18AA72C3DB1B00E672D68E *)il2cpp_codegen_object_new(Uri_t87E4A94B2901F5EEDD18AA72C3DB1B00E672D68E_il2cpp_TypeInfo_var); Uri__ctor_m41A759BF295FB902084DD289849793E01A65A14E(L_29, L_27, L_28, /*hidden argument*/NULL); V_3 = L_29; V_1 = (bool)1; goto IL_00c9; } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __exception_local = (Exception_t *)e.ex; if(il2cpp_codegen_class_is_assignable_from (FormatException_t2808E076CDE4650AF89F55FD78F49290D0EC5BDC_il2cpp_TypeInfo_var, il2cpp_codegen_object_class(e.ex))) goto CATCH_00c4; throw e; } CATCH_00c4: { // begin catch(System.FormatException) FormatException_t2808E076CDE4650AF89F55FD78F49290D0EC5BDC * L_30 = V_4; IL2CPP_RAISE_MANAGED_EXCEPTION(L_30, NULL, WebRequestUtils_MakeInitialUrl_m446CCE4EFB276BE27A9380D55B9E704D01107B83_RuntimeMethod_var); } // end catch (depth: 1) IL_00c9: { Uri_t87E4A94B2901F5EEDD18AA72C3DB1B00E672D68E * L_31 = V_3; String_t* L_32 = ___targetUrl0; bool L_33 = V_1; IL2CPP_RUNTIME_CLASS_INIT(WebRequestUtils_tBE8F8607E3A9633419968F6AF2F706A029AE1296_il2cpp_TypeInfo_var); String_t* L_34 = WebRequestUtils_MakeUriString_m5693EA04230335B9611278EFC189BD58339D01E4(L_31, L_32, L_33, /*hidden argument*/NULL); V_0 = L_34; goto IL_00d7; } IL_00d7: { String_t* L_35 = V_0; return L_35; } } // System.String UnityEngineInternal.WebRequestUtils::MakeUriString(System.Uri,System.String,System.Boolean) extern "C" IL2CPP_METHOD_ATTR String_t* WebRequestUtils_MakeUriString_m5693EA04230335B9611278EFC189BD58339D01E4 (Uri_t87E4A94B2901F5EEDD18AA72C3DB1B00E672D68E * ___targetUri0, String_t* ___targetUrl1, bool ___prependProtocol2, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (WebRequestUtils_MakeUriString_m5693EA04230335B9611278EFC189BD58339D01E4_MetadataUsageId); s_Il2CppMethodInitialized = true; } String_t* V_0 = NULL; String_t* V_1 = NULL; String_t* V_2 = NULL; StringBuilder_t * V_3 = NULL; String_t* V_4 = NULL; { Uri_t87E4A94B2901F5EEDD18AA72C3DB1B00E672D68E * L_0 = ___targetUri0; NullCheck(L_0); bool L_1 = Uri_get_IsFile_m06AB5A15E2A34BBC5177C6E902C5C9D7E766A213(L_0, /*hidden argument*/NULL); if (!L_1) { goto IL_007b; } } { Uri_t87E4A94B2901F5EEDD18AA72C3DB1B00E672D68E * L_2 = ___targetUri0; NullCheck(L_2); bool L_3 = Uri_get_IsLoopback_mCD7E1228C8296730CBD31C713B0A81B660D99BC4(L_2, /*hidden argument*/NULL); if (L_3) { goto IL_0024; } } { Uri_t87E4A94B2901F5EEDD18AA72C3DB1B00E672D68E * L_4 = ___targetUri0; NullCheck(L_4); String_t* L_5 = Uri_get_OriginalString_m56099E46276F0A52524347F1F46A2F88E948504F(L_4, /*hidden argument*/NULL); V_0 = L_5; goto IL_01ac; } IL_0024: { Uri_t87E4A94B2901F5EEDD18AA72C3DB1B00E672D68E * L_6 = ___targetUri0; NullCheck(L_6); String_t* L_7 = Uri_get_AbsolutePath_mA9A825E2BBD0A43AD76EB9A9765E29E45FE32F31(L_6, /*hidden argument*/NULL); V_1 = L_7; String_t* L_8 = V_1; NullCheck(L_8); bool L_9 = String_Contains_m4488034AF8CB3EEA9A205EB8A1F25D438FF8704B(L_8, _stringLiteral4345CB1FA27885A8FBFE7C0C830A592CC76A552B, /*hidden argument*/NULL); if (!L_9) { goto IL_0042; } } { String_t* L_10 = V_1; IL2CPP_RUNTIME_CLASS_INIT(WebRequestUtils_tBE8F8607E3A9633419968F6AF2F706A029AE1296_il2cpp_TypeInfo_var); String_t* L_11 = WebRequestUtils_URLDecode_m3F75FA29F50FB340B93815988517E9208C52EE62(L_10, /*hidden argument*/NULL); V_1 = L_11; } IL_0042: { String_t* L_12 = V_1; NullCheck(L_12); int32_t L_13 = String_get_Length_mD48C8A16A5CF1914F330DCE82D9BE15C3BEDD018(L_12, /*hidden argument*/NULL); if ((((int32_t)L_13) <= ((int32_t)0))) { goto IL_006a; } } { String_t* L_14 = V_1; NullCheck(L_14); Il2CppChar L_15 = String_get_Chars_m14308AC3B95F8C1D9F1D1055B116B37D595F1D96(L_14, 0, /*hidden argument*/NULL); if ((((int32_t)L_15) == ((int32_t)((int32_t)47)))) { goto IL_006a; } } { Il2CppChar L_16 = ((Il2CppChar)((int32_t)47)); RuntimeObject * L_17 = Box(Char_tBF22D9FC341BE970735250BB6FF1A4A92BBA58B9_il2cpp_TypeInfo_var, &L_16); String_t* L_18 = V_1; String_t* L_19 = String_Concat_mBB19C73816BDD1C3519F248E1ADC8E11A6FDB495(L_17, L_18, /*hidden argument*/NULL); V_1 = L_19; } IL_006a: { String_t* L_20 = V_1; String_t* L_21 = String_Concat_mB78D0094592718DA6D5DB6C712A9C225631666BE(_stringLiteralA91E4897CA9F429677AFC57ED00D90DE8D3C7001, L_20, /*hidden argument*/NULL); V_0 = L_21; goto IL_01ac; } IL_007b: { Uri_t87E4A94B2901F5EEDD18AA72C3DB1B00E672D68E * L_22 = ___targetUri0; NullCheck(L_22); String_t* L_23 = Uri_get_Scheme_m14A8F0018D8AACADBEF39600A59944F33EE39187(L_22, /*hidden argument*/NULL); V_2 = L_23; bool L_24 = ___prependProtocol2; if (L_24) { goto IL_0184; } } { String_t* L_25 = ___targetUrl1; NullCheck(L_25); int32_t L_26 = String_get_Length_mD48C8A16A5CF1914F330DCE82D9BE15C3BEDD018(L_25, /*hidden argument*/NULL); String_t* L_27 = V_2; NullCheck(L_27); int32_t L_28 = String_get_Length_mD48C8A16A5CF1914F330DCE82D9BE15C3BEDD018(L_27, /*hidden argument*/NULL); if ((((int32_t)L_26) < ((int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_28, (int32_t)2))))) { goto IL_0184; } } { String_t* L_29 = ___targetUrl1; String_t* L_30 = V_2; NullCheck(L_30); int32_t L_31 = String_get_Length_mD48C8A16A5CF1914F330DCE82D9BE15C3BEDD018(L_30, /*hidden argument*/NULL); NullCheck(L_29); Il2CppChar L_32 = String_get_Chars_m14308AC3B95F8C1D9F1D1055B116B37D595F1D96(L_29, ((int32_t)il2cpp_codegen_add((int32_t)L_31, (int32_t)1)), /*hidden argument*/NULL); if ((((int32_t)L_32) == ((int32_t)((int32_t)47)))) { goto IL_0184; } } { String_t* L_33 = V_2; String_t* L_34 = ___targetUrl1; NullCheck(L_34); int32_t L_35 = String_get_Length_mD48C8A16A5CF1914F330DCE82D9BE15C3BEDD018(L_34, /*hidden argument*/NULL); StringBuilder_t * L_36 = (StringBuilder_t *)il2cpp_codegen_object_new(StringBuilder_t_il2cpp_TypeInfo_var); StringBuilder__ctor_m786CAFE74FE0D479747A0D474BE6EBCFDA5743EA(L_36, L_33, L_35, /*hidden argument*/NULL); V_3 = L_36; StringBuilder_t * L_37 = V_3; NullCheck(L_37); StringBuilder_Append_m05C12F58ADC2D807613A9301DF438CB3CD09B75A(L_37, ((int32_t)58), /*hidden argument*/NULL); String_t* L_38 = V_2; bool L_39 = String_op_Equality_m139F0E4195AE2F856019E63B241F36F016997FCE(L_38, _stringLiteralF92E777F4341930BAD9B2422283C4680D00DBC06, /*hidden argument*/NULL); if (!L_39) { goto IL_015e; } } { Uri_t87E4A94B2901F5EEDD18AA72C3DB1B00E672D68E * L_40 = ___targetUri0; NullCheck(L_40); String_t* L_41 = Uri_get_AbsolutePath_mA9A825E2BBD0A43AD76EB9A9765E29E45FE32F31(L_40, /*hidden argument*/NULL); V_4 = L_41; String_t* L_42 = V_4; NullCheck(L_42); bool L_43 = String_Contains_m4488034AF8CB3EEA9A205EB8A1F25D438FF8704B(L_42, _stringLiteral4345CB1FA27885A8FBFE7C0C830A592CC76A552B, /*hidden argument*/NULL); if (!L_43) { goto IL_00fa; } } { String_t* L_44 = V_4; IL2CPP_RUNTIME_CLASS_INIT(WebRequestUtils_tBE8F8607E3A9633419968F6AF2F706A029AE1296_il2cpp_TypeInfo_var); String_t* L_45 = WebRequestUtils_URLDecode_m3F75FA29F50FB340B93815988517E9208C52EE62(L_44, /*hidden argument*/NULL); V_4 = L_45; } IL_00fa: { String_t* L_46 = V_4; NullCheck(L_46); bool L_47 = String_StartsWith_m7D468FB7C801D9C2DBEEEEC86F8BA8F4EC3243C1(L_46, _stringLiteral947518D877FB275850A375D795BE6A44C27AB526, /*hidden argument*/NULL); if (!L_47) { goto IL_0149; } } { String_t* L_48 = V_4; NullCheck(L_48); int32_t L_49 = String_get_Length_mD48C8A16A5CF1914F330DCE82D9BE15C3BEDD018(L_48, /*hidden argument*/NULL); if ((((int32_t)L_49) <= ((int32_t)6))) { goto IL_0149; } } { String_t* L_50 = V_4; NullCheck(L_50); Il2CppChar L_51 = String_get_Chars_m14308AC3B95F8C1D9F1D1055B116B37D595F1D96(L_50, 6, /*hidden argument*/NULL); if ((((int32_t)L_51) == ((int32_t)((int32_t)47)))) { goto IL_0149; } } { StringBuilder_t * L_52 = V_3; NullCheck(L_52); StringBuilder_Append_mDBB8CCBB7750C67BE2F2D92F47E6C0FA42793260(L_52, _stringLiteralA91E4897CA9F429677AFC57ED00D90DE8D3C7001, /*hidden argument*/NULL); StringBuilder_t * L_53 = V_3; String_t* L_54 = V_4; NullCheck(L_54); String_t* L_55 = String_Substring_m2C4AFF5E79DD8BADFD2DFBCF156BF728FBB8E1AE(L_54, 5, /*hidden argument*/NULL); NullCheck(L_53); StringBuilder_Append_mDBB8CCBB7750C67BE2F2D92F47E6C0FA42793260(L_53, L_55, /*hidden argument*/NULL); goto IL_0152; } IL_0149: { StringBuilder_t * L_56 = V_3; String_t* L_57 = V_4; NullCheck(L_56); StringBuilder_Append_mDBB8CCBB7750C67BE2F2D92F47E6C0FA42793260(L_56, L_57, /*hidden argument*/NULL); } IL_0152: { StringBuilder_t * L_58 = V_3; NullCheck(L_58); String_t* L_59 = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, L_58); V_0 = L_59; goto IL_01ac; } IL_015e: { StringBuilder_t * L_60 = V_3; Uri_t87E4A94B2901F5EEDD18AA72C3DB1B00E672D68E * L_61 = ___targetUri0; NullCheck(L_61); String_t* L_62 = Uri_get_PathAndQuery_mF079BA04B7A397B2729E5B5DEE72B3654A44E384(L_61, /*hidden argument*/NULL); NullCheck(L_60); StringBuilder_Append_mDBB8CCBB7750C67BE2F2D92F47E6C0FA42793260(L_60, L_62, /*hidden argument*/NULL); StringBuilder_t * L_63 = V_3; Uri_t87E4A94B2901F5EEDD18AA72C3DB1B00E672D68E * L_64 = ___targetUri0; NullCheck(L_64); String_t* L_65 = Uri_get_Fragment_m111666DD668AC59B9F3C3D3CEEEC7F70F6904D41(L_64, /*hidden argument*/NULL); NullCheck(L_63); StringBuilder_Append_mDBB8CCBB7750C67BE2F2D92F47E6C0FA42793260(L_63, L_65, /*hidden argument*/NULL); StringBuilder_t * L_66 = V_3; NullCheck(L_66); String_t* L_67 = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, L_66); V_0 = L_67; goto IL_01ac; } IL_0184: { String_t* L_68 = ___targetUrl1; NullCheck(L_68); bool L_69 = String_Contains_m4488034AF8CB3EEA9A205EB8A1F25D438FF8704B(L_68, _stringLiteral4345CB1FA27885A8FBFE7C0C830A592CC76A552B, /*hidden argument*/NULL); if (!L_69) { goto IL_01a0; } } { Uri_t87E4A94B2901F5EEDD18AA72C3DB1B00E672D68E * L_70 = ___targetUri0; NullCheck(L_70); String_t* L_71 = Uri_get_OriginalString_m56099E46276F0A52524347F1F46A2F88E948504F(L_70, /*hidden argument*/NULL); V_0 = L_71; goto IL_01ac; } IL_01a0: { Uri_t87E4A94B2901F5EEDD18AA72C3DB1B00E672D68E * L_72 = ___targetUri0; NullCheck(L_72); String_t* L_73 = Uri_get_AbsoluteUri_m4326730E572E7E3874021E802813EB6F49F7F99E(L_72, /*hidden argument*/NULL); V_0 = L_73; goto IL_01ac; } IL_01ac: { String_t* L_74 = V_0; return L_74; } } // System.String UnityEngineInternal.WebRequestUtils::URLDecode(System.String) extern "C" IL2CPP_METHOD_ATTR String_t* WebRequestUtils_URLDecode_m3F75FA29F50FB340B93815988517E9208C52EE62 (String_t* ___encoded0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (WebRequestUtils_URLDecode_m3F75FA29F50FB340B93815988517E9208C52EE62_MetadataUsageId); s_Il2CppMethodInitialized = true; } ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* V_0 = NULL; ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* V_1 = NULL; String_t* V_2 = NULL; { Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * L_0 = Encoding_get_UTF8_m67C8652936B681E7BC7505E459E88790E0FF16D9(/*hidden argument*/NULL); String_t* L_1 = ___encoded0; NullCheck(L_0); ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_2 = VirtFuncInvoker1< ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821*, String_t* >::Invoke(25 /* System.Byte[] System.Text.Encoding::GetBytes(System.String) */, L_0, L_1); V_0 = L_2; ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_3 = V_0; IL2CPP_RUNTIME_CLASS_INIT(WWWTranscoder_t0B24F1F17629756E6464A925870CC39236F39C61_il2cpp_TypeInfo_var); ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_4 = WWWTranscoder_URLDecode_m591A567154B1B8737ECBFE065AF4FCA59217F5D8(L_3, /*hidden argument*/NULL); V_1 = L_4; Encoding_t7837A3C0F55EAE0E3959A53C6D6E88B113ED78A4 * L_5 = Encoding_get_UTF8_m67C8652936B681E7BC7505E459E88790E0FF16D9(/*hidden argument*/NULL); ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* L_6 = V_1; NullCheck(L_5); String_t* L_7 = VirtFuncInvoker1< String_t*, ByteU5BU5D_tD06FDBE8142446525DF1C40351D523A228373821* >::Invoke(42 /* System.String System.Text.Encoding::GetString(System.Byte[]) */, L_5, L_6); V_2 = L_7; goto IL_0025; } IL_0025: { String_t* L_8 = V_2; return L_8; } } // System.Void UnityEngineInternal.WebRequestUtils::.cctor() extern "C" IL2CPP_METHOD_ATTR void WebRequestUtils__cctor_m31EB3E45EC49AB6B33C7A10F79F1CD4FF2BE715A (const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_method (WebRequestUtils__cctor_m31EB3E45EC49AB6B33C7A10F79F1CD4FF2BE715A_MetadataUsageId); s_Il2CppMethodInitialized = true; } { Regex_tFD46E63A462E852189FD6AB4E2B0B67C4D8FDBDF * L_0 = (Regex_tFD46E63A462E852189FD6AB4E2B0B67C4D8FDBDF *)il2cpp_codegen_object_new(Regex_tFD46E63A462E852189FD6AB4E2B0B67C4D8FDBDF_il2cpp_TypeInfo_var); Regex__ctor_m2769A5BA7B7A835514F6C0E4D30FAD467C6B1B0C(L_0, _stringLiteral56F03F5F25FB2048BF4AB5FBBF7B5E3D39A3ECEB, /*hidden argument*/NULL); ((WebRequestUtils_tBE8F8607E3A9633419968F6AF2F706A029AE1296_StaticFields*)il2cpp_codegen_static_fields_for(WebRequestUtils_tBE8F8607E3A9633419968F6AF2F706A029AE1296_il2cpp_TypeInfo_var))->set_domainRegex_0(L_0); return; } } #ifdef __clang__ #pragma clang diagnostic pop #endif
184667bcd6571463c66c61660f490db3defdcc2e
755fc53a1c6d88e88cd9eb890bd077ca0738fb51
/expconf-xml/src/TMrbSubevent_Caen_1.cxx
c5cad2fd9e7f9ee3fcd23d07a0267e6fa906c2b7
[]
no_license
flueke/marabou
bf9ed463c59ad106a9d8b36c60a880a5caa79920
2f54e181be6f6488c019dc924fe0e40f7adc10b9
refs/heads/master
2023-07-06T16:15:52.030497
2019-01-08T09:33:00
2019-01-08T09:33:00
null
0
0
null
null
null
null
UTF-8
C++
false
false
5,923
cxx
//__________________________________________________[C++ CLASS IMPLEMENTATION] ////////////////////////////////////////////////////////////////////////////// // Name: expconf/src/TMrbSubevent_Caen_1.cxx // Purpose: MARaBOU configuration: subevents of type [10,41] - CAEN data // Description: Implements class methods to handle [10,41] subevents // reflecting data structure of CAEN modules // Keywords: // Author: R. Lutter // Mailto: <a href=mailto:[email protected]>R. Lutter</a> // Revision: $Id: TMrbSubevent_Caen_1.cxx,v 1.1 2008-03-05 12:37:17 Rudolf.Lutter Exp $ // Date: ////////////////////////////////////////////////////////////////////////////// namespace std {} using namespace std; #include <cstdlib> #include <iostream> #include <sstream> #include <iomanip> #include <fstream> #include "TDirectory.h" #include "TMrbTemplate.h" #include "TMrbConfig.h" #include "TMrbModule.h" #include "TMrbModuleChannel.h" #include "TMrbSubevent_Caen_1.h" #include "SetColor.h" extern TMrbConfig * gMrbConfig; ClassImp(TMrbSubevent_Caen_1) TMrbSubevent_Caen_1::TMrbSubevent_Caen_1(const Char_t * SevtName, const Char_t * SevtTitle, Int_t Crate) : TMrbSubevent(SevtName, SevtTitle, Crate) { //__________________________________________________________________[C++ CTOR] ////////////////////////////////////////////////////////////////////////////// // Name: TMrbSubevent_Caen_1 // Purpose: Create a subevent type [10,41] // Arguments: Char_t * SevtName -- subevent name // Char_t * SevtTitle -- ... and title // Int_t Crate -- crate number // Results: -- // Exceptions: // Description: Create a new subevent of type [10,41] // used to store CAEN list-mode data // // Data format as given by the producer (MBS): // - several modules per buffer // - only 1 event per module // // 31---------------16|15------8|7---------0 // | | wc | modser# | header // |==================|====================| // | channel | data | channel data // |------------------|---------|----------| // | ... | ... | // |==================|====================| // | | event count | trailer // 31======================================0 // // Keywords: ////////////////////////////////////////////////////////////////////////////// if (!this->IsZombie()) { fSevtDescr = "CAEN data, multi-module, single-event (MAXEVENTS=1)"; fSevtType = 10; // set subevent type & subtype fSevtSubtype = 41; if (*SevtTitle == '\0') this->SetTitle(Form("Subevent [%d,%d]: %s", fSevtType, fSevtSubtype, fSevtDescr.Data())); fLegalDataTypes = TMrbConfig::kDataUShort; // only 16 bit words gDirectory->Append(this); } } Bool_t TMrbSubevent_Caen_1::MakeReadoutCode(ofstream & RdoStrm, TMrbConfig::EMrbReadoutTag TagIndex, TMrbTemplate & Template, const Char_t * Prefix) { //________________________________________________________________[C++ METHOD] ////////////////////////////////////////////////////////////////////////////// // Name: TMrbSubevent_Caen_1::MakeReadoutCode // Purpose: Write a piece of code for subevent [10,41] // Arguments: ofstream & RdoStrm -- file output stream // EMrbReadoutTag TagIndex -- index of tag word from template file // TMrbTemplate & Template -- template // Char_t * Prefix -- prefix to select template code // Results: // Exceptions: // Description: Writes code needed for subevent handling. // Keywords: ////////////////////////////////////////////////////////////////////////////// TMrbModuleChannel * param; TMrbModule * parentModule, * module; Int_t parNo; Int_t nextChannel = 0; Int_t thisChannel; TString sevtName; switch (TagIndex) { case TMrbConfig::kRdoOnTriggerXX: Template.InitializeCode("%SB%"); Template.Substitute("$sevtNameLC", this->GetName()); sevtName = this->GetName(); sevtName(0,1).ToUpper(); Template.Substitute("$sevtNameUC", sevtName.Data()); Template.Substitute("$sevtType", (Int_t) fSevtType); Template.Substitute("$sevtSubtype", (Int_t) fSevtSubtype); Template.Substitute("$sevtSerial", fSerial); Template.Substitute("$crateNo", this->GetCrate()); Template.WriteCode(RdoStrm); parentModule = NULL; param = (TMrbModuleChannel *) fLofParams.First(); parNo = 0; while (param) { thisChannel = param->GetAddr(); if (param->Parent() != parentModule) { parentModule = (TMrbModule *) param->Parent(); parentModule->MakeReadoutCode(RdoStrm, TMrbConfig::kModuleSetupReadout, param); nextChannel = thisChannel; } ((TMrbModule *) parentModule)->MakeReadoutCode(RdoStrm, TMrbConfig::kModuleReadModule); parNo += parentModule->GetNofChannelsUsed(); param = (parNo <= fLofParams.GetLast()) ? (TMrbModuleChannel *) fLofParams.At(parNo) : NULL; } module = (TMrbModule *) fLofModules.First(); while (module) { module->MakeReadoutCode(RdoStrm, TMrbConfig::kModuleFinishReadout); module = (TMrbModule *) fLofModules.After(module); } Template.InitializeCode("%SE%"); Template.Substitute("$sevtNameLC", this->GetName()); Template.WriteCode(RdoStrm); break; case TMrbConfig::kRdoIgnoreTriggerXX: module = (TMrbModule *) fLofModules.First(); while (module) { module->MakeReadoutCode(RdoStrm, TMrbConfig::kModuleClearModule); module = (TMrbModule *) fLofModules.After(module); } break; } return(kTRUE); }
[ "Rudolf.Lutter@514c3d59-69d9-4452-b10b-b80f2e82d9e4" ]
Rudolf.Lutter@514c3d59-69d9-4452-b10b-b80f2e82d9e4
48b7fbdbed8c0796f315988c87882933310e01aa
290048a88d075168f1f57ab28402a4b92ccf9563
/Códigos/fernandoBot2/fernandoBot-v1-tcrt5000ComMotor/fernandoBot-v1-tcrt5000ComMotor.ino
0d0bd51d4ff0202abb7cb8b96a2a36b598778c05
[]
no_license
fviel/projetos_arduino
527f65bb13145f7ff13cf8bce73087757f071284
3d898a05881f424ee7a2b217ac955b9475c3998d
refs/heads/master
2021-04-15T04:04:48.305993
2018-03-24T14:13:48
2018-03-24T14:13:48
126,603,853
0
0
null
null
null
null
UTF-8
C++
false
false
22,270
ino
#include <Servo.h> #define CENTRO 90 #define ESQUERDA 115 #define DIREITA 65 Servo motor; /************************************************* * Public Constants *************************************************/ #define NOTE_B0 31 #define NOTE_C1 33 #define NOTE_CS1 35 #define NOTE_D1 37 #define NOTE_DS1 39 #define NOTE_E1 41 #define NOTE_F1 44 #define NOTE_FS1 46 #define NOTE_G1 49 #define NOTE_GS1 52 #define NOTE_A1 55 #define NOTE_AS1 58 #define NOTE_B1 62 #define NOTE_C2 65 #define NOTE_CS2 69 #define NOTE_D2 73 #define NOTE_DS2 78 #define NOTE_E2 82 #define NOTE_F2 87 #define NOTE_FS2 93 #define NOTE_G2 98 #define NOTE_GS2 104 #define NOTE_A2 110 #define NOTE_AS2 117 #define NOTE_B2 123 #define NOTE_C3 131 #define NOTE_CS3 139 #define NOTE_D3 147 #define NOTE_DS3 156 #define NOTE_E3 165 #define NOTE_F3 175 #define NOTE_FS3 185 #define NOTE_G3 196 #define NOTE_GS3 208 #define NOTE_A3 220 #define NOTE_AS3 233 #define NOTE_B3 247 #define NOTE_C4 262 #define NOTE_CS4 277 #define NOTE_D4 294 #define NOTE_DS4 311 #define NOTE_E4 330 #define NOTE_F4 349 #define NOTE_FS4 370 #define NOTE_G4 392 #define NOTE_GS4 415 #define NOTE_A4 440 #define NOTE_AS4 466 #define NOTE_B4 494 #define NOTE_C5 523 #define NOTE_CS5 554 #define NOTE_D5 587 #define NOTE_DS5 622 #define NOTE_E5 659 #define NOTE_F5 698 #define NOTE_FS5 740 #define NOTE_G5 784 #define NOTE_GS5 831 #define NOTE_A5 880 #define NOTE_AS5 932 #define NOTE_B5 988 #define NOTE_C6 1047 #define NOTE_CS6 1109 #define NOTE_D6 1175 #define NOTE_DS6 1245 #define NOTE_E6 1319 #define NOTE_F6 1397 #define NOTE_FS6 1480 #define NOTE_G6 1568 #define NOTE_GS6 1661 #define NOTE_A6 1760 #define NOTE_AS6 1865 #define NOTE_B6 1976 #define NOTE_C7 2093 #define NOTE_CS7 2217 #define NOTE_D7 2349 #define NOTE_DS7 2489 #define NOTE_E7 2637 #define NOTE_F7 2794 #define NOTE_FS7 2960 #define NOTE_G7 3136 #define NOTE_GS7 3322 #define NOTE_A7 3520 #define NOTE_AS7 3729 #define NOTE_B7 3951 #define NOTE_C8 4186 #define NOTE_CS8 4435 #define NOTE_D8 4699 #define NOTE_DS8 4978 /************************************************************************ Variáveis do sensor ultrasom dianteiro ************************************************************************/ int trigPin = 53; int echoPin = 51; boolean tocouMusica = false; boolean continuar = true; /************************************************************************ Variáveis de controle dos motores e ponte H 298 ************************************************************************/ #define FRENTE 1 #define TRAS 0 //pinagem da controladora dianteira int DENA = 12; //(output pwm) int DIN1 = 41; int DIN2 = 43; int DIN3 = 45; int DIN4 = 47; int DENB = 11; //(output pwm) //pinagem da controladora traseira int TENA = 10; //(output pwm) int TIN1 = 31; int TIN2 = 33; int TIN3 = 35; int TIN4 = 37; int TENB = 9; //(output pwm) boolean Sentido = HIGH; /************************************************************************ Variáveis de controle de som ************************************************************************/ int beeper = 8; int melody[] = {NOTE_C4, NOTE_G3, NOTE_G3, NOTE_A3, NOTE_G3, 0, NOTE_B3, NOTE_C4}; // note durations: 4 = quarter note, 8 = eighth note, etc.: int noteDurations[] = {4, 8, 8, 4, 4, 4, 4, 4 }; /************************************************************************ Variáveis de controle dos sensores de linha ************************************************************************/ int analogPinA = 8; int analogPinB = 9; int analogPinC = 10; int analogPinD = 11; int analogPinE = 12; int valA = 0; int valB = 0; int valC = 0; int valD = 0; int valE = 0; int ledA = 44; int ledB = 46; int ledC = 48; int ledD = 50; int ledE = 52; boolean A = false; boolean B = false; boolean C = false; boolean D = false; boolean E = false; //limiar de detecção int limiar = 600; int cCounter = 150; /*************************************************************************************** SETUP ***************************************************************************************/ void setup() { pinMode(beeper, OUTPUT); pinMode(ledA, OUTPUT); pinMode(ledB, OUTPUT); pinMode(ledC, OUTPUT); pinMode(ledD, OUTPUT); pinMode(ledE, OUTPUT); pinMode(analogPinA, INPUT); pinMode(analogPinB, INPUT); pinMode(analogPinC, INPUT); pinMode(analogPinD, INPUT); pinMode(analogPinE, INPUT); //********************** //CONTROLADORA DIANTEIRA //define pinos como de output pinMode(DENA, OUTPUT); pinMode(DENB, OUTPUT); pinMode(DIN1, OUTPUT); pinMode(DIN2, OUTPUT); pinMode(DIN3, OUTPUT); pinMode(DIN4, OUTPUT); //inicializa variáveis do motor A digitalWrite(DENA, LOW); digitalWrite(DIN1, LOW); digitalWrite(DIN2, HIGH); //inicializa variáveis do motor B digitalWrite(DENB, LOW); digitalWrite(DIN3, LOW); digitalWrite(DIN4, HIGH); //********************** //CONTROLADORA TRASEIRA //define pinos como de output pinMode(TENA, OUTPUT); pinMode(TENB, OUTPUT); pinMode(TIN1, OUTPUT); pinMode(TIN2, OUTPUT); pinMode(TIN3, OUTPUT); pinMode(TIN4, OUTPUT); //inicializa variáveis do motor A digitalWrite(TENA, LOW); digitalWrite(TIN1, LOW); digitalWrite(TIN2, HIGH); //inicializa variáveis do motor B digitalWrite(TENB, LOW); digitalWrite(TIN3, LOW); digitalWrite(TIN4, HIGH); //setup dos pinos do sensor ultrasom pinMode(trigPin, OUTPUT); pinMode(echoPin, INPUT); motor.attach(28); servoCentro(); //beep de carga completa beep(); Serial.begin(9600); //define frequencia da serial } /*************************************************************************************** LOOP ***************************************************************************************/ void loop() { Serial.println(" - INICIO LOOP - "); leSensoresLinha(); /******************************************************************************************* OBSERVAÇÃO QUANDO ACENDO UM LED, QUER DIZER QUE ENCONTREI A LINHA PRETA. TECNICAMENTE, ISTO QUER DIZER QUE O SENSOR FOI DESATIVADO. O LED ACESO DÁ O ENTENDIMENTO CONTRÁRIO, POIS É O MAIS FÁCIL DE SER ENTENDIDO PARA O HUMANO. PORTANTO, ESTOU TRABALHANDO COM UMA LÓGICA INVERSA, CUIDADO. ********************************************************************************************/ //4. TOMA AÇÃO NOS MOTORES //OK - todos os sensores foram acionados juntos, ou seja, o robô estã longe do chão if ((A == true) && (B == true) && (C == true) && (D == true) && (E == true)) { pare(); continuar = false; if (tocouMusica == false) { musicola(); tocouMusica = true; } delay(50); } //uma vez parado, não volta a correr if (continuar == true) { //AVALIA SE HÁ OBSTÁCULO //int distance = leDistancia(); int distance = 30; Serial.println(distance); if ((distance >= 10) || (distance <= 0)) { Serial.println("Livre"); //4. TOMA AÇÃO NOS MOTORES //OK - nenhum sensor está ativo, o robô perdeu a linha, então ande de vagar para frente if ((A == false) && (B == false) && (C == false) && (D == false) && (E == false)) { frente(500); delay(10); //pare(); } //AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA if ((A == true) && (B == false) && (C == false) && (D == false) && (E == false)) { cCounter = 150; Serial.print(" - A - \n"); /*while (leSensorLinha('C') == false) { tras(1023); delay(25); direita(1023); delay(150); pare(); }*/ } //BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB if ((A == false) && (B == true) && (C == false) && (D == false) && (E == false)) { cCounter = 150; Serial.print(" - B - \n"); /*while (leSensorLinha('D') == false && leSensorLinha('C') == false) { tras(1023); delay(25); direita(1023); delay(150); pare(); }*/ } //CCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCCC if (C == true) { cCounter = cCounter+50;//cria uma aceleração para a direção C if(cCounter >= 1000) { cCounter = 1023; } Serial.print(" - C - \n"); frente(cCounter); delay(5); } //DDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDDD if ((A == false) && (B == false) && (C == false) && (D == true) && (E == false)) { cCounter = 150; Serial.print(" - D - \n"); /*while (leSensorLinha('B') == false && leSensorLinha('C') == false) { tras(1023); delay(25); esquerda(1023); delay(150); pare(); }*/ } //EEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEEE if ((A == false) && (B == false) && (C == false) && (D == false) && (E == true)) { cCounter = 150; Serial.print(" - E - \n"); /*while (leSensorLinha('E') == false) { tras(1023); delay(25); esquerda(1023); delay(150); pare(); }*/ } } else { beep(); pare(); //coloca o servo no centro servoCentro(); delay(50); //vira à esquerda servoEsquerda(); delay(50); servoCentro(); delay(50); //vira à direita servoDireita(); delay(50); delay(50); }//fim if distância }//fim if continuar debugSensor(); zeraVals(); Serial.println(" - FIM LOOP - "); } /*************************************************************************************** PARE ***************************************************************************************/ void pare() { dMotorA(FRENTE, 0); dMotorB(FRENTE, 0); tMotorA(FRENTE, 0); tMotorB(FRENTE, 0); } /*************************************************************************************** FRENTE ***************************************************************************************/ void frente (int vel) { dMotorA(FRENTE, vel); dMotorB(FRENTE, vel); tMotorA(FRENTE, vel); tMotorB(FRENTE, vel); } /*************************************************************************************** TRAS ***************************************************************************************/ void tras (int vel) { dMotorA(TRAS, vel); dMotorB(TRAS, vel); tMotorA(TRAS, vel); tMotorB(TRAS, vel); } /*************************************************************************************** DIREITA ***************************************************************************************/ void direita (int vel) { /* dMotorA(TRAS, vel); dMotorB(FRENTE, vel); tMotorA(TRAS, vel); tMotorB(FRENTE, vel); */ dMotorA(FRENTE, vel/3); dMotorB(FRENTE, vel); tMotorA(FRENTE, vel/3); tMotorB(FRENTE, vel); } /*************************************************************************************** ESQUERDA ***************************************************************************************/ void esquerda (int vel) { /* dMotorA(FRENTE, vel); dMotorB(TRAS, vel); tMotorA(FRENTE, vel); tMotorB(TRAS, vel); */ dMotorA(FRENTE, vel); dMotorB(FRENTE, vel/3); tMotorA(FRENTE, vel); tMotorB(FRENTE, vel/3); } /*************************************************************************************** LESENSORESLINHA ***************************************************************************************/ void leSensoresLinha() { //1. LÊ OS SENSORES valA = analogRead(analogPinA); valB = analogRead(analogPinB); valC = analogRead(analogPinC); valD = analogRead(analogPinD); valE = analogRead(analogPinE) - 250; //2. DIGITALIZA A LEITURA if (valA < limiar) { A = false; } else { A = true; } if (valB < limiar) { B = false; } else { B = true; } if (valC < limiar) { C = false; } else { C = true; } if (valD < limiar) { D = false; } else { D = true; } if (valE < limiar) { E = false; } else { E = true; } //3. ACIONA LEDS PLACA if (A) { digitalWrite(ledA, HIGH); } else { digitalWrite(ledA, LOW); } if (B) { digitalWrite(ledB, HIGH); } else { digitalWrite(ledB, LOW); } if (C) { digitalWrite(ledC, HIGH); } else { digitalWrite(ledC, LOW); } if (D) { digitalWrite(ledD, HIGH); } else { digitalWrite(ledD, LOW); } if (E) { digitalWrite(ledE, HIGH); } else { digitalWrite(ledE, LOW); } } /*************************************************************************************** LESENSORLINHA ***************************************************************************************/ boolean leSensorLinha(char sensor) { int val = 0; boolean resp = false; switch (sensor) { case 'A': { val = analogRead(analogPinA); } break; case 'B': { val = analogRead(analogPinB); } break; case 'C': { val = analogRead(analogPinC); } break; case 'D': { val = analogRead(analogPinD); } break; case 'E': { val = analogRead(analogPinE); } break; case DEFAULT: { val = -1; } break; } //2. DIGITALIZA A LEITURA if (val < limiar) { resp = false; } else { resp = true; } switch (sensor) { case 'A': { if (val==true) { digitalWrite(ledA, HIGH); } else { digitalWrite(ledA, LOW); } } break; case 'B': { if (val==true) { digitalWrite(ledB, HIGH); } else { digitalWrite(ledB, LOW); } } break; case 'C': { if (val==true) { digitalWrite(ledC, HIGH); } else { digitalWrite(ledC, LOW); } } break; case 'D': { if (val==true) { digitalWrite(ledD, HIGH); } else { digitalWrite(ledD, LOW); } } break; case 'E': { if (val==true) { digitalWrite(ledE, HIGH); } else { digitalWrite(ledE, LOW); } } break; } return (resp); } /*************************************************************************************** DEBUGSENSOR ***************************************************************************************/ void debugSensor() { Serial.print("******************************************************************************\n"); Serial.print("* limiar: "); Serial.println(limiar); Serial.print("| A: "); Serial.print(valA); Serial.print(" - "); Serial.print(A); Serial.print("| B: "); Serial.print(valB); Serial.print(" - "); Serial.print(B); Serial.print("| C: "); Serial.print(valC); Serial.print(" - "); Serial.print(C); Serial.print("| D: "); Serial.print(valD); Serial.print(" - "); Serial.print(D); Serial.print("| E: "); Serial.print(valE); Serial.print(" - "); Serial.print(E); Serial.print("*\n******************************************************************************\n"); } /*************************************************************************************** musicola ***************************************************************************************/ void musicola() { // iterate over the notes of the melody: for (int thisNote = 0; thisNote < 8; thisNote++) { // to calculate the note duration, take one second // divided by the note type. //e.g. quarter note = 1000 / 4, eighth note = 1000/8, etc. int noteDuration = 1000 / noteDurations[thisNote]; tone(beeper, melody[thisNote], noteDuration); // to distinguish the notes, set a minimum time between them. // the note's duration + 30% seems to work well: int pauseBetweenNotes = noteDuration * 1.30; delay(pauseBetweenNotes); // stop the tone playing: noTone(beeper); } } /*************************************************************************************** BEEP ***************************************************************************************/ void beep() { tone(beeper, NOTE_G3, 100); delay(100); tone(beeper, NOTE_F4, 100); delay(100); noTone(beeper); delay(50); } /*************************************************************************************** ZERAVALS ***************************************************************************************/ void zeraVals() { valA = 0; valB = 0; valC = 0; valD = 0; valE = 0; } /*************************************************************************************** TROCASENTIDO ***************************************************************************************/ boolean trocaSentido(boolean Sentido) { if (Sentido == HIGH) { Sentido = LOW; } else { Sentido = HIGH; } return (Sentido); } /*************************************************************************************** DMOTORA ***************************************************************************************/ void dMotorA(boolean sentido, int velocidade) { if (sentido == FRENTE) { dMotorAFrente(velocidade); } else if (sentido == TRAS) { dMotorARe(velocidade); } } /*************************************************************************************** DMOTORAFRENTE ***************************************************************************************/ void dMotorAFrente(int velocidade) { digitalWrite(DENA, 0); digitalWrite(DIN1, 0); digitalWrite(DIN2, 1); analogWrite(DENA, velocidade); } /*************************************************************************************** DMOTORARE ***************************************************************************************/ void dMotorARe(int velocidade) { digitalWrite(DENA, 1); digitalWrite(DIN1, 1); digitalWrite(DIN2, 0); analogWrite(DENA, velocidade); } /*************************************************************************************** DMOTORB ***************************************************************************************/ void dMotorB(boolean sentido, int velocidade) { if (sentido == FRENTE) { dMotorBFrente(velocidade); } else if (sentido == TRAS) { dMotorBRe(velocidade); } } /*************************************************************************************** MOTORBFRENTE ***************************************************************************************/ void dMotorBFrente(int velocidade) { digitalWrite(DENB, 0); digitalWrite(DIN3, 0); digitalWrite(DIN4, 1); analogWrite(DENB, velocidade); } /*************************************************************************************** DMOTORBRE ***************************************************************************************/ void dMotorBRe(int velocidade) { digitalWrite(DENB, 1); digitalWrite(DIN3, 1); digitalWrite(DIN4, 0); analogWrite(DENB, velocidade); } /***************************************************************************************************************************************** /*************************************************************************************** TMOTORA ***************************************************************************************/ void tMotorA(boolean sentido, int velocidade) { if (sentido == FRENTE) { tMotorAFrente(velocidade); } else if (sentido == TRAS) { tMotorARe(velocidade); } } /*************************************************************************************** TMOTORAFRENTE ***************************************************************************************/ void tMotorAFrente(int velocidade) { digitalWrite(TENA, 0); digitalWrite(TIN1, 0); digitalWrite(TIN2, 1); analogWrite(TENA, velocidade); } /*************************************************************************************** DMOTORARE ***************************************************************************************/ void tMotorARe(int velocidade) { digitalWrite(TENA, 1); digitalWrite(TIN1, 1); digitalWrite(TIN2, 0); analogWrite(TENA, velocidade); } /*************************************************************************************** TMOTORB ***************************************************************************************/ void tMotorB(boolean sentido, int velocidade) { if (sentido == FRENTE) { tMotorBFrente(velocidade); } else if (sentido == TRAS) { tMotorBRe(velocidade); } } /*************************************************************************************** TMOTORBFRENTE ***************************************************************************************/ void tMotorBFrente(int velocidade) { digitalWrite(TENB, 0); digitalWrite(TIN3, 0); digitalWrite(TIN4, 1); analogWrite(TENB, velocidade); } /*************************************************************************************** TMOTORBRE ***************************************************************************************/ void tMotorBRe(int velocidade) { digitalWrite(TENB, 1); digitalWrite(TIN3, 1); digitalWrite(TIN4, 0); analogWrite(TENB, velocidade); } /*************************************************************************************** LEDISTANCIA ***************************************************************************************/ int leDistancia() { long duration, distance; digitalWrite(trigPin, LOW); digitalWrite(trigPin, HIGH); //delayMicroseconds(10); //delay(10); digitalWrite(trigPin, LOW); duration = pulseIn(echoPin, HIGH); distance = (duration / 2) / 29.1; return distance; } /*************************************************************************************** Posiociona servo no centro ***************************************************************************************/ void servoCentro() { motor.write(CENTRO); } void servoEsquerda() { /* for(int i=CENTRO;i<ESQUERDA;i++){ motor.write(i); } */ motor.write(ESQUERDA); } void servoDireita() { motor.write(DIREITA); }
ea5997c770ce5d0b9eb8fc06f3637f9b6d85f864
9a55b04eb1e9a462c82510981e4359febee9d989
/EBEUncertianty/mass2lErrComp.cc
f2fbb13be79ef2a6687ba2bf77d959f47a50889c
[]
no_license
jialin-guo1/HiggsMassMeas_HZZ4L_CMS_FullRunII
3a68f53d12f5049a5ec52fd0cdda66712c79123e
19e69cdb72d0dea70a75d99c2347440b44ce3a08
refs/heads/master
2022-12-06T09:48:59.231960
2020-08-24T12:46:22
2020-08-24T12:46:22
null
0
0
null
null
null
null
UTF-8
C++
false
false
8,776
cc
//setup hist Int_t bins=50; Double_t low=0; Double_t high=7; Double_t ptlow; TString year = "2018"; //set variable TString variable="massZErr"; //set channel TString fs = "2e"; // TString corr="Corr"; TH1D* GetHist(TTree* t,TString isData,TString corr); void SetAddress(TTree* t,TString isData); void Compare(TH1D* data, TH1D* mc); TH1D* GetRatio(TH1D* data, TH1D* mc); Double_t weight,massZ, massZErr, m1, m2, phi1, phi2, pt1, pt2, pterr1, pterr2, eta1, eta2, RelIso1, RelIso2, GENmass2l; Int_t lep1_ecalDriven,lep2_ecalDriven; void mass2lErrComp(){ if(fs=="2mu")ptlow=5; if(fs=="2e")ptlow=7; TFile* f_mc = new TFile(); if(fs=="2mu"&&year=="2016")f_mc=new TFile("/raid/raid9/chenguan/input/Legacy_102X_DY_2018/withRelIsoinformation/2016_m2mu.root"); if(fs=="2e"&&year=="2016")f_mc=new TFile("/raid/raid9/chenguan/input/Legacy_102X_DY_2018/withRelIsoinformation/2016_m2e.root"); if(fs=="2mu"&&year=="2017")f_mc=new TFile("/raid/raid9/chenguan/input/Legacy_102X_DY_2018/withRelIsoinformation/2017_m2mu.root"); if(fs=="2e"&&year=="2017")f_mc=new TFile("/raid/raid9/chenguan/input/Legacy_102X_DY_2018/withRelIsoinformation/2017_m2e.root"); if(fs=="2mu"&&year=="2018")f_mc=new TFile("/raid/raid9/chenguan/input/Legacy_102X_DY_2018/withRelIsoinformation/2018_m2mu.root"); if(fs=="2e"&&year=="2018")f_mc=new TFile("/raid/raid9/chenguan/input/Legacy_102X_DY_2018/withRelIsoinformation/2018_m2e.root"); TTree* t_mc = (TTree*)f_mc->Get("passedEvents"); SetAddress(t_mc,"MC"); TH1D* h_mc = GetHist(t_mc,"MC",corr); TFile* f_data = new TFile(); if(fs=="2mu"&&year=="2016")f_data=new TFile("/raid/raid9/chenguan/input/Legacy_102X_DY_2018/withRelIsoinformation/Data/2016/Muon/SingleMuon_m2mu.root"); if(fs=="2e"&&year=="2016")f_data=new TFile("/raid/raid9/chenguan/input/Legacy_102X_DY_2018/withRelIsoinformation/Data/2016/Electron/SingleElectron_m2e.root"); if(fs=="2mu"&&year=="2017")f_data=new TFile("/raid/raid9/chenguan/input/Legacy_102X_DY_2018/withRelIsoinformation/Data/2017/Muon/SingleMuon_m2mu.root"); if(fs=="2e"&&year=="2017")f_data=new TFile("/raid/raid9/chenguan/input/Legacy_102X_DY_2018/withRelIsoinformation/Data/2017/Electron/SingleElectron_m2e.root"); if(fs=="2mu"&&year=="2018")f_data=new TFile("/raid/raid9/chenguan/input/Legacy_102X_DY_2018/withRelIsoinformation/Data/2018/Muon/SingleMuon_m2mu.root"); if(fs=="2e"&&year=="2018")f_data=new TFile("/raid/raid9/chenguan/input/Legacy_102X_DY_2018/withRelIsoinformation/Data/2018/Electron/EGamma_m2e.root"); TTree* t_data = (TTree*)f_data->Get("passedEvents"); SetAddress(t_data,"Data"); TH1D* h_data = GetHist(t_data,"Data",corr); Compare(h_data,h_mc); } TH1D* GetHist(TTree* t,TString isData, TString corr){ TFile* f_mu = new TFile("/raid/raid9/chenguan/Mass/leptonpTErrCorrector_2/LUT_finalbinning_backup/"+year+"_"+isData+"_mu.root"); TFile* f_e1 = new TFile("/raid/raid9/chenguan/Mass/leptonpTErrCorrector_2/LUT_finalbinning_backup/"+year+"_"+isData+"_e1.root"); TFile* f_e3 = new TFile("/raid/raid9/chenguan/Mass/leptonpTErrCorrector_2/LUT_finalbinning_backup/"+year+"_"+isData+"_e3.root"); TH2D* h_mu = (TH2D*)f_mu->Get("mu"); TH2D* h_e1 = (TH2D*)f_e1->Get("e1"); TH2D* h_e3 = (TH2D*)f_e3->Get("e3"); TH1D* h = new TH1D("h","h",bins,low,high); for(Int_t i=0; i<t->GetEntries(); i++){ t->GetEntry(i); if(GENmass2l==0&&isData==0)continue; if(massZ<100&&massZ>80&&massZErr>0.2&&massZErr<7.2&&pt1>ptlow&&pt1<100&&pt2>ptlow&&pt2<100&&abs(eta1)<2.4&&abs(eta2)<2.4&&RelIso1<0.35&&RelIso2<0.35){ // if(massZErr/massZ>0&&massZErr/massZ<0.007){ if(corr=="Corr"){ Double_t lambda1=1; Double_t lambda2=1; if(fs=="2mu"){ Int_t xbin1 = h_mu->GetXaxis()->FindBin(pt1); Int_t ybin1 = h_mu->GetYaxis()->FindBin(abs(eta1)); Int_t xbin2 = h_mu->GetXaxis()->FindBin(pt2); Int_t ybin2 = h_mu->GetYaxis()->FindBin(abs(eta2)); lambda1 = h_mu->GetBinContent(xbin1,ybin1); lambda2 = h_mu->GetBinContent(xbin2,ybin2); } if(fs=="2e"){ if(lep1_ecalDriven==1){ Int_t xbin1 = h_e1->GetXaxis()->FindBin(abs(eta1)); Int_t ybin1 = h_e1->GetYaxis()->FindBin(pterr1/pt1); lambda1 = h_e1->GetBinContent(xbin1,ybin1); } if(lep1_ecalDriven==0){ Int_t xbin1 = h_e3->GetXaxis()->FindBin(pt1); Int_t ybin1 = h_e3->GetYaxis()->FindBin(abs(eta1)); lambda1 = h_e3->GetBinContent(xbin1,ybin1); } if(lep2_ecalDriven==1){ Int_t xbin2 = h_e1->GetXaxis()->FindBin(abs(eta2)); Int_t ybin2 = h_e1->GetYaxis()->FindBin(pterr2/pt2); lambda2 = h_e1->GetBinContent(xbin2,ybin2); } if(lep2_ecalDriven==0){ Int_t xbin2 = h_e3->GetXaxis()->FindBin(pt2); Int_t ybin2 = h_e3->GetYaxis()->FindBin(abs(eta2)); lambda2 = h_e3->GetBinContent(xbin2,ybin2); } } Double_t pt1err_corr = pterr1*lambda1; Double_t pt2err_corr = pterr2*lambda2; TLorentzVector lep1, lep2; lep1.SetPtEtaPhiM(pt1,eta1,phi1,m1); lep2.SetPtEtaPhiM(pt2,eta2,phi2,m2); TLorentzVector lep1p, lep2p; lep1p.SetPtEtaPhiM(pt1+pt1err_corr,eta1,phi1,m1); lep2p.SetPtEtaPhiM(pt2+pt2err_corr,eta2,phi2,m2); Double_t dm1corr = (lep1p+lep2).M()-(lep1+lep2).M(); Double_t dm2corr = (lep1+lep2p).M()-(lep1+lep2).M(); Double_t massZErr_corr = TMath::Sqrt(dm1corr*dm1corr+dm2corr*dm2corr); h->Fill(massZErr_corr,weight); } if(corr=="Uncorr")h->Fill(massZErr,weight); } } h->Sumw2(); h->Scale(1/h->Integral()); return h; } TH1D* GetRatio(TH1D* data, TH1D* mc){ mc->Add(data,-1); mc->Divide(data); return mc; } void Compare(TH1D* data, TH1D* mc ){ TH1D* data_ = (TH1D*)data->Clone(); TH1D* mc_ = (TH1D*)mc->Clone(); TH1D* ratio = GetRatio(data_,mc_); TCanvas c("c","c",1000,1000); c.SetTopMargin(0); c.SetBottomMargin(0); c.cd(); TPad c_1("c_1","c_1",0,0.3,1,0.95); c_1.Draw(); c_1.cd(); c_1.SetTopMargin(0.08); c_1.SetBottomMargin(0.02); mc->Draw("hist"); mc->SetTitle(""); mc->GetYaxis()->SetTitleSize(25); mc->GetYaxis()->SetTitleFont(43); mc->GetYaxis()->SetTitleOffset(2.); mc->GetYaxis()->SetTitle("Events"); mc->GetYaxis()->SetLabelFont(43); mc->GetYaxis()->SetLabelSize(25); mc->GetXaxis()->SetLabelSize(0); mc->SetStats(0); data->Draw("same"); Double_t max = mc->GetMaximum(); if(max<data->GetMaximum())max = data->GetMaximum(); mc->SetMaximum(1.1*max); mc->SetFillColor(kGreen); mc->SetLineColor(kGreen); data->SetMarkerColor(kBlue); data->SetMarkerStyle(34); TLegend* legend = new TLegend(0.7,0.7,0.8,0.8); legend->AddEntry(data,"Data","P"); legend->AddEntry(mc,"MC","F"); legend->SetTextSize(0.06); legend->SetLineWidth(0); legend->SetFillColor(0); legend->SetBorderSize(0); legend->Draw("same"); c.cd(); TPad c_2("c_2","c_2",0.0,0.1,1,0.3); c_2.Draw(); c_2.cd(); c_2.SetTopMargin(0.05); c_2.SetBottomMargin(0.3); ratio->SetTitle(""); ratio->SetStats(0); ratio->SetMarkerColor(kBlue); ratio->SetMarkerStyle(34); ratio->SetMaximum(0.5); ratio->SetMinimum(-0.5); ratio->GetYaxis()->SetTitle("(MC-Data)/Data"); ratio->GetXaxis()->SetTitle(variable); ratio->GetXaxis()->SetTitleFont(43); ratio->GetXaxis()->SetLabelFont(43); ratio->GetXaxis()->SetLabelSize(25); ratio->GetXaxis()->SetTitleSize(25); ratio->GetYaxis()->SetTitleFont(43); ratio->GetYaxis()->SetLabelFont(43); ratio->GetYaxis()->SetLabelSize(16); ratio->GetYaxis()->SetTitleSize(25); ratio->GetXaxis()->SetTitleOffset(5.); ratio->GetYaxis()->SetTitleOffset(2.); TLine* line = new TLine(low,0,high,0); line->SetLineColor(2); line->SetLineStyle(kDashed); line->SetLineWidth(2); ratio->Draw("p"); line->Draw("same"); c.SaveAs("/home/chenguan/public_html/DataVSMCin2LEvents/"+year+"/"+fs+"_"+variable+"_"+corr+".png"); c.SaveAs("/home/chenguan/public_html/DataVSMCin2LEvents/"+year+"/"+fs+"_"+variable+"_"+corr+".pdf"); } void SetAddress(TTree* t,TString isData){ t->SetBranchAddress("massZ",&massZ); t->SetBranchAddress("massZErr",&massZErr); t->SetBranchAddress("pT1",&pt1); t->SetBranchAddress("pT2",&pt2); t->SetBranchAddress("pterr1",&pterr1); t->SetBranchAddress("pterr2",&pterr2); t->SetBranchAddress("phi1",&phi1); t->SetBranchAddress("phi2",&phi2); t->SetBranchAddress("m1",&m1); t->SetBranchAddress("m2",&m2); t->SetBranchAddress("eta1",&eta1); t->SetBranchAddress("eta2",&eta2); t->SetBranchAddress("RelIso1",&RelIso1); t->SetBranchAddress("RelIso2",&RelIso2); t->SetBranchAddress("lep1_ecalDriven",&lep1_ecalDriven); t->SetBranchAddress("lep2_ecalDriven",&lep2_ecalDriven); if(isData=="MC")t->SetBranchAddress("GENmass2l",&GENmass2l); t->SetBranchAddress("weight",&weight); }
6b8fcbcb0800adaeb6220120c10c863b4172ba04
35d27f8663fcdebccb13fabab06812af96acdc4b
/codeforces/101350/d/d.cpp
480836968ce9a0c5ce8a2c7db55b678728ad259e
[]
no_license
noooaah/solved_problem
666490ca49e0001e3919ad7f29180d59caa0a16b
fbcebe223f063623f45415548f9f265e385ddac0
refs/heads/master
2023-03-17T18:27:05.712309
2019-09-05T13:10:01
2019-09-05T13:10:01
null
0
0
null
null
null
null
UTF-8
C++
false
false
354
cpp
#include <bits/stdc++.h> using namespace std; const int N=1e5+5; long long n,ans,q,m[N],mn=2e9; int main(){ scanf("%I64d",&q); while(q--){ scanf("%I64d",&n); bool ok=1; scanf("%I64d",&m[0]); for(int i=1;i<n;i++){scanf("%I64d",&m[i]);if(abs(m[i]-m[i-1])%2){ok=0;}} (ok?printf("yes\n"):printf("no\n")); } return 0; }
be203a1ab839a3d9404daa29695459f9c0fe0a4a
810d70e1b2fc5ecfa1c94d5b63834554d72299bc
/source/core/piece.h
79ad51311681653d63038dc6954b2599efe4a77d
[ "MIT" ]
permissive
miguescri/GameLord
5498cf243db5bf3d528389ce9a9638e707ed1705
443673231686d4e5eb8c231363cd0e5fc15602da
refs/heads/master
2021-01-19T13:08:22.930883
2017-08-19T23:48:52
2017-08-19T23:48:52
83,987,945
0
0
null
null
null
null
UTF-8
C++
false
false
1,151
h
#ifndef PIECE_H #define PIECE_H #include <string> // std::string /** A basic boardgame piece * This piece contains diverse information about the characteristics * of a simple boardgame piece. */ class Piece { private: int id; /**< Unique identifier for a piece */ std::string name; /**< Human-readable name for the piece. Can be repeated among different pieces */ int type; /**< Identifier for the type of piece (e.g queen, knight) */ int team; /**< Identifier for the team the piece belongs to */ public: /** A constructor * This is the only way to set the ID, since it must be unique */ Piece(int id, std::string name, int type, int team) : id(id), name(name), type(type), team(team){}; virtual ~Piece(); void setName(std::string name) { this->name = name; } void setType(int type) { this->type = type; } void setTeam(int team) { this->team = team; } int getId() { return this->id; } std::string getName() { return this->name; } int getType() { return this->type; } int getTeam() { return this->team; } }; #endif /* end of include guard: PIECE_H */
60698618654e07ca620821c700d3c5ff7111429f
dd815bd299369a29ac1c31cb99390e35ab2b6402
/jni/Rendering/PostProcessEffects/ClassicTheme.cpp
fbe08b69d1f89fc6424a890f34f5a1cdedb9d4c8
[]
no_license
amuTBKT/FlappyBird-NDK
4c5c85085aba8569bf8756e73f37d7d86df4d4c0
fe0269fa02e44b2f4f8b226e8bfd3711001bcf45
refs/heads/master
2020-12-11T07:53:16.729367
2015-12-27T18:44:09
2015-12-27T18:44:09
48,602,867
14
6
null
null
null
null
UTF-8
C++
false
false
514
cpp
#include "ClassicTheme.h" ClassicTheme::ClassicTheme(int width, int height) : RenderPass(width, height){ SetShader(ShaderManager::GetInstance()->LoadShader("ClassicTheme.vsh", "ClassicTheme.fsh")); } void ClassicTheme::SetCenter(Vector2* object){ center = object; } void ClassicTheme::SetRadius(float r){ radius = r; } void ClassicTheme::UpdateExtraUniforms(){ shader->SetUniform2f("u_trackingPosition", center->x, center->y); shader->SetUniform1f("u_radius", radius); } ClassicTheme::~ClassicTheme(){ }
ffce3e451acb05ba5b7dccebcec2a088d9a312e5
25e47659d6f1e3abc8c1e367ce4264431d19a568
/OldCode/数据结构/链表-原书P37实现/链表-原书P37实现/11-链表拆分.cpp
30e085cd07d3aacdb8f5a3d33835a24c774986a7
[]
no_license
yeze322/Linux-C
5a5fa08152b99bbe64a40bd0cac9766f8f6cd5f6
d78181ad65d6cbd21ce2e79e34e87f0ca40f1181
refs/heads/master
2021-01-20T06:11:55.414324
2018-07-20T02:53:59
2018-07-20T02:54:43
30,003,334
0
3
null
null
null
null
GB18030
C++
false
false
727
cpp
#include "Linkedlist.h" void DelInfo(LinkInfo **L) { delete(*L); *L=NULL; } void SplitList(LinkInfo *L,LinkInfo *odd,LinkInfo *even)//拆分后销毁原链表 { node *p=L->head->next;//第一个元素 node *odd_add=odd->head;//奇数 node *even_add=even->head;//偶数 while(p!=NULL) { //首先添加偶数 odd_add->next=p; odd->listlen++; odd_add=odd_add->next; p=p->next; //判断是否还有未添加额数 if(p==NULL) break; //然后添加奇数 even_add->next=p; even->listlen++; even_add=even_add->next; p=p->next; } odd->tail=odd_add;//填写尾节点信息 odd_add->next=NULL;//并且把尾节点的下一个置零 even->tail=even_add; even_add->next=NULL; InitListInfo(L); }
6bdf5160f787d975f7409c1b8b7129205b66e7d0
bd1fea86d862456a2ec9f56d57f8948456d55ee6
/000/103/796/CWE457_Use_of_Uninitialized_Variable__new_double_array_partial_init_43.cpp
a94bd3c97cdfb61f9ffa7e9eca3f49cd30704c76
[]
no_license
CU-0xff/juliet-cpp
d62b8485104d8a9160f29213368324c946f38274
d8586a217bc94cbcfeeec5d39b12d02e9c6045a2
refs/heads/master
2021-03-07T15:44:19.446957
2020-03-10T12:45:40
2020-03-10T12:45:40
246,275,244
0
1
null
null
null
null
UTF-8
C++
false
false
3,440
cpp
/* TEMPLATE GENERATED TESTCASE FILE Filename: CWE457_Use_of_Uninitialized_Variable__new_double_array_partial_init_43.cpp Label Definition File: CWE457_Use_of_Uninitialized_Variable__new.label.xml Template File: sources-sinks-43.tmpl.cpp */ /* * @description * CWE: 457 Use of Uninitialized Variable * BadSource: partial_init Initialize part, but not all of the array * GoodSource: Initialize data * Sinks: use * GoodSink: Initialize then use data * BadSink : Use data * Flow Variant: 43 Data flow: data flows using a C++ reference from one function to another in the same source file * * */ #include "std_testcase.h" namespace CWE457_Use_of_Uninitialized_Variable__new_double_array_partial_init_43 { #ifndef OMITBAD void badSource(double * &data) { /* POTENTIAL FLAW: Partially initialize data */ { int i; for(i=0; i<(10/2); i++) { data[i] = (double)i; } } } void bad() { double * data; data = new double[10]; badSource(data); /* POTENTIAL FLAW: Use data without initializing it */ { int i; for(i=0; i<10; i++) { printDoubleLine(data[i]); } } /* deallocate the memory */ delete [] data; } #endif /* OMITBAD */ #ifndef OMITGOOD /* goodG2B() uses the GoodSource with the BadSink */ static void goodG2BSource(double * &data) { /* FIX: Completely initialize data */ { int i; for(i=0; i<10; i++) { data[i] = (double)i; } } } static void goodG2B() { double * data; data = new double[10]; goodG2BSource(data); /* POTENTIAL FLAW: Use data without initializing it */ { int i; for(i=0; i<10; i++) { printDoubleLine(data[i]); } } /* deallocate the memory */ delete [] data; } /* goodB2G() uses the BadSource with the GoodSink */ static void goodB2GSource(double * &data) { /* POTENTIAL FLAW: Partially initialize data */ { int i; for(i=0; i<(10/2); i++) { data[i] = (double)i; } } } static void goodB2G() { double * data; data = new double[10]; goodB2GSource(data); /* FIX: Ensure data is initialized before use */ { int i; for(i=0; i<10; i++) { data[i] = (double)i; } } { int i; for(i=0; i<10; i++) { printDoubleLine(data[i]); } } /* deallocate the memory */ delete [] data; } void good() { goodG2B(); goodB2G(); } #endif /* OMITGOOD */ } /* close namespace */ /* Below is the main(). It is only used when building this testcase on its own for testing or for building a binary to use in testing binary analysis tools. It is not used when compiling all the testcases as one application, which is how source code analysis tools are tested. */ #ifdef INCLUDEMAIN using namespace CWE457_Use_of_Uninitialized_Variable__new_double_array_partial_init_43; /* so that we can use good and bad easily */ int main(int argc, char * argv[]) { /* seed randomness */ srand( (unsigned)time(NULL) ); #ifndef OMITGOOD printLine("Calling good()..."); good(); printLine("Finished good()"); #endif /* OMITGOOD */ #ifndef OMITBAD printLine("Calling bad()..."); bad(); printLine("Finished bad()"); #endif /* OMITBAD */ return 0; } #endif
8c10e948ccf7065d304c8cec7f33694def495802
913346299f7d2ff74ccd92a7db691440bfca67f8
/V9/V9/Demo/DlgFeatMatch.cpp
599151071ed641ad6acb7e8f04b6ad130f129964
[]
no_license
yinzhengliang/CSCE606_CCCF
19e06e724ccf962bb9a8d649df922d5a71c85d61
16bdb4f233f01460459271db28e920432349fe55
refs/heads/master
2021-01-01T19:19:42.220291
2013-12-03T20:19:07
2013-12-03T20:19:07
null
0
0
null
null
null
null
GB18030
C++
false
false
14,023
cpp
// DlgFeatMatch.cpp : implementation file // #include "stdafx.h" #include "demo.h" #include "DlgFeatMatch.h" #include "DemoView.h" #ifdef _DEBUG #define new DEBUG_NEW #undef THIS_FILE static char THIS_FILE[] = __FILE__; #endif ///////////////////////////////////////////////////////////////////////////// // CDlgFeatMatch dialog CDlgFeatMatch::CDlgFeatMatch(CWnd* pParent /*=NULL*/) : CDialog(CDlgFeatMatch::IDD, pParent) { } CDlgFeatMatch::CDlgFeatMatch(CDemoView *pView) { m_pView = pView; //{{AFX_DATA_INIT(CDlgFeatMatch) m_modellength = 0; m_modelwidth = 0; m_modelx = 0; m_modely = 0; m_posx = 0.0; m_posy = 0.0; m_time = 0.0; m_grayfactor = 120; m_wholeimage =FALSE; m_troix = 0; m_troiy = 0; m_troilength = 0; m_troiwidth = 0; m_wholetarget =TRUE; m_acceptance = 0.6; m_score = 0.0; //}}AFX_DATA_INIT //m_pDlgFeatMatch = new CDlgFeatMatch(this); //step four m_model=NULL; m_image=NULL; m_allmodel=FALSE; featparam=NULL; featmodel=NULL; featresult=NULL; } CDlgFeatMatch::~CDlgFeatMatch() { if(featmodel) { mvFeatModelFree(featmodel,featparam); featmodel=NULL; } if(featparam) { mvFeatParamFree(featparam); featparam=NULL; } if(featresult) { mvFeatResultFree(featresult); featresult=NULL; } } BOOL CDlgFeatMatch::Create() { return CDialog::Create(CDlgFeatMatch::IDD); } void CDlgFeatMatch::DoDataExchange(CDataExchange* pDX) { CDialog::DoDataExchange(pDX); //{{AFX_DATA_MAP(CDlgFeatMatch) DDX_Text(pDX, IDC_MODELLENGHT, m_modellength); DDX_Text(pDX, IDC_MODELWIDTH, m_modelwidth); DDX_Text(pDX, IDC_MODELX, m_modelx); DDX_Text(pDX, IDC_MODELY, m_modely); DDX_Text(pDX, IDC_POSX, m_posx); DDX_Text(pDX, IDC_POSY, m_posy); DDX_Text(pDX, IDC_TIME, m_time); DDX_Text(pDX, IDC_GRAYFACTOR, m_grayfactor); DDX_Check(pDX, IDC_WHOLEIMAGE, m_wholeimage); DDX_Text(pDX, IDC_TROIX, m_troix); DDX_Text(pDX, IDC_TROIY, m_troiy); DDX_Text(pDX, IDC_TROILENGTH, m_troilength); DDX_Text(pDX, IDC_TROIWIDTH, m_troiwidth); DDX_Check(pDX, IDC_WHOLETARGET, m_wholetarget); DDX_Text(pDX, IDC_ACCEPTANCE, m_acceptance); DDX_Text(pDX, IDC_SCORE1, m_score); //}}AFX_DATA_MAP } BEGIN_MESSAGE_MAP(CDlgFeatMatch, CDialog) //{{AFX_MSG_MAP(CDlgFeatMatch) ON_BN_CLICKED(IDC_TRAIN, OnTrain) ON_BN_CLICKED(IDC_MATCHSINGLE, OnMatchsingle) ON_BN_CLICKED(IDC_LOCATEMODEL, OnLocatemodel) ON_BN_CLICKED(IDC_MATCHMULTI, OnMatchmulti) ON_BN_CLICKED(IDC_LOCATEROI, OnLocateroi) ON_BN_CLICKED(IDC_LoadModel, OnLoadModel) ON_BN_CLICKED(IDC_SaveModel, OnSaveModel) //}}AFX_MSG_MAP END_MESSAGE_MAP() ///////////////////////////////////////////////////////////////////////////// // CDlgFeatMatch message handlers void CDlgFeatMatch::OnLocatemodel() { // TODO: Add your control notification handler code here m_modelx=m_pView->m_ModelRect.m_rect.left; m_modely=m_pView->m_ModelRect.m_rect.top; m_modelwidth=m_pView->m_ModelRect.m_rect.right-m_pView->m_ModelRect.m_rect.left; m_modellength=m_pView->m_ModelRect.m_rect.bottom-m_pView->m_ModelRect.m_rect.top; m_wholeimage =FALSE; UpdateData(FALSE); } void CDlgFeatMatch::OnLocateroi() { // TODO: Add your control notification handler code here m_troix=m_pView->m_ModelRect.m_rect.left; m_troiy=m_pView->m_ModelRect.m_rect.top; m_troiwidth=m_pView->m_ModelRect.m_rect.right-m_pView->m_ModelRect.m_rect.left; m_troilength=m_pView->m_ModelRect.m_rect.bottom-m_pView->m_ModelRect.m_rect.top; m_wholetarget =FALSE; UpdateData(FALSE); CDC* mpDC =m_pView->GetDC(); // Obtain display control's DC HDC mhDC = mpDC ->GetSafeHdc(); CPen yellowpen; yellowpen.CreatePen(PS_SOLID, 1, RGB(0, 255, 255)); CPen* pOldPen = mpDC->SelectObject(&yellowpen); mpDC->MoveTo(m_troix,m_troiy); mpDC->LineTo(m_troix+m_troiwidth,m_troiy); mpDC->MoveTo(m_troix+m_troiwidth,m_troiy); mpDC->LineTo(m_troix+m_troiwidth,m_troiy+m_troilength); mpDC->MoveTo(m_troix+m_troiwidth,m_troiy+m_troilength); mpDC->LineTo(m_troix,m_troiy+m_troilength); mpDC->MoveTo(m_troix,m_troiy+m_troilength); mpDC->LineTo(m_troix,m_troiy); mpDC->SelectObject(pOldPen); ReleaseDC( mpDC ); } void CDlgFeatMatch::OnTrain() { // TODO: Add your control notification handler code here m_model=m_pView->GetDocument()->image; if(!m_model) { MessageBox("No image available!"); return; } if(featmodel) { mvFeatModelFree(featmodel,featparam); featmodel=NULL; } if(featparam) { mvFeatParamFree(featparam); featparam=NULL; } if(featresult) { mvFeatResultFree(featresult); featresult=NULL; } featparam=mvFeatAllocParam(MV_FEATMATCH_EDGE); //featparam=mvFeatAllocParam(MV_DEFAULT); UpdateData(TRUE); //Inputs from controls if(m_grayfactor<=20||m_grayfactor>=255) { m_grayfactor=120; } mvSetFeatParam(MV_GRAYFACTOR,m_grayfactor,featparam); if (m_wholeimage) { featmodel=mvFeatAllocModel(m_model,featparam); } else { m_pView->m_ModelRect.m_rect.left=m_modelx; m_pView->m_ModelRect.m_rect.top=m_modely; m_pView->m_ModelRect.m_rect.right=m_modelx+m_modelwidth; m_pView->m_ModelRect.m_rect.bottom=m_modely+m_modellength; m_pView->Invalidate(); mvSetFeatParam(MV_MODEL_X,m_modelx,featparam); mvSetFeatParam(MV_MODEL_Y,m_modely,featparam); mvSetFeatParam(MV_MODELROI_X,m_modelwidth,featparam); mvSetFeatParam(MV_MODELROI_Y,m_modellength,featparam); mvSetFeatParam(MV_ACCEPTANCE,m_acceptance,featparam); featmodel=mvFeatAllocModel(m_model,featparam); } featresult=mvFeatAllocResult(featparam); mvFeatPreprocess(featmodel,featparam); CDC* pDC =GetDlgItem(IDC_MODELIMAGE) ->GetDC(); // obtain display control's DC HDC hDC = pDC ->GetSafeHdc(); // Obtain HDC(Device Handler) for drawing operations CRect rect; GetDlgItem(IDC_MODELIMAGE) ->GetClientRect( &rect ); mvFeatDrawModel(m_model,featparam,hDC,&rect); } void CDlgFeatMatch::OnSaveModel() { // TODO: Add your control notification handler code here CFileDialog FDlg(TRUE , ".ftmo" , NULL ,OFN_HIDEREADONLY, "ftmo文件(*.ftmo)|*.ftmo|所有文件(*.*) |*.*||" ); CString filePath; if(FDlg.DoModal() == IDOK) { filePath = FDlg.GetPathName(); UpdateData(false); filePath.Replace("\\","\\\\"); //mvTempSave(filePath,m_Model); UpdateData(TRUE); mvFeatModelSave(filePath,m_model,featparam); } } void CDlgFeatMatch::OnLoadModel() { // TODO: Add your control notification handler code here CFileDialog FDlg(TRUE , ".ftmo" , NULL , OFN_HIDEREADONLY , "File(*.ftmo)|*.ftmo|All Files(*.*) |*.*||" ); CString filePath; if(FDlg.DoModal() == IDOK) { filePath = FDlg.GetPathName(); UpdateData(false); filePath.Replace("\\","\\\\"); mvFeatModelLoad(filePath,&m_model,&featparam); } if(!m_model) { MessageBox("No image available! Loading failure!"); return; } CDC* pDC =GetDlgItem(IDC_MODELIMAGE) ->GetDC(); // Obtain display control's DC HDC hDC = pDC ->GetSafeHdc(); // Obtain HDC(Device Handler) for drawing operations CRect rect; GetDlgItem(IDC_MODELIMAGE) ->GetClientRect( &rect ); mvFeatDrawModel(m_model,featparam,hDC,&rect); if(featmodel) { mvFeatModelFree(featmodel,featparam); featmodel=NULL; } featmodel=mvFeatAllocModel(m_model,featparam); if(featresult) { mvFeatResultFree(featresult); featresult=NULL; } featresult=mvFeatAllocResult(featparam); mvFeatPreprocess(featmodel,featparam); } void CDlgFeatMatch::OnMatchsingle() { // TODO: Add your control notification handler code here UpdateData(TRUE); //Inputs from controls m_image=m_pView->GetDocument()->image; if (m_image==NULL) { MessageBox("Input image!"); return; } if (featmodel==NULL) { MessageBox("Train model!"); return; } if(!m_wholetarget) { mvSetFeatParam(MV_TARGET_X,m_troix,featparam); mvSetFeatParam(MV_TARGET_Y,m_troiy,featparam); mvSetFeatParam(MV_TARGETROI_X,m_troiwidth,featparam); mvSetFeatParam(MV_TARGETROI_Y,m_troilength,featparam); mvSetFeatParam(MV_ACCEPTANCE,m_acceptance,featparam); CDC* mpDC =m_pView->GetDC(); // Obtain display control's DC HDC mhDC = mpDC ->GetSafeHdc(); CPen yellowpen; yellowpen.CreatePen(PS_SOLID, 1, RGB(0, 255, 255)); CPen* pOldPen = mpDC->SelectObject(&yellowpen); mpDC->MoveTo(m_troix,m_troiy); mpDC->LineTo(m_troix+m_troiwidth,m_troiy); mpDC->MoveTo(m_troix+m_troiwidth,m_troiy); mpDC->LineTo(m_troix+m_troiwidth,m_troiy+m_troilength); mpDC->MoveTo(m_troix+m_troiwidth,m_troiy+m_troilength); mpDC->LineTo(m_troix,m_troiy+m_troilength); mpDC->MoveTo(m_troix,m_troiy+m_troilength); mpDC->LineTo(m_troix,m_troiy); mpDC->SelectObject(pOldPen); ReleaseDC( mpDC ); } if(m_wholetarget) { mvSetFeatParam(MV_TARGET_X,MV_DEFAULT,featparam); mvSetFeatParam(MV_TARGET_Y,MV_DEFAULT,featparam); mvSetFeatParam(MV_TARGETROI_X,MV_DEFAULT,featparam); mvSetFeatParam(MV_TARGETROI_Y,MV_DEFAULT,featparam); mvSetFeatParam(MV_ACCEPTANCE,m_acceptance,featparam); } double t1=(double)mvGetTickCount(); if(!mvFeatFind(m_image,featmodel,featparam,featresult)) { MessageBox("No match image found!"); return; } double t2=(double)mvGetTickCount(); m_time=(t2-t1)/mvGetTickFrequency()*1000; mvFeatGetResult(featresult,MV_RESULT_X,&m_posx); mvFeatGetResult(featresult,MV_RESULT_Y,&m_posy); mvFeatGetResult(featresult,MV_RESULT_SCORE,&m_score); UpdateData(FALSE); CDC* mpDC =m_pView->GetDC(); // Obtain display control's DC HDC mhDC = mpDC ->GetSafeHdc(); CPen greenpen; greenpen.CreatePen(PS_SOLID, 1, RGB(0, 255, 0)); CPen* pOldPen = mpDC->SelectObject(&greenpen); int rx=m_modelwidth/2; int ry=m_modellength/2; mpDC->MoveTo(m_posx-rx,m_posy-ry); mpDC->LineTo(m_posx+rx,m_posy-ry); mpDC->MoveTo(m_posx+rx,m_posy-ry); mpDC->LineTo(m_posx+rx,m_posy+ry); mpDC->MoveTo(m_posx+rx,m_posy+ry); mpDC->LineTo(m_posx-rx,m_posy+ry); mpDC->MoveTo(m_posx-rx,m_posy+ry); mpDC->LineTo(m_posx-rx,m_posy-ry); mpDC->SetPixel(m_posx,m_posy,RGB(0,255,0)); mpDC->MoveTo(m_posx-3,m_posy); mpDC->LineTo(m_posx+4,m_posy); mpDC->MoveTo(m_posx,m_posy-3); mpDC->LineTo(m_posx,m_posy+4); mpDC->SelectObject(pOldPen); ReleaseDC( mpDC ); } void CDlgFeatMatch::OnMatchmulti() { // TODO: Add your control notification handler code here UpdateData(); // Inputs from controls if (featmodel==NULL) { MessageBox("Train model!"); return; } int all=m_pView->m_pDoc->m_folderroot.size(); double *m_featpos_x=new double [all]; double *m_featpos_y=new double [all]; // double *m_featangle=new double [all]; double *m_featscore=new double [all]; double *m_feattime=new double [all]; if(!m_wholetarget) { mvSetFeatParam(MV_TARGET_X,m_troix,featparam); mvSetFeatParam(MV_TARGET_Y,m_troiy,featparam); mvSetFeatParam(MV_TARGETROI_X,m_troiwidth,featparam); mvSetFeatParam(MV_TARGETROI_Y,m_troilength,featparam); mvSetFeatParam(MV_ACCEPTANCE,m_acceptance,featparam); } if(m_wholetarget) { mvSetFeatParam(MV_TARGET_X,MV_DEFAULT,featparam); mvSetFeatParam(MV_TARGET_Y,MV_DEFAULT,featparam); mvSetFeatParam(MV_TARGETROI_X,MV_DEFAULT,featparam); mvSetFeatParam(MV_TARGETROI_Y,MV_DEFAULT,featparam); mvSetFeatParam(MV_ACCEPTANCE,m_acceptance,featparam); } FileString::iterator count; int i; double t1; double t2; for(count=m_pView->m_pDoc->m_folderroot.begin(),i=0;count!=m_pView->m_pDoc->m_folderroot.end();i++,count++) { mvReadImageFile(&m_image,(*count).GetBuffer(0)); t1=(double)mvGetTickCount(); if(!mvFeatFind(m_image,featmodel,featparam,featresult)) { m_featpos_x[i]=-1; m_featpos_y[i]=-1; m_feattime[i]=-1; m_featscore[i]=-1; } else { t2=(double)mvGetTickCount(); mvFeatGetResult(featresult,MV_RESULT_X,&m_featpos_x[i]); mvFeatGetResult(featresult,MV_RESULT_Y,&m_featpos_y[i]); mvFeatGetResult(featresult,MV_RESULT_SCORE,&m_featscore[i]); m_feattime[i]=(t2-t1)/mvGetTickFrequency()*1000; } mvReleaseImage(m_image); } CString strFileName = "G:\\myresult.txt"; CFile file ; file.Open(strFileName,CFile::modeCreate|CFile::modeReadWrite); CString str; str="No.\t"; file.Write((LPCTSTR)str,str.GetLength()); str="CoordinateX\t\t"; file.Write((LPCTSTR)str,str.GetLength()); str="CoordinateY\t\t"; file.Write((LPCTSTR)str,str.GetLength()); str="Score\t\t"; file.Write((LPCTSTR)str,str.GetLength()); str="Time\t\t"; file.Write((LPCTSTR)str,str.GetLength()); str="File Path\r\n"; file.Write((LPCTSTR)str,str.GetLength()); count=m_pView->m_pDoc->m_folderroot.begin(); for(int f=0;f<all;f++) { str.Format("%d\t",f); file.Write((LPCTSTR)str,str.GetLength()); str.Format("%f\t",m_featpos_x[f]); file.Write((LPCTSTR)str,str.GetLength()); str.Format("%f\t",m_featpos_y[f]); file.Write((LPCTSTR)str,str.GetLength()); str.Format("%f",m_featscore[f]); file.Write((LPCTSTR)str,str.GetLength()); file.Write("\t",1); str.Format("%f\t",m_feattime[f]); file.Write((LPCTSTR)str,str.GetLength()); str.Format("%s\r\n",*(count++)); file.Write((LPCTSTR)str,str.GetLength()); } file.Close(); delete []m_featpos_x; delete []m_featpos_y; // delete []m_featscore; delete []m_feattime; // delete []m_featangle; MessageBox("finished!"); } void CDlgFeatMatch::OnOK() { // TODO: Add extra validation here m_pView->m_bDrawModelRect=FALSE; m_pView->Invalidate(); CDialog::OnOK(); }
f4986e624a56a75fdaf62736b249e3679bbac140
3bb9fe3ad1c84ad66db52e0e3295e27fddf3c2a1
/Material/primeirasfuncoes.cpp
565f29520da522d9e2d699a0370b747e722ebb4a
[ "MIT" ]
permissive
erickamorim/Minicurso-de-Rcpp
ac730d7b834cecdb83fe74e916d49e3a85baa0b1
471b4270c71f0a12ad3699da99bcaf757b1f72bf
refs/heads/master
2022-08-01T10:57:17.880462
2020-05-14T19:52:54
2020-05-14T19:52:54
263,964,973
0
0
null
null
null
null
UTF-8
C++
false
false
1,276
cpp
#include <Rcpp.h> using namespace Rcpp; // exemplo da distancia euclidiana entra um vetor e sai um escalar //[[Rcpp::export]] double distEuclid(NumericVector x, NumericVector y){ int n = x.size(); double out=0; for(int i = 0; i < n; i++){ out += pow(x[i]-y[i], 2); } return( sqrt(out) ); } /* exemplos com listas */ //[[Rcpp::export]] List cpplist(int x, CharacterVector y, NumericVector z){ return List::create(Rcpp::Named("x", rnorm(x,0,1)), Rcpp::Named("y", y), Rcpp::Named("z", pow(z,2) ) ); } /* exemplos de funcoes que chamam funcoes */ //[[Rcpp::export]] NumericVector cppfun(NumericVector x, Function f){ NumericVector out(x.length()); for(int i=0; i<100; i++){ out=f(x); } return out; } /* chamando uma funcao do R no C++ */ //[[Rcpp::export]] NumericVector Rcppfunc(NumericVector x, Function f){ NumericVector out=f(x); return out; } /* funcao que calcula o produto interno, entra dois vetores e sai um escalar */ //[[Rcpp::export]] double prodinterno1(NumericVector x, NumericVector y){ int k = x.length(); double prod = 0; for(int i = 0; i < k; i++){ prod += x(i)*y(i); } return(prod); } /*** R x=rpois(100,6) Rcppfunc(x,fivenum) Rcppfunc(x,sum) */
cde84079907c06d333b5b7296296408f19c14612
b75c700284e90293c354ef78860d2d69649dccb3
/exp_mnist_grad.cpp
61c75aa6962524f84025d451004a25e222e1a08f
[]
no_license
turkdogan/dropout
47a42dccb5e1a0f290ac73f1b4ddcf2809435e86
e6058c5f9e1e925ca8e22a3cca551c499016f0f1
refs/heads/master
2021-08-20T03:36:56.904009
2017-11-28T04:54:46
2017-11-28T04:54:46
92,925,735
4
3
null
2017-08-16T17:19:42
2017-05-31T08:53:33
C++
UTF-8
C++
false
false
3,890
cpp
#include "exp_mnist_grad.h" #include <iostream> #include "utils.h" #include "network_utils.h" #include "scenario.h" void MnistGradExperiment::run() { std::cout << "Mnist Dropout Grad Experiment Run..." << std::endl; int total_size = 60000; Eigen::MatrixXf input = readMnistInput("mnist/train-images.idx3-ubyte", total_size); Eigen::MatrixXf output = readMnistOutput("mnist/train-labels.idx1-ubyte", total_size); shuffleMatrixPair(input, output); Eigen::MatrixXf test_input = readMnistInput("mnist/t10k-images.idx3-ubyte", 10000); Eigen::MatrixXf test_output = readMnistOutput("mnist/t10k-labels.idx1-ubyte", 10000); int validation_start_index = rand() % 59000; Eigen::MatrixXf validation_input = input.block(validation_start_index, 0, 1000, input.cols()); Eigen::MatrixXf validation_output = output.block(validation_start_index, 0, 1000, output.cols()); int dataset_sizes[] = {20000, 50000}; for (int dataset_size : dataset_sizes) { Eigen::MatrixXf train_input = input.block(0, 0, dataset_size, input.cols()); Eigen::MatrixXf train_output = output.block(0, 0, dataset_size, output.cols()); std::vector<NetworkConfig> configs = getConfigs(); for (NetworkConfig config : configs) { srand(99); Network network(config); TrainingResult training_result = network.trainNetwork( train_input, train_output, validation_input, validation_output, false); int correct = network.test(test_input, test_output); training_result.count = 10000; training_result.correct = correct; training_result.trial = 1; training_result.dataset_size = total_size; training_result.correct = correct; std::string scenario_name = std::to_string(dataset_size) + "_" + config.scenario.name(); training_result.name = scenario_name + "_grad" + std::to_string(dataset_size); training_result.category = "Mnist_dropout_overfit"; std::cout << "write training result... " << std::endl; writeTrainingResult(training_result, scenario_name + ".txt", true); } } } std::vector<NetworkConfig> MnistGradExperiment::getConfigs() { const int dim1 = 784; const int dim2 = 200; const int dim3 = 10; NetworkConfig config1; config1.epoch_count = 120; config1.report_each = 2; config1.batch_size = 40; config1.momentum = 0.9f; config1.learning_rate = 0.01f; config1.clip_before_error = true; config1.scenario = Scenario("Mnist_grad"); config1.addLayerConfig(dim1, dim2, Activation::Sigmoid, false, true, false); config1.addLayerConfig(dim2, dim3, Activation::Softmax, false, false, false); NetworkConfig config2; config2.epoch_count = 120; config2.report_each = 2; config2.batch_size = 40; config2.momentum = 0.9f; config2.learning_rate = 0.01f; config2.clip_before_error = true; config2.scenario = Scenario("Mnist_no_grad"); config2.addLayerConfig(dim1, dim2, Activation::Sigmoid, false, false, false); config2.addLayerConfig(dim2, dim3, Activation::Softmax, false, false, false); NetworkConfig config3; config3.epoch_count = 120; config3.report_each = 2; config3.batch_size = 40; config3.momentum = 0.9f; config3.learning_rate = 0.01f; config3.clip_before_error = true; config3.scenario = Scenario("Mnist_grad_dropout05", 120, 0.5); config3.addLayerConfig(dim1, dim2, Activation::Sigmoid, true, false, false); config3.addLayerConfig(dim2, dim3, Activation::Softmax, false, false, false); std::vector<NetworkConfig> configs; configs.push_back(config1); configs.push_back(config2); configs.push_back(config3); return configs; }
5a1abddbe5a42473376d3deb4d05f5f1951fad5d
3f07e0443a505b33f1862c1e30672f72efd932e6
/ex1_test_abstraction.cpp
8578f909ee6b88d15826d4e0e4d06d73a746f86d
[]
no_license
ChaoHuang2018/Real-time-Monitoring-for-NNCS
332a53e99f9d0288cde10867dd3a242fd010c5db
975e0f836440893f7839751f88e815e10f31498b
refs/heads/main
2023-05-09T13:45:14.953419
2021-06-02T13:48:48
2021-06-02T13:48:48
304,783,341
0
0
null
null
null
null
UTF-8
C++
false
false
8,192
cpp
#include "flowstar-template/Continuous.h" #include "NNTaylor.h" #include "domain_computation.h" #include "dynamics_linearization.h" #include "LTI_Abstraction.h" #include "Trajectories.h" #include "Result_Info.h" using namespace flowstar; using namespace std; int run_ex1(string nn_name, string act_name, string trajectory_file_name) { clock_t begin, end; begin = clock(); NeuralNetwork nn(nn_name, act_name); Trajectories tr(nn.get_num_of_inputs(), trajectory_file_name); cout << tr.get_traces().size() << endl; // declare the number of state variables unsigned int numVars = 2; vector<string> state_vars; state_vars.push_back("x0"); state_vars.push_back("x1"); NNTaylor nn_taylor(nn); Matrix<Interval> remainder(numVars, 1), stateSpace(numVars, 1), u(1, 1), d(2, 1); Interval x0(-2, 2), x1(-2, 2), control(-4.5, 4.5), disturbance(-0.1, 0.1); stateSpace[0][0] = x0; stateSpace[1][0] = x1; u[0][0] = control; d[0][0] = d[1][0] = disturbance; Matrix<Interval> x_current(numVars, 1); Interval initx0(0.894960333436978); Interval initx1(0.830269906483071); x_current[0][0] = initx0; x_current[1][0] = initx1; // get the primary guess of the reachable set in 1 second by 2 iterations Matrix<Interval> domain(numVars, 1); remainderEval_benchmark1(remainder, stateSpace, u, d, 0.1); int N = 2; for (int s = 0; s < N; ++s) { stateSpace = domain; remainderEval_benchmark1(remainder, stateSpace, u, d, 0.1); linearizationDomainEval_benchmark1(domain, x_current, remainder, u, d, 0.1); } // cout << "x_current: " << x_current << endl; cout << "Initial guess of the reachable set:" << domain << endl; // get the linear taylor model and the corresponding remainder of the dynamics over the primary guess // A is defined by dynamics_coeff Matrix<Interval> linearization_remainder(numVars, 1); Matrix<string> dynamics_string(numVars, 1); Matrix<double> dynamics_coeff(numVars, numVars); Matrix<double> dynamics_const_term(numVars, 1); dynamics_linear_taylor_benchmark1(dynamics_string, dynamics_coeff, dynamics_const_term, domain); remainder_linear_taylor_benchmark1(linearization_remainder, domain); Matrix<Real> A(numVars, numVars); A = dynamics_coeff; // Ux is computed based on the disturbance, sample value on the domain center, and the taylor remainder Matrix<Interval> Ux(numVars, 1); for (int s = 0; s < numVars; s++) { Ux[s][0] = d[s][0] + dynamics_const_term[s][0] + linearization_remainder[s][0]; } // cout << "linear taylor expansion of dynamics: " << dynamics_string[0][0] << ", " << dynamics_string[1][0] << endl; // cout << "linear taylor Remainder of dynamics: " << linearization_remainder << endl; // B is determined by the dynamics Matrix<Real> B(numVars, numVars); B[0][0] = 0; B[0][1] = 0; B[1][0] = 0; B[1][1] = 1; // get the linear taylor model and the corresponding remainder of the nn controller over the primary guess vector<Interval> network_input_box; for (int s = 0; s < numVars; s++) { network_input_box.push_back(domain[s][0]); } nn_taylor.set_taylor_linear(state_vars, network_input_box); // nn_taylor.set_range_by_IBP(network_input_box); // cout << "Linear Taylor Expression of nn controller: " << nn_taylor.get_taylor_expression() << endl; // cout << "Linear Taylor Remainder of nn controller: " << nn_taylor.get_taylor_remainder() << endl; Matrix<double> nn_coeff(numVars, numVars); Matrix<double> nn_const_term(numVars, 1); for (int s = 0; s < numVars; s++) { nn_coeff[1][s] = nn_taylor.get_jacobian()[s]; } nn_const_term[1][0] = nn_taylor.get_output(); cout << "nn_coeff: " << nn_coeff << endl; cout << "nn_const_term: " << nn_const_term << endl; // C is defined by the nn_coeff Matrix<Real> C(numVars, numVars); C = nn_coeff; // a is defined by nn_const_term Matrix<Real> a(numVars, 1); a = nn_const_term; // Uu is computed based on the disturbance, sample value on the domain center, and the taylor remainder Matrix<Interval> Uu(numVars, 1); Uu[0][0] = Interval(0); Uu[1][0] = nn_taylor.get_taylor_remainder(); end = clock(); cout << "Computition time for preparing: " << (double)(end - begin) / CLOCKS_PER_SEC << endl; // compute reachable set for LTI // Declaration of the state variables. int x0_id = stateVars.declareVar("x0"); int x1_id = stateVars.declareVar("x1"); // define the abstraction // LTI_Abstraction abstraction(A, B, a, C, Ux, Uu); // cout << "A: " << A << endl; // cout << "B: " << B << endl; // cout << "a: " << a << endl; // cout << "C: " << C << endl; Matrix<Real> AA(numVars, numVars); AA = A + B * C; Matrix<Interval> BB(numVars, 1); BB = B * (Uu + a) + Ux; cout << "AA: " << AA << endl; cout << "BB: " << BB << endl; Linear_Time_Invariant_Dynamics abstraction(AA, BB); // Specify the parameters for reachability computation. Computational_Setting setting; unsigned int order = 4; // stepsize and order for reachability analysis setting.setFixedStepsize(0.05, order); // time horizon. NOT a single control step setting.setTime(0.15); // cutoff threshold setting.setCutoffThreshold(1e-8); // print out the steps setting.printOn(); setting.prepare(); // define the initial set which is a box Interval init_x0(x_current[0][0]), init_x1(x_current[1][0]); cout << "x_current[0][0]: " << x_current[0][0] << endl; cout << "x_current[1][0]: " << x_current[1][0] << endl; vector<Interval> box; box.push_back(init_x0); box.push_back(init_x1); Flowpipe initialSet(box); // translate the initial set to a flowpipe // Flowpipe initial_set(initialSet); // unsafe set vector<Constraint> unsafeSet; // Constraint constraint1("-x0 + 0.1"); // x0 >= 0.1, // Constraint constraint2("x0 - 0.5"); // x0 <= 0.5, // Constraint constraint3("-x1 - 0.5"); // x1 >= - 0.5, // Constraint constraint4("x1 - 0.5"); // x1 <= 0.5, // unsafeSet.push_back(constraint1); // unsafeSet.push_back(constraint2); // unsafeSet.push_back(constraint3); // unsafeSet.push_back(constraint4); Constraint constraint2("x0 + 0.1"); // unsafeSet.push_back(constraint2); /* * The structure of the class Result_of_Reachability is defined as below: * nonlinear_flowpipes: the list of computed flowpipes * tmv_flowpipes: translation of the flowpipes, they will be used for further analysis * fp_end_of_time: the flowpipe at the time T */ Result_of_Reachability result; abstraction.reach(result, setting, initialSet, unsafeSet); switch (result.status) { case COMPLETED_SAFE: printf("Safe\n"); break; case COMPLETED_UNSAFE: printf("Unsafe\n"); break; case COMPLETED_UNKNOWN: printf("Unknown\n"); break; default: // never happen to linear systems printf("Fail to compute flowpipes.\n"); } // flowpipes should be translated to single Taylor model vectors before plotting result.transformToTaylorModels(setting, initialSet); Plot_Setting plot_setting; plot_setting.setOutputDims(x0_id, x1_id); int mkres = mkdir("./outputs", S_IRWXU | S_IRGRP | S_IXGRP | S_IROTH | S_IXOTH); if (mkres < 0 && errno != EEXIST) { printf("Can not create the directory for images.\n"); exit(1); } plot_setting.plot_2D_interval_MATLAB(string("nn_1_") + act_name + string("_step_0"), result); end = clock(); cout << "Totoal computition time for one point: " << (double)(end - begin) / CLOCKS_PER_SEC << endl; return 0; } int main() { string nn_name = "systems_with_networks/Benchmark1/nn_1_sigmoid"; string act_name = "sigmoid"; string trajectory_file_name = "systems_with_networks/Benchmark1/nn_1_sigmoid.txt"; return run_ex1(nn_name, act_name, trajectory_file_name); }
7e9a4182673deaa1b86537e82963a38fa1b3a54c
ea6cd39c2e335c5673b590ecae108f066fa7e59f
/test/lis+lcs/lcs2.cpp
90b11f06e0b168c8cf3fef6eeea6561b69d84cdb
[]
no_license
Xu-Xihe/codes-and-docs-xxh
73c7497e21bbcbce6b512b9a106e5e4a8b436a40
04a2cbe4416719e5c7ea3ee4ea9b46452d958b4c
refs/heads/main
2023-08-21T08:36:21.911043
2021-10-09T14:39:53
2021-10-09T14:39:53
415,333,666
0
0
null
null
null
null
UTF-8
C++
false
false
678
cpp
#include<cstdio> #include<cstring> #include<algorithm> #define maxe 2000 using namespace std; char a[maxe],b[maxe]; int lena,lenb; int dp[maxe][maxe]; int main(){ while (~scanf("%s%s",a,b)) { memset(dp,0,sizeof(dp)); lena=strlen(a); lenb=strlen(b); for (int i = 1; i <= lena; i++) { for (int j = 1; j <= lenb; j++) { if (a[i-1]==b[j-1]) { dp[i][j]=dp[i-1][j-1]+1; } else dp[i][j]=max(dp[i-1][j],dp[i][j-1]); } } printf("%d\n",dp[lena][lenb]); } return 0; }