diff --git a/TuxPusher_SDL/README.md b/TuxPusher_SDL/README.md deleted file mode 100644 index 74778ea..0000000 --- a/TuxPusher_SDL/README.md +++ /dev/null @@ -1,6 +0,0 @@ -# SDL2 Release of TuxPusher - -``` -apt-get install libsdl2-2.0-0 libsdl2-dev -gcc main.c -I ../inc -lSDL2 -lGLESv2 -lEGL -Ofast -lm -o tuxpusher -``` diff --git a/TuxPusher_SDL/compile.sh b/TuxPusher_SDL/compile.sh deleted file mode 100755 index 63c1fe5..0000000 --- a/TuxPusher_SDL/compile.sh +++ /dev/null @@ -1,2 +0,0 @@ -gcc main.c -I ../inc -lSDL2 -lGLESv2 -lEGL -Ofast -lm -o tux -./tux \ No newline at end of file diff --git a/TuxPusher_SDL/main.c b/TuxPusher_SDL/main.c deleted file mode 100644 index 7a6171c..0000000 --- a/TuxPusher_SDL/main.c +++ /dev/null @@ -1,1351 +0,0 @@ -/* - James William Fletcher (github.com/mrbid) - July 2022 - January 2023 - - https://SeaPusher.com & https://pusha.one - - A highly optimised and efficient coin pusher - implementation. - - This was not made in a way that is easily extensible, - the code can actually seem kind of confusing to - initially understand. - - The only niggle is the inability to remove depth buffering - when rendering the game over text due to the way I exported - the mesh, disabling depth results in the text layers inverting - causing the shadow to occlude the text face. It's not the - end of the world, but could be fixed. - - Unlike the CoinPusher/SeaPusher release; - https://github.com/mrbid/coinpusher this version does not - allow custom framerates, just whatever your screen refresh - rate is set to. I just wanted to be a little simple/regular - in this release. - - Also in this one I step the collisions 6 times per frame - rather than just once, which is 6x better quality, this - prevents noticable overlap at higher input speeds which - can now be set via the second argv. -*/ - -#include -#include -#include -#include -#include - -#include -#include - -#ifndef __x86_64__ - #define NOSSE -#endif - -#include "esAux2.h" -#include "res.h" - -#include "../assets/scene.h" -#include "../assets/coin.h" -#include "../assets/tux.h" -#include "../assets/evil.h" -#include "../assets/king.h" -#include "../assets/ninja.h" -#include "../assets/surf.h" -#include "../assets/trip.h" -#include "../assets/gameover.h" - -#define uint GLushort // it's a short don't forget that -#define sint GLshort // and this. -#define f32 GLfloat -#define forceinline __attribute__((always_inline)) inline - -//************************************* -// globals -//************************************* -char appTitle[] = "TuxPusher"; -SDL_Window* wnd; -SDL_GLContext glc; -SDL_Surface* s_icon = NULL; -SDL_Cursor* cross_cursor; -SDL_Cursor* beam_cursor; -uint cursor_state = 0; -uint winw = 1024, winh = 768; -f32 aspect; -f32 t = 0.f; -f32 dt = 0; // delta time -f32 fc = 0; // frame count -f32 lfct = 0; // last frame count time -f32 rww, ww, rwh, wh, ww2, wh2; -f32 uw, uh, uw2, uh2; // normalised pixel dpi -f32 touch_margin = 120.f; -Sint32 mx=0, my=0, md=0; -uint ortho = 0; - -// render state id's -GLint projection_id; -GLint modelview_id; -GLint position_id; -GLint lightpos_id; -GLint solidcolor_id; -GLint color_id; -GLint opacity_id; -GLint normal_id; - -// render state matrices -mat projection; -mat view; -mat model; -mat modelview; - -// render state inputs -vec lightpos = {0.f, 10.f, 13.f}; - -// models -ESModel mdlGameover; -ESModel mdlScene; -ESModel mdlCoin; -ESModel mdlTux; -ESModel mdlEvil; -ESModel mdlKing; -ESModel mdlSurf; -ESModel mdlNinja; -ESModel mdlTrip; - -// game vars -f32 gold_stack = 64.f; // line 740+ defining these as float32 eliminates the need to cast in mTranslate() -f32 silver_stack = 64.f;// function due to the use of a float32 also in the for(f32 i;) loop. -uint active_coin = 0; -uint inmotion = 0; -f32 gameover = 0; -uint isnewcoin = 0; -f32 PUSH_SPEED; - -typedef struct -{ - f32 x, y, r; - signed char color; -} coin; // 4+4+4+1 = 13 bytes, 3 bytes padding to 16 byte cache line -#define MAX_COINS 130 -coin coins[MAX_COINS] = {0}; - -uint trophies[6] = {0}; - -//************************************* -// game functions -//************************************* -void timestamp(char* ts) -{ - const time_t tt = time(0); - strftime(ts, 16, "%H:%M:%S", localtime(&tt)); -} - -forceinline f32 f32Time() -{ - return ((f32)SDL_GetTicks())*0.001f; -} - -void setActiveCoin(const uint color) -{ - for(int i=0; i < MAX_COINS; i++) - { - if(coins[i].color == -1) - { - coins[i].color = color; - active_coin = i; - return; - } - } -} - -void takeStack() -{ - if(gameover == 0) - { - if(silver_stack != 0.f) - { - // play a silver coin - isnewcoin = 1; - setActiveCoin(0); - inmotion = 1; - } - else if(gold_stack != 0.f) - { - // play a gold coin - isnewcoin = 2; - setActiveCoin(1); - inmotion = 1; - } - - if(inmotion == 1) - { - if(mx < touch_margin) - { - coins[active_coin].x = -1.90433f; - coins[active_coin].y = -4.54055f; - } - else if(mx > ww-touch_margin) - { - coins[active_coin].x = 1.90433f; - coins[active_coin].y = -4.54055f; - } - else - { - coins[active_coin].x = -1.90433f+(((mx-touch_margin)*rww)*3.80866f); - coins[active_coin].y = -4.54055f; - } - } - } -} - -void injectFigure() -{ - if(inmotion != 0) - return; - - int fc = -1; - for(int i=0; i < 3; i++) - { - if(coins[i].color == -1) - { - active_coin = i; - fc = i; - coins[i].color = esRand(1, 6); - break; - } - } - - if(fc != -1) - { - coins[active_coin].x = esRandFloat(-1.90433f, 1.90433f); - coins[active_coin].y = -4.54055f; - inmotion = 1; - } -} - -int insidePitch(const f32 x, const f32 y, const f32 r) -{ - // off bottom - if(y < -4.03414f+r) - return 0; - - // first left & right - if(y < -2.22855f) - { - if(x < (-2.22482f - (0.77267f*(fabsf(y+4.03414f) * 0.553835588f))) + r) - return 0; - else if(x > (2.22482f + (0.77267f*(fabsf(y+4.03414f) * 0.553835588f))) - r) - return 0; - } - else if(y < -0.292027f) // second left & right - { - if(x < (-2.99749f - (0.41114f*(fabsf(y+2.22855f) * 0.516389426f))) + r) - return 0; - else if(x > (2.99749f + (0.41114f*(fabsf(y+2.22855f) * 0.516389426f))) - r) - return 0; - } - else if(y < 1.45439f) // third left & right - { - if(x < -3.40863f + r) - return 0; - else if(x > 3.40863f - r) - return 0; - } - - return 1; -} - -int collision(int ci) -{ - for(int i=0; i < MAX_COINS; i++) - { - if(i == ci || coins[i].color == -1){continue;} - const f32 xm = (coins[i].x - coins[ci].x); - const f32 ym = (coins[i].y - coins[ci].y); - const f32 radd = coins[i].r+coins[ci].r; - if(xm*xm + ym*ym < radd*radd) - return 1; - } - return 0; -} - -uint stepCollisions() -{ - uint was_collision = 0; - for(int i=0; i < MAX_COINS; i++) - { - if(coins[i].color == -1){continue;} - for(int j=0; j < MAX_COINS; j++) - { - if(i == j || coins[j].color == -1 || j == active_coin){continue;} - f32 xm = (coins[i].x - coins[j].x); - xm += esRandFloat(-0.01f, 0.01f); // add some random offset to our unit vector, very subtle but works so well! - const f32 ym = (coins[i].y - coins[j].y); - f32 d = xm*xm + ym*ym; - const f32 cr = coins[i].r+coins[j].r; - if(d < cr*cr) - { - d = sqrtps(d); - const f32 len = 1.f/d; - const f32 uy = (ym * len); - if(uy > 0.f){continue;} // best hack ever to massively simplify - const f32 m = d-cr; - coins[j].x += (xm * len) * m; - coins[j].y += uy * m; - - // first left & right - if(coins[j].y < -2.22855f) - { - const f32 fl = (-2.22482f - (0.77267f*(fabsf(coins[j].y+4.03414f) * 0.553835588f))) + coins[j].r; - if(coins[j].x < fl) - { - coins[j].x = fl; - } - else - { - const f32 fr = ( 2.22482f + (0.77267f*(fabsf(coins[j].y+4.03414f) * 0.553835588f))) - coins[j].r; - if(coins[j].x > fr) - coins[j].x = fr; - } - } - else if(coins[j].y < -0.292027f) // second left & right - { - const f32 fl = (-2.99749f - (0.41114f*(fabsf(coins[j].y+2.22855f) * 0.516389426f))) + coins[j].r; - if(coins[j].x < fl) - { - coins[j].x = fl; - } - else - { - const f32 fr = (2.99749f + (0.41114f*(fabsf(coins[j].y+2.22855f) * 0.516389426f))) - coins[j].r; - if(coins[j].x > fr) - coins[j].x = fr; - } - } - else if(coins[j].y < 1.45439f) // third left & right - { - const f32 fl = -3.40863f + coins[j].r; - if(coins[j].x < fl) - { - coins[j].x = fl; - } - else - { - const f32 fr = 3.40863f - coins[j].r; - if(coins[j].x > fr) - coins[j].x = fr; - } - } - else if(coins[j].y < 2.58397f) // first house goal - { - const f32 fl = (-3.40863f + (0.41113f*(fabsf(coins[j].y-1.45439f) * 0.885284796f))); - if(coins[j].x < fl) - { - coins[j].color = -1; - } - else - { - const f32 fr = (3.40863f - (0.41113f*(fabsf(coins[j].y-1.45439f) * 0.885284796f))); - if(coins[j].x > fr) - coins[j].color = -1; - } - } - else if(coins[j].y < 3.70642f) // second house goal - { - const f32 fl = (-2.9975f + (1.34581f*(fabsf(coins[j].y-2.58397f) * 0.890908281f))); - if(coins[j].x < fl) - { - coins[j].color = -1; - } - else - { - const f32 fr = (2.9975f - (1.34581f*(fabsf(coins[j].y-2.58397f) * 0.890908281f))); - if(coins[j].x > fr) - coins[j].color = -1; - } - } - else if(coins[j].y < 4.10583f) // silver goal - { - const f32 fl = (-1.65169f + (1.067374f*(fabsf(coins[j].y-3.70642f) * 2.503692947f))); - if(coins[j].x < fl) - { - if(j >= 0 && j <= 3) - { - if(trophies[coins[j].color-1] == 1) // already have? then reward coins! - { - gold_stack += 6.f; - silver_stack += 6.f; - } - else - trophies[coins[j].color-1] = 1; - } - else - { - if(coins[j].color == 0) - silver_stack += 1.f; - else if(coins[j].color == 1) - silver_stack += 2.f; - } - - coins[j].color = -1; - } - else - { - const f32 fr = (1.65169f - (1.067374f*(fabsf(coins[j].y-3.70642f) * 2.503692947f))); - if(coins[j].x > fr) - { - if(j >= 0 && j <= 3) - { - if(trophies[coins[j].color-1] == 1) // already have? then reward coins! - { - gold_stack += 6.f; - silver_stack += 6.f; - } - else - trophies[coins[j].color-1] = 1; - } - else - { - if(coins[j].color == 0) - silver_stack += 1.f; - else if(coins[j].color == 1) - silver_stack += 2.f; - } - - coins[j].color = -1; - } - } - } - else if(coins[j].y >= 4.31457f) // gold goal - { - if(coins[j].x >= -0.584316f && coins[j].x <= 0.584316f) - { - if(j >= 0 && j <= 3) - { - if(trophies[coins[j].color-1] == 1) // already have? then reward coins! - { - gold_stack += 6.f; - silver_stack += 6.f; - } - else - trophies[coins[j].color-1] = 1; - } - else - { - if(coins[j].color == 0) - gold_stack += 1.f; - else if(coins[j].color == 1) - gold_stack += 2.f; - } - - coins[j].color = -1; - } - else - { - if(j >= 0 && j <= 3) - { - if(trophies[coins[j].color-1] == 1) // already have? then reward coins! - { - gold_stack += 6.f; - silver_stack += 6.f; - } - else - trophies[coins[j].color-1] = 1; - } - else - silver_stack += 1.f; - - coins[j].color = -1; - } - } - - was_collision++; - } - } - } - return was_collision; -} - -void newGame() -{ - // seed randoms - srand(time(0)); - - // defaults - gold_stack = 64.f; - silver_stack = 64.f; - active_coin = 0; - inmotion = 0; - gameover = 0; - trophies[0] = 0; - trophies[1] = 0; - trophies[2] = 0; - trophies[3] = 0; - trophies[4] = 0; - trophies[5] = 0; - for(int i=0; i < MAX_COINS; i++) - { - coins[i].color = -1; - coins[i].r = 0.3f; - } - - // trophies - for(int i=0; i < 3; i++) - { - coins[i].color = esRand(1, 6); - coins[i].r = 0.32f; - - coins[i].x = esRandFloat(-3.40863f, 3.40863f); - coins[i].y = esRandFloat(-4.03414f, 1.45439f-coins[i].r); - while(insidePitch(coins[i].x, coins[i].y, coins[i].r) == 0 || collision(i) == 1) - { - coins[i].x = esRandFloat(-3.40863f, 3.40863f); - coins[i].y = esRandFloat(-4.03414f, 1.45439f-coins[i].r); - } - } - - // coins - const f32 lt = f32Time(); - for(int i=3; i < MAX_COINS; i++) - { - coins[i].x = esRandFloat(-3.40863f, 3.40863f); - coins[i].y = esRandFloat(-4.03414f, 1.45439f-coins[i].r); - uint tl = 0; - while(insidePitch(coins[i].x, coins[i].y, coins[i].r) == 0 || collision(i) == 1) - { - coins[i].x = esRandFloat(-3.40863f, 3.40863f); - coins[i].y = esRandFloat(-4.03414f, 1.45439f-coins[i].r); - if(f32Time()-lt > 0.033){tl=1;break;} // 33ms timeout - } - if(tl==1){break;} - coins[i].color = esRand(0, 4); - if(coins[i].color > 1){coins[i].color = 0;} - } - - // const int mc2 = MAX_COINS/2; - // for(int i=3; i < mc2; i++) - // { - // coins[i].x = esRandFloat(-3.40863f, 3.40863f); - // coins[i].y = esRandFloat(-4.03414f, 1.45439f-coins[i].r); - // while(insidePitch(coins[i].x, coins[i].y, coins[i].r) == 0 || collision(i) == 1) - // { - // coins[i].x = esRandFloat(-3.40863f, 3.40863f); - // coins[i].y = esRandFloat(-4.03414f, 1.45439f-coins[i].r); - // } - // coins[i].color = esRand(0, 4); - // if(coins[i].color > 1){coins[i].color = 0;} - // } -} - -//************************************* -// render functions -//************************************* -forceinline void modelBind1(const ESModel* mdl) -{ - glBindBuffer(GL_ARRAY_BUFFER, mdl->vid); - glVertexAttribPointer(position_id, 3, GL_FLOAT, GL_FALSE, 0, 0); - glEnableVertexAttribArray(position_id); - - glBindBuffer(GL_ARRAY_BUFFER, mdl->nid); - glVertexAttribPointer(normal_id, 3, GL_FLOAT, GL_FALSE, 0, 0); - glEnableVertexAttribArray(normal_id); - - glBindBuffer(GL_ELEMENT_ARRAY_BUFFER, mdl->iid); -} - -forceinline void modelBind3(const ESModel* mdl) -{ - glBindBuffer(GL_ARRAY_BUFFER, mdl->cid); - glVertexAttribPointer(color_id, 3, GL_FLOAT, GL_FALSE, 0, 0); - glEnableVertexAttribArray(color_id); - - glBindBuffer(GL_ARRAY_BUFFER, mdl->vid); - glVertexAttribPointer(position_id, 3, GL_FLOAT, GL_FALSE, 0, 0); - glEnableVertexAttribArray(position_id); - - glBindBuffer(GL_ARRAY_BUFFER, mdl->nid); - glVertexAttribPointer(normal_id, 3, GL_FLOAT, GL_FALSE, 0, 0); - glEnableVertexAttribArray(normal_id); - - glBindBuffer(GL_ELEMENT_ARRAY_BUFFER, mdl->iid); -} - -//************************************* -// emscripten/gl functions -//************************************* -void doPerspective() -{ - glViewport(0, 0, winw, winh); - - ww = winw; - wh = winh; - if(ortho == 1){touch_margin = ww*0.3076923192f;} - else{touch_margin = ww*0.2058590651f;} - rww = 1.f/(ww-touch_margin*2.f); - rwh = 1.f/wh; - ww2 = ww/2.f; - wh2 = wh/2.f; - uw = aspect / ww; - uh = 1.f / wh; - uw2 = aspect / ww2; - uh2 = 1.f / wh2; - - mIdent(&projection); - - if(ortho == 1) - mOrtho(&projection, -5.0f, 5.0f, -3.2f, 3.4f, 0.01f, 320.f); - else - { - if(winw > winh) - aspect = ww / wh; - else - aspect = wh / ww; - mPerspective(&projection, 30.0f, aspect, 0.1f, 320.f); - } - -} - -//************************************* -// update & render -//************************************* -void main_loop() -{ -//************************************* -// time delta for interpolation -//************************************* - static f32 lt = 0; - t = f32Time(); - dt = t-lt; - lt = t; - -//************************************* -// input handling -//************************************* - SDL_Event event; - while(SDL_PollEvent(&event)) - { - switch(event.type) - { - case SDL_MOUSEMOTION: - { - mx = event.motion.x; - my = event.motion.y; - } - break; - - case SDL_MOUSEBUTTONDOWN: - { - if(inmotion == 0 && event.button.button == SDL_BUTTON_LEFT) - { - if(gameover > 0) - { - if(f32Time() > gameover+3.0) - { - newGame(); - if(PUSH_SPEED < 32.f) // why not - { - PUSH_SPEED += 1.f; - char titlestr[256]; - sprintf(titlestr, "TuxPusher [%.1f]", PUSH_SPEED); - SDL_SetWindowTitle(wnd, titlestr); - } - } - return; - } - takeStack(); - md = 1; - } - - if(event.button.button == SDL_BUTTON_RIGHT) - { - static uint cs = 1; - cs = 1 - cs; - if(cs == 0) - SDL_ShowCursor(0); - else - SDL_ShowCursor(1); - } - } - break; - - case SDL_MOUSEBUTTONUP: - { - if(event.button.button == SDL_BUTTON_LEFT) - { - inmotion = 1; - md = 0; - } - } - break; - - case SDL_KEYDOWN: - { - if(event.key.keysym.sym == SDLK_f) - { - if(t-lfct > 2.0) - { - char strts[16]; - timestamp(&strts[0]); - const f32 nfps = fc/(t-lfct); - printf("[%s] FPS: %g\n", strts, nfps); - lfct = t; - fc = 0; - } - } - else if(event.key.keysym.sym == SDLK_c) - { - ortho = 1 - ortho; - doPerspective(); - } - } - break; - - case SDL_WINDOWEVENT: - { - if(event.window.event == SDL_WINDOWEVENT_RESIZED) - { - winw = event.window.data1; - winh = event.window.data2; - doPerspective(); - } - } - break; - - case SDL_QUIT: - { - SDL_GL_DeleteContext(glc); - SDL_FreeSurface(s_icon); - SDL_FreeCursor(cross_cursor); - SDL_FreeCursor(beam_cursor); - SDL_DestroyWindow(wnd); - SDL_Quit(); - exit(0); - } - break; - } - } - -//************************************* -// begin render -//************************************* - glClear(GL_COLOR_BUFFER_BIT | GL_DEPTH_BUFFER_BIT); - -//************************************* -// main render -//************************************* - - // cursor - if(cursor_state == 0 && mx < touch_margin-1) - { - SDL_SetCursor(beam_cursor); - cursor_state = 1; - } - else if(cursor_state == 0 && mx > ww-touch_margin+1) - { - SDL_SetCursor(beam_cursor); - cursor_state = 1; - } - else if(cursor_state == 1 && mx > touch_margin && mx < ww-touch_margin) - { - SDL_SetCursor(cross_cursor); - cursor_state = 0; - } - - // camera - mIdent(&view); - mTranslate(&view, 0.f, 0.f, -13.f); - if(ortho == 1) - mRotY(&view, 50.f*DEG2RAD); - else - mRotY(&view, 62.f*DEG2RAD); - - // inject a new figure if time has come - injectFigure(); - - // prep scene for rendering - shadeLambert3(&position_id, &projection_id, &modelview_id, &lightpos_id, &normal_id, &color_id, &opacity_id); - glUniformMatrix4fv(projection_id, 1, GL_FALSE, (f32*) &projection.m[0][0]); - glUniform3f(lightpos_id, lightpos.x, lightpos.y, lightpos.z); - glUniform1f(opacity_id, 0.148f); - - // render scene - glUniformMatrix4fv(modelview_id, 1, GL_FALSE, (f32*) &view.m[0][0]); - modelBind3(&mdlScene); - glDrawElements(GL_TRIANGLES, scene_numind, GL_UNSIGNED_SHORT, 0); - - // detect gameover - if(gold_stack < 0.f){gold_stack = 0.f;} - if(silver_stack < 0.f){silver_stack = 0.f;} - if(gameover > 0 && (gold_stack != 0.f || silver_stack != 0.f)) - { - gameover = 0; - } - else if(gold_stack == 0.f && silver_stack == 0.f) - { - if(gameover == 0) - gameover = t+3.0; - } - - // render game over - if(gameover > 0 && t > gameover) - { - modelBind3(&mdlGameover); - glDrawElements(GL_TRIANGLES, gameover_numind, GL_UNSIGNED_SHORT, 0); - } - - // prep pieces for rendering - shadeLambert1(&position_id, &projection_id, &modelview_id, &lightpos_id, &normal_id, &color_id, &opacity_id); - glUniformMatrix4fv(projection_id, 1, GL_FALSE, (f32*) &projection.m[0][0]); - glUniform3f(lightpos_id, lightpos.x, lightpos.y, lightpos.z); - glUniform1f(opacity_id, 0.148f); - - // coin - modelBind1(&mdlCoin); - - // targeting coin - if(gold_stack > 0.f || silver_stack > 0.f) - { - if(coins[active_coin].color == 1) - glUniform3f(color_id, 0.76471f, 0.63529f, 0.18824f); - else - glUniform3f(color_id, 0.68235f, 0.70196f, 0.72941f); - if(md == 1) - { - if(mx < touch_margin) - { - coins[active_coin].x = -1.90433f; - coins[active_coin].y = -4.54055f; - } - else if(mx > ww-touch_margin) - { - coins[active_coin].x = 1.90433f; - coins[active_coin].y = -4.54055f; - } - else - { - coins[active_coin].x = -1.90433f+(((mx-touch_margin)*rww)*3.80866f); - coins[active_coin].y = -4.54055f; - } - } - else if(inmotion == 0) - { - if(silver_stack > 0.f) - glUniform3f(color_id, 0.68235f, 0.70196f, 0.72941f); - else - glUniform3f(color_id, 0.76471f, 0.63529f, 0.18824f); - - mIdent(&model); - - if(mx < touch_margin) - mTranslate(&model, -1.90433f, -4.54055f, 0); - else if(mx > ww-touch_margin) - mTranslate(&model, 1.90433f, -4.54055f, 0); - else - mTranslate(&model, -1.90433f+(((mx-touch_margin)*rww)*3.80866f), -4.54055f, 0); - - mMul(&modelview, &model, &view); - glUniformMatrix4fv(modelview_id, 1, GL_FALSE, (f32*) &modelview.m[0][0]); - glDrawElements(GL_TRIANGLES, coin_numind, GL_UNSIGNED_SHORT, 0); - } - } - - // do motion - if(inmotion == 1) - { - if(coins[active_coin].y < -3.73414f) - { - coins[active_coin].y += PUSH_SPEED * dt; - for(int i=0; i < 6; i++) // six seems enough - stepCollisions(); - } - else - { - inmotion = 0; - - if(isnewcoin > 0) - { - if(isnewcoin == 1) - silver_stack -= 1.f; - else - gold_stack -= 1.f; - - isnewcoin = 0; - } - } - } - - // gold stack - glUniform3f(color_id, 0.76471f, 0.63529f, 0.18824f); - f32 gss = gold_stack; - if(silver_stack == 0.f){gss -= 1.f;} - if(gss < 0.f){gss = 0.f;} - for(f32 i = 0.f; i < gss; i += 1.f) - { - mIdent(&model); - if(ortho == 0) - mTranslate(&model, -2.62939f, -4.54055f, 0.0406f*i); - else - mTranslate(&model, -4.62939f, -4.54055f, 0.0406f*i); - mMul(&modelview, &model, &view); - glUniformMatrix4fv(modelview_id, 1, GL_FALSE, (f32*) &modelview.m[0][0]); - glDrawElements(GL_TRIANGLES, coin_numind, GL_UNSIGNED_SHORT, 0); - } - - // silver stack - glUniform3f(color_id, 0.68235f, 0.70196f, 0.72941f); - f32 sss = silver_stack-1.f; - if(sss < 0.f){sss = 0.f;} - for(f32 i = 0.f; i < sss; i += 1.f) - { - mIdent(&model); - if(ortho == 0) - mTranslate(&model, 2.62939f, -4.54055f, 0.0406f*i); - else - mTranslate(&model, 4.62939f, -4.54055f, 0.0406f*i); - mMul(&modelview, &model, &view); - glUniformMatrix4fv(modelview_id, 1, GL_FALSE, (f32*) &modelview.m[0][0]); - glDrawElements(GL_TRIANGLES, coin_numind, GL_UNSIGNED_SHORT, 0); - } - - // pitch coins - for(int i=3; i < MAX_COINS; i++) - { - if(coins[i].color == -1) - continue; - - if(coins[i].color == 0) - glUniform3f(color_id, 0.68235f, 0.70196f, 0.72941f); - else - glUniform3f(color_id, 0.76471f, 0.63529f, 0.18824f); - - mIdent(&model); - mTranslate(&model, coins[i].x, coins[i].y, 0.f); - mMul(&modelview, &model, &view); - glUniformMatrix4fv(modelview_id, 1, GL_FALSE, (f32*) &modelview.m[0][0]); - glDrawElements(GL_TRIANGLES, coin_numind, GL_UNSIGNED_SHORT, 0); - } - - // tux is fancy - shadeLambert3(&position_id, &projection_id, &modelview_id, &lightpos_id, &normal_id, &color_id, &opacity_id); - glUniformMatrix4fv(projection_id, 1, GL_FALSE, (f32*) &projection.m[0][0]); - glUniform3f(lightpos_id, lightpos.x, lightpos.y, lightpos.z); - glUniform1f(opacity_id, 0.148f); - - // trophies - for(int i=0; i < 3; i++) - { - if(coins[i].color == 1) - { - mIdent(&model); - mTranslate(&model, coins[i].x, coins[i].y, 0.f); - mMul(&modelview, &model, &view); - - glUniform1f(opacity_id, 0.148f); - modelBind3(&mdlTux); - glUniformMatrix4fv(modelview_id, 1, GL_FALSE, (f32*) &modelview.m[0][0]); - glDrawElements(GL_TRIANGLES, tux_numind, GL_UNSIGNED_SHORT, 0); - } - else if(coins[i].color == 2) - { - mIdent(&model); - mTranslate(&model, coins[i].x, coins[i].y, 0.f); - mMul(&modelview, &model, &view); - glUniformMatrix4fv(modelview_id, 1, GL_FALSE, (f32*) &modelview.m[0][0]); - - glUniform1f(opacity_id, 0.148f); - modelBind3(&mdlTux); - glDrawElements(GL_TRIANGLES, tux_numind, GL_UNSIGNED_SHORT, 0); - - glUniform1f(opacity_id, 0.5f); - modelBind3(&mdlEvil); - glDrawElements(GL_TRIANGLES, evil_numind, GL_UNSIGNED_BYTE, 0); - } - else if(coins[i].color == 3) - { - mIdent(&model); - mTranslate(&model, coins[i].x, coins[i].y, 0.f); - mMul(&modelview, &model, &view); - glUniformMatrix4fv(modelview_id, 1, GL_FALSE, (f32*) &modelview.m[0][0]); - - glUniform1f(opacity_id, 0.148f); - modelBind3(&mdlTux); - glDrawElements(GL_TRIANGLES, tux_numind, GL_UNSIGNED_SHORT, 0); - - glUniform1f(opacity_id, 0.6f); - modelBind3(&mdlKing); - glDrawElements(GL_TRIANGLES, king_numind, GL_UNSIGNED_BYTE, 0); - } - else if(coins[i].color == 4) - { - mIdent(&model); - mTranslate(&model, coins[i].x, coins[i].y, 0.f); - mMul(&modelview, &model, &view); - glUniformMatrix4fv(modelview_id, 1, GL_FALSE, (f32*) &modelview.m[0][0]); - - glUniform1f(opacity_id, 0.148f); - modelBind3(&mdlTux); - glDrawElements(GL_TRIANGLES, tux_numind, GL_UNSIGNED_SHORT, 0); - - modelBind3(&mdlNinja); - glDrawElements(GL_TRIANGLES, ninja_numind, GL_UNSIGNED_BYTE, 0); - } - else if(coins[i].color == 5) - { - mIdent(&model); - mTranslate(&model, coins[i].x, coins[i].y, 0.f); - mMul(&modelview, &model, &view); - glUniformMatrix4fv(modelview_id, 1, GL_FALSE, (f32*) &modelview.m[0][0]); - - glUniform1f(opacity_id, 0.148f); - modelBind3(&mdlTux); - glDrawElements(GL_TRIANGLES, tux_numind, GL_UNSIGNED_SHORT, 0); - - glUniform1f(opacity_id, 0.4f); - modelBind3(&mdlSurf); - glDrawElements(GL_TRIANGLES, surf_numind, GL_UNSIGNED_BYTE, 0); - } - else if(coins[i].color == 6) - { - mIdent(&model); - mTranslate(&model, coins[i].x, coins[i].y, 0.f); - mMul(&modelview, &model, &view); - glUniformMatrix4fv(modelview_id, 1, GL_FALSE, (f32*) &modelview.m[0][0]); - - glUniform1f(opacity_id, 0.148f); - modelBind3(&mdlTux); - glDrawElements(GL_TRIANGLES, tux_numind, GL_UNSIGNED_SHORT, 0); - - glUniform1f(opacity_id, 0.5f); - modelBind3(&mdlTrip); - glDrawElements(GL_TRIANGLES, trip_numind, GL_UNSIGNED_SHORT, 0); - } - } - - // - - if(trophies[0] == 1) - { - mIdent(&model); - mTranslate(&model, 3.92732f, 1.0346f, 0.f); - mRotZ(&model, t*0.3f); - mMul(&modelview, &model, &view); - glUniformMatrix4fv(modelview_id, 1, GL_FALSE, (f32*) &modelview.m[0][0]); - - glUniform1f(opacity_id, 0.148f); - modelBind3(&mdlTux); - glDrawElements(GL_TRIANGLES, tux_numind, GL_UNSIGNED_SHORT, 0); - } - - if(trophies[1] == 1) - { - mIdent(&model); - mTranslate(&model, 3.65552f, -1.30202f, 0.f); - mRotZ(&model, t*0.3f); - mMul(&modelview, &model, &view); - glUniformMatrix4fv(modelview_id, 1, GL_FALSE, (f32*) &modelview.m[0][0]); - - glUniform1f(opacity_id, 0.148f); - modelBind3(&mdlTux); - glDrawElements(GL_TRIANGLES, tux_numind, GL_UNSIGNED_SHORT, 0); - - glUniform1f(opacity_id, 0.5f); - modelBind3(&mdlEvil); - glDrawElements(GL_TRIANGLES, evil_numind, GL_UNSIGNED_BYTE, 0); - } - - if(trophies[2] == 1) - { - mIdent(&model); - mTranslate(&model, 3.01911f, -3.23534f, 0.f); - mRotZ(&model, t*0.3f); - mMul(&modelview, &model, &view); - glUniformMatrix4fv(modelview_id, 1, GL_FALSE, (f32*) &modelview.m[0][0]); - - glUniform1f(opacity_id, 0.148f); - modelBind3(&mdlTux); - glDrawElements(GL_TRIANGLES, tux_numind, GL_UNSIGNED_SHORT, 0); - - glUniform1f(opacity_id, 0.6f); - modelBind3(&mdlKing); - glDrawElements(GL_TRIANGLES, king_numind, GL_UNSIGNED_BYTE, 0); - } - - if(trophies[3] == 1) - { - mIdent(&model); - mTranslate(&model, -3.92732f, 1.0346f, 0.f); - mRotZ(&model, t*0.3f); - mMul(&modelview, &model, &view); - glUniformMatrix4fv(modelview_id, 1, GL_FALSE, (f32*) &modelview.m[0][0]); - - glUniform1f(opacity_id, 0.148f); - modelBind3(&mdlTux); - glDrawElements(GL_TRIANGLES, tux_numind, GL_UNSIGNED_SHORT, 0); - - modelBind3(&mdlNinja); - glDrawElements(GL_TRIANGLES, ninja_numind, GL_UNSIGNED_BYTE, 0); - } - - if(trophies[4] == 1) - { - mIdent(&model); - mTranslate(&model, -3.65552f, -1.30202f, 0.f); - mRotZ(&model, t*0.3f); - mMul(&modelview, &model, &view); - glUniformMatrix4fv(modelview_id, 1, GL_FALSE, (f32*) &modelview.m[0][0]); - - glUniform1f(opacity_id, 0.148f); - modelBind3(&mdlTux); - glDrawElements(GL_TRIANGLES, tux_numind, GL_UNSIGNED_SHORT, 0); - - glUniform1f(opacity_id, 0.4f); - modelBind3(&mdlSurf); - glDrawElements(GL_TRIANGLES, surf_numind, GL_UNSIGNED_BYTE, 0); - } - - if(trophies[5] == 1) - { - mIdent(&model); - mTranslate(&model, -3.01911f, -3.23534f, 0.f); - mRotZ(&model, t*0.3f); - mMul(&modelview, &model, &view); - glUniformMatrix4fv(modelview_id, 1, GL_FALSE, (f32*) &modelview.m[0][0]); - - glUniform1f(opacity_id, 0.148f); - modelBind3(&mdlTux); - glDrawElements(GL_TRIANGLES, tux_numind, GL_UNSIGNED_SHORT, 0); - - glUniform1f(opacity_id, 0.5f); - modelBind3(&mdlTrip); - glDrawElements(GL_TRIANGLES, trip_numind, GL_UNSIGNED_SHORT, 0); - } - -//************************************* -// swap buffers / display render -//************************************* - SDL_GL_SwapWindow(wnd); -} - -//************************************* -// Process Entry Point -//************************************* -SDL_Surface* surfaceFromData(const Uint32* data, Uint32 w, Uint32 h) -{ - SDL_Surface* s = SDL_CreateRGBSurfaceWithFormat(0, w, h, 32, SDL_PIXELFORMAT_RGBA32); - memcpy(s->pixels, data, s->pitch*h); - return s; -} -void printAttrib(SDL_GLattr attr, char* name) -{ - int i; - SDL_GL_GetAttribute(attr, &i); - printf("%s: %i\n", name, i); -} -int main(int argc, char** argv) -{ - // allow custom msaa level - int msaa = 16; - if(argc >= 2){msaa = atoi(argv[1]);} - - // help - printf("----\n"); - printf("TuxPusher\n"); - printf("----\n"); - printf("James William Fletcher (github.com/mrbid)\n"); - printf("----\n"); - printf("Argv(2): msaa, speed\n"); - printf("e.g; ./uc 16 1.6\n"); - printf("----\n"); - printf("Left Click = Release coin\n"); - printf("Right Click = Show/hide cursor\n"); - printf("C = Orthographic/Perspective\n"); - printf("F = FPS to console\n"); - printf("----\n"); - printf("Tux 3D model by Andy Cuccaro:\n"); - printf("https://sketchfab.com/3d-models/tux-157de95fa4014050a969a8361a83d366\n"); - printf("----\n"); - printf("Rules:\n"); - printf("Getting a gold coin in a silver slot rewards you 2x silver coins.\n"); - printf("Getting a gold coin in a gold slot rewards you 2x gold coins.\n"); - printf("Getting a tux in a slot when you already have the tux gives you 6x gold coins and 6x silver coins.\n"); - printf("----\n"); - - // init sdl - if(SDL_Init(SDL_INIT_VIDEO|SDL_INIT_EVENTS) < 0) //SDL_INIT_AUDIO - { - fprintf(stderr, "ERROR: SDL_Init(): %s\n", SDL_GetError()); - return 1; - } - SDL_GL_SetAttribute(SDL_GL_MULTISAMPLEBUFFERS, 1); - SDL_GL_SetAttribute(SDL_GL_MULTISAMPLESAMPLES, msaa); - SDL_GL_SetAttribute(SDL_GL_CONTEXT_MAJOR_VERSION, 2); - SDL_GL_SetAttribute(SDL_GL_CONTEXT_MINOR_VERSION, 0); - SDL_GL_SetAttribute(SDL_GL_CONTEXT_PROFILE_MASK, SDL_GL_CONTEXT_PROFILE_ES); - wnd = SDL_CreateWindow(appTitle, SDL_WINDOWPOS_CENTERED, SDL_WINDOWPOS_CENTERED, winw, winh, SDL_WINDOW_RESIZABLE | SDL_WINDOW_OPENGL | SDL_WINDOW_SHOWN); - if(wnd == NULL) - { - printf("ERROR: SDL_Init(): %s\n", SDL_GetError()); - return 1; - } - SDL_GL_SetSwapInterval(1); // 0 for immediate updates, 1 for updates synchronized with the vertical retrace, -1 for adaptive vsync - glc = SDL_GL_CreateContext(wnd); - if(glc == NULL) - { - printf("ERROR: SDL_GL_CreateContext(): %s\n", SDL_GetError()); - return 1; - } - - // set cursors - cross_cursor = SDL_CreateSystemCursor(SDL_SYSTEM_CURSOR_CROSSHAIR); - beam_cursor = SDL_CreateSystemCursor(SDL_SYSTEM_CURSOR_IBEAM); - SDL_SetCursor(cross_cursor); - - // set icon - s_icon = surfaceFromData((Uint32*)&icon_image.pixel_data[0], 16, 16); - SDL_SetWindowIcon(wnd, s_icon); - - // set game push speed - PUSH_SPEED = 1.6f; - if(argc >= 3) - { - PUSH_SPEED = atof(argv[2]); - if(PUSH_SPEED > 32.f){PUSH_SPEED = 32.f;} - char titlestr[256]; - sprintf(titlestr, "TuxPusher [%.1f]", PUSH_SPEED); - SDL_SetWindowTitle(wnd, titlestr); - } - - // debug -#ifdef GL_DEBUG - esDebug(1); -#endif - - // dump some info - printAttrib(SDL_GL_DOUBLEBUFFER, "GL_DOUBLEBUFFER"); - printAttrib(SDL_GL_DEPTH_SIZE, "GL_DEPTH_SIZE"); - printAttrib(SDL_GL_RED_SIZE, "GL_RED_SIZE"); - printAttrib(SDL_GL_GREEN_SIZE, "GL_GREEN_SIZE"); - printAttrib(SDL_GL_BLUE_SIZE, "GL_BLUE_SIZE"); - printAttrib(SDL_GL_ALPHA_SIZE, "GL_ALPHA_SIZE"); - printAttrib(SDL_GL_BUFFER_SIZE, "GL_BUFFER_SIZE"); - printAttrib(SDL_GL_DOUBLEBUFFER, "GL_DOUBLEBUFFER"); - printAttrib(SDL_GL_DEPTH_SIZE, "GL_DEPTH_SIZE"); - printAttrib(SDL_GL_STENCIL_SIZE, "GL_STENCIL_SIZE"); - printAttrib(SDL_GL_ACCUM_RED_SIZE, "GL_ACCUM_RED_SIZE"); - printAttrib(SDL_GL_ACCUM_GREEN_SIZE, "GL_ACCUM_GREEN_SIZE"); - printAttrib(SDL_GL_ACCUM_BLUE_SIZE, "GL_ACCUM_BLUE_SIZE"); - printAttrib(SDL_GL_ACCUM_ALPHA_SIZE, "GL_ACCUM_ALPHA_SIZE"); - printAttrib(SDL_GL_STEREO, "GL_STEREO"); - printAttrib(SDL_GL_MULTISAMPLEBUFFERS, "GL_MULTISAMPLEBUFFERS"); - printAttrib(SDL_GL_MULTISAMPLESAMPLES, "GL_MULTISAMPLESAMPLES"); - printAttrib(SDL_GL_ACCELERATED_VISUAL, "GL_ACCELERATED_VISUAL"); - printAttrib(SDL_GL_RETAINED_BACKING, "GL_RETAINED_BACKING"); - printAttrib(SDL_GL_CONTEXT_MAJOR_VERSION, "GL_CONTEXT_MAJOR_VERSION"); - printAttrib(SDL_GL_CONTEXT_MINOR_VERSION, "GL_CONTEXT_MINOR_VERSION"); - printAttrib(SDL_GL_CONTEXT_FLAGS, "GL_CONTEXT_FLAGS"); - printAttrib(SDL_GL_CONTEXT_PROFILE_MASK, "GL_CONTEXT_PROFILE_MASK"); - printAttrib(SDL_GL_SHARE_WITH_CURRENT_CONTEXT, "GL_SHARE_WITH_CURRENT_CONTEXT"); - printAttrib(SDL_GL_FRAMEBUFFER_SRGB_CAPABLE, "GL_FRAMEBUFFER_SRGB_CAPABLE"); - printAttrib(SDL_GL_CONTEXT_RELEASE_BEHAVIOR, "GL_CONTEXT_RELEASE_BEHAVIOR"); - printAttrib(SDL_GL_CONTEXT_EGL, "GL_CONTEXT_EGL"); - - printf("----\n"); - - SDL_version compiled; - SDL_version linked; - SDL_VERSION(&compiled); - SDL_GetVersion(&linked); - printf("Compiled against SDL version %u.%u.%u.\n", compiled.major, compiled.minor, compiled.patch); - printf("Linked against SDL version %u.%u.%u.\n", linked.major, linked.minor, linked.patch); - - printf("----\n"); - -//************************************* -// bind vertex and index buffers -//************************************* - - // ***** BIND SCENE ***** - esBind(GL_ARRAY_BUFFER, &mdlScene.cid, scene_colors, sizeof(scene_colors), GL_STATIC_DRAW); - esBind(GL_ARRAY_BUFFER, &mdlScene.vid, scene_vertices, sizeof(scene_vertices), GL_STATIC_DRAW); - esBind(GL_ARRAY_BUFFER, &mdlScene.nid, scene_normals, sizeof(scene_normals), GL_STATIC_DRAW); - esBind(GL_ELEMENT_ARRAY_BUFFER, &mdlScene.iid, scene_indices, sizeof(scene_indices), GL_STATIC_DRAW); - - // ***** BIND GAMEOVER ***** - esBind(GL_ARRAY_BUFFER, &mdlGameover.cid, gameover_colors, sizeof(gameover_colors), GL_STATIC_DRAW); - esBind(GL_ARRAY_BUFFER, &mdlGameover.vid, gameover_vertices, sizeof(gameover_vertices), GL_STATIC_DRAW); - esBind(GL_ARRAY_BUFFER, &mdlGameover.nid, gameover_normals, sizeof(gameover_normals), GL_STATIC_DRAW); - esBind(GL_ELEMENT_ARRAY_BUFFER, &mdlGameover.iid, gameover_indices, sizeof(gameover_indices), GL_STATIC_DRAW); - - // ***** BIND COIN ***** - esBind(GL_ARRAY_BUFFER, &mdlCoin.vid, coin_vertices, sizeof(coin_vertices), GL_STATIC_DRAW); - esBind(GL_ARRAY_BUFFER, &mdlCoin.nid, coin_normals, sizeof(coin_normals), GL_STATIC_DRAW); - esBind(GL_ELEMENT_ARRAY_BUFFER, &mdlCoin.iid, coin_indices, sizeof(coin_indices), GL_STATIC_DRAW); - - // ***** BIND TUX ***** - esBind(GL_ARRAY_BUFFER, &mdlTux.cid, tux_colors, sizeof(tux_colors), GL_STATIC_DRAW); - esBind(GL_ARRAY_BUFFER, &mdlTux.vid, tux_vertices, sizeof(tux_vertices), GL_STATIC_DRAW); - esBind(GL_ARRAY_BUFFER, &mdlTux.nid, tux_normals, sizeof(tux_normals), GL_STATIC_DRAW); - esBind(GL_ELEMENT_ARRAY_BUFFER, &mdlTux.iid, tux_indices, sizeof(tux_indices), GL_STATIC_DRAW); - - // ***** BIND TUX - EVIL ***** - esBind(GL_ARRAY_BUFFER, &mdlEvil.cid, evil_colors, sizeof(evil_colors), GL_STATIC_DRAW); - esBind(GL_ARRAY_BUFFER, &mdlEvil.vid, evil_vertices, sizeof(evil_vertices), GL_STATIC_DRAW); - esBind(GL_ARRAY_BUFFER, &mdlEvil.nid, evil_normals, sizeof(evil_normals), GL_STATIC_DRAW); - esBind(GL_ELEMENT_ARRAY_BUFFER, &mdlEvil.iid, evil_indices, sizeof(evil_indices), GL_STATIC_DRAW); - - // ***** BIND TUX - KING ***** - esBind(GL_ARRAY_BUFFER, &mdlKing.cid, king_colors, sizeof(king_colors), GL_STATIC_DRAW); - esBind(GL_ARRAY_BUFFER, &mdlKing.vid, king_vertices, sizeof(king_vertices), GL_STATIC_DRAW); - esBind(GL_ARRAY_BUFFER, &mdlKing.nid, king_normals, sizeof(king_normals), GL_STATIC_DRAW); - esBind(GL_ELEMENT_ARRAY_BUFFER, &mdlKing.iid, king_indices, sizeof(king_indices), GL_STATIC_DRAW); - - // ***** BIND TUX - NINJA ***** - esBind(GL_ARRAY_BUFFER, &mdlNinja.cid, ninja_colors, sizeof(ninja_colors), GL_STATIC_DRAW); - esBind(GL_ARRAY_BUFFER, &mdlNinja.vid, ninja_vertices, sizeof(ninja_vertices), GL_STATIC_DRAW); - esBind(GL_ARRAY_BUFFER, &mdlNinja.nid, ninja_normals, sizeof(ninja_normals), GL_STATIC_DRAW); - esBind(GL_ELEMENT_ARRAY_BUFFER, &mdlNinja.iid, ninja_indices, sizeof(ninja_indices), GL_STATIC_DRAW); - - // ***** BIND TUX - SURF ***** - esBind(GL_ARRAY_BUFFER, &mdlSurf.cid, surf_colors, sizeof(surf_colors), GL_STATIC_DRAW); - esBind(GL_ARRAY_BUFFER, &mdlSurf.vid, surf_vertices, sizeof(surf_vertices), GL_STATIC_DRAW); - esBind(GL_ARRAY_BUFFER, &mdlSurf.nid, surf_normals, sizeof(surf_normals), GL_STATIC_DRAW); - esBind(GL_ELEMENT_ARRAY_BUFFER, &mdlSurf.iid, surf_indices, sizeof(surf_indices), GL_STATIC_DRAW); - - // ***** BIND TUX - TRIP ***** - esBind(GL_ARRAY_BUFFER, &mdlTrip.cid, trip_colors, sizeof(trip_colors), GL_STATIC_DRAW); - esBind(GL_ARRAY_BUFFER, &mdlTrip.vid, trip_vertices, sizeof(trip_vertices), GL_STATIC_DRAW); - esBind(GL_ARRAY_BUFFER, &mdlTrip.nid, trip_normals, sizeof(trip_normals), GL_STATIC_DRAW); - esBind(GL_ELEMENT_ARRAY_BUFFER, &mdlTrip.iid, trip_indices, sizeof(trip_indices), GL_STATIC_DRAW); - -//************************************* -// compile & link shader program -//************************************* - - makeLambert1(); - makeLambert3(); - -//************************************* -// configure render options -//************************************* - - glEnable(GL_CULL_FACE); - glEnable(GL_DEPTH_TEST); - glClearColor(0.52941f, 0.80784f, 0.92157f, 0.0f); - -//************************************* -// execute update / render loop -//************************************* - - // new game - doPerspective(); - newGame(); - - // init - t = f32Time(); - lfct = t; - - // event loop - while(1){main_loop();fc++;} - return 0; -} - diff --git a/TuxPusher_SDL/makefile b/TuxPusher_SDL/makefile deleted file mode 100644 index dcfe9ea..0000000 --- a/TuxPusher_SDL/makefile +++ /dev/null @@ -1,35 +0,0 @@ -CC ?= cc -INCLUDE_HEADERS = -I ../inc -LINK_DEPS = -lSDL2 -lGLESv2 -lEGL -CFLAGS ?= -Ofast -LDFLAGS = -lm - -ifeq ($(PREFIX),) - PREFIX := /usr/local -endif - -ifneq ($(LDFLAGS),) -LINK_DEPS += $(LDFLAGS) -endif - -.PHONY: all - -all: tuxpusher - -tuxpusher: tuxpusher.o - $(CC) $(CFLAGS) $(LDFLAGS) main.o \ - $(INCLUDE_HEADERS) $(LINK_DEPS) \ - -o tuxpusher - -tuxpusher.o: main.c - $(CC) $(CFLAGS) $(LDFLAGS) -c main.c \ - $(INCLUDE_HEADERS) $(LINK_DEPS) - -install: - install -Dm 0755 tuxpusher -t $(DESTDIR)$(PREFIX)/bin - -uninstall: - rm $(DESTDIR)$(PREFIX)/bin/tuxpusher - -clean: - rm -f *.o tuxpusher diff --git a/TuxPusher_SDL/release.sh b/TuxPusher_SDL/release.sh deleted file mode 100755 index b674fb1..0000000 --- a/TuxPusher_SDL/release.sh +++ /dev/null @@ -1,3 +0,0 @@ -./compile.sh -strip --strip-unneeded tux -upx --lzma --best tux \ No newline at end of file diff --git a/assets/attrib b/assets/attrib deleted file mode 100644 index 2e568ef..0000000 --- a/assets/attrib +++ /dev/null @@ -1 +0,0 @@ -https://sketchfab.com/3d-models/tux-157de95fa4014050a969a8361a83d366 diff --git a/assets/ga.h b/assets/ga.h new file mode 100644 index 0000000..9a8bae1 --- /dev/null +++ b/assets/ga.h @@ -0,0 +1,11 @@ + +#ifndef ga_H +#define ga_H + +const GLfloat ga_vertices[] = {0.26785,5.75856,0.746593,-0.26512,6.22499,1.54869,-0.26512,5.75856,0.746593,-0.26512,5.75856,0.746593,0.525663,5.7403,0.715203,0.26785,5.75856,0.746593,0.525663,5.7403,0.715203,-0.522933,5.7403,0.715203,0.001365,5.40709,0.142189,0.26785,6.22499,1.54869,-0.522933,5.7403,0.715203}; +const GLfloat ga_normals[] = {0,-0.864462,0.502698,0,-0.864462,0.502698,0,-0.864462,0.502698,0,-0.86446,0.502702,0,-0.86446,0.502702,0,-0.86446,0.502702,0,-0.864462,0.502698,0,-0.864462,0.502698,0,-0.864462,0.502698,0,-0.864462,0.502698,0,-0.86446,0.502702}; +const GLubyte ga_indices[] = {0,1,2,3,4,5,6,7,8,0,9,1,3,10,4}; +const GLsizeiptr ga_numind = 15; +const GLsizeiptr ga_numvert = 11; + +#endif diff --git a/assets/gameover.h b/assets/gameover.h index 1b62622..4975fbe 100644 --- a/assets/gameover.h +++ b/assets/gameover.h @@ -2,11 +2,29 @@ #ifndef gameover_H #define gameover_H -const GLfloat gameover_vertices[] = {0.974445,-3.12227,0.288853,0.999104,-3.11898,0.29301,0.984941,-3.11821,0.293978,1.00796,-3.12673,0.283221,0.971334,-3.1289,0.280489,1.00796,-3.12673,0.283221,0.974445,-3.12227,0.288853,0.971334,-3.1289,0.280489,1.00525,-3.13362,0.274522,1.00796,-3.12673,0.283221,0.975338,-3.13475,0.273105,1.00525,-3.13362,0.274522,0.971334,-3.1289,0.280489,0.975338,-3.13475,0.273105,0.996961,-3.13793,0.269087,1.00525,-3.13362,0.274522,0.984941,-3.13828,0.26864,0.996961,-3.13793,0.269087,0.975338,-3.13475,0.273105,0.862584,-3.05361,0.375513,0.904193,-3.05491,0.373879,0.880848,-3.05214,0.377371,0.851468,-3.05747,0.370645,0.904193,-3.05491,0.373879,0.862584,-3.05361,0.375513,0.872304,-3.05822,0.3697,0.890629,-3.05816,0.369772,0.851468,-3.05747,0.370645,0.890629,-3.05816,0.369772,0.904193,-3.05491,0.373879,0.851468,-3.05747,0.370645,0.890629,-3.05816,0.369772,0.916466,-3.06156,0.365482,0.904193,-3.05491,0.373879,0.851468,-3.05747,0.370645,0.861961,-3.06087,0.366357,0.872304,-3.05822,0.3697,0.908726,-3.06592,0.359986,0.916466,-3.06156,0.365482,0.890629,-3.05816,0.369772,0.908726,-3.06592,0.359986,0.921655,-3.06655,0.359188,0.916466,-3.06156,0.365482,0.851468,-3.05747,0.370645,0.85039,-3.07041,0.354308,0.861961,-3.06087,0.366357,0.834675,-3.06848,0.356754,0.85039,-3.07041,0.354308,0.851468,-3.05747,0.370645,0.827855,-3.07816,0.344536,0.85039,-3.07041,0.354308,0.834675,-3.06848,0.356754,0.827855,-3.07816,0.344536,0.85136,-3.07589,0.347398,0.85039,-3.07041,0.354308,0.913194,-3.07616,0.34705,0.921655,-3.06655,0.359188,0.908726,-3.06592,0.359986,0.913194,-3.07616,0.34705,0.927102,-3.07872,0.343818,0.921655,-3.06655,0.359188,0.827855,-3.07816,0.344536,0.913194,-3.07616,0.34705,0.85136,-3.07589,0.347398,0.827855,-3.07816,0.344536,0.927102,-3.07872,0.343818,0.913194,-3.07616,0.34705,0.827855,-3.07816,0.344536,0.925196,-3.08286,0.338601,0.927102,-3.07872,0.343818,0.824921,-3.08348,0.337817,0.925196,-3.08286,0.338601,0.827855,-3.07816,0.344536,0.824921,-3.08348,0.337817,0.845237,-3.0839,0.337283,0.925196,-3.08286,0.338601,0.824921,-3.08348,0.337817,0.842694,-3.08642,0.334107,0.845237,-3.0839,0.337283,0.825143,-3.09938,0.317752,0.842694,-3.08642,0.334107,0.824921,-3.08348,0.337817,0.825143,-3.09938,0.317752,0.842471,-3.09814,0.319315,0.842694,-3.08642,0.334107,0.828382,-3.10931,0.305214,0.842471,-3.09814,0.319315,0.825143,-3.09938,0.317752,0.828382,-3.10931,0.305214,0.846732,-3.11403,0.29926,0.842471,-3.09814,0.319315,0.91307,-3.11435,0.298847,0.924699,-3.11583,0.296979,0.920067,-3.11361,0.299788,0.840263,-3.12437,0.286206,0.846732,-3.11403,0.29926,0.828382,-3.10931,0.305214,0.91307,-3.11435,0.298847,0.924859,-3.12147,0.289863,0.924699,-3.11583,0.296979,0.840263,-3.12437,0.286206,0.855302,-3.12479,0.285672,0.846732,-3.11403,0.29926,0.902569,-3.12568,0.28455,0.924859,-3.12147,0.289863,0.91307,-3.11435,0.298847,0.902569,-3.12568,0.28455,0.917915,-3.12917,0.280138,0.924859,-3.12147,0.289863,0.840263,-3.12437,0.286206,0.861975,-3.12826,0.281286,0.855302,-3.12479,0.285672,0.8961,-3.12837,0.281152,0.917915,-3.12917,0.280138,0.902569,-3.12568,0.28455,0.840263,-3.12437,0.286206,0.879047,-3.13145,0.277262,0.861975,-3.12826,0.281286,0.879047,-3.13145,0.277262,0.917915,-3.12917,0.280138,0.8961,-3.12837,0.281152,0.862117,-3.13571,0.271889,0.879047,-3.13145,0.277262,0.840263,-3.12437,0.286206,0.862117,-3.13571,0.271889,0.917915,-3.12917,0.280138,0.879047,-3.13145,0.277262,0.862117,-3.13571,0.271889,0.90087,-3.13594,0.271596,0.917915,-3.12917,0.280138,0.882785,-3.13684,0.270465,0.90087,-3.13594,0.271596,0.862117,-3.13571,0.271889,0.711297,-3.05313,0.376119,0.751246,-3.05263,0.37675,0.726431,-3.05168,0.377949,0.711297,-3.05313,0.376119,0.769235,-3.05554,0.373079,0.751246,-3.05263,0.37675,0.698494,-3.05646,0.371923,0.769235,-3.05554,0.373079,0.711297,-3.05313,0.376119,0.698494,-3.05646,0.371923,0.726628,-3.05898,0.36874,0.769235,-3.05554,0.373079,0.726628,-3.05898,0.36874,0.751238,-3.05908,0.368616,0.769235,-3.05554,0.373079,0.685932,-3.06286,0.363842,0.726628,-3.05898,0.36874,0.698494,-3.05646,0.371923,0.726628,-3.05898,0.36874,0.744726,-3.05926,0.36838,0.751238,-3.05908,0.368616,0.751238,-3.05908,0.368616,0.784653,-3.06423,0.362113,0.769235,-3.05554,0.373079,0.685932,-3.06286,0.363842,0.705478,-3.06194,0.365002,0.726628,-3.05898,0.36874,0.765318,-3.06188,0.36508,0.784653,-3.06423,0.362113,0.751238,-3.05908,0.368616,0.726628,-3.05898,0.36874,0.74251,-3.06134,0.36576,0.744726,-3.05926,0.36838,0.730884,-3.13639,0.271024,0.74251,-3.06134,0.36576,0.726628,-3.05898,0.36874,0.776781,-3.06895,0.356161,0.784653,-3.06423,0.362113,0.765318,-3.06188,0.36508,0.730884,-3.13639,0.271024,0.745493,-3.13462,0.273259,0.74251,-3.06134,0.36576,0.685932,-3.06286,0.363842,0.693445,-3.07008,0.354733,0.705478,-3.06194,0.365002,0.776781,-3.06895,0.356161,0.787986,-3.06716,0.358417,0.784653,-3.06423,0.362113,0.776781,-3.06895,0.356161,0.793597,-3.07512,0.348366,0.787986,-3.06716,0.358417,0.677589,-3.0749,0.348645,0.693445,-3.07008,0.354733,0.685932,-3.06286,0.363842,0.782043,-3.07888,0.343622,0.793597,-3.07512,0.348366,0.776781,-3.06895,0.356161,0.675139,-3.07878,0.343747,0.693445,-3.07008,0.354733,0.677589,-3.0749,0.348645,0.797534,-3.08438,0.336681,0.675139,-3.07878,0.343747,0.686533,-3.08608,0.334534,0.693445,-3.07008,0.354733,0.784559,-3.0886,0.331354,0.797534,-3.08438,0.336681,0.782043,-3.07888,0.343622,0.673267,-3.09231,0.32667,0.686533,-3.08608,0.334534,0.675139,-3.07878,0.343747,0.784559,-3.0886,0.331354,0.798819,-3.09478,0.323556,0.797534,-3.08438,0.336681,0.673267,-3.09231,0.32667,0.686718,-3.10664,0.308584,0.686533,-3.08608,0.334534,0.786129,-3.10674,0.30846,0.676144,-3.1088,0.305849,0.686718,-3.10664,0.308584,0.673267,-3.09231,0.32667,0.786129,-3.10674,0.30846,0.798087,-3.1092,0.305348,0.798819,-3.09478,0.323556,0.780701,-3.12176,0.289492,0.676144,-3.1088,0.305849,0.693642,-3.11963,0.292192,0.686718,-3.10664,0.308584,0.780701,-3.12176,0.289492,0.795372,-3.11858,0.293505,0.798087,-3.1092,0.305348,0.684149,-3.12619,0.283903,0.693642,-3.11963,0.292192,0.676144,-3.1088,0.305849,0.780701,-3.12176,0.289492,0.79152,-3.12407,0.286585,0.795372,-3.11858,0.293505,0.684149,-3.12619,0.283903,0.697478,-3.12486,0.285579,0.693642,-3.11963,0.292192,0.780701,-3.12176,0.289492,0.791129,-3.12684,0.28308,0.79152,-3.12407,0.286585,0.684149,-3.12619,0.283903,0.706053,-3.12927,0.28002,0.697478,-3.12486,0.285579,0.771473,-3.12954,0.279676,0.791129,-3.12684,0.28308,0.780701,-3.12176,0.289492,0.695024,-3.13643,0.270981,0.706053,-3.12927,0.28002,0.684149,-3.12619,0.283903,0.769172,-3.13633,0.271104,0.791129,-3.12684,0.28308,0.771473,-3.12954,0.279676,0.695024,-3.13643,0.270981,0.708081,-3.13474,0.27311,0.706053,-3.12927,0.28002,0.769172,-3.13633,0.271104,0.780578,-3.13726,0.269935,0.791129,-3.12684,0.28308,0.730884,-3.13639,0.271024,0.740517,-3.13758,0.269524,0.745493,-3.13462,0.273259,0.695024,-3.13643,0.270981,0.700621,-3.13797,0.269031,0.708081,-3.13474,0.27311,0.562822,-3.05464,0.374213,0.568224,-3.0516,0.378059,0.56544,-3.05004,0.380027,0.562822,-3.05464,0.374213,0.58071,-3.05229,0.377184,0.568224,-3.0516,0.378059,0.562822,-3.05464,0.374213,0.597031,-3.05363,0.375493,0.58071,-3.05229,0.377184,0.562822,-3.05464,0.374213,0.607141,-3.06009,0.367342,0.597031,-3.05363,0.375493,0.568791,-3.0646,0.361639,0.587312,-3.06011,0.367317,0.562822,-3.05464,0.374213,0.587312,-3.06011,0.367317,0.607141,-3.06009,0.367342,0.562822,-3.05464,0.374213,0.593838,-3.0623,0.364546,0.607141,-3.06009,0.367342,0.587312,-3.06011,0.367317,0.593838,-3.0623,0.364546,0.612903,-3.0677,0.357734,0.607141,-3.06009,0.367342,0.602825,-3.07259,0.351556,0.612903,-3.0677,0.357734,0.593838,-3.0623,0.364546,0.573054,-3.0764,0.346756,0.587662,-3.0654,0.360641,0.581819,-3.06756,0.357909,0.573054,-3.0764,0.346756,0.593057,-3.07234,0.351877,0.587662,-3.0654,0.360641,0.602825,-3.07259,0.351556,0.615743,-3.07482,0.348752,0.612903,-3.0677,0.357734,0.602825,-3.07259,0.351556,0.619061,-3.08363,0.337622,0.615743,-3.07482,0.348752,0.611572,-3.09332,0.3254,0.619061,-3.08363,0.337622,0.602825,-3.07259,0.351556,0.573054,-3.0764,0.346756,0.58325,-3.08326,0.33809,0.593057,-3.07234,0.351877,0.566507,-3.08974,0.329912,0.58325,-3.08326,0.33809,0.573054,-3.0764,0.346756,0.624174,-3.09099,0.328341,0.566507,-3.08974,0.329912,0.579006,-3.09046,0.329003,0.58325,-3.08326,0.33809,0.566507,-3.08974,0.329912,0.575967,-3.10687,0.308297,0.579006,-3.09046,0.329003,0.611572,-3.09332,0.3254,0.6269,-3.09855,0.318789,0.624174,-3.09099,0.328341,0.561645,-3.10284,0.313381,0.575967,-3.10687,0.308297,0.566507,-3.08974,0.329912,0.612627,-3.1024,0.31393,0.6269,-3.09855,0.318789,0.611572,-3.09332,0.3254,0.612627,-3.1024,0.31393,0.632379,-3.10745,0.307555,0.6269,-3.09855,0.318789,0.607879,-3.10505,0.310583,0.632379,-3.10745,0.307555,0.612627,-3.1024,0.31393,0.575967,-3.10687,0.308297,0.632379,-3.10745,0.307555,0.607879,-3.10505,0.310583,0.558688,-3.11025,0.304021,0.575967,-3.10687,0.308297,0.561645,-3.10284,0.313381,0.558688,-3.11025,0.304021,0.632379,-3.10745,0.307555,0.575967,-3.10687,0.308297,0.554653,-3.12945,0.279788,0.576017,-3.11411,0.299153,0.558688,-3.11025,0.304021,0.576017,-3.11411,0.299153,0.632379,-3.10745,0.307555,0.558688,-3.11025,0.304021,0.576017,-3.11411,0.299153,0.610054,-3.11374,0.299622,0.62071,-3.11379,0.299555,0.632379,-3.10745,0.307555,0.610054,-3.11374,0.299622,0.62071,-3.11379,0.299555,0.637911,-3.11586,0.296941,0.632379,-3.10745,0.307555,0.554653,-3.12945,0.279788,0.569516,-3.1205,0.291089,0.576017,-3.11411,0.299153,0.627046,-3.12421,0.286409,0.637911,-3.11586,0.296941,0.62071,-3.11379,0.299555,0.627046,-3.12421,0.286409,0.645139,-3.12469,0.285797,0.637911,-3.11586,0.296941,0.627046,-3.12421,0.286409,0.649788,-3.12815,0.281431,0.645139,-3.12469,0.285797,0.554653,-3.12945,0.279788,0.5646,-3.13379,0.274315,0.569516,-3.1205,0.291089,0.634103,-3.13147,0.277243,0.649788,-3.12815,0.281431,0.627046,-3.12421,0.286409,0.552813,-3.13601,0.271512,0.5646,-3.13379,0.274315,0.554653,-3.12945,0.279788,0.634103,-3.13147,0.277243,0.648616,-3.13406,0.27397,0.649788,-3.12815,0.281431,0.639566,-3.13592,0.271625,0.648616,-3.13406,0.27397,0.634103,-3.13147,0.277243,0.552813,-3.13601,0.271512,0.560251,-3.14143,0.264666,0.5646,-3.13379,0.274315,0.5218,-3.14128,0.264857,0.532502,-3.14018,0.266243,0.525527,-3.13907,0.267645,0.548042,-3.14265,0.263123,0.560251,-3.14143,0.264666,0.552813,-3.13601,0.271512,0.5218,-3.14128,0.264857,0.533728,-3.14292,0.262793,0.532502,-3.14018,0.266243,0.548042,-3.14265,0.263123,0.557573,-3.14587,0.259066,0.560251,-3.14143,0.264666,0.5218,-3.14128,0.264857,0.537165,-3.1454,0.259655,0.533728,-3.14292,0.262793,0.526563,-3.15046,0.25327,0.537165,-3.1454,0.259655,0.5218,-3.14128,0.264857,0.537165,-3.1454,0.259655,0.557573,-3.14587,0.259066,0.526563,-3.15046,0.25327,0.557573,-3.14587,0.259066,0.537165,-3.1454,0.259655,0.526563,-3.15046,0.25327,0.550394,-3.15151,0.251946,0.557573,-3.14587,0.259066,0.526563,-3.15046,0.25327,0.539025,-3.15228,0.250976,0.550394,-3.15151,0.251946,0.526563,-3.15046,0.25327,0.532031,-3.15275,0.25038,0.539025,-3.15228,0.250976,0.462597,-3.05463,0.374226,0.492368,-3.05193,0.377632,0.476345,-3.05234,0.377118,0.462597,-3.05463,0.374226,0.511149,-3.0563,0.372124,0.492368,-3.05193,0.377632,0.453036,-3.05798,0.370008,0.511149,-3.0563,0.372124,0.462597,-3.05463,0.374226,0.484819,-3.05833,0.36956,0.511149,-3.0563,0.372124,0.453036,-3.05798,0.370008,0.453036,-3.05798,0.370008,0.467739,-3.06057,0.366737,0.484819,-3.05833,0.36956,0.497462,-3.06199,0.364941,0.511149,-3.0563,0.372124,0.484819,-3.05833,0.36956,0.442768,-3.06511,0.361003,0.467739,-3.06057,0.366737,0.453036,-3.05798,0.370008,0.497462,-3.06199,0.364941,0.518838,-3.06548,0.360531,0.511149,-3.0563,0.372124,0.442768,-3.06511,0.361003,0.456177,-3.06865,0.35654,0.467739,-3.06057,0.366737,0.500065,-3.06852,0.356697,0.518838,-3.06548,0.360531,0.497462,-3.06199,0.364941,0.500065,-3.06852,0.356697,0.51614,-3.07116,0.353365,0.518838,-3.06548,0.360531,0.507156,-3.07288,0.35119,0.51614,-3.07116,0.353365,0.500065,-3.06852,0.356697,0.430551,-3.08438,0.336675,0.456177,-3.06865,0.35654,0.442768,-3.06511,0.361003,0.430551,-3.08438,0.336675,0.450311,-3.07795,0.344795,0.456177,-3.06865,0.35654,0.430551,-3.08438,0.336675,0.44909,-3.10331,0.312787,0.450311,-3.07795,0.344795,0.431191,-3.10766,0.307298,0.44909,-3.10331,0.312787,0.430551,-3.08438,0.336675,0.477997,-3.09915,0.318033,0.512115,-3.09799,0.319501,0.501843,-3.09586,0.322189,0.477997,-3.09915,0.318033,0.520906,-3.10449,0.311293,0.512115,-3.09799,0.319501,0.470657,-3.10665,0.308574,0.520906,-3.10449,0.311293,0.477997,-3.09915,0.318033,0.470657,-3.10665,0.308574,0.50486,-3.10764,0.307324,0.520906,-3.10449,0.311293,0.50486,-3.10764,0.307324,0.524797,-3.11571,0.297133,0.520906,-3.10449,0.311293,0.474328,-3.11023,0.30405,0.50486,-3.10764,0.307324,0.470657,-3.10665,0.308574,0.511195,-3.11481,0.298272,0.524797,-3.11571,0.297133,0.50486,-3.10764,0.307324,0.474328,-3.11023,0.30405,0.488122,-3.11207,0.301731,0.50486,-3.10764,0.307324,0.431191,-3.10766,0.307298,0.454168,-3.11594,0.296842,0.44909,-3.10331,0.312787,0.440246,-3.12085,0.290645,0.454168,-3.11594,0.296842,0.431191,-3.10766,0.307298,0.440246,-3.12085,0.290645,0.467594,-3.12603,0.284107,0.454168,-3.11594,0.296842,0.499468,-3.12467,0.285827,0.524797,-3.11571,0.297133,0.511195,-3.11481,0.298272,0.45878,-3.13359,0.274558,0.467594,-3.12603,0.284107,0.440246,-3.12085,0.290645,0.499468,-3.12467,0.285827,0.512675,-3.12973,0.27944,0.524797,-3.11571,0.297133,0.490293,-3.128,0.281626,0.45878,-3.13359,0.274558,0.490293,-3.128,0.281626,0.467594,-3.12603,0.284107,0.45878,-3.13359,0.274558,0.512675,-3.12973,0.27944,0.490293,-3.128,0.281626,0.45878,-3.13359,0.274558,0.498945,-3.13433,0.273629,0.512675,-3.12973,0.27944,0.45878,-3.13359,0.274558,0.493729,-3.13528,0.272427,0.498945,-3.13433,0.273629,0.476663,-3.13531,0.272398,0.493729,-3.13528,0.272427,0.45878,-3.13359,0.274558,0.233548,-3.05374,0.375354,0.243097,-3.0574,0.370736,0.238912,-3.05324,0.37599,0.226356,-3.05956,0.368013,0.243097,-3.0574,0.370736,0.233548,-3.05374,0.375354,0.295395,-3.06047,0.366856,0.303094,-3.05329,0.375918,0.296077,-3.05485,0.37395,0.226356,-3.05956,0.368013,0.235695,-3.06542,0.360605,0.243097,-3.0574,0.370736,0.295395,-3.06047,0.366856,0.312941,-3.06212,0.364781,0.303094,-3.05329,0.375918,0.3021,-3.06438,0.361929,0.312941,-3.06212,0.364781,0.295395,-3.06047,0.366856,0.220497,-3.07071,0.353931,0.235695,-3.06542,0.360605,0.226356,-3.05956,0.368013,0.3021,-3.06438,0.361929,0.321251,-3.07885,0.343656,0.312941,-3.06212,0.364781,0.220497,-3.07071,0.353931,0.228545,-3.07752,0.34534,0.235695,-3.06542,0.360605,0.267175,-3.07173,0.352641,0.276829,-3.07526,0.348194,0.273722,-3.07184,0.352508,0.262906,-3.07502,0.348494,0.276829,-3.07526,0.348194,0.267175,-3.07173,0.352641,0.312679,-3.08274,0.338755,0.321251,-3.07885,0.343656,0.3021,-3.06438,0.361929,0.218128,-3.07933,0.343053,0.228545,-3.07752,0.34534,0.220497,-3.07071,0.353931,0.262906,-3.07502,0.348494,0.27519,-3.07979,0.34247,0.276829,-3.07526,0.348194,0.26557,-3.0877,0.332486,0.27519,-3.07979,0.34247,0.262906,-3.07502,0.348494,0.26557,-3.0877,0.332486,0.275155,-3.10778,0.307144,0.27519,-3.07979,0.34247,0.217562,-3.09795,0.319555,0.228545,-3.07752,0.34534,0.218128,-3.07933,0.343053,0.217562,-3.09795,0.319555,0.229971,-3.10474,0.310984,0.228545,-3.07752,0.34534,0.312679,-3.08274,0.338755,0.324702,-3.09931,0.317833,0.321251,-3.07885,0.343656,0.312926,-3.10618,0.309158,0.324702,-3.09931,0.317833,0.312679,-3.08274,0.338755,0.312926,-3.10618,0.309158,0.322045,-3.11095,0.303141,0.324702,-3.09931,0.317833,0.221325,-3.11399,0.299309,0.229971,-3.10474,0.310984,0.217562,-3.09795,0.319555,0.308157,-3.11718,0.295277,0.322045,-3.11095,0.303141,0.312926,-3.10618,0.309158,0.308157,-3.11718,0.295277,0.315182,-3.12356,0.287225,0.322045,-3.11095,0.303141,0.221325,-3.11399,0.299309,0.236479,-3.12019,0.291471,0.229971,-3.10474,0.310984,0.225632,-3.1215,0.289826,0.236479,-3.12019,0.291471,0.221325,-3.11399,0.299309,0.264071,-3.12936,0.279902,0.275155,-3.10778,0.307144,0.26557,-3.0877,0.332486,0.264071,-3.12936,0.279902,0.276365,-3.12704,0.282825,0.275155,-3.10778,0.307144,0.299575,-3.12562,0.284621,0.315182,-3.12356,0.287225,0.308157,-3.11718,0.295277,0.225632,-3.1215,0.289826,0.244341,-3.12651,0.283496,0.236479,-3.12019,0.291471,0.238998,-3.13152,0.277176,0.244341,-3.12651,0.283496,0.225632,-3.1215,0.289826,0.289877,-3.12914,0.280176,0.315182,-3.12356,0.287225,0.299575,-3.12562,0.284621,0.289877,-3.12914,0.280176,0.305716,-3.13081,0.278072,0.315182,-3.12356,0.287225,0.238998,-3.13152,0.277176,0.256391,-3.12946,0.279777,0.244341,-3.12651,0.283496,0.264071,-3.12936,0.279902,0.279947,-3.12953,0.279693,0.276365,-3.12704,0.282825,0.279947,-3.12953,0.279693,0.305716,-3.13081,0.278072,0.289877,-3.12914,0.280176,0.264071,-3.12936,0.279902,0.305716,-3.13081,0.278072,0.279947,-3.12953,0.279693,0.238998,-3.13152,0.277176,0.264071,-3.12936,0.279902,0.256391,-3.12946,0.279777,0.238998,-3.13152,0.277176,0.305716,-3.13081,0.278072,0.264071,-3.12936,0.279902,0.238998,-3.13152,0.277176,0.284253,-3.13619,0.271283,0.305716,-3.13081,0.278072,0.252778,-3.13564,0.271976,0.284253,-3.13619,0.271283,0.238998,-3.13152,0.277176,0.127208,-3.05354,0.375601,0.168289,-3.05491,0.373879,0.144944,-3.05214,0.377371,0.116144,-3.05722,0.370964,0.168289,-3.05491,0.373879,0.127208,-3.05354,0.375601,0.136401,-3.05822,0.3697,0.154726,-3.05816,0.369772,0.116144,-3.05722,0.370964,0.154726,-3.05816,0.369772,0.168289,-3.05491,0.373879,0.116144,-3.05722,0.370964,0.154726,-3.05816,0.369772,0.181628,-3.06223,0.364633,0.168289,-3.05491,0.373879,0.116144,-3.05722,0.370964,0.124977,-3.06126,0.365856,0.136401,-3.05822,0.3697,0.101698,-3.0662,0.359633,0.124977,-3.06126,0.365856,0.116144,-3.05722,0.370964,0.172823,-3.06592,0.359986,0.181628,-3.06223,0.364633,0.154726,-3.05816,0.369772,0.101698,-3.0662,0.359633,0.114309,-3.07087,0.35373,0.124977,-3.06126,0.365856,0.172823,-3.06592,0.359986,0.191097,-3.07725,0.345684,0.181628,-3.06223,0.364633,0.092439,-3.07705,0.345934,0.114309,-3.07087,0.35373,0.101698,-3.0662,0.359633,0.092439,-3.07705,0.345934,0.115457,-3.07589,0.347398,0.114309,-3.07087,0.35373,0.17729,-3.07616,0.34705,0.191097,-3.07725,0.345684,0.172823,-3.06592,0.359986,0.092439,-3.07705,0.345934,0.17729,-3.07616,0.34705,0.115457,-3.07589,0.347398,0.092439,-3.07705,0.345934,0.191097,-3.07725,0.345684,0.17729,-3.07616,0.34705,0.092439,-3.07705,0.345934,0.190054,-3.0827,0.338797,0.191097,-3.07725,0.345684,0.089227,-3.08319,0.338176,0.190054,-3.0827,0.338797,0.092439,-3.07705,0.345934,0.089227,-3.08319,0.338176,0.109333,-3.0839,0.337283,0.190054,-3.0827,0.338797,0.088557,-3.08938,0.330367,0.109333,-3.0839,0.337283,0.089227,-3.08319,0.338176,0.088557,-3.08938,0.330367,0.10679,-3.08642,0.334107,0.109333,-3.0839,0.337283,0.088557,-3.08938,0.330367,0.106568,-3.09814,0.319315,0.10679,-3.08642,0.334107,0.090811,-3.10483,0.310868,0.106568,-3.09814,0.319315,0.088557,-3.08938,0.330367,0.090811,-3.10483,0.310868,0.110828,-3.11402,0.299261,0.106568,-3.09814,0.319315,0.094632,-3.11313,0.300394,0.110828,-3.11402,0.299261,0.090811,-3.10483,0.310868,0.176535,-3.11499,0.298042,0.188882,-3.11604,0.296717,0.183886,-3.11349,0.299932,0.104819,-3.1248,0.28566,0.110828,-3.11402,0.299261,0.094632,-3.11313,0.300394,0.176535,-3.11499,0.298042,0.188186,-3.12319,0.287697,0.188882,-3.11604,0.296717,0.104819,-3.1248,0.28566,0.119398,-3.12479,0.285672,0.110828,-3.11402,0.299261,0.166665,-3.12568,0.28455,0.188186,-3.12319,0.287697,0.176535,-3.11499,0.298042,0.104819,-3.1248,0.28566,0.126071,-3.12826,0.281286,0.119398,-3.12479,0.285672,0.160196,-3.12837,0.281152,0.188186,-3.12319,0.287697,0.166665,-3.12568,0.28455,0.160196,-3.12837,0.281152,0.175344,-3.13274,0.275632,0.188186,-3.12319,0.287697,0.104819,-3.1248,0.28566,0.143144,-3.13145,0.277262,0.126071,-3.12826,0.281286,0.143144,-3.13145,0.277262,0.175344,-3.13274,0.275632,0.160196,-3.12837,0.281152,0.127385,-3.13598,0.27155,0.143144,-3.13145,0.277262,0.104819,-3.1248,0.28566,0.127385,-3.13598,0.27155,0.175344,-3.13274,0.275632,0.143144,-3.13145,0.277262,0.127385,-3.13598,0.27155,0.159155,-3.1367,0.270644,0.175344,-3.13274,0.275632,-0.006504,-3.05423,0.374735,0.01099,-3.05374,0.375352,0.005001,-3.05218,0.377328,0.050887,-3.05543,0.373223,0.063328,-3.0531,0.376165,0.054036,-3.05273,0.376633,0.050887,-3.05543,0.373223,0.066027,-3.05589,0.372642,0.063328,-3.0531,0.376165,0.05225,-3.06036,0.366999,0.066027,-3.05589,0.372642,0.050887,-3.05543,0.373223,0.05225,-3.06036,0.366999,0.063057,-3.06415,0.362218,0.066027,-3.05589,0.372642,-0.006504,-3.05423,0.374735,0.010827,-3.06395,0.362465,0.01099,-3.05374,0.375352,-0.005968,-3.12187,0.289362,0.005372,-3.07714,0.345824,-0.006504,-3.05423,0.374735,0.005372,-3.07714,0.345824,0.010827,-3.06395,0.362465,-0.006504,-3.05423,0.374735,0.005372,-3.07714,0.345824,0.020478,-3.07399,0.349792,0.010827,-3.06395,0.362465,0.053999,-3.08823,0.331816,0.063057,-3.06415,0.362218,0.05225,-3.06036,0.366999,0.053999,-3.08823,0.331816,0.062364,-3.10042,0.316431,0.063057,-3.06415,0.362218,0.005372,-3.07714,0.345824,0.031488,-3.08332,0.33801,0.020478,-3.07399,0.349792,0.026584,-3.09474,0.323602,0.026584,-3.09474,0.323602,0.04505,-3.09468,0.323684,0.031488,-3.08332,0.33801,0.035096,-3.10179,0.3147,0.04505,-3.09468,0.323684,0.026584,-3.09474,0.323602,0.051614,-3.1005,0.316329,0.062364,-3.10042,0.316431,0.053999,-3.08823,0.331816,0.035096,-3.10179,0.3147,0.051614,-3.1005,0.316329,0.04505,-3.09468,0.323684,0.035096,-3.10179,0.3147,0.062364,-3.10042,0.316431,0.051614,-3.1005,0.316329,-0.005968,-3.12187,0.289362,0.001597,-3.12498,0.28543,0.005372,-3.07714,0.345824,0.044687,-3.10957,0.304885,0.062364,-3.10042,0.316431,0.035096,-3.10179,0.3147,0.044687,-3.10957,0.304885,0.063053,-3.12576,0.284447,0.062364,-3.10042,0.316431,0.052095,-3.11948,0.292371,0.063053,-3.12576,0.284447,0.044687,-3.10957,0.304885,-0.008425,-3.1296,0.279595,0.001597,-3.12498,0.28543,-0.005968,-3.12187,0.289362,0.050204,-3.13099,0.277842,0.063053,-3.12576,0.284447,0.052095,-3.11948,0.292371,-0.008425,-3.1296,0.279595,-0.002734,-3.13441,0.273525,0.001597,-3.12498,0.28543,0.050204,-3.13099,0.277842,0.063719,-3.13461,0.273282,0.063053,-3.12576,0.284447,0.053207,-3.13482,0.273014,0.063719,-3.13461,0.273282,0.050204,-3.13099,0.277842,-0.019425,-3.14148,0.264609,-0.002734,-3.13441,0.273525,-0.008425,-3.1296,0.279595,-0.019425,-3.14148,0.264609,-0.01019,-3.14453,0.260762,-0.002734,-3.13441,0.273525,-0.02727,-3.14318,0.262462,-0.01019,-3.14453,0.260762,-0.019425,-3.14148,0.264609,-0.033922,-3.14577,0.259191,-0.01019,-3.14453,0.260762,-0.02727,-3.14318,0.262462,-0.034411,-3.15021,0.253589,-0.01019,-3.14453,0.260762,-0.033922,-3.14577,0.259191,-0.034411,-3.15021,0.253589,-0.027897,-3.15367,0.249222,-0.01019,-3.14453,0.260762,-0.204495,-3.05275,0.376601,-0.122662,-3.0558,0.372757,-0.126261,-3.05218,0.377323,-0.207315,-3.05864,0.369174,-0.122662,-3.0558,0.372757,-0.204495,-3.05275,0.376601,-0.207315,-3.05864,0.369174,-0.124266,-3.06012,0.367304,-0.122662,-3.0558,0.372757,-0.189967,-3.06034,0.367021,-0.124266,-3.06012,0.367304,-0.207315,-3.05864,0.369174,-0.203423,-3.06122,0.365907,-0.189967,-3.06034,0.367021,-0.207315,-3.05864,0.369174,-0.15234,-3.06044,0.366901,-0.124266,-3.06012,0.367304,-0.189967,-3.06034,0.367021,-0.141059,-3.06084,0.366398,-0.124266,-3.06012,0.367304,-0.15234,-3.06044,0.366901,-0.130411,-3.06394,0.36248,-0.124266,-3.06012,0.367304,-0.141059,-3.06084,0.366398,-0.189967,-3.06034,0.367021,-0.164989,-3.0642,0.362147,-0.15234,-3.06044,0.366901,-0.187573,-3.06339,0.36318,-0.164989,-3.0642,0.362147,-0.189967,-3.06034,0.367021,-0.191794,-3.06953,0.355427,-0.164989,-3.0642,0.362147,-0.187573,-3.06339,0.36318,-0.191794,-3.06953,0.355427,-0.173751,-3.0688,0.356347,-0.164989,-3.0642,0.362147,-0.191794,-3.06953,0.355427,-0.181682,-3.0757,0.347639,-0.173751,-3.0688,0.356347,-0.197237,-3.07729,0.345626,-0.181682,-3.0757,0.347639,-0.191794,-3.06953,0.355427,-0.197237,-3.07729,0.345626,-0.1863,-3.08449,0.336536,-0.181682,-3.0757,0.347639,-0.201369,-3.09003,0.329542,-0.1863,-3.08449,0.336536,-0.197237,-3.07729,0.345626,-0.201369,-3.09003,0.329542,-0.186519,-3.10613,0.30922,-0.1863,-3.08449,0.336536,-0.199315,-3.11111,0.302933,-0.186519,-3.10613,0.30922,-0.201369,-3.09003,0.329542,-0.199315,-3.11111,0.302933,-0.183706,-3.11272,0.300911,-0.186519,-3.10613,0.30922,-0.120993,-3.10292,0.313273,-0.120994,-3.11871,0.29335,-0.116322,-3.10311,0.313041,-0.135122,-3.11666,0.295939,-0.120994,-3.11871,0.29335,-0.120993,-3.10292,0.313273,-0.193628,-3.12171,0.289561,-0.183706,-3.11272,0.300911,-0.199315,-3.11111,0.302933,-0.193628,-3.12171,0.289561,-0.175933,-3.1216,0.289702,-0.183706,-3.11272,0.300911,-0.1458,-3.12226,0.288866,-0.120994,-3.11871,0.29335,-0.135122,-3.11666,0.295939,-0.1458,-3.12226,0.288866,-0.132418,-3.12746,0.2823,-0.120994,-3.11871,0.29335,-0.193628,-3.12171,0.289561,-0.170436,-3.12478,0.285679,-0.175933,-3.1216,0.289702,-0.155909,-3.12557,0.284692,-0.132418,-3.12746,0.2823,-0.1458,-3.12226,0.288866,-0.186315,-3.12855,0.280928,-0.170436,-3.12478,0.285679,-0.193628,-3.12171,0.289561,-0.186315,-3.12855,0.280928,-0.155909,-3.12557,0.284692,-0.170436,-3.12478,0.285679,-0.132418,-3.12746,0.2823,-0.155909,-3.12557,0.284692,-0.186315,-3.12855,0.280928,-0.147218,-3.13467,0.273204,-0.132418,-3.12746,0.2823,-0.175298,-3.13389,0.274191,-0.147218,-3.13467,0.273204,-0.186315,-3.12855,0.280928,-0.175298,-3.13389,0.274191,-0.159574,-3.13617,0.271311,-0.147218,-3.13467,0.273204,-0.298354,-3.05258,0.376814,-0.248352,-3.05413,0.374862,-0.268658,-3.05026,0.379743,-0.318058,-3.05466,0.374193,-0.298354,-3.05258,0.376814,-0.312888,-3.05003,0.380036,-0.318058,-3.05466,0.374193,-0.248352,-3.05413,0.374862,-0.298354,-3.05258,0.376814,-0.280302,-3.05765,0.370416,-0.2661,-3.05755,0.370544,-0.318058,-3.05466,0.374193,-0.2661,-3.05755,0.370544,-0.248352,-3.05413,0.374862,-0.318058,-3.05466,0.374193,-0.2661,-3.05755,0.370544,-0.237599,-3.06189,0.365069,-0.248352,-3.05413,0.374862,-0.318058,-3.05466,0.374193,-0.289585,-3.06149,0.365569,-0.280302,-3.05765,0.370416,-0.256581,-3.0618,0.36518,-0.237599,-3.06189,0.365069,-0.2661,-3.05755,0.370544,-0.307218,-3.06439,0.361913,-0.289585,-3.06149,0.365569,-0.318058,-3.05466,0.374193,-0.250029,-3.06865,0.356536,-0.237599,-3.06189,0.365069,-0.256581,-3.0618,0.36518,-0.250029,-3.06865,0.356536,-0.234264,-3.07491,0.348628,-0.237599,-3.06189,0.365069,-0.307218,-3.06439,0.361913,-0.294778,-3.09557,0.322558,-0.289585,-3.06149,0.365569,-0.249262,-3.07868,0.343869,-0.234264,-3.07491,0.348628,-0.250029,-3.06865,0.356536,-0.249262,-3.07868,0.343869,-0.240574,-3.0893,0.330465,-0.234264,-3.07491,0.348628,-0.257114,-3.09011,0.329445,-0.240574,-3.0893,0.330465,-0.249262,-3.07868,0.343869,-0.268927,-3.09621,0.321751,-0.240574,-3.0893,0.330465,-0.257114,-3.09011,0.329445,-0.306569,-3.12547,0.28481,-0.294778,-3.09557,0.322558,-0.307218,-3.06439,0.361913,-0.268927,-3.09621,0.321751,-0.25174,-3.09735,0.320304,-0.240574,-3.0893,0.330465,-0.306569,-3.12547,0.28481,-0.290027,-3.09907,0.318139,-0.294778,-3.09557,0.322558,-0.290027,-3.09907,0.318139,-0.25174,-3.09735,0.320304,-0.268927,-3.09621,0.321751,-0.306569,-3.12547,0.28481,-0.294016,-3.10659,0.308641,-0.290027,-3.09907,0.318139,-0.294016,-3.10659,0.308641,-0.25174,-3.09735,0.320304,-0.290027,-3.09907,0.318139,-0.294016,-3.10659,0.308641,-0.263563,-3.10172,0.314797,-0.25174,-3.09735,0.320304,-0.294016,-3.10659,0.308641,-0.276201,-3.10493,0.310737,-0.263563,-3.10172,0.314797,-0.276201,-3.10493,0.310737,-0.265998,-3.10513,0.310487,-0.263563,-3.10172,0.314797,-0.26696,-3.11794,0.294321,-0.265998,-3.10513,0.310487,-0.276201,-3.10493,0.310737,-0.26696,-3.11794,0.294321,-0.257903,-3.11421,0.299025,-0.265998,-3.10513,0.310487,-0.26696,-3.11794,0.294321,-0.25098,-3.1202,0.29146,-0.257903,-3.11421,0.299025,-0.26118,-3.12478,0.285686,-0.25098,-3.1202,0.29146,-0.26696,-3.11794,0.294321,-0.306569,-3.12547,0.28481,-0.295253,-3.13489,0.272921,-0.294016,-3.10659,0.308641,-0.240674,-3.12351,0.287291,-0.226428,-3.12016,0.291523,-0.23431,-3.11949,0.292366,-0.240674,-3.12351,0.287291,-0.222902,-3.12451,0.286024,-0.226428,-3.12016,0.291523,-0.26118,-3.12478,0.285686,-0.240674,-3.12351,0.287291,-0.25098,-3.1202,0.29146,-0.26118,-3.12478,0.285686,-0.222902,-3.12451,0.286024,-0.240674,-3.12351,0.287291,-0.26118,-3.12478,0.285686,-0.226437,-3.13198,0.276597,-0.222902,-3.12451,0.286024,-0.311094,-3.13513,0.272616,-0.295253,-3.13489,0.272921,-0.306569,-3.12547,0.28481,-0.247305,-3.13376,0.274343,-0.226437,-3.13198,0.276597,-0.26118,-3.12478,0.285686,-0.247305,-3.13376,0.274343,-0.233838,-3.13476,0.273086,-0.226437,-3.13198,0.276597,-0.311094,-3.13513,0.272616,-0.297304,-3.13642,0.270993,-0.295253,-3.13489,0.272921,-0.307311,-3.14125,0.264894,-0.297304,-3.13642,0.270993,-0.311094,-3.13513,0.272616,-0.307311,-3.14125,0.264894,-0.300823,-3.14074,0.265537,-0.297304,-3.13642,0.270993,-0.423189,-3.05464,0.374213,-0.417787,-3.0516,0.378059,-0.420572,-3.05004,0.380027,-0.423189,-3.05464,0.374213,-0.405301,-3.05229,0.377184,-0.417787,-3.0516,0.378059,-0.423189,-3.05464,0.374213,-0.388886,-3.05361,0.375522,-0.405301,-3.05229,0.377184,-0.423189,-3.05464,0.374213,-0.379268,-3.05971,0.367823,-0.388886,-3.05361,0.375522,-0.41722,-3.0646,0.361639,-0.3987,-3.06011,0.367317,-0.423189,-3.05464,0.374213,-0.3987,-3.06011,0.367317,-0.379268,-3.05971,0.367823,-0.423189,-3.05464,0.374213,-0.39211,-3.06233,0.364514,-0.379268,-3.05971,0.367823,-0.3987,-3.06011,0.367317,-0.39211,-3.06233,0.364514,-0.373112,-3.06767,0.357778,-0.379268,-3.05971,0.367823,-0.404562,-3.06789,0.357495,-0.392745,-3.07207,0.352215,-0.398983,-3.06536,0.360693,-0.384333,-3.07112,0.353416,-0.373112,-3.06767,0.357778,-0.39211,-3.06233,0.364514,-0.413123,-3.07651,0.346609,-0.392745,-3.07207,0.352215,-0.404562,-3.06789,0.357495,-0.384333,-3.07112,0.353416,-0.369584,-3.07581,0.347493,-0.373112,-3.06767,0.357778,-0.380216,-3.07824,0.344424,-0.369584,-3.07581,0.347493,-0.384333,-3.07112,0.353416,-0.380216,-3.07824,0.344424,-0.366781,-3.08418,0.336926,-0.369584,-3.07581,0.347493,-0.405266,-3.08737,0.332901,-0.419846,-3.09062,0.328804,-0.405266,-3.08737,0.332901,-0.413123,-3.07651,0.346609,-0.380216,-3.07824,0.344424,-0.360398,-3.09353,0.325133,-0.366781,-3.08418,0.336926,-0.372568,-3.10142,0.315164,-0.360398,-3.09353,0.325133,-0.380216,-3.07824,0.344424,-0.419846,-3.09062,0.328804,-0.410045,-3.10687,0.308297,-0.405266,-3.08737,0.332901,-0.372568,-3.10142,0.315164,-0.358499,-3.09959,0.317482,-0.360398,-3.09353,0.325133,-0.424274,-3.10294,0.313248,-0.410045,-3.10687,0.308297,-0.419846,-3.09062,0.328804,-0.372568,-3.10142,0.315164,-0.353632,-3.10746,0.307553,-0.358499,-3.09959,0.317482,-0.378132,-3.10505,0.310583,-0.353632,-3.10746,0.307553,-0.372568,-3.10142,0.315164,-0.410045,-3.10687,0.308297,-0.353632,-3.10746,0.307553,-0.378132,-3.10505,0.310583,-0.427323,-3.11025,0.304021,-0.410045,-3.10687,0.308297,-0.424274,-3.10294,0.313248,-0.353632,-3.10746,0.307553,-0.431358,-3.12945,0.279789,-0.414517,-3.11608,0.296667,-0.427323,-3.11025,0.304021,-0.414517,-3.11608,0.296667,-0.408459,-3.11404,0.299237,-0.427323,-3.11025,0.304021,-0.408459,-3.11404,0.299237,-0.353632,-3.10746,0.307553,-0.427323,-3.11025,0.304021,-0.408459,-3.11404,0.299237,-0.375957,-3.11374,0.299622,-0.353632,-3.10746,0.307553,-0.365164,-3.11383,0.299505,-0.353632,-3.10746,0.307553,-0.375957,-3.11374,0.299622,-0.365164,-3.11383,0.299505,-0.348103,-3.11583,0.296975,-0.353632,-3.10746,0.307553,-0.431358,-3.12945,0.279789,-0.417866,-3.12379,0.286939,-0.414517,-3.11608,0.296667,-0.358233,-3.12503,0.285372,-0.358233,-3.12503,0.285372,-0.340993,-3.1246,0.285908,-0.348103,-3.11583,0.296975,-0.358233,-3.12503,0.285372,-0.336223,-3.12815,0.281431,-0.340993,-3.1246,0.285908,-0.431358,-3.12945,0.279789,-0.421311,-3.1337,0.274421,-0.417866,-3.12379,0.286939,-0.351908,-3.13147,0.277243,-0.336223,-3.12815,0.281431,-0.358233,-3.12503,0.285372,-0.433074,-3.13608,0.271421,-0.421311,-3.1337,0.274421,-0.431358,-3.12945,0.279789,-0.351908,-3.13147,0.277243,-0.337395,-3.13406,0.27397,-0.336223,-3.12815,0.281431,-0.346445,-3.13592,0.271625,-0.337395,-3.13406,0.27397,-0.351908,-3.13147,0.277243,-0.433074,-3.13608,0.271421,-0.426488,-3.143,0.262683,-0.421311,-3.1337,0.274421,-0.438411,-3.1427,0.263069,-0.426488,-3.143,0.262683,-0.433074,-3.13608,0.271421,-0.464206,-3.14128,0.264856,-0.453509,-3.14018,0.266243,-0.460485,-3.13907,0.267645,-0.464206,-3.14128,0.264856,-0.452283,-3.14292,0.262793,-0.453509,-3.14018,0.266243,-0.464206,-3.14128,0.264856,-0.448847,-3.1454,0.259655,-0.452283,-3.14292,0.262793,-0.438411,-3.1427,0.263069,-0.428397,-3.14611,0.258757,-0.426488,-3.143,0.262683,-0.448847,-3.1454,0.259655,-0.428397,-3.14611,0.258757,-0.438411,-3.1427,0.263069,-0.459364,-3.15051,0.253211,-0.448847,-3.1454,0.259655,-0.464206,-3.14128,0.264856,-0.459364,-3.15051,0.253211,-0.428397,-3.14611,0.258757,-0.448847,-3.1454,0.259655,-0.459364,-3.15051,0.253211,-0.435251,-3.1514,0.252087,-0.428397,-3.14611,0.258757,-0.459364,-3.15051,0.253211,-0.446986,-3.15228,0.250976,-0.435251,-3.1514,0.252087,-0.459364,-3.15051,0.253211,-0.45398,-3.15275,0.25038,-0.446986,-3.15228,0.250976,-0.546286,-3.05291,0.376405,-0.463717,-3.0558,0.372757,-0.467317,-3.05218,0.377323,-0.548104,-3.05904,0.368664,-0.463717,-3.0558,0.372757,-0.546286,-3.05291,0.376405,-0.548104,-3.05904,0.368664,-0.465322,-3.06012,0.367304,-0.463717,-3.0558,0.372757,-0.531023,-3.06034,0.367021,-0.465322,-3.06012,0.367304,-0.548104,-3.05904,0.368664,-0.544479,-3.06122,0.365907,-0.531023,-3.06034,0.367021,-0.548104,-3.05904,0.368664,-0.493395,-3.06044,0.366901,-0.465322,-3.06012,0.367304,-0.531023,-3.06034,0.367021,-0.482114,-3.06084,0.366398,-0.465322,-3.06012,0.367304,-0.493395,-3.06044,0.366901,-0.471467,-3.06394,0.36248,-0.465322,-3.06012,0.367304,-0.482114,-3.06084,0.366398,-0.531023,-3.06034,0.367021,-0.506044,-3.0642,0.362147,-0.493395,-3.06044,0.366901,-0.528629,-3.06339,0.36318,-0.506044,-3.0642,0.362147,-0.531023,-3.06034,0.367021,-0.532849,-3.06953,0.355427,-0.506044,-3.0642,0.362147,-0.528629,-3.06339,0.36318,-0.532849,-3.06953,0.355427,-0.514807,-3.0688,0.356347,-0.506044,-3.0642,0.362147,-0.532849,-3.06953,0.355427,-0.522738,-3.0757,0.347639,-0.514807,-3.0688,0.356347,-0.538423,-3.07744,0.345446,-0.522738,-3.0757,0.347639,-0.532849,-3.06953,0.355427,-0.538423,-3.07744,0.345446,-0.527355,-3.08449,0.336537,-0.522738,-3.0757,0.347639,-0.542402,-3.08969,0.32998,-0.527355,-3.08449,0.336537,-0.538423,-3.07744,0.345446,-0.542402,-3.08969,0.32998,-0.527575,-3.10613,0.30922,-0.527355,-3.08449,0.336537,-0.54038,-3.11105,0.303012,-0.527575,-3.10613,0.30922,-0.542402,-3.08969,0.32998,-0.54038,-3.11105,0.303012,-0.524404,-3.11349,0.299939,-0.527575,-3.10613,0.30922,-0.462049,-3.10292,0.313273,-0.46205,-3.11871,0.29335,-0.457377,-3.10311,0.313041,-0.476178,-3.11666,0.295939,-0.46205,-3.11871,0.29335,-0.462049,-3.10292,0.313273,-0.534721,-3.12169,0.289591,-0.524404,-3.11349,0.299939,-0.54038,-3.11105,0.303012,-0.534721,-3.12169,0.289591,-0.516147,-3.12201,0.28918,-0.524404,-3.11349,0.299939,-0.486855,-3.12226,0.288866,-0.46205,-3.11871,0.29335,-0.476178,-3.11666,0.295939,-0.486855,-3.12226,0.288866,-0.473474,-3.12746,0.2823,-0.46205,-3.11871,0.29335,-0.534721,-3.12169,0.289591,-0.511492,-3.12478,0.285679,-0.516147,-3.12201,0.28918,-0.496965,-3.12557,0.284692,-0.473474,-3.12746,0.2823,-0.486855,-3.12226,0.288866,-0.52737,-3.12855,0.280928,-0.511492,-3.12478,0.285679,-0.534721,-3.12169,0.289591,-0.52737,-3.12855,0.280928,-0.496965,-3.12557,0.284692,-0.511492,-3.12478,0.285679,-0.473474,-3.12746,0.2823,-0.52737,-3.12855,0.280928,-0.488274,-3.13467,0.273204,-0.473474,-3.12746,0.2823,-0.516499,-3.13383,0.274261,-0.488274,-3.13467,0.273204,-0.52737,-3.12855,0.280928,-0.516499,-3.13383,0.274261,-0.501007,-3.13618,0.271298,-0.488274,-3.13467,0.273204,-0.649061,-3.05484,0.373966,-0.61789,-3.05147,0.37822,-0.63264,-3.05191,0.377661,-0.649061,-3.05484,0.373966,-0.600274,-3.05458,0.374288,-0.61789,-3.05147,0.37822,-0.649061,-3.05484,0.373966,-0.592739,-3.05696,0.371295,-0.600274,-3.05458,0.374288,-0.649061,-3.05484,0.373966,-0.621024,-3.05874,0.36904,-0.592739,-3.05696,0.371295,-0.635269,-3.05855,0.369283,-0.621024,-3.05874,0.36904,-0.649061,-3.05484,0.373966,-0.649061,-3.05484,0.373966,-0.643829,-3.06082,0.366415,-0.635269,-3.05855,0.369283,-0.661393,-3.06168,0.365338,-0.643829,-3.06082,0.366415,-0.649061,-3.05484,0.373966,-0.621024,-3.05874,0.36904,-0.58691,-3.06173,0.365263,-0.592739,-3.05696,0.371295,-0.612246,-3.06154,0.365506,-0.58691,-3.06173,0.365263,-0.621024,-3.05874,0.36904,-0.661393,-3.06168,0.365338,-0.648637,-3.06498,0.361171,-0.643829,-3.06082,0.366415,-0.612246,-3.06154,0.365506,-0.588075,-3.06695,0.358681,-0.58691,-3.06173,0.365263,-0.607319,-3.06781,0.357595,-0.588075,-3.06695,0.358681,-0.612246,-3.06154,0.365506,-0.661393,-3.06168,0.365338,-0.647762,-3.07111,0.353432,-0.648637,-3.06498,0.361171,-0.607319,-3.06781,0.357595,-0.598218,-3.07016,0.354633,-0.588075,-3.06695,0.358681,-0.663411,-3.07484,0.348718,-0.647762,-3.07111,0.353432,-0.661393,-3.06168,0.365338,-0.663411,-3.07484,0.348718,-0.63719,-3.07535,0.348072,-0.647762,-3.07111,0.353432,-0.663411,-3.07484,0.348718,-0.624623,-3.07659,0.346507,-0.63719,-3.07535,0.348072,-0.65301,-3.08242,0.339153,-0.624623,-3.07659,0.346507,-0.663411,-3.07484,0.348718,-0.65301,-3.08242,0.339153,-0.59686,-3.08242,0.339149,-0.624623,-3.07659,0.346507,-0.641543,-3.08617,0.334416,-0.59686,-3.08242,0.339149,-0.65301,-3.08242,0.339153,-0.641543,-3.08617,0.334416,-0.5758,-3.09278,0.326075,-0.59686,-3.08242,0.339149,-0.623648,-3.08956,0.330135,-0.5758,-3.09278,0.326075,-0.641543,-3.08617,0.334416,-0.605979,-3.09274,0.326132,-0.5758,-3.09278,0.326075,-0.623648,-3.08956,0.330135,-0.589104,-3.10125,0.315379,-0.5758,-3.09278,0.326075,-0.605979,-3.09274,0.326132,-0.589104,-3.10125,0.315379,-0.569887,-3.10201,0.314422,-0.5758,-3.09278,0.326075,-0.589104,-3.10125,0.315379,-0.568308,-3.10803,0.306823,-0.569887,-3.10201,0.314422,-0.660854,-3.10656,0.308679,-0.632041,-3.10809,0.306752,-0.647081,-3.10426,0.311584,-0.585483,-3.11257,0.301103,-0.568308,-3.10803,0.306823,-0.589104,-3.10125,0.315379,-0.670092,-3.11417,0.29908,-0.632041,-3.10809,0.306752,-0.660854,-3.10656,0.308679,-0.670092,-3.11417,0.29908,-0.628619,-3.11415,0.2991,-0.632041,-3.10809,0.306752,-0.652871,-3.11433,0.298881,-0.628619,-3.11415,0.2991,-0.670092,-3.11417,0.29908,-0.670092,-3.11417,0.29908,-0.657305,-3.11649,0.296142,-0.652871,-3.11433,0.298881,-0.647819,-3.11666,0.295931,-0.628619,-3.11415,0.2991,-0.652871,-3.11433,0.298881,-0.591136,-3.12088,0.290608,-0.568308,-3.10803,0.306823,-0.585483,-3.11257,0.301103,-0.591136,-3.12088,0.290608,-0.573029,-3.11849,0.293619,-0.568308,-3.10803,0.306823,-0.647819,-3.11666,0.295931,-0.632988,-3.11919,0.29274,-0.628619,-3.11415,0.2991,-0.646735,-3.11861,0.293477,-0.632988,-3.11919,0.29274,-0.647819,-3.11666,0.295931,-0.66991,-3.12419,0.286433,-0.657305,-3.11649,0.296142,-0.670092,-3.11417,0.29908,-0.591136,-3.12088,0.290608,-0.57774,-3.12278,0.288207,-0.573029,-3.11849,0.293619,-0.66991,-3.12419,0.286433,-0.654539,-3.12409,0.28655,-0.657305,-3.11649,0.296142,-0.597842,-3.12478,0.285679,-0.57774,-3.12278,0.288207,-0.591136,-3.12088,0.290608,-0.66991,-3.12419,0.286433,-0.641724,-3.12729,0.282519,-0.654539,-3.12409,0.28655,-0.662097,-3.13027,0.278758,-0.641724,-3.12729,0.282519,-0.66991,-3.12419,0.286433,-0.61921,-3.12862,0.280832,-0.57774,-3.12278,0.288207,-0.597842,-3.12478,0.285679,-0.61921,-3.12862,0.280832,-0.593183,-3.13143,0.277285,-0.57774,-3.12278,0.288207,-0.662097,-3.13027,0.278758,-0.61921,-3.12862,0.280832,-0.641724,-3.12729,0.282519,-0.593183,-3.13143,0.277285,-0.648771,-3.13359,0.274568,-0.593183,-3.13143,0.277285,-0.662097,-3.13027,0.278758,-0.648771,-3.13359,0.274568,-0.610318,-3.13438,0.273571,-0.593183,-3.13143,0.277285,-0.63087,-3.13529,0.272417,-0.610318,-3.13438,0.273571,-0.648771,-3.13359,0.274568,-0.844899,-3.05474,0.374096,-0.809403,-3.054,0.375031,-0.838559,-3.05359,0.375542,-0.855522,-3.05762,0.370456,-0.809403,-3.054,0.375031,-0.844899,-3.05474,0.374096,-0.855522,-3.05762,0.370456,-0.833297,-3.05835,0.369536,-0.809403,-3.054,0.375031,-0.833297,-3.05835,0.369536,-0.794767,-3.05999,0.36747,-0.809403,-3.054,0.375031,-0.812861,-3.06088,0.366344,-0.794767,-3.05999,0.36747,-0.833297,-3.05835,0.369536,-0.866495,-3.06419,0.362167,-0.833297,-3.05835,0.369536,-0.855522,-3.05762,0.370456,-0.866495,-3.06419,0.362167,-0.849226,-3.06338,0.363185,-0.833297,-3.05835,0.369536,-0.799124,-3.06914,0.355912,-0.794767,-3.05999,0.36747,-0.812861,-3.06088,0.366344,-0.784843,-3.06799,0.357364,-0.866495,-3.06419,0.362167,-0.856614,-3.07088,0.353721,-0.849226,-3.06338,0.363185,-0.874447,-3.07287,0.35121,-0.856614,-3.07088,0.353721,-0.866495,-3.06419,0.362167,-0.799124,-3.06914,0.355912,-0.775468,-3.0839,0.337286,-0.784843,-3.06799,0.357364,-0.874447,-3.07287,0.35121,-0.859799,-3.07743,0.345451,-0.856614,-3.07088,0.353721,-0.878089,-3.08246,0.339102,-0.791696,-3.08406,0.337078,-0.775468,-3.0839,0.337286,-0.799124,-3.06914,0.355912,-0.862695,-3.08637,0.334172,-0.879504,-3.09292,0.325905,-0.862695,-3.08637,0.334172,-0.878089,-3.08246,0.339102,-0.879504,-3.09292,0.325905,-0.862883,-3.09828,0.319139,-0.862695,-3.08637,0.334172,-0.791696,-3.08406,0.337078,-0.774927,-3.10171,0.31481,-0.775468,-3.0839,0.337286,-0.792876,-3.10489,0.310788,-0.774927,-3.10171,0.31481,-0.791696,-3.08406,0.337078,-0.878399,-3.10374,0.312247,-0.862883,-3.09828,0.319139,-0.879504,-3.09292,0.325905,-0.878399,-3.10374,0.312247,-0.85975,-3.1092,0.305352,-0.862883,-3.09828,0.319139,-0.792876,-3.10489,0.310788,-0.780194,-3.11478,0.298305,-0.774927,-3.10171,0.31481,-0.799367,-3.1176,0.294747,-0.780194,-3.11478,0.298305,-0.792876,-3.10489,0.310788,-0.871714,-3.11813,0.294079,-0.85975,-3.1092,0.305352,-0.878399,-3.10374,0.312247,-0.871714,-3.11813,0.294079,-0.856344,-3.11594,0.296849,-0.85975,-3.1092,0.305352,-0.871714,-3.11813,0.294079,-0.8528,-3.12112,0.290306,-0.856344,-3.11594,0.296849,-0.799367,-3.1176,0.294747,-0.786842,-3.12295,0.287993,-0.780194,-3.11478,0.298305,-0.802026,-3.12161,0.289686,-0.786842,-3.12295,0.287993,-0.799367,-3.1176,0.294747,-0.868296,-3.12129,0.290091,-0.8528,-3.12112,0.290306,-0.871714,-3.11813,0.294079,-0.868296,-3.12129,0.290091,-0.837854,-3.12863,0.28083,-0.858841,-3.12957,0.279644,-0.837854,-3.12863,0.28083,-0.868296,-3.12129,0.290091,-0.802026,-3.12161,0.289686,-0.798833,-3.13075,0.278151,-0.786842,-3.12295,0.287993,-0.813921,-3.12782,0.281844,-0.798833,-3.13075,0.278151,-0.802026,-3.12161,0.289686,-0.823883,-3.12982,0.279321,-0.798833,-3.13075,0.278151,-0.813921,-3.12782,0.281844,-0.858841,-3.12957,0.279644,-0.823883,-3.12982,0.279321,-0.837854,-3.12863,0.28083,-0.858841,-3.12957,0.279644,-0.798833,-3.13075,0.278151,-0.823883,-3.12982,0.279321,-0.858841,-3.12957,0.279644,-0.808359,-3.13457,0.273324,-0.798833,-3.13075,0.278151,-0.836996,-3.13633,0.271107,-0.808359,-3.13457,0.273324,-0.858841,-3.12957,0.279644,-0.836996,-3.13633,0.271107,-0.817209,-3.13587,0.271689,-0.808359,-3.13457,0.273324,-0.991141,-3.05275,0.376601,-0.909308,-3.0558,0.372756,-0.912907,-3.05218,0.377323,-0.993962,-3.05864,0.369174,-0.909308,-3.0558,0.372756,-0.991141,-3.05275,0.376601,-0.993962,-3.05864,0.369174,-0.910913,-3.06012,0.367303,-0.909308,-3.0558,0.372756,-0.976614,-3.06034,0.367021,-0.910913,-3.06012,0.367303,-0.993962,-3.05864,0.369174,-0.990069,-3.06122,0.365907,-0.976614,-3.06034,0.367021,-0.993962,-3.05864,0.369174,-0.938986,-3.06044,0.366901,-0.910913,-3.06012,0.367303,-0.976614,-3.06034,0.367021,-0.927705,-3.06084,0.366398,-0.910913,-3.06012,0.367303,-0.938986,-3.06044,0.366901,-0.917058,-3.06394,0.36248,-0.910913,-3.06012,0.367303,-0.927705,-3.06084,0.366398,-0.976614,-3.06034,0.367021,-0.951635,-3.0642,0.362147,-0.938986,-3.06044,0.366901,-0.974219,-3.06339,0.36318,-0.951635,-3.0642,0.362147,-0.976614,-3.06034,0.367021,-0.978493,-3.06953,0.355424,-0.951635,-3.0642,0.362147,-0.974219,-3.06339,0.36318,-0.978493,-3.06953,0.355424,-0.960397,-3.0688,0.356347,-0.951635,-3.0642,0.362147,-0.978493,-3.06953,0.355424,-0.968329,-3.0757,0.347638,-0.960397,-3.0688,0.356347,-0.983892,-3.07733,0.345575,-0.968329,-3.0757,0.347638,-0.978493,-3.06953,0.355424,-0.983892,-3.07733,0.345575,-0.972946,-3.08449,0.336536,-0.968329,-3.0757,0.347638,-0.988522,-3.09233,0.326648,-0.972946,-3.08449,0.336536,-0.983892,-3.07733,0.345575,-0.988522,-3.09233,0.326648,-0.973165,-3.10608,0.309284,-0.972946,-3.08449,0.336536,-0.98562,-3.11197,0.301848,-0.973165,-3.10608,0.309284,-0.988522,-3.09233,0.326648,-0.907639,-3.10292,0.313273,-0.907641,-3.11871,0.29335,-0.902968,-3.10311,0.313041,-0.921768,-3.11666,0.295939,-0.907641,-3.11871,0.29335,-0.907639,-3.10292,0.313273,-0.98562,-3.11197,0.301848,-0.970042,-3.11343,0.300007,-0.973165,-3.10608,0.309284,-0.980384,-3.12164,0.28965,-0.970042,-3.11343,0.300007,-0.98562,-3.11197,0.301848,-0.980384,-3.12164,0.28965,-0.961738,-3.12201,0.28918,-0.970042,-3.11343,0.300007,-0.932446,-3.12226,0.288866,-0.907641,-3.11871,0.29335,-0.921768,-3.11666,0.295939,-0.932446,-3.12226,0.288866,-0.919065,-3.12746,0.2823,-0.907641,-3.11871,0.29335,-0.980384,-3.12164,0.28965,-0.957083,-3.12478,0.28568,-0.961738,-3.12201,0.28918,-0.942555,-3.12557,0.284692,-0.919065,-3.12746,0.2823,-0.932446,-3.12226,0.288866,-0.972961,-3.12855,0.280927,-0.957083,-3.12478,0.28568,-0.980384,-3.12164,0.28965,-0.972961,-3.12855,0.280927,-0.942555,-3.12557,0.284692,-0.957083,-3.12478,0.28568,-0.972961,-3.12855,0.280927,-0.919065,-3.12746,0.2823,-0.942555,-3.12557,0.284692,-0.972961,-3.12855,0.280927,-0.933864,-3.13467,0.273204,-0.919065,-3.12746,0.2823,-0.961943,-3.13389,0.274191,-0.933864,-3.13467,0.273204,-0.972961,-3.12855,0.280927,-0.961943,-3.13389,0.274191,-0.94622,-3.13617,0.271311,-0.933864,-3.13467,0.273204,0.594521,-2.81155,0.681052,0.608946,-2.81293,0.679317,0.600342,-2.80892,0.684378,0.587139,-2.82098,0.669152,0.608946,-2.81293,0.679317,0.594521,-2.81155,0.681052,0.587233,-2.82488,0.664231,0.608946,-2.81293,0.679317,0.587139,-2.82098,0.669152,0.587233,-2.82488,0.664231,0.607043,-2.83279,0.654248,0.608946,-2.81293,0.679317,0.593337,-2.83514,0.651281,0.607043,-2.83279,0.654248,0.587233,-2.82488,0.664231,0.625092,-2.83297,0.654011,0.656354,-2.83642,0.649665,0.643584,-2.83294,0.654056,0.613735,-2.83729,0.648561,0.656354,-2.83642,0.649665,0.625092,-2.83297,0.654011,0.608805,-2.83962,0.645619,0.608805,-2.83962,0.645619,0.656354,-2.83642,0.649665,0.613735,-2.83729,0.648561,0.594582,-2.84201,0.642612,0.608805,-2.83962,0.645619,0.593337,-2.83514,0.651281,0.594582,-2.84201,0.642612,0.656354,-2.83642,0.649665,0.608805,-2.83962,0.645619,0.631714,-2.84225,0.642299,0.656354,-2.83642,0.649665,0.594582,-2.84201,0.642612,0.644566,-2.84311,0.641216,0.656354,-2.83642,0.649665,0.631714,-2.84225,0.642299,0.644566,-2.84311,0.641216,0.67091,-2.84768,0.635447,0.656354,-2.83642,0.649665,0.655833,-2.84881,0.634027,0.67091,-2.84768,0.635447,0.644566,-2.84311,0.641216,0.594582,-2.84201,0.642612,0.613667,-2.84903,0.633748,0.631714,-2.84225,0.642299,0.594596,-2.85835,0.621989,0.613667,-2.84903,0.633748,0.594582,-2.84201,0.642612,0.655833,-2.84881,0.634027,0.677308,-2.85677,0.623979,0.67091,-2.84768,0.635447,0.594596,-2.85835,0.621989,0.606867,-2.85715,0.623495,0.613667,-2.84903,0.633748,0.663316,-2.86063,0.619107,0.677308,-2.85677,0.623979,0.655833,-2.84881,0.634027,0.590226,-2.89034,0.581604,0.606867,-2.85715,0.623495,0.594596,-2.85835,0.621989,0.678495,-2.86635,0.61189,0.66342,-2.8762,0.599447,0.678495,-2.86635,0.61189,0.663316,-2.86063,0.619107,0.590226,-2.89034,0.581604,0.60568,-2.88723,0.585531,0.606867,-2.85715,0.623495,0.66342,-2.8762,0.599447,0.67723,-2.87664,0.598897,0.678495,-2.86635,0.61189,0.629295,-2.86876,0.608843,0.644765,-2.87683,0.598663,0.642958,-2.86945,0.607978,0.618911,-2.8787,0.596299,0.644765,-2.87683,0.598663,0.629295,-2.86876,0.608843,0.658861,-2.88454,0.588925,0.67723,-2.87664,0.598897,0.66342,-2.8762,0.599447,0.618911,-2.8787,0.596299,0.636201,-2.88496,0.588389,0.644765,-2.87683,0.598663,0.658861,-2.88454,0.588925,0.668547,-2.88976,0.58234,0.67723,-2.87664,0.598897,0.622426,-2.89054,0.581349,0.636201,-2.88496,0.588389,0.618911,-2.8787,0.596299,0.645051,-2.88997,0.582076,0.668547,-2.88976,0.58234,0.658861,-2.88454,0.588925,0.622426,-2.89054,0.581349,0.645051,-2.88997,0.582076,0.636201,-2.88496,0.588389,0.622426,-2.89054,0.581349,0.668547,-2.88976,0.58234,0.645051,-2.88997,0.582076,0.590226,-2.89034,0.581604,0.605083,-2.89699,0.573205,0.60568,-2.88723,0.585531,0.622426,-2.89054,0.581349,0.654293,-2.89766,0.572363,0.668547,-2.88976,0.58234,0.635102,-2.89773,0.572275,0.654293,-2.89766,0.572363,0.622426,-2.89054,0.581349,0.594096,-2.89756,0.57249,0.605083,-2.89699,0.573205,0.590226,-2.89034,0.581604,0.490773,-2.81741,0.673658,0.544034,-2.81668,0.67458,0.525139,-2.81423,0.677671,0.490773,-2.81741,0.673658,0.518967,-2.81851,0.67227,0.544034,-2.81668,0.67458,0.518967,-2.81851,0.67227,0.55351,-2.82071,0.669492,0.544034,-2.81668,0.67458,0.490773,-2.81741,0.673658,0.506521,-2.81974,0.670715,0.518967,-2.81851,0.67227,0.535601,-2.82181,0.668101,0.55351,-2.82071,0.669492,0.518967,-2.81851,0.67227,0.542005,-2.82898,0.659055,0.55351,-2.82071,0.669492,0.535601,-2.82181,0.668101,0.472744,-2.82901,0.65902,0.506521,-2.81974,0.670715,0.490773,-2.81741,0.673658,0.472744,-2.82901,0.65902,0.489038,-2.83246,0.654659,0.506521,-2.81974,0.670715,0.542005,-2.82898,0.659055,0.558258,-2.83059,0.657021,0.55351,-2.82071,0.669492,0.533221,-2.83006,0.657692,0.558258,-2.83059,0.657021,0.542005,-2.82898,0.659055,0.524564,-2.83294,0.654054,0.558258,-2.83059,0.657021,0.533221,-2.83006,0.657692,0.468543,-2.83682,0.649152,0.489038,-2.83246,0.654659,0.472744,-2.82901,0.65902,0.524564,-2.83294,0.654054,0.550687,-2.84068,0.644282,0.558258,-2.83059,0.657021,0.468543,-2.83682,0.649152,0.48197,-2.84326,0.641034,0.489038,-2.83246,0.654659,0.526741,-2.84037,0.644674,0.550687,-2.84068,0.644282,0.524564,-2.83294,0.654054,0.465814,-2.84067,0.644299,0.48197,-2.84326,0.641034,0.468543,-2.83682,0.649152,0.534635,-2.84333,0.640935,0.550687,-2.84068,0.644282,0.526741,-2.84037,0.644674,0.463941,-2.85724,0.623388,0.48197,-2.84326,0.641034,0.465814,-2.84067,0.644299,0.463941,-2.85724,0.623388,0.479234,-2.85832,0.622019,0.48197,-2.84326,0.641034,0.465077,-2.87359,0.602745,0.479234,-2.85832,0.622019,0.463941,-2.85724,0.623388,0.465077,-2.87359,0.602745,0.483989,-2.87875,0.596229,0.479234,-2.85832,0.622019,0.549812,-2.8691,0.608416,0.562492,-2.87198,0.604782,0.559259,-2.86846,0.609215,0.539055,-2.88494,0.588425,0.562492,-2.87198,0.604782,0.549812,-2.8691,0.608416,0.539055,-2.88494,0.588425,0.562189,-2.87824,0.596875,0.562492,-2.87198,0.604782,0.471391,-2.88242,0.591595,0.483989,-2.87875,0.596229,0.465077,-2.87359,0.602745,0.471391,-2.88242,0.591595,0.489604,-2.88536,0.587886,0.483989,-2.87875,0.596229,0.539055,-2.88494,0.588425,0.554474,-2.88716,0.585619,0.562189,-2.87824,0.596875,0.473803,-2.88533,0.587921,0.489604,-2.88536,0.587886,0.471391,-2.88242,0.591595,0.530955,-2.89119,0.580531,0.554474,-2.88716,0.585619,0.539055,-2.88494,0.588425,0.477774,-2.88924,0.582995,0.489604,-2.88536,0.587886,0.473803,-2.88533,0.587921,0.477774,-2.88924,0.582995,0.50414,-2.89131,0.580382,0.489604,-2.88536,0.587886,0.530955,-2.89119,0.580531,0.547649,-2.89159,0.580031,0.554474,-2.88716,0.585619,0.484846,-2.8931,0.578118,0.50414,-2.89131,0.580382,0.477774,-2.88924,0.582995,0.484846,-2.8931,0.578118,0.530955,-2.89119,0.580531,0.50414,-2.89131,0.580382,0.484846,-2.8931,0.578118,0.547649,-2.89159,0.580031,0.530955,-2.89119,0.580531,0.484846,-2.8931,0.578118,0.527705,-2.8974,0.572694,0.547649,-2.89159,0.580031,0.499637,-2.89618,0.574233,0.527705,-2.8974,0.572694,0.484846,-2.8931,0.578118,0.410639,-2.81874,0.671979,0.43126,-2.81593,0.675528,0.418804,-2.81445,0.677398,0.410639,-2.81874,0.671979,0.435289,-2.8189,0.671776,0.43126,-2.81593,0.675528,0.363155,-2.81901,0.671636,0.383746,-2.81652,0.67478,0.374065,-2.81528,0.676344,0.363155,-2.81901,0.671636,0.38297,-2.82259,0.667116,0.383746,-2.81652,0.67478,0.410639,-2.81874,0.671979,0.439053,-2.82224,0.667556,0.435289,-2.8189,0.671776,0.411667,-2.82218,0.667638,0.439053,-2.82224,0.667556,0.410639,-2.81874,0.671979,0.357896,-2.82411,0.665198,0.38297,-2.82259,0.667116,0.363155,-2.81901,0.671636,0.411667,-2.82218,0.667638,0.438437,-2.82336,0.666147,0.439053,-2.82224,0.667556,0.411667,-2.82218,0.667638,0.422996,-2.82325,0.666284,0.438437,-2.82336,0.666147,0.414612,-2.82345,0.666034,0.422996,-2.82325,0.666284,0.411667,-2.82218,0.667638,0.42753,-2.82696,0.661602,0.438437,-2.82336,0.666147,0.422996,-2.82325,0.666284,0.357896,-2.82411,0.665198,0.373374,-2.82632,0.662408,0.38297,-2.82259,0.667116,0.42753,-2.82696,0.661602,0.440445,-2.8257,0.6632,0.438437,-2.82336,0.666147,0.357896,-2.82411,0.665198,0.368789,-2.83071,0.656875,0.373374,-2.82632,0.662408,0.428171,-2.83061,0.657002,0.440445,-2.8257,0.6632,0.42753,-2.82696,0.661602,0.355689,-2.83722,0.648654,0.368789,-2.83071,0.656875,0.357896,-2.82411,0.665198,0.428171,-2.83061,0.657002,0.442305,-2.83999,0.645162,0.440445,-2.8257,0.6632,0.429548,-2.83437,0.652255,0.442305,-2.83999,0.645162,0.428171,-2.83061,0.657002,0.355689,-2.83722,0.648654,0.369844,-2.84044,0.644596,0.368789,-2.83071,0.656875,0.429548,-2.83437,0.652255,0.443264,-2.85051,0.631878,0.442305,-2.83999,0.645162,0.356741,-2.862,0.617381,0.369844,-2.84044,0.644596,0.355689,-2.83722,0.648654,0.430103,-2.8631,0.615991,0.443264,-2.85051,0.631878,0.429548,-2.83437,0.652255,0.430103,-2.8631,0.615991,0.443634,-2.85926,0.62083,0.443264,-2.85051,0.631878,0.356741,-2.862,0.617381,0.371595,-2.88012,0.594502,0.369844,-2.84044,0.644596,0.42196,-2.88365,0.590055,0.443634,-2.85926,0.62083,0.430103,-2.8631,0.615991,0.42196,-2.88365,0.590055,0.438227,-2.87772,0.597527,0.443634,-2.85926,0.62083,0.358094,-2.88216,0.591932,0.371595,-2.88012,0.594502,0.356741,-2.862,0.617381,0.42196,-2.88365,0.590055,0.434059,-2.88537,0.587878,0.438227,-2.87772,0.597527,0.42196,-2.88365,0.590055,0.429526,-2.88911,0.583162,0.434059,-2.88537,0.587878,0.414324,-2.88891,0.583409,0.429526,-2.88911,0.583162,0.42196,-2.88365,0.590055,0.358094,-2.88216,0.591932,0.385097,-2.89101,0.58076,0.371595,-2.88012,0.594502,0.371146,-2.89326,0.577922,0.385097,-2.89101,0.58076,0.358094,-2.88216,0.591932,0.406267,-2.89126,0.580439,0.406267,-2.89126,0.580439,0.419325,-2.8955,0.575089,0.429526,-2.88911,0.583162,0.385097,-2.89101,0.58076,0.419325,-2.8955,0.575089,0.406267,-2.89126,0.580439,0.371146,-2.89326,0.577922,0.419325,-2.8955,0.575089,0.385097,-2.89101,0.58076,0.385985,-2.89711,0.57306,0.419325,-2.8955,0.575089,0.371146,-2.89326,0.577922,0.385985,-2.89711,0.57306,0.4081,-2.89736,0.572742,0.419325,-2.8955,0.575089,0.25965,-2.81643,0.674894,0.295145,-2.81569,0.67583,0.26599,-2.81528,0.67634,0.249026,-2.81931,0.671255,0.295145,-2.81569,0.67583,0.25965,-2.81643,0.674894,0.249026,-2.81931,0.671255,0.271251,-2.82004,0.670335,0.295145,-2.81569,0.67583,0.271251,-2.82004,0.670335,0.309832,-2.82169,0.668253,0.295145,-2.81569,0.67583,0.291688,-2.82257,0.667142,0.309832,-2.82169,0.668253,0.271251,-2.82004,0.670335,0.238054,-2.82588,0.662966,0.271251,-2.82004,0.670335,0.249026,-2.81931,0.671255,0.238054,-2.82588,0.662966,0.255322,-2.82507,0.663984,0.271251,-2.82004,0.670335,0.305532,-2.83093,0.656592,0.309832,-2.82169,0.668253,0.291688,-2.82257,0.667142,0.305532,-2.83093,0.656592,0.319505,-2.82959,0.658289,0.309832,-2.82169,0.668253,0.238054,-2.82588,0.662966,0.247934,-2.83257,0.654519,0.255322,-2.82507,0.663984,0.230103,-2.83456,0.65201,0.247934,-2.83257,0.654519,0.238054,-2.82588,0.662966,0.305532,-2.83093,0.656592,0.328943,-2.84487,0.638992,0.319505,-2.82959,0.658289,0.230103,-2.83456,0.65201,0.24475,-2.83912,0.64625,0.247934,-2.83257,0.654519,0.226227,-2.84452,0.639436,0.24475,-2.83912,0.64625,0.230103,-2.83456,0.65201,0.312324,-2.84445,0.639529,0.328943,-2.84487,0.638992,0.305532,-2.83093,0.656592,0.226227,-2.84452,0.639436,0.241696,-2.84846,0.634469,0.24475,-2.83912,0.64625,0.313004,-2.85919,0.620922,0.328943,-2.84487,0.638992,0.312324,-2.84445,0.639529,0.225719,-2.86363,0.615318,0.241696,-2.84846,0.634469,0.226227,-2.84452,0.639436,0.225719,-2.86363,0.615318,0.241845,-2.86061,0.619125,0.241696,-2.84846,0.634469,0.313004,-2.85919,0.620922,0.329622,-2.8634,0.615608,0.328943,-2.84487,0.638992,0.225719,-2.86363,0.615318,0.244796,-2.87109,0.605907,0.241845,-2.86061,0.619125,0.324355,-2.87648,0.599104,0.308178,-2.87561,0.600197,0.324355,-2.87648,0.599104,0.313004,-2.85919,0.620922,0.232771,-2.87975,0.594967,0.244796,-2.87109,0.605907,0.225719,-2.86363,0.615318,0.232771,-2.87975,0.594967,0.248204,-2.87763,0.597648,0.244796,-2.87109,0.605907,0.305064,-2.87957,0.595193,0.324355,-2.87648,0.599104,0.308178,-2.87561,0.600197,0.232771,-2.87975,0.594967,0.251749,-2.88281,0.591105,0.248204,-2.87763,0.597648,0.305064,-2.87957,0.595193,0.317706,-2.88465,0.588791,0.324355,-2.87648,0.599104,0.302522,-2.88331,0.590484,0.317706,-2.88465,0.588791,0.305064,-2.87957,0.595193,0.236253,-2.88298,0.590889,0.251749,-2.88281,0.591105,0.232771,-2.87975,0.594967,0.236253,-2.88298,0.590889,0.266695,-2.89032,0.581628,0.251749,-2.88281,0.591105,0.245709,-2.89126,0.580442,0.266695,-2.89032,0.581628,0.236253,-2.88298,0.590889,0.302522,-2.88331,0.590484,0.305716,-2.89244,0.57895,0.317706,-2.88465,0.588791,0.290628,-2.88952,0.582642,0.305716,-2.89244,0.57895,0.302522,-2.88331,0.590484,0.280666,-2.89152,0.580119,0.305716,-2.89244,0.57895,0.290628,-2.88952,0.582642,0.245709,-2.89126,0.580442,0.280666,-2.89152,0.580119,0.266695,-2.89032,0.581628,0.245709,-2.89126,0.580442,0.305716,-2.89244,0.57895,0.280666,-2.89152,0.580119,0.245709,-2.89126,0.580442,0.296246,-2.89624,0.574158,0.305716,-2.89244,0.57895,0.26679,-2.89791,0.572048,0.296246,-2.89624,0.574158,0.245709,-2.89126,0.580442,0.26679,-2.89791,0.572048,0.286977,-2.89764,0.572393,0.296246,-2.89624,0.574158,0.041348,-2.78201,0.718341,0.174217,-2.77869,0.72253,0.044767,-2.77888,0.722288,0.041348,-2.78201,0.718341,0.180432,-2.78309,0.716985,0.174217,-2.77869,0.72253,0.041889,-2.78738,0.711567,0.180432,-2.78309,0.716985,0.041348,-2.78201,0.718341,0.041889,-2.78738,0.711567,0.178222,-2.78502,0.714539,0.180432,-2.78309,0.716985,0.041889,-2.78738,0.711567,0.066419,-2.78726,0.711719,0.178222,-2.78502,0.714539,0.129833,-2.78779,0.711048,0.178222,-2.78502,0.714539,0.066419,-2.78726,0.711719,0.152095,-2.78792,0.71088,0.178222,-2.78502,0.714539,0.129833,-2.78779,0.711048,0.152095,-2.78792,0.71088,0.175943,-2.79002,0.708236,0.178222,-2.78502,0.714539,0.071417,-2.78872,0.709871,0.129833,-2.78779,0.711048,0.066419,-2.78726,0.711719,0.041889,-2.78738,0.711567,0.046483,-2.78895,0.709582,0.066419,-2.78726,0.711719,0.166982,-2.79204,0.705676,0.175943,-2.79002,0.708236,0.152095,-2.78792,0.71088,0.071417,-2.78872,0.709871,0.109024,-2.79313,0.704299,0.129833,-2.78779,0.711048,0.074087,-2.79326,0.704137,0.109024,-2.79313,0.704299,0.071417,-2.78872,0.709871,0.074087,-2.79326,0.704137,0.093648,-2.8005,0.695009,0.109024,-2.79313,0.704299,0.064932,-2.80388,0.690737,0.093648,-2.8005,0.695009,0.074087,-2.79326,0.704137,0.078073,-2.81193,0.680573,0.056606,-2.81417,0.677748,0.078073,-2.81193,0.680573,0.064932,-2.80388,0.690737,0.056606,-2.81417,0.677748,0.071893,-2.82217,0.667645,0.078073,-2.81193,0.680573,0.04988,-2.83516,0.65125,0.071893,-2.82217,0.667645,0.056606,-2.81417,0.677748,0.04988,-2.83516,0.65125,0.071026,-2.85641,0.624438,0.071893,-2.82217,0.667645,0.054697,-2.86319,0.615872,0.071026,-2.85641,0.624438,0.04988,-2.83516,0.65125,0.177408,-2.86092,0.618739,0.194757,-2.85817,0.622207,0.186926,-2.85118,0.631028,0.177408,-2.86092,0.618739,0.190598,-2.86868,0.608949,0.194757,-2.85817,0.622207,0.054697,-2.86319,0.615872,0.076666,-2.86602,0.612303,0.071026,-2.85641,0.624438,0.162869,-2.87112,0.605866,0.190598,-2.86868,0.608949,0.177408,-2.86092,0.618739,0.059391,-2.87179,0.605022,0.076666,-2.86602,0.612303,0.054697,-2.86319,0.615872,0.162869,-2.87112,0.605866,0.180926,-2.87341,0.60297,0.190598,-2.86868,0.608949,0.059391,-2.87179,0.605022,0.088711,-2.87758,0.597714,0.076666,-2.86602,0.612303,0.063865,-2.87671,0.598807,0.144277,-2.87944,0.595368,0.180926,-2.87341,0.60297,0.162869,-2.87112,0.605866,0.144277,-2.87944,0.595368,0.163569,-2.88446,0.589023,0.180926,-2.87341,0.60297,0.063865,-2.87671,0.598807,0.098392,-2.8821,0.592011,0.088711,-2.87758,0.597714,0.073816,-2.88509,0.588228,0.098392,-2.8821,0.592011,0.063865,-2.87671,0.598807,0.132458,-2.88336,0.590417,0.073816,-2.88509,0.588228,0.108151,-2.88447,0.58901,0.098392,-2.8821,0.592011,0.108151,-2.88447,0.58901,0.163569,-2.88446,0.589023,0.132458,-2.88336,0.590417,0.073816,-2.88509,0.588228,0.163569,-2.88446,0.589023,0.108151,-2.88447,0.58901,0.073816,-2.88509,0.588228,0.158014,-2.88797,0.584589,0.163569,-2.88446,0.589023,0.08151,-2.88885,0.583489,0.158014,-2.88797,0.584589,0.073816,-2.88509,0.588228,0.08151,-2.88885,0.583489,0.148068,-2.89165,0.579944,0.158014,-2.88797,0.584589,0.088604,-2.89132,0.580363,0.148068,-2.89165,0.579944,0.08151,-2.88885,0.583489,0.09739,-2.89412,0.576835,0.148068,-2.89165,0.579944,0.088604,-2.89132,0.580363,0.09739,-2.89412,0.576835,0.135431,-2.89551,0.575082,0.148068,-2.89165,0.579944,0.112823,-2.89639,0.573967,0.135431,-2.89551,0.575082,0.09739,-2.89412,0.576835,-0.002199,-2.78565,0.713751,0.022027,-2.78177,0.718647,0.013717,-2.77986,0.721051,-0.002199,-2.78565,0.713751,0.022986,-2.78729,0.711682,0.022027,-2.78177,0.718647,-0.030861,-2.82463,0.664551,0.022986,-2.78729,0.711682,-0.002199,-2.78565,0.713751,-0.030861,-2.82463,0.664551,-0.019989,-2.8444,0.639594,0.022986,-2.78729,0.711682,-0.060925,-2.86219,0.617141,-0.019989,-2.8444,0.639594,-0.030861,-2.82463,0.664551,-0.060925,-2.86219,0.617141,-0.064534,-2.89707,0.573104,-0.019989,-2.8444,0.639594,-0.086004,-2.89082,0.581001,-0.064534,-2.89707,0.573104,-0.060925,-2.86219,0.617141,-0.081658,-2.89514,0.575541,-0.064534,-2.89707,0.573104,-0.086004,-2.89082,0.581001,-0.19916,-2.81872,0.672002,-0.182497,-2.81623,0.675152,-0.195185,-2.8154,0.676195,-0.145917,-2.81473,0.677041,-0.130931,-2.81777,0.673203,-0.132048,-2.81425,0.677648,-0.145869,-2.82539,0.66359,-0.130931,-2.81777,0.673203,-0.145917,-2.81473,0.677041,-0.19916,-2.81872,0.672002,-0.183615,-2.82111,0.668983,-0.182497,-2.81623,0.675152,-0.145869,-2.82539,0.66359,-0.134975,-2.82536,0.663623,-0.130931,-2.81777,0.673203,-0.196868,-2.82353,0.665934,-0.183615,-2.82111,0.668983,-0.19916,-2.81872,0.672002,-0.196868,-2.82353,0.665934,-0.186035,-2.83358,0.653248,-0.183615,-2.82111,0.668983,-0.145869,-2.82539,0.66359,-0.150454,-2.84348,0.640748,-0.134975,-2.82536,0.663623,-0.157005,-2.83836,0.647213,-0.150454,-2.84348,0.640748,-0.145869,-2.82539,0.66359,-0.199921,-2.89512,0.575568,-0.186035,-2.83358,0.653248,-0.196868,-2.82353,0.665934,-0.199921,-2.89512,0.575568,-0.185073,-2.8468,0.636565,-0.186035,-2.83358,0.653248,-0.178671,-2.84756,0.635598,-0.150454,-2.84348,0.640748,-0.157005,-2.83836,0.647213,-0.178671,-2.84756,0.635598,-0.149632,-2.8466,0.636817,-0.150454,-2.84348,0.640748,-0.199921,-2.89512,0.575568,-0.186127,-2.85572,0.6253,-0.185073,-2.8468,0.636565,-0.186127,-2.85572,0.6253,-0.178671,-2.84756,0.635598,-0.185073,-2.8468,0.636565,-0.186127,-2.85572,0.6253,-0.170368,-2.85047,0.631928,-0.178671,-2.84756,0.635598,-0.170368,-2.85047,0.631928,-0.161754,-2.84883,0.634,-0.178671,-2.84756,0.635598,-0.161754,-2.84883,0.634,-0.149632,-2.8466,0.636817,-0.178671,-2.84756,0.635598,-0.161754,-2.84883,0.634,-0.142295,-2.85681,0.623927,-0.149632,-2.8466,0.636817,-0.155421,-2.85279,0.629,-0.142295,-2.85681,0.623927,-0.161754,-2.84883,0.634,-0.148696,-2.86735,0.61062,-0.142295,-2.85681,0.623927,-0.155421,-2.85279,0.629,-0.148696,-2.86735,0.61062,-0.133495,-2.87634,0.599276,-0.142295,-2.85681,0.623927,-0.199921,-2.89512,0.575568,-0.186415,-2.89595,0.574525,-0.186127,-2.85572,0.6253,-0.143414,-2.88588,0.587229,-0.143414,-2.88588,0.587229,-0.13348,-2.89581,0.574694,-0.133495,-2.87634,0.599276,-0.146244,-2.89023,0.581746,-0.146276,-2.89571,0.574827,-0.13348,-2.89581,0.574694,-0.146244,-2.89023,0.581746,-0.14033,-2.89741,0.572674,-0.13348,-2.89581,0.574694,-0.146276,-2.89571,0.574827,-0.199921,-2.89512,0.575568,-0.191203,-2.89777,0.572228,-0.186415,-2.89595,0.574525,-0.299478,-2.81741,0.673658,-0.246217,-2.81668,0.67458,-0.265112,-2.81423,0.677671,-0.299478,-2.81741,0.673658,-0.271284,-2.81851,0.67227,-0.246217,-2.81668,0.67458,-0.271284,-2.81851,0.67227,-0.23674,-2.82071,0.669492,-0.246217,-2.81668,0.67458,-0.299478,-2.81741,0.673658,-0.28373,-2.81974,0.670715,-0.271284,-2.81851,0.67227,-0.25465,-2.82181,0.668101,-0.23674,-2.82071,0.669492,-0.271284,-2.81851,0.67227,-0.248246,-2.82898,0.659055,-0.23674,-2.82071,0.669492,-0.25465,-2.82181,0.668101,-0.317506,-2.82901,0.65902,-0.28373,-2.81974,0.670715,-0.299478,-2.81741,0.673658,-0.317506,-2.82901,0.65902,-0.301212,-2.83246,0.654659,-0.28373,-2.81974,0.670715,-0.248246,-2.82898,0.659055,-0.231993,-2.83059,0.657021,-0.23674,-2.82071,0.669492,-0.25703,-2.83006,0.657692,-0.231993,-2.83059,0.657021,-0.248246,-2.82898,0.659055,-0.265687,-2.83294,0.654054,-0.231993,-2.83059,0.657021,-0.25703,-2.83006,0.657692,-0.321804,-2.83694,0.64901,-0.301212,-2.83246,0.654659,-0.317506,-2.82901,0.65902,-0.265687,-2.83294,0.654054,-0.239564,-2.84068,0.644282,-0.231993,-2.83059,0.657021,-0.321804,-2.83694,0.64901,-0.30828,-2.84326,0.641034,-0.301212,-2.83246,0.654659,-0.26351,-2.84037,0.644674,-0.239564,-2.84068,0.644282,-0.265687,-2.83294,0.654054,-0.326062,-2.84972,0.632879,-0.30828,-2.84326,0.641034,-0.321804,-2.83694,0.64901,-0.255616,-2.84333,0.640935,-0.239564,-2.84068,0.644282,-0.26351,-2.84037,0.644674,-0.326062,-2.84972,0.632879,-0.311017,-2.85832,0.622019,-0.30828,-2.84326,0.641034,-0.325174,-2.87359,0.602745,-0.311017,-2.85832,0.622019,-0.326062,-2.84972,0.632879,-0.325174,-2.87359,0.602745,-0.306262,-2.87875,0.596229,-0.311017,-2.85832,0.622019,-0.240439,-2.8691,0.608416,-0.227775,-2.8719,0.604882,-0.231148,-2.86844,0.609251,-0.251196,-2.88494,0.588425,-0.227775,-2.8719,0.604882,-0.240439,-2.8691,0.608416,-0.251196,-2.88494,0.588425,-0.228062,-2.87824,0.596875,-0.227775,-2.8719,0.604882,-0.319117,-2.88209,0.592015,-0.306262,-2.87875,0.596229,-0.325174,-2.87359,0.602745,-0.319117,-2.88209,0.592015,-0.300647,-2.88536,0.587886,-0.306262,-2.87875,0.596229,-0.251196,-2.88494,0.588425,-0.235777,-2.88716,0.585619,-0.228062,-2.87824,0.596875,-0.317352,-2.88527,0.588008,-0.300647,-2.88536,0.587886,-0.319117,-2.88209,0.592015,-0.315534,-2.88607,0.58699,-0.300647,-2.88536,0.587886,-0.317352,-2.88527,0.588008,-0.259296,-2.89119,0.580531,-0.235777,-2.88716,0.585619,-0.251196,-2.88494,0.588425,-0.312476,-2.88924,0.582995,-0.300647,-2.88536,0.587886,-0.315534,-2.88607,0.58699,-0.312476,-2.88924,0.582995,-0.286111,-2.89131,0.580382,-0.300647,-2.88536,0.587886,-0.259296,-2.89119,0.580531,-0.242602,-2.89159,0.580031,-0.235777,-2.88716,0.585619,-0.305404,-2.8931,0.578118,-0.286111,-2.89131,0.580382,-0.312476,-2.88924,0.582995,-0.305404,-2.8931,0.578118,-0.259296,-2.89119,0.580531,-0.286111,-2.89131,0.580382,-0.305404,-2.8931,0.578118,-0.242602,-2.89159,0.580031,-0.259296,-2.89119,0.580531,-0.305404,-2.8931,0.578118,-0.262546,-2.8974,0.572694,-0.242602,-2.89159,0.580031,-0.290614,-2.89618,0.574233,-0.262546,-2.8974,0.572694,-0.305404,-2.8931,0.578118,-0.369815,-2.82349,0.66598,-0.35789,-2.8248,0.664328,-0.361609,-2.82303,0.666564,-0.378456,-2.82635,0.662371,-0.35789,-2.8248,0.664328,-0.369815,-2.82349,0.66598,-0.379274,-2.82893,0.659118,-0.35789,-2.8248,0.664328,-0.378456,-2.82635,0.662371,-0.375331,-2.88794,0.58463,-0.35789,-2.8248,0.664328,-0.379274,-2.82893,0.659118,-0.375331,-2.88794,0.58463,-0.358467,-2.88695,0.585884,-0.35789,-2.8248,0.664328,-0.375331,-2.88794,0.58463,-0.352152,-2.8941,0.576856,-0.358467,-2.88695,0.585884,-0.376073,-2.89519,0.575487,-0.352152,-2.8941,0.576856,-0.375331,-2.88794,0.58463,-0.376073,-2.89519,0.575487,-0.358895,-2.89763,0.572406,-0.352152,-2.8941,0.576856,-0.367881,-2.89766,0.572369,-0.358895,-2.89763,0.572406,-0.376073,-2.89519,0.575487,-0.372262,-2.80737,0.686325,-0.360679,-2.80972,0.683371,-0.365862,-2.80697,0.686837,-0.376904,-2.81241,0.679969,-0.360679,-2.80972,0.683371,-0.372262,-2.80737,0.686325,-0.376904,-2.81241,0.679969,-0.360611,-2.815,0.676695,-0.360679,-2.80972,0.683371,-0.373402,-2.81705,0.674107,-0.360611,-2.815,0.676695,-0.376904,-2.81241,0.679969,-0.373402,-2.81705,0.674107,-0.366297,-2.81838,0.672433,-0.360611,-2.815,0.676695,-0.470568,-2.81681,0.674418,-0.458838,-2.81543,0.676152,-0.46567,-2.81438,0.677477,-0.470568,-2.81681,0.674418,-0.454338,-2.81926,0.671318,-0.458838,-2.81543,0.676152,-0.470568,-2.81681,0.674418,-0.457215,-2.8406,0.644383,-0.454338,-2.81926,0.671318,-0.470568,-2.81681,0.674418,-0.458459,-2.88155,0.592697,-0.457215,-2.8406,0.644383,-0.472068,-2.89314,0.578067,-0.458459,-2.88155,0.592697,-0.470568,-2.81681,0.674418,-0.472068,-2.89314,0.578067,-0.453017,-2.88863,0.58376,-0.458459,-2.88155,0.592697,-0.453017,-2.88863,0.58376,-0.405044,-2.88866,0.58373,-0.425451,-2.88767,0.584978,-0.472068,-2.89314,0.578067,-0.405044,-2.88866,0.58373,-0.453017,-2.88863,0.58376,-0.472068,-2.89314,0.578067,-0.405097,-2.89476,0.576019,-0.405044,-2.88866,0.58373,-0.444519,-2.89546,0.575143,-0.405097,-2.89476,0.576019,-0.472068,-2.89314,0.578067,-0.46727,-2.89665,0.573638,-0.444519,-2.89546,0.575143,-0.472068,-2.89314,0.578067,-0.412548,-2.8969,0.573322,-0.405097,-2.89476,0.576019,-0.444519,-2.89546,0.575143,-0.60179,-2.77978,0.721156,-0.549811,-2.77975,0.721193,-0.575057,-2.77802,0.723381,-0.619459,-2.78327,0.716753,-0.549811,-2.77975,0.721193,-0.60179,-2.77978,0.721156,-0.581303,-2.78305,0.717029,-0.549811,-2.77975,0.721193,-0.619459,-2.78327,0.716753,-0.619459,-2.78327,0.716753,-0.598327,-2.78566,0.713735,-0.581303,-2.78305,0.717029,-0.581303,-2.78305,0.717029,-0.531263,-2.78609,0.713189,-0.549811,-2.77975,0.721193,-0.558847,-2.78657,0.712589,-0.531263,-2.78609,0.713189,-0.581303,-2.78305,0.717029,-0.643005,-2.79697,0.699457,-0.598327,-2.78566,0.713735,-0.619459,-2.78327,0.716753,-0.544905,-2.79473,0.702288,-0.531263,-2.78609,0.713189,-0.558847,-2.78657,0.712589,-0.544905,-2.79473,0.702288,-0.522527,-2.7998,0.695884,-0.531263,-2.78609,0.713189,-0.643005,-2.79697,0.699457,-0.618151,-2.79837,0.697689,-0.598327,-2.78566,0.713735,-0.54686,-2.80044,0.695074,-0.522527,-2.7998,0.695884,-0.544905,-2.79473,0.702288,-0.566977,-2.80294,0.691923,-0.522527,-2.7998,0.695884,-0.54686,-2.80044,0.695074,-0.643005,-2.79697,0.699457,-0.623158,-2.80407,0.690499,-0.618151,-2.79837,0.697689,-0.65131,-2.81073,0.682087,-0.623158,-2.80407,0.690499,-0.643005,-2.79697,0.699457,-0.57025,-2.81031,0.682614,-0.522527,-2.7998,0.695884,-0.566977,-2.80294,0.691923,-0.57025,-2.81031,0.682614,-0.527864,-2.8103,0.682635,-0.522527,-2.7998,0.695884,-0.65131,-2.81073,0.682087,-0.63308,-2.81912,0.671506,-0.623158,-2.80407,0.690499,-0.57025,-2.81031,0.682614,-0.537246,-2.81636,0.674989,-0.527864,-2.8103,0.682635,-0.563925,-2.81663,0.674645,-0.537246,-2.81636,0.674989,-0.57025,-2.81031,0.682614,-0.656674,-2.82272,0.66696,-0.63308,-2.81912,0.671506,-0.65131,-2.81073,0.682087,-0.55439,-2.81917,0.671435,-0.537246,-2.81636,0.674989,-0.563925,-2.81663,0.674645,-0.656674,-2.82272,0.66696,-0.637787,-2.83934,0.645974,-0.63308,-2.81912,0.671506,-0.657739,-2.8466,0.636819,-0.637787,-2.83934,0.645974,-0.656674,-2.82272,0.66696,-0.655099,-2.86568,0.61273,-0.655099,-2.86568,0.61273,-0.630366,-2.87165,0.605197,-0.637787,-2.83934,0.645974,-0.53424,-2.85838,0.621942,-0.517051,-2.86095,0.6187,-0.522816,-2.856,0.624952,-0.538322,-2.86565,0.612763,-0.517051,-2.86095,0.6187,-0.53424,-2.85838,0.621942,-0.538322,-2.86565,0.612763,-0.517663,-2.87103,0.605982,-0.517051,-2.86095,0.6187,-0.646951,-2.87549,0.600352,-0.630366,-2.87165,0.605197,-0.655099,-2.86568,0.61273,-0.549578,-2.88062,0.593873,-0.517663,-2.87103,0.605982,-0.538322,-2.86565,0.612763,-0.646951,-2.87549,0.600352,-0.621716,-2.8815,0.592767,-0.630366,-2.87165,0.605197,-0.645524,-2.87932,0.59551,-0.621716,-2.8815,0.592767,-0.646951,-2.87549,0.600352,-0.549578,-2.88062,0.593873,-0.530298,-2.88458,0.588872,-0.517663,-2.87103,0.605982,-0.557396,-2.88614,0.586901,-0.530298,-2.88458,0.588872,-0.549578,-2.88062,0.593873,-0.641658,-2.88301,0.590856,-0.621716,-2.8815,0.592767,-0.645524,-2.87932,0.59551,-0.637931,-2.8852,0.588091,-0.621716,-2.8815,0.592767,-0.641658,-2.88301,0.590856,-0.637085,-2.88683,0.586036,-0.621716,-2.8815,0.592767,-0.637931,-2.8852,0.588091,-0.637085,-2.88683,0.586036,-0.599523,-2.89005,0.581964,-0.621716,-2.8815,0.592767,-0.563005,-2.88941,0.582778,-0.530298,-2.88458,0.588872,-0.557396,-2.88614,0.586901,-0.563005,-2.88941,0.582778,-0.542089,-2.8909,0.580894,-0.530298,-2.88458,0.588872,-0.62916,-2.89089,0.580913,-0.599523,-2.89005,0.581964,-0.637085,-2.88683,0.586036,-0.599523,-2.89005,0.581964,-0.542089,-2.8909,0.580894,-0.563005,-2.88941,0.582778,-0.62916,-2.89089,0.580913,-0.542089,-2.8909,0.580894,-0.599523,-2.89005,0.581964,-0.609711,-2.89529,0.575361,-0.542089,-2.8909,0.580894,-0.62916,-2.89089,0.580913,-0.609711,-2.89529,0.575361,-0.568686,-2.89789,0.57207,-0.542089,-2.8909,0.580894,1.55869,-3.28457,1.8446,1.64896,-3.26784,1.86571,1.59014,-3.27157,1.86101,1.55869,-3.28457,1.8446,1.72551,-3.28914,1.83883,1.64896,-3.26784,1.86571,1.63875,-3.29028,1.83739,1.72551,-3.28914,1.83883,1.55869,-3.28457,1.8446,1.55869,-3.28457,1.8446,1.59473,-3.29413,1.83253,1.63875,-3.29028,1.83739,1.53669,-3.31115,1.81104,1.59473,-3.29413,1.83253,1.55869,-3.28457,1.8446,1.68146,-3.30484,1.81901,1.72551,-3.28914,1.83883,1.63875,-3.29028,1.83739,1.68146,-3.30484,1.81901,1.75373,-3.31547,1.80559,1.72551,-3.28914,1.83883,1.53669,-3.31115,1.81104,1.59178,-3.30716,1.81608,1.59473,-3.29413,1.83253,1.53669,-3.31115,1.81104,1.60122,-3.31782,1.80263,1.59178,-3.30716,1.81608,1.69362,-3.32721,1.79077,1.75373,-3.31547,1.80559,1.68146,-3.30484,1.81901,1.59778,-3.33002,1.78723,1.69362,-3.32721,1.79077,1.73848,-3.35554,1.75502,1.75373,-3.31547,1.80559,1.54169,-3.33514,1.78077,1.68843,-3.3501,1.76188,1.54169,-3.33514,1.78077,1.5767,-3.33705,1.77834,1.59778,-3.33002,1.78723,1.63061,-3.38867,1.7132,1.73848,-3.35554,1.75502,1.68843,-3.3501,1.76188,1.63061,-3.38867,1.7132,1.67902,-3.39348,1.70712,1.73848,-3.35554,1.75502,1.63061,-3.38867,1.7132,1.61943,-3.42145,1.67182,1.67902,-3.39348,1.70712,1.58078,-3.43467,1.65513,1.61943,-3.42145,1.67182,1.63061,-3.38867,1.7132,1.58078,-3.43467,1.65513,1.61273,-3.45167,1.63367,1.61943,-3.42145,1.67182,1.57947,-3.45261,1.63249,1.61273,-3.45167,1.63367,1.58078,-3.43467,1.65513,1.59794,-3.45764,1.62613,1.61273,-3.45167,1.63367,1.57947,-3.45261,1.63249,1.56628,-3.49757,1.57573,1.61954,-3.49098,1.58405,1.58919,-3.48408,1.59276,1.56628,-3.49757,1.57573,1.62969,-3.50765,1.56301,1.61954,-3.49098,1.58405,1.5667,-3.52205,1.54484,1.62969,-3.50765,1.56301,1.56628,-3.49757,1.57573,1.5667,-3.52205,1.54484,1.61608,-3.5235,1.543,1.62969,-3.50765,1.56301,1.5667,-3.52205,1.54484,1.59747,-3.52697,1.53862,1.61608,-3.5235,1.543,1.17863,-3.30364,1.82053,1.20351,-3.31317,1.80849,1.19261,-3.30233,1.82218,1.15989,-3.31879,1.8014,1.20351,-3.31317,1.80849,1.17863,-3.30364,1.82053,1.33979,-3.32118,1.79838,1.35985,-3.30247,1.822,1.34157,-3.30654,1.81687,1.15989,-3.31879,1.8014,1.18422,-3.33409,1.78209,1.20351,-3.31317,1.80849,1.33979,-3.32118,1.79838,1.38625,-3.32606,1.79222,1.35985,-3.30247,1.822,1.35726,-3.33135,1.78554,1.38625,-3.32606,1.79222,1.33979,-3.32118,1.79838,1.14462,-3.34787,1.7647,1.18422,-3.33409,1.78209,1.15989,-3.31879,1.8014,1.14462,-3.34787,1.7647,1.16559,-3.3656,1.74232,1.18422,-3.33409,1.78209,1.35726,-3.33135,1.78554,1.41024,-3.38005,1.72407,1.38625,-3.32606,1.79222,1.26625,-3.35053,1.76134,1.29141,-3.35971,1.74975,1.28331,-3.3508,1.76099,1.25513,-3.35909,1.75053,1.29141,-3.35971,1.74975,1.26625,-3.35053,1.76134,1.38483,-3.37919,1.72515,1.41024,-3.38005,1.72407,1.35726,-3.33135,1.78554,1.13815,-3.37142,1.73497,1.16559,-3.3656,1.74232,1.14462,-3.34787,1.7647,1.25513,-3.35909,1.75053,1.28714,-3.37153,1.73484,1.29141,-3.35971,1.74975,1.26207,-3.39214,1.70881,1.28714,-3.37153,1.73484,1.25513,-3.35909,1.75053,1.26207,-3.39214,1.70881,1.28705,-3.44446,1.64277,1.28714,-3.37153,1.73484,1.13815,-3.37142,1.73497,1.16932,-3.43649,1.65283,1.16559,-3.3656,1.74232,1.38483,-3.37919,1.72515,1.41616,-3.42239,1.67064,1.41024,-3.38005,1.72407,1.13814,-3.42781,1.66378,1.16932,-3.43649,1.65283,1.13815,-3.37142,1.73497,1.38547,-3.44029,1.64803,1.41616,-3.42239,1.67064,1.38483,-3.37919,1.72515,1.38547,-3.44029,1.64803,1.40923,-3.45272,1.63235,1.41616,-3.42239,1.67064,1.37304,-3.46896,1.61186,1.40923,-3.45272,1.63235,1.38547,-3.44029,1.64803,1.15638,-3.47896,1.59923,1.16932,-3.43649,1.65283,1.13814,-3.42781,1.66378,1.37304,-3.46896,1.61186,1.39135,-3.48557,1.59088,1.40923,-3.45272,1.63235,1.25816,-3.50069,1.57179,1.28705,-3.44446,1.64277,1.26207,-3.39214,1.70881,1.15638,-3.47896,1.59923,1.18612,-3.47668,1.6021,1.16932,-3.43649,1.65283,1.25816,-3.50069,1.57179,1.2902,-3.49466,1.57941,1.28705,-3.44446,1.64277,1.35068,-3.49095,1.58409,1.39135,-3.48557,1.59088,1.37304,-3.46896,1.61186,1.15638,-3.47896,1.59923,1.20675,-3.49327,1.58116,1.18612,-3.47668,1.6021,1.19283,-3.50632,1.56469,1.20675,-3.49327,1.58116,1.15638,-3.47896,1.59923,1.32541,-3.50013,1.57251,1.39135,-3.48557,1.59088,1.35068,-3.49095,1.58409,1.32541,-3.50013,1.57251,1.36668,-3.50447,1.56703,1.39135,-3.48557,1.59088,1.19283,-3.50632,1.56469,1.23815,-3.50095,1.57147,1.20675,-3.49327,1.58116,1.25816,-3.50069,1.57179,1.29953,-3.50112,1.57125,1.2902,-3.49466,1.57941,1.29953,-3.50112,1.57125,1.36668,-3.50447,1.56703,1.32541,-3.50013,1.57251,1.25816,-3.50069,1.57179,1.36668,-3.50447,1.56703,1.29953,-3.50112,1.57125,1.19283,-3.50632,1.56469,1.25816,-3.50069,1.57179,1.23815,-3.50095,1.57147,1.19283,-3.50632,1.56469,1.36668,-3.50447,1.56703,1.25816,-3.50069,1.57179,1.19283,-3.50632,1.56469,1.31076,-3.51849,1.54934,1.36668,-3.50447,1.56703,1.22874,-3.51706,1.55114,1.31076,-3.51849,1.54934,1.19283,-3.50632,1.56469,0.896425,-3.30444,1.81951,1.00858,-3.30668,1.81668,0.946792,-3.29933,1.82597,0.872868,-3.31255,1.80928,1.00858,-3.30668,1.81668,0.896425,-3.30444,1.81951,0.925479,-3.31531,1.80579,0.973231,-3.31516,1.80598,0.872868,-3.31255,1.80928,0.973231,-3.31516,1.80598,1.00858,-3.30668,1.81668,0.872868,-3.31255,1.80928,0.973231,-3.31516,1.80598,1.04333,-3.32577,1.79259,1.00858,-3.30668,1.81668,0.872868,-3.31255,1.80928,0.895712,-3.32325,1.79578,0.925479,-3.31531,1.80579,0.835049,-3.33609,1.77956,0.895712,-3.32325,1.79578,0.872868,-3.31255,1.80928,1.02039,-3.33536,1.78048,1.04333,-3.32577,1.79259,0.973231,-3.31516,1.80598,0.835049,-3.33609,1.77956,0.867913,-3.34828,1.76418,0.895712,-3.32325,1.79578,1.02039,-3.33536,1.78048,1.06801,-3.36489,1.74321,1.04333,-3.32577,1.79259,0.810925,-3.36437,1.74386,0.867913,-3.34828,1.76418,0.835049,-3.33609,1.77956,0.810925,-3.36437,1.74386,0.870903,-3.36135,1.74768,0.867913,-3.34828,1.76418,1.03203,-3.36207,1.74677,1.06801,-3.36489,1.74321,1.02039,-3.33536,1.78048,0.810925,-3.36437,1.74386,1.03203,-3.36207,1.74677,0.870903,-3.36135,1.74768,0.810925,-3.36437,1.74386,1.06801,-3.36489,1.74321,1.03203,-3.36207,1.74677,0.810925,-3.36437,1.74386,1.06529,-3.37911,1.72526,1.06801,-3.36489,1.74321,0.801132,-3.3825,1.72098,1.06529,-3.37911,1.72526,0.810925,-3.36437,1.74386,0.801132,-3.3825,1.72098,0.854493,-3.38226,1.72129,1.06529,-3.37911,1.72526,0.801132,-3.3825,1.72098,0.848037,-3.38995,1.71158,0.854493,-3.38226,1.72129,0.801132,-3.3825,1.72098,0.84774,-3.41933,1.6745,0.848037,-3.38995,1.71158,0.805974,-3.43503,1.65467,0.84774,-3.41933,1.6745,0.801132,-3.3825,1.72098,0.805974,-3.43503,1.65467,0.858841,-3.46073,1.62224,0.84774,-3.41933,1.6745,0.816638,-3.45839,1.62519,0.858841,-3.46073,1.62224,0.805974,-3.43503,1.65467,1.03006,-3.46324,1.61906,1.06224,-3.46598,1.61561,1.04922,-3.45934,1.62399,0.843182,-3.48881,1.5868,0.858841,-3.46073,1.62224,0.816638,-3.45839,1.62519,1.03006,-3.46324,1.61906,1.06042,-3.4846,1.59211,1.06224,-3.46598,1.61561,0.843182,-3.48881,1.5868,0.888976,-3.4949,1.57911,0.858841,-3.46073,1.62224,1.00434,-3.4911,1.58391,1.06042,-3.4846,1.59211,1.03006,-3.46324,1.61906,0.987486,-3.49811,1.57505,1.06042,-3.4846,1.59211,1.00434,-3.4911,1.58391,0.987486,-3.49811,1.57505,1.02696,-3.50951,1.56067,1.06042,-3.4846,1.59211,0.843182,-3.48881,1.5868,0.94305,-3.50614,1.56491,0.888976,-3.4949,1.57911,0.94305,-3.50614,1.56491,1.02696,-3.50951,1.56067,0.987486,-3.49811,1.57505,0.901987,-3.51794,1.55003,0.94305,-3.50614,1.56491,0.843182,-3.48881,1.5868,0.901987,-3.51794,1.55003,1.02696,-3.50951,1.56067,0.94305,-3.50614,1.56491,0.901987,-3.51794,1.55003,0.984774,-3.5198,1.54767,1.02696,-3.50951,1.56067,0.438,-3.20489,1.94517,0.506868,-3.21,1.93871,0.485926,-3.19831,1.95348,0.659361,-3.20225,1.9485,0.712239,-3.21222,1.93591,0.696066,-3.20054,1.95066,0.42964,-3.21227,1.93585,0.506868,-3.21,1.93871,0.438,-3.20489,1.94517,0.647622,-3.21707,1.92979,0.712239,-3.21222,1.93591,0.659361,-3.20225,1.9485,0.647622,-3.21707,1.92979,0.702235,-3.24778,1.89103,0.712239,-3.21222,1.93591,0.440199,-3.24393,1.89589,0.506868,-3.21,1.93871,0.42964,-3.21227,1.93585,0.507779,-3.25028,1.88787,0.660545,-3.35762,1.75239,0.702235,-3.24778,1.89103,0.647622,-3.21707,1.92979,0.48125,-3.29874,1.8267,0.507779,-3.25028,1.88787,0.440199,-3.24393,1.89589,0.48125,-3.29874,1.8267,0.572425,-3.31001,1.81248,0.507779,-3.25028,1.88787,0.660545,-3.35762,1.75239,0.696909,-3.45551,1.62882,0.702235,-3.24778,1.89103,0.55776,-3.36282,1.74583,0.55776,-3.36282,1.74583,0.63393,-3.36019,1.74915,0.572425,-3.31001,1.81248,0.434736,-3.4576,1.62619,0.48125,-3.29874,1.8267,0.440199,-3.24393,1.89589,0.598873,-3.39717,1.70246,0.63393,-3.36019,1.74915,0.55776,-3.36282,1.74583,0.598873,-3.39717,1.70246,0.655312,-3.38059,1.72339,0.63393,-3.36019,1.74915,0.655312,-3.38059,1.72339,0.696909,-3.45551,1.62882,0.660545,-3.35762,1.75239,0.598873,-3.39717,1.70246,0.696909,-3.45551,1.62882,0.655312,-3.38059,1.72339,0.434736,-3.4576,1.62619,0.470675,-3.4747,1.6046,0.48125,-3.29874,1.8267,0.625852,-3.41887,1.67508,0.696909,-3.45551,1.62882,0.598873,-3.39717,1.70246,0.652009,-3.45465,1.62991,0.696909,-3.45551,1.62882,0.625852,-3.41887,1.67508,0.652009,-3.45465,1.62991,0.706969,-3.50317,1.56867,0.696909,-3.45551,1.62882,0.425383,-3.49064,1.58448,0.470675,-3.4747,1.6046,0.434736,-3.4576,1.62619,0.64664,-3.49707,1.57637,0.425383,-3.49064,1.58448,0.453633,-3.51408,1.55489,0.470675,-3.4747,1.6046,0.654041,-3.51125,1.55847,0.706969,-3.50317,1.56867,0.64664,-3.49707,1.57637,0.386078,-3.53538,1.52802,0.453633,-3.51408,1.55489,0.425383,-3.49064,1.58448,0.654041,-3.51125,1.55847,0.6987,-3.51484,1.55394,0.706969,-3.50317,1.56867,0.671642,-3.51677,1.5515,0.6987,-3.51484,1.55394,0.654041,-3.51125,1.55847,0.386078,-3.53538,1.52802,0.446716,-3.52853,1.53666,0.453633,-3.51408,1.55489,0.386078,-3.53538,1.52802,0.416235,-3.55761,1.49996,0.446716,-3.52853,1.53666,0.355052,-3.54232,1.51925,0.416235,-3.55761,1.49996,0.386078,-3.53538,1.52802,0.327904,-3.55367,1.50493,0.416235,-3.55761,1.49996,0.355052,-3.54232,1.51925,0.331461,-3.57936,1.4725,0.416235,-3.55761,1.49996,0.327904,-3.55367,1.50493,0.331461,-3.57936,1.4725,0.366022,-3.58449,1.46603,-0.082053,-3.30106,1.82378,0.131191,-3.309,1.81376,0.121811,-3.29957,1.82566,-0.089402,-3.3164,1.80442,0.131191,-3.309,1.81376,-0.082053,-3.30106,1.82378,-0.089402,-3.3164,1.80442,0.127009,-3.32026,1.79955,0.131191,-3.309,1.81376,-0.044196,-3.32084,1.79881,0.127009,-3.32026,1.79955,-0.089402,-3.3164,1.80442,-0.079259,-3.32314,1.79591,-0.044196,-3.32084,1.79881,-0.089402,-3.3164,1.80442,0.053855,-3.32109,1.7985,0.127009,-3.32026,1.79955,-0.044196,-3.32084,1.79881,0.083251,-3.32213,1.79719,0.127009,-3.32026,1.79955,0.053855,-3.32109,1.7985,0.110996,-3.33021,1.78698,0.127009,-3.32026,1.79955,0.083251,-3.32213,1.79719,-0.044196,-3.32084,1.79881,0.020895,-3.3309,1.78611,0.053855,-3.32109,1.7985,-0.037957,-3.32877,1.7888,0.020895,-3.3309,1.78611,-0.044196,-3.32084,1.79881,-0.048955,-3.34477,1.7686,0.020895,-3.3309,1.78611,-0.037957,-3.32877,1.7888,-0.048955,-3.34477,1.7686,-0.001939,-3.34288,1.771,0.020895,-3.3309,1.78611,-0.048955,-3.34477,1.7686,-0.022607,-3.36085,1.7483,-0.001939,-3.34288,1.771,-0.063181,-3.36505,1.74301,-0.063181,-3.36505,1.74301,-0.034639,-3.38377,1.71937,-0.022607,-3.36085,1.7483,-0.073889,-3.39797,1.70146,-0.034639,-3.38377,1.71937,-0.063181,-3.36505,1.74301,-0.03521,-3.44017,1.64819,-0.068578,-3.45298,1.63201,-0.068578,-3.45298,1.63201,-0.027881,-3.45732,1.62654,-0.03521,-3.44017,1.64819,0.135538,-3.4318,1.65875,0.135535,-3.47293,1.60684,0.147711,-3.43228,1.65815,0.098721,-3.46759,1.61358,-0.053833,-3.48069,1.59704,-0.027881,-3.45732,1.62654,-0.068578,-3.45298,1.63201,-0.053833,-3.48069,1.59704,-0.007625,-3.48046,1.59733,-0.027881,-3.45732,1.62654,0.070897,-3.48219,1.59516,0.135535,-3.47293,1.60684,0.098721,-3.46759,1.61358,0.105766,-3.49574,1.57805,-0.053833,-3.48069,1.59704,0.006698,-3.48877,1.58685,-0.007625,-3.48046,1.59733,0.044554,-3.4908,1.58428,-0.034677,-3.49857,1.57447,0.006698,-3.48877,1.58685,-0.053833,-3.48069,1.59704,-0.034677,-3.49857,1.57447,0.044554,-3.4908,1.58428,0.006698,-3.48877,1.58685,-0.034677,-3.49857,1.57447,0.105766,-3.49574,1.57805,0.044554,-3.4908,1.58428,-0.034677,-3.49857,1.57447,0.0672,-3.51452,1.55434,0.105766,-3.49574,1.57805,-0.00597,-3.51248,1.55691,0.0672,-3.51452,1.55434,-0.034677,-3.49857,1.57447,-0.00597,-3.51248,1.55691,0.035004,-3.51843,1.54941,0.0672,-3.51452,1.55434,-0.326632,-3.30062,1.82433,-0.196335,-3.30465,1.81924,-0.249248,-3.29458,1.83196,-0.377977,-3.30603,1.8175,-0.326632,-3.30062,1.82433,-0.364505,-3.29397,1.83273,-0.377977,-3.30603,1.8175,-0.196335,-3.30465,1.81924,-0.326632,-3.30062,1.82433,-0.27959,-3.31383,1.80766,-0.242583,-3.31357,1.80799,-0.377977,-3.30603,1.8175,-0.242583,-3.31357,1.80799,-0.196335,-3.30465,1.81924,-0.377977,-3.30603,1.8175,-0.242583,-3.31357,1.80799,-0.168316,-3.32487,1.79373,-0.196335,-3.30465,1.81924,-0.377977,-3.30603,1.8175,-0.30378,-3.32384,1.79503,-0.27959,-3.31383,1.80766,-0.217779,-3.32464,1.79402,-0.168316,-3.32487,1.79373,-0.242583,-3.31357,1.80799,-0.34973,-3.33139,1.7855,-0.30378,-3.32384,1.79503,-0.377977,-3.30603,1.8175,-0.200705,-3.34248,1.77149,-0.168316,-3.32487,1.79373,-0.217779,-3.32464,1.79402,-0.200705,-3.34248,1.77149,-0.159626,-3.35881,1.75088,-0.168316,-3.32487,1.79373,-0.34973,-3.33139,1.7855,-0.317314,-3.41263,1.68295,-0.30378,-3.32384,1.79503,-0.198707,-3.36864,1.73848,-0.159626,-3.35881,1.75088,-0.200705,-3.34248,1.77149,-0.198707,-3.36864,1.73848,-0.176068,-3.39631,1.70355,-0.159626,-3.35881,1.75088,-0.219167,-3.39841,1.70089,-0.176068,-3.39631,1.70355,-0.198707,-3.36864,1.73848,-0.249949,-3.4143,1.68085,-0.176068,-3.39631,1.70355,-0.219167,-3.39841,1.70089,-0.348036,-3.49055,1.58459,-0.317314,-3.41263,1.68295,-0.34973,-3.33139,1.7855,-0.249949,-3.4143,1.68085,-0.205163,-3.41728,1.67708,-0.176068,-3.39631,1.70355,-0.348036,-3.49055,1.58459,-0.304934,-3.42175,1.67143,-0.317314,-3.41263,1.68295,-0.304934,-3.42175,1.67143,-0.205163,-3.41728,1.67708,-0.249949,-3.4143,1.68085,-0.348036,-3.49055,1.58459,-0.315327,-3.44136,1.64668,-0.304934,-3.42175,1.67143,-0.315327,-3.44136,1.64668,-0.205163,-3.41728,1.67708,-0.304934,-3.42175,1.67143,-0.315327,-3.44136,1.64668,-0.235973,-3.42865,1.66272,-0.205163,-3.41728,1.67708,-0.315327,-3.44136,1.64668,-0.268905,-3.43704,1.65215,-0.235973,-3.42865,1.66272,-0.268905,-3.43704,1.65215,-0.242319,-3.43755,1.65149,-0.235973,-3.42865,1.66272,-0.244823,-3.47093,1.60937,-0.242319,-3.43755,1.65149,-0.268905,-3.43704,1.65215,-0.244823,-3.47093,1.60937,-0.221224,-3.46122,1.62162,-0.242319,-3.43755,1.65149,-0.244823,-3.47093,1.60937,-0.203183,-3.47683,1.60191,-0.221224,-3.46122,1.62162,-0.229762,-3.48875,1.58687,-0.203183,-3.47683,1.60191,-0.244823,-3.47093,1.60937,-0.348036,-3.49055,1.58459,-0.318551,-3.5151,1.5536,-0.315327,-3.44136,1.64668,-0.176328,-3.48544,1.59105,-0.139205,-3.4767,1.60208,-0.159746,-3.47496,1.60427,-0.176328,-3.48544,1.59105,-0.130019,-3.48805,1.58775,-0.139205,-3.4767,1.60208,-0.229762,-3.48875,1.58687,-0.176328,-3.48544,1.59105,-0.203183,-3.47683,1.60191,-0.229762,-3.48875,1.58687,-0.130019,-3.48805,1.58775,-0.176328,-3.48544,1.59105,-0.229762,-3.48875,1.58687,-0.139228,-3.50751,1.56318,-0.130019,-3.48805,1.58775,-0.359986,-3.51496,1.55379,-0.318551,-3.5151,1.5536,-0.348036,-3.49055,1.58459,-0.193608,-3.51217,1.55731,-0.193608,-3.51217,1.55731,-0.158515,-3.51476,1.55403,-0.139228,-3.50751,1.56318,-0.359986,-3.51496,1.55379,-0.323895,-3.51908,1.54858,-0.318551,-3.5151,1.5536,-0.349973,-3.53168,1.53269,-0.323895,-3.51908,1.54858,-0.359986,-3.51496,1.55379,-0.349973,-3.53168,1.53269,-0.333065,-3.53035,1.53436,-0.323895,-3.51908,1.54858,-0.652225,-3.30749,1.81566,-0.637853,-3.29805,1.82757,-0.645108,-3.29399,1.8327,-0.652225,-3.30749,1.81566,-0.605315,-3.29986,1.82529,-0.637853,-3.29805,1.82757,-0.652225,-3.30749,1.81566,-0.562771,-3.30335,1.82089,-0.605315,-3.29986,1.82529,-0.652225,-3.30749,1.81566,-0.539892,-3.31771,1.80276,-0.562771,-3.30335,1.82089,-0.588114,-3.32023,1.79958,-0.539892,-3.31771,1.80276,-0.652225,-3.30749,1.81566,-0.588114,-3.32023,1.79958,-0.521892,-3.33841,1.77663,-0.539892,-3.31771,1.80276,-0.571107,-3.32595,1.79236,-0.521892,-3.33841,1.77663,-0.588114,-3.32023,1.79958,-0.635779,-3.33183,1.78494,-0.588114,-3.32023,1.79958,-0.652225,-3.30749,1.81566,-0.547687,-3.35277,1.75851,-0.521892,-3.33841,1.77663,-0.571107,-3.32595,1.79236,-0.600181,-3.33752,1.77775,-0.573135,-3.35213,1.75931,-0.586043,-3.33488,1.7811,-0.625599,-3.36259,1.74612,-0.573135,-3.35213,1.75931,-0.600181,-3.33752,1.77775,-0.547687,-3.35277,1.75851,-0.512745,-3.36041,1.74886,-0.521892,-3.33841,1.77663,-0.625599,-3.36259,1.74612,-0.59825,-3.37954,1.72472,-0.573135,-3.35213,1.75931,-0.547687,-3.35277,1.75851,-0.505189,-3.38253,1.72095,-0.512745,-3.36041,1.74886,-0.526483,-3.40224,1.69606,-0.505189,-3.38253,1.72095,-0.547687,-3.35277,1.75851,-0.642533,-3.39821,1.70115,-0.59825,-3.37954,1.72472,-0.625599,-3.36259,1.74612,-0.642533,-3.39821,1.70115,-0.609729,-3.39924,1.69985,-0.59825,-3.37954,1.72472,-0.488604,-3.40635,1.69088,-0.617677,-3.44207,1.64579,-0.52046,-3.42734,1.66439,-0.488604,-3.40635,1.69088,-0.526483,-3.40224,1.69606,-0.654996,-3.43158,1.65904,-0.617677,-3.44207,1.64579,-0.642533,-3.39821,1.70115,-0.52046,-3.42734,1.66439,-0.48335,-3.42313,1.6697,-0.488604,-3.40635,1.69088,-0.532716,-3.43718,1.65196,-0.48335,-3.42313,1.6697,-0.52046,-3.42734,1.66439,-0.532716,-3.43718,1.65196,-0.470293,-3.44461,1.64258,-0.48335,-3.42313,1.6697,-0.617677,-3.44207,1.64579,-0.470293,-3.44461,1.64258,-0.532716,-3.43718,1.65196,-0.662701,-3.4509,1.63464,-0.617677,-3.44207,1.64579,-0.654996,-3.43158,1.65904,-0.662701,-3.4509,1.63464,-0.470293,-3.44461,1.64258,-0.617677,-3.44207,1.64579,-0.673215,-3.50093,1.5715,-0.617546,-3.46095,1.62196,-0.662701,-3.4509,1.63464,-0.617546,-3.46095,1.62196,-0.470293,-3.44461,1.64258,-0.662701,-3.4509,1.63464,-0.617546,-3.46095,1.62196,-0.528851,-3.45998,1.62318,-0.470293,-3.44461,1.64258,-0.500726,-3.46022,1.62288,-0.470293,-3.44461,1.64258,-0.528851,-3.45998,1.62318,-0.500726,-3.46022,1.62288,-0.456269,-3.46545,1.61628,-0.470293,-3.44461,1.64258,-0.673215,-3.50093,1.5715,-0.634566,-3.47759,1.60096,-0.617546,-3.46095,1.62196,-0.482693,-3.48936,1.5861,-0.456269,-3.46545,1.61628,-0.500726,-3.46022,1.62288,-0.482693,-3.48936,1.5861,-0.43774,-3.48829,1.58745,-0.456269,-3.46545,1.61628,-0.482693,-3.48936,1.5861,-0.425312,-3.49753,1.57578,-0.43774,-3.48829,1.58745,-0.673215,-3.50093,1.5715,-0.647035,-3.51201,1.55751,-0.634566,-3.47759,1.60096,-0.46282,-3.51011,1.5599,-0.425312,-3.49753,1.57578,-0.482693,-3.48936,1.5861,-0.678011,-3.51801,1.54993,-0.647035,-3.51201,1.55751,-0.673215,-3.50093,1.5715,-0.46282,-3.51011,1.5599,-0.428366,-3.51294,1.55634,-0.425312,-3.49753,1.57578,-0.448748,-3.51775,1.55026,-0.428366,-3.51294,1.55634,-0.46282,-3.51011,1.5599,-0.678011,-3.51801,1.54993,-0.660526,-3.53624,1.52692,-0.647035,-3.51201,1.55751,-0.758826,-3.53175,1.53259,-0.730937,-3.52889,1.5362,-0.749114,-3.526,1.53986,-0.690443,-3.53533,1.52807,-0.758826,-3.53175,1.53259,-0.727742,-3.53601,1.52721,-0.730937,-3.52889,1.5362,-0.758826,-3.53175,1.53259,-0.718787,-3.54249,1.51903,-0.727742,-3.53601,1.52721,-0.690443,-3.53533,1.52807,-0.6655,-3.54435,1.51669,-0.660526,-3.53624,1.52692,-0.746413,-3.55567,1.5024,-0.718787,-3.54249,1.51903,-0.758826,-3.53175,1.53259,-0.718787,-3.54249,1.51903,-0.6655,-3.54435,1.51669,-0.690443,-3.53533,1.52807,-0.746413,-3.55567,1.5024,-0.6655,-3.54435,1.51669,-0.718787,-3.54249,1.51903,-0.746413,-3.55567,1.5024,-0.684315,-3.55841,1.49895,-0.6655,-3.54435,1.51669,-0.746413,-3.55567,1.5024,-0.71394,-3.56041,1.49642,-0.684315,-3.55841,1.49895,-0.746413,-3.55567,1.5024,-0.732164,-3.56164,1.49486,-0.71394,-3.56041,1.49642,-0.970781,-3.30106,1.82378,-0.757537,-3.309,1.81376,-0.766917,-3.29957,1.82566,-0.97813,-3.3164,1.80442,-0.757537,-3.309,1.81376,-0.970781,-3.30106,1.82378,-0.97813,-3.3164,1.80442,-0.761719,-3.32026,1.79955,-0.757537,-3.309,1.81376,-0.932924,-3.32084,1.79881,-0.761719,-3.32026,1.79955,-0.97813,-3.3164,1.80442,-0.967987,-3.32314,1.79591,-0.932924,-3.32084,1.79881,-0.97813,-3.3164,1.80442,-0.834874,-3.32109,1.7985,-0.761719,-3.32026,1.79955,-0.932924,-3.32084,1.79881,-0.805478,-3.32213,1.79719,-0.761719,-3.32026,1.79955,-0.834874,-3.32109,1.7985,-0.777732,-3.33021,1.78698,-0.761719,-3.32026,1.79955,-0.805478,-3.32213,1.79719,-0.932924,-3.32084,1.79881,-0.867834,-3.3309,1.78611,-0.834874,-3.32109,1.7985,-0.926685,-3.32877,1.7888,-0.867834,-3.3309,1.78611,-0.932924,-3.32084,1.79881,-0.937684,-3.34477,1.7686,-0.867834,-3.3309,1.78611,-0.926685,-3.32877,1.7888,-0.937684,-3.34477,1.7686,-0.890667,-3.34288,1.771,-0.867834,-3.3309,1.78611,-0.937684,-3.34477,1.7686,-0.911335,-3.36085,1.7483,-0.890667,-3.34288,1.771,-0.951868,-3.36501,1.74306,-0.951868,-3.36501,1.74306,-0.923367,-3.38377,1.71937,-0.911335,-3.36085,1.7483,-0.962635,-3.39822,1.70115,-0.923367,-3.38377,1.71937,-0.951868,-3.36501,1.74306,-0.962635,-3.39822,1.70115,-0.923938,-3.44017,1.64819,-0.923367,-3.38377,1.71937,-0.957307,-3.45298,1.63201,-0.923938,-3.44017,1.64819,-0.962635,-3.39822,1.70115,-0.957307,-3.45298,1.63201,-0.915675,-3.45933,1.62401,-0.923938,-3.44017,1.64819,-0.75319,-3.4318,1.65875,-0.753193,-3.47293,1.60684,-0.741018,-3.43228,1.65815,-0.790007,-3.46759,1.61358,-0.753193,-3.47293,1.60684,-0.75319,-3.4318,1.65875,-0.942562,-3.48069,1.59704,-0.915675,-3.45933,1.62401,-0.957307,-3.45298,1.63201,-0.942562,-3.48069,1.59704,-0.894162,-3.48154,1.59597,-0.915675,-3.45933,1.62401,-0.817831,-3.48219,1.59516,-0.753193,-3.47293,1.60684,-0.790007,-3.46759,1.61358,-0.817831,-3.48219,1.59516,-0.782962,-3.49574,1.57805,-0.753193,-3.47293,1.60684,-0.942562,-3.48069,1.59704,-0.88203,-3.48877,1.58685,-0.894162,-3.48154,1.59597,-0.844175,-3.4908,1.58428,-0.782962,-3.49574,1.57805,-0.817831,-3.48219,1.59516,-0.923406,-3.49857,1.57447,-0.88203,-3.48877,1.58685,-0.942562,-3.48069,1.59704,-0.923406,-3.49857,1.57447,-0.844175,-3.4908,1.58428,-0.88203,-3.48877,1.58685,-0.923406,-3.49857,1.57447,-0.782962,-3.49574,1.57805,-0.844175,-3.4908,1.58428,-0.923406,-3.49857,1.57447,-0.825363,-3.51595,1.55254,-0.782962,-3.49574,1.57805,-0.902615,-3.50898,1.56134,-0.879179,-3.51621,1.55221,-0.825363,-3.51595,1.55254,-0.902615,-3.50898,1.56134,-1.3514,-3.21126,1.93712,-1.20227,-3.2166,1.93039,-1.26277,-3.20596,1.94382,-1.378,-3.21896,1.9274,-1.20227,-3.2166,1.93039,-1.3514,-3.21126,1.93712,-1.378,-3.21896,1.9274,-1.17342,-3.22418,1.92082,-1.20227,-3.2166,1.93039,-1.32461,-3.22604,1.91847,-1.17342,-3.22418,1.92082,-1.378,-3.21896,1.9274,-1.2698,-3.22748,1.91666,-1.17342,-3.22418,1.92082,-1.32461,-3.22604,1.91847,-1.378,-3.21896,1.9274,-1.36454,-3.23621,1.90564,-1.32461,-3.22604,1.91847,-1.41549,-3.23821,1.90311,-1.36454,-3.23621,1.90564,-1.378,-3.21896,1.9274,-1.23515,-3.23779,1.90364,-1.17342,-3.22418,1.92082,-1.2698,-3.22748,1.91666,-1.23515,-3.23779,1.90364,-1.15027,-3.2422,1.89808,-1.17342,-3.22418,1.92082,-1.41549,-3.23821,1.90311,-1.38295,-3.25393,1.88327,-1.36454,-3.23621,1.90564,-1.42897,-3.25735,1.87895,-1.38295,-3.25393,1.88327,-1.41549,-3.23821,1.90311,-1.21923,-3.25911,1.87672,-1.15027,-3.2422,1.89808,-1.23515,-3.23779,1.90364,-1.21923,-3.25911,1.87672,-1.15412,-3.25997,1.87565,-1.15027,-3.2422,1.89808,-1.19242,-3.27015,1.86279,-1.42897,-3.25735,1.87895,-1.37827,-3.27756,1.85345,-1.38295,-3.25393,1.88327,-1.42784,-3.28708,1.84142,-1.37827,-3.27756,1.85345,-1.42897,-3.25735,1.87895,-1.42784,-3.28708,1.84142,-1.34652,-3.2931,1.83382,-1.37827,-3.27756,1.85345,-1.41702,-3.29974,1.82545,-1.34652,-3.2931,1.83382,-1.42784,-3.28708,1.84142,-1.41702,-3.29974,1.82545,-1.29021,-3.30083,1.82407,-1.34652,-3.2931,1.83382,-1.41702,-3.29974,1.82545,-1.22584,-3.31239,1.80948,-1.29021,-3.30083,1.82407,-1.38735,-3.31688,1.8038,-1.22584,-3.31239,1.80948,-1.41702,-3.29974,1.82545,-1.38735,-3.31688,1.8038,-1.15553,-3.33248,1.78412,-1.22584,-3.31239,1.80948,-1.36102,-3.32718,1.79081,-1.15553,-3.33248,1.78412,-1.38735,-3.31688,1.8038,-1.28442,-3.34204,1.77205,-1.15553,-3.33248,1.78412,-1.36102,-3.32718,1.79081,-1.26726,-3.34473,1.76866,-1.15553,-3.33248,1.78412,-1.28442,-3.34204,1.77205,-1.24375,-3.34963,1.76247,-1.15553,-3.33248,1.78412,-1.26726,-3.34473,1.76866,-1.24375,-3.34963,1.76247,-1.0931,-3.37445,1.73115,-1.15553,-3.33248,1.78412,-1.18759,-3.36411,1.7442,-1.0931,-3.37445,1.73115,-1.24375,-3.34963,1.76247,-1.15839,-3.38206,1.72153,-1.0931,-3.37445,1.73115,-1.18759,-3.36411,1.7442,-1.13509,-3.41391,1.68134,-1.0931,-3.37445,1.73115,-1.15839,-3.38206,1.72153,-1.13509,-3.41391,1.68134,-1.07988,-3.4114,1.6845,-1.0931,-3.37445,1.73115,-1.42,-3.41487,1.68013,-1.32113,-3.41764,1.67663,-1.37751,-3.40476,1.69288,-1.44959,-3.43459,1.65523,-1.32113,-3.41764,1.67663,-1.42,-3.41487,1.68013,-1.44959,-3.43459,1.65523,-1.30782,-3.43538,1.65424,-1.32113,-3.41764,1.67663,-1.13509,-3.41391,1.68134,-1.09468,-3.45116,1.63431,-1.07988,-3.4114,1.6845,-1.39075,-3.43672,1.65255,-1.30782,-3.43538,1.65424,-1.44959,-3.43459,1.65523,-1.14012,-3.44825,1.63799,-1.44959,-3.43459,1.65523,-1.40667,-3.4408,1.6474,-1.39075,-3.43672,1.65255,-1.39075,-3.43672,1.65255,-1.31883,-3.45483,1.62968,-1.30782,-3.43538,1.65424,-1.36804,-3.44957,1.63633,-1.31883,-3.45483,1.62968,-1.39075,-3.43672,1.65255,-1.45266,-3.47715,1.60151,-1.40667,-3.4408,1.6474,-1.44959,-3.43459,1.65523,-1.41593,-3.46089,1.62204,-1.36516,-3.45426,1.6304,-1.31883,-3.45483,1.62968,-1.36804,-3.44957,1.63633,-1.14842,-3.45648,1.6276,-1.09468,-3.45116,1.63431,-1.14012,-3.44825,1.63799,-1.14842,-3.45648,1.6276,-1.1154,-3.4711,1.60915,-1.09468,-3.45116,1.63431,-1.16119,-3.47031,1.61015,-1.1154,-3.4711,1.60915,-1.14842,-3.45648,1.6276,-1.45266,-3.47715,1.60151,-1.39926,-3.48074,1.59698,-1.41593,-3.46089,1.62204,-1.17295,-3.47639,1.60248,-1.1154,-3.4711,1.60915,-1.16119,-3.47031,1.61015,-1.19583,-3.48501,1.5916,-1.1154,-3.4711,1.60915,-1.17295,-3.47639,1.60248,-1.45266,-3.47715,1.60151,-1.35514,-3.49215,1.58257,-1.39926,-3.48074,1.59698,-1.42142,-3.4981,1.57507,-1.35514,-3.49215,1.58257,-1.45266,-3.47715,1.60151,-1.26522,-3.49729,1.57609,-1.1154,-3.4711,1.60915,-1.19583,-3.48501,1.5916,-1.26522,-3.49729,1.57609,-1.17206,-3.50183,1.57036,-1.1154,-3.4711,1.60915,-1.42142,-3.4981,1.57507,-1.26522,-3.49729,1.57609,-1.35514,-3.49215,1.58257,-1.42142,-3.4981,1.57507,-1.17206,-3.50183,1.57036,-1.26522,-3.49729,1.57609,-1.37021,-3.51106,1.55871,-1.17206,-3.50183,1.57036,-1.42142,-3.4981,1.57507,-1.37021,-3.51106,1.55871,-1.26613,-3.51597,1.55252,-1.17206,-3.50183,1.57036,1.35256,-2.67964,2.60816,1.48285,-2.68367,2.60307,1.42994,-2.6736,2.61579,1.30121,-2.68505,2.60133,1.35256,-2.67964,2.60816,1.31468,-2.67299,2.61655,1.30121,-2.68505,2.60133,1.48285,-2.68367,2.60307,1.35256,-2.67964,2.60816,1.3996,-2.69285,2.59148,1.43661,-2.69259,2.59182,1.30121,-2.68505,2.60133,1.43661,-2.69259,2.59182,1.48285,-2.68367,2.60307,1.30121,-2.68505,2.60133,1.43661,-2.69259,2.59182,1.51087,-2.70389,2.57755,1.48285,-2.68367,2.60307,1.30121,-2.68505,2.60133,1.37541,-2.70286,2.57885,1.3996,-2.69285,2.59148,1.46141,-2.70366,2.57784,1.51087,-2.70389,2.57755,1.43661,-2.69259,2.59182,1.32946,-2.71041,2.56932,1.37541,-2.70286,2.57885,1.30121,-2.68505,2.60133,1.47848,-2.7215,2.55532,1.51087,-2.70389,2.57755,1.46141,-2.70366,2.57784,1.47848,-2.7215,2.55532,1.51956,-2.73783,2.53471,1.51087,-2.70389,2.57755,1.32946,-2.71041,2.56932,1.36188,-2.79165,2.46677,1.37541,-2.70286,2.57885,1.48048,-2.74766,2.52231,1.50312,-2.77533,2.48738,1.46002,-2.77743,2.48472,1.50312,-2.77533,2.48738,1.48048,-2.74766,2.52231,1.42924,-2.79332,2.46467,1.50312,-2.77533,2.48738,1.46002,-2.77743,2.48472,1.33115,-2.86957,2.36842,1.36188,-2.79165,2.46677,1.32946,-2.71041,2.56932,1.42924,-2.79332,2.46467,1.47403,-2.7963,2.4609,1.50312,-2.77533,2.48738,1.33115,-2.86957,2.36842,1.37426,-2.80077,2.45526,1.36188,-2.79165,2.46677,1.37426,-2.80077,2.45526,1.47403,-2.7963,2.4609,1.42924,-2.79332,2.46467,1.33115,-2.86957,2.36842,1.36386,-2.82038,2.43051,1.37426,-2.80077,2.45526,1.36386,-2.82038,2.43051,1.47403,-2.7963,2.4609,1.37426,-2.80077,2.45526,1.36386,-2.82038,2.43051,1.44322,-2.80767,2.44655,1.47403,-2.7963,2.4609,1.36386,-2.82038,2.43051,1.41029,-2.81606,2.43597,1.44322,-2.80767,2.44655,1.41029,-2.81606,2.43597,1.43696,-2.81804,2.43346,1.44322,-2.80767,2.44655,1.43465,-2.85005,2.39305,1.43696,-2.81804,2.43346,1.41029,-2.81606,2.43597,1.43465,-2.85005,2.39305,1.45815,-2.84026,2.40542,1.43696,-2.81804,2.43346,1.43465,-2.85005,2.39305,1.47588,-2.8557,2.38593,1.45815,-2.84026,2.40542,1.33115,-2.86957,2.36842,1.36064,-2.89412,2.33743,1.36386,-2.82038,2.43051,1.44578,-2.86344,2.37616,1.47588,-2.8557,2.38593,1.43465,-2.85005,2.39305,1.50243,-2.86459,2.37471,1.54273,-2.85674,2.38462,1.51944,-2.85398,2.3881,1.44578,-2.86344,2.37616,1.50243,-2.86459,2.37471,1.47588,-2.8557,2.38593,1.50243,-2.86459,2.37471,1.54863,-2.86987,2.36804,1.54273,-2.85674,2.38462,1.44578,-2.86344,2.37616,1.54863,-2.86987,2.36804,1.50243,-2.86459,2.37471,1.47129,-2.88484,2.34915,1.54863,-2.86987,2.36804,1.44578,-2.86344,2.37616,1.47129,-2.88484,2.34915,1.53996,-2.88653,2.34701,1.54863,-2.86987,2.36804,1.31921,-2.89398,2.33761,1.36064,-2.89412,2.33743,1.33115,-2.86957,2.36842,1.47129,-2.88484,2.34915,1.52068,-2.89378,2.33786,1.53996,-2.88653,2.34701,1.49162,-2.89213,2.33995,1.52068,-2.89378,2.33786,1.47129,-2.88484,2.34915,1.31921,-2.89398,2.33761,1.35529,-2.8981,2.33241,1.36064,-2.89412,2.33743,1.32922,-2.9107,2.31651,1.35529,-2.8981,2.33241,1.31921,-2.89398,2.33761,1.32922,-2.9107,2.31651,1.34613,-2.90937,2.31819,1.35529,-2.8981,2.33241,1.08429,-2.68179,2.60544,1.18849,-2.6857,2.60051,1.12766,-2.67849,2.60961,1.05295,-2.69142,2.59329,1.18849,-2.6857,2.60051,1.08429,-2.68179,2.60544,1.10539,-2.69433,2.58962,1.15314,-2.69418,2.58981,1.05295,-2.69142,2.59329,1.15314,-2.69418,2.58981,1.18849,-2.6857,2.60051,1.05295,-2.69142,2.59329,1.15314,-2.69418,2.58981,1.22325,-2.70479,2.57642,1.18849,-2.6857,2.60051,1.05295,-2.69142,2.59329,1.07562,-2.70227,2.5796,1.10539,-2.69433,2.58962,1.01121,-2.71761,2.56024,1.07562,-2.70227,2.5796,1.05295,-2.69142,2.59329,1.2003,-2.71438,2.56431,1.04783,-2.7273,2.548,1.2003,-2.71438,2.56431,1.24792,-2.74391,2.52703,1.22325,-2.70479,2.57642,0.989748,-2.74582,2.52463,0.989748,-2.74582,2.52463,1.05082,-2.74037,2.5315,1.04783,-2.7273,2.548,1.21194,-2.74109,2.5306,1.24792,-2.74391,2.52703,1.2003,-2.71438,2.56431,0.989748,-2.74582,2.52463,1.21194,-2.74109,2.5306,1.05082,-2.74037,2.5315,0.989748,-2.74582,2.52463,1.24792,-2.74391,2.52703,1.21194,-2.74109,2.5306,0.989748,-2.74582,2.52463,1.2452,-2.75813,2.50909,1.24792,-2.74391,2.52703,0.981045,-2.76152,2.50481,1.2452,-2.75813,2.50909,0.989748,-2.74582,2.52463,0.981045,-2.76152,2.50481,1.03441,-2.76128,2.50511,0.981045,-2.76152,2.50481,1.02795,-2.76897,2.4954,1.03441,-2.76128,2.50511,0.981045,-2.76152,2.50481,1.02765,-2.79835,2.45832,1.02795,-2.76897,2.4954,0.985887,-2.81405,2.4385,1.02765,-2.79835,2.45832,0.981045,-2.76152,2.50481,0.985887,-2.81405,2.4385,1.03876,-2.83975,2.40606,1.02765,-2.79835,2.45832,0.996551,-2.83741,2.40902,1.03876,-2.83975,2.40606,0.985887,-2.81405,2.4385,1.20998,-2.84226,2.40289,1.24215,-2.845,2.39944,1.22913,-2.83836,2.40781,1.0231,-2.86783,2.37062,1.03876,-2.83975,2.40606,0.996551,-2.83741,2.40902,1.20998,-2.84226,2.40289,1.24033,-2.86362,2.37593,1.24215,-2.845,2.39944,1.0231,-2.86783,2.37062,1.06109,-2.8678,2.37066,1.03876,-2.83975,2.40606,1.18426,-2.87012,2.36773,1.24033,-2.86362,2.37593,1.20998,-2.84226,2.40289,1.0231,-2.86783,2.37062,1.07848,-2.87685,2.35923,1.06109,-2.8678,2.37066,1.1674,-2.87713,2.35888,1.24033,-2.86362,2.37593,1.18426,-2.87012,2.36773,1.1674,-2.87713,2.35888,1.20687,-2.88853,2.3445,1.24033,-2.86362,2.37593,1.0231,-2.86783,2.37062,1.12296,-2.88516,2.34874,1.07848,-2.87685,2.35923,1.12296,-2.88516,2.34874,1.20687,-2.88853,2.3445,1.1674,-2.87713,2.35888,1.0819,-2.89695,2.33386,1.12296,-2.88516,2.34874,1.0231,-2.86783,2.37062,1.0819,-2.89695,2.33386,1.20687,-2.88853,2.3445,1.12296,-2.88516,2.34874,1.0819,-2.89695,2.33386,1.16469,-2.89882,2.3315,1.20687,-2.88853,2.3445,0.740069,-2.67145,2.6185,0.762204,-2.68182,2.60541,0.752471,-2.67274,2.61687,0.903099,-2.68372,2.60301,0.93134,-2.68196,2.60523,0.918123,-2.67739,2.611,0.715062,-2.69628,2.58715,0.762204,-2.68182,2.60541,0.740069,-2.67145,2.6185,0.715062,-2.69628,2.58715,0.74652,-2.70564,2.57535,0.762204,-2.68182,2.60541,0.903099,-2.68372,2.60301,0.929721,-2.70169,2.58033,0.93134,-2.68196,2.60523,0.715062,-2.69628,2.58715,0.739433,-2.72265,2.55387,0.74652,-2.70564,2.57535,0.903099,-2.68372,2.60301,0.914767,-2.72564,2.55009,0.929721,-2.70169,2.58033,0.881441,-2.74993,2.51944,0.914767,-2.72564,2.55009,0.903099,-2.68372,2.60301,0.711181,-2.74626,2.52406,0.739433,-2.72265,2.55387,0.715062,-2.69628,2.58715,0.711181,-2.74626,2.52406,0.748465,-2.75959,2.50724,0.739433,-2.72265,2.55387,0.881441,-2.74993,2.51944,0.889714,-2.79043,2.46832,0.914767,-2.72564,2.55009,0.868968,-2.76583,2.49937,0.889714,-2.79043,2.46832,0.881441,-2.74993,2.51944,0.731308,-2.79014,2.46869,0.748465,-2.75959,2.50724,0.711181,-2.74626,2.52406,0.731308,-2.79014,2.46869,0.773763,-2.7977,2.45914,0.748465,-2.75959,2.50724,0.863451,-2.78214,2.47878,0.889714,-2.79043,2.46832,0.868968,-2.76583,2.49937,0.863451,-2.78214,2.47878,0.882464,-2.80326,2.45212,0.889714,-2.79043,2.46832,0.847544,-2.81378,2.43885,0.882464,-2.80326,2.45212,0.863451,-2.78214,2.47878,0.847544,-2.81378,2.43885,0.875063,-2.81617,2.43583,0.882464,-2.80326,2.45212,0.759289,-2.81894,2.43233,0.773763,-2.7977,2.45914,0.731308,-2.79014,2.46869,0.759289,-2.81894,2.43233,0.792487,-2.81873,2.4326,0.773763,-2.7977,2.45914,0.759289,-2.81894,2.43233,0.805,-2.84011,2.40561,0.792487,-2.81873,2.4326,0.818811,-2.84585,2.39837,0.875063,-2.81617,2.43583,0.847544,-2.81378,2.43885,0.818811,-2.84585,2.39837,0.846868,-2.85718,2.38406,0.875063,-2.81617,2.43583,0.792862,-2.86576,2.37323,0.805,-2.84011,2.40561,0.759289,-2.81894,2.43233,0.792862,-2.86576,2.37323,0.818811,-2.84585,2.39837,0.805,-2.84011,2.40561,0.792862,-2.86576,2.37323,0.846868,-2.85718,2.38406,0.818811,-2.84585,2.39837,0.792862,-2.86576,2.37323,0.83539,-2.87958,2.35579,0.846868,-2.85718,2.38406,0.798757,-2.88668,2.34682,0.83539,-2.87958,2.35579,0.792862,-2.86576,2.37323,0.824617,-2.8964,2.33455,0.809781,-2.90159,2.32801,0.824617,-2.8964,2.33455,0.798757,-2.88668,2.34682,0.357272,-2.58502,2.7276,0.475304,-2.58064,2.73312,0.379415,-2.58136,2.73221,0.357272,-2.58502,2.7276,0.516945,-2.59168,2.71919,0.475304,-2.58064,2.73312,0.32574,-2.59539,2.71451,0.516945,-2.59168,2.71919,0.357272,-2.58502,2.7276,0.39892,-2.59649,2.71311,0.516945,-2.59168,2.71919,0.32574,-2.59539,2.71451,0.310756,-2.59818,2.71098,0.39892,-2.59649,2.71311,0.32574,-2.59539,2.71451,0.39892,-2.59649,2.71311,0.544683,-2.60401,2.70362,0.516945,-2.59168,2.71919,0.452505,-2.59961,2.70918,0.544683,-2.60401,2.70362,0.39892,-2.59649,2.71311,0.492973,-2.61164,2.69399,0.544683,-2.60401,2.70362,0.452505,-2.59961,2.70918,0.310756,-2.59818,2.71098,0.339889,-2.61675,2.68754,0.492973,-2.61164,2.69399,0.580438,-2.63228,2.66793,0.544683,-2.60401,2.70362,0.265117,-2.63227,2.66795,0.339889,-2.61675,2.68754,0.310756,-2.59818,2.71098,0.529689,-2.6339,2.66589,0.580438,-2.63228,2.66793,0.492973,-2.61164,2.69399,0.265117,-2.63227,2.66795,0.311615,-2.64582,2.65084,0.339889,-2.61675,2.68754,0.529689,-2.6339,2.66589,0.586959,-2.63839,2.66023,0.580438,-2.63228,2.66793,0.540637,-2.64886,2.647,0.586959,-2.63839,2.66023,0.529689,-2.6339,2.66589,0.247757,-2.65602,2.63798,0.311615,-2.64582,2.65084,0.265117,-2.63227,2.66795,0.247757,-2.65602,2.63798,0.301447,-2.66554,2.62596,0.311615,-2.64582,2.65084,0.540637,-2.64886,2.647,0.619818,-2.69513,2.5886,0.586959,-2.63839,2.66023,0.23298,-2.69198,2.59258,0.301447,-2.66554,2.62596,0.247757,-2.65602,2.63798,0.561041,-2.69383,2.59025,0.619818,-2.69513,2.5886,0.540637,-2.64886,2.647,0.23298,-2.69198,2.59258,0.288681,-2.70588,2.57504,0.301447,-2.66554,2.62596,0.229881,-2.73013,2.54442,0.288681,-2.70588,2.57504,0.23298,-2.69198,2.59258,0.558835,-2.77594,2.4866,0.619818,-2.69513,2.5886,0.561041,-2.69383,2.59025,0.558835,-2.77594,2.4866,0.620777,-2.76876,2.49567,0.619818,-2.69513,2.5886,0.229881,-2.73013,2.54442,0.290024,-2.75599,2.51179,0.288681,-2.70588,2.57504,0.232422,-2.76924,2.49506,0.290024,-2.75599,2.51179,0.229881,-2.73013,2.54442,0.297584,-2.77325,2.49,0.232422,-2.76924,2.49506,0.300114,-2.79353,2.4644,0.297584,-2.77325,2.49,0.558835,-2.77594,2.4866,0.600411,-2.81377,2.43886,0.620777,-2.76876,2.49567,0.264903,-2.83364,2.41377,0.300114,-2.79353,2.4644,0.232422,-2.76924,2.49506,0.264903,-2.83364,2.41377,0.312517,-2.81763,2.43398,0.300114,-2.79353,2.4644,0.531837,-2.82613,2.42325,0.600411,-2.81377,2.43886,0.558835,-2.77594,2.4866,0.264903,-2.83364,2.41377,0.321688,-2.8278,2.42115,0.312517,-2.81763,2.43398,0.531837,-2.82613,2.42325,0.577663,-2.84127,2.40415,0.600411,-2.81377,2.43886,0.264903,-2.83364,2.41377,0.32483,-2.83694,2.40962,0.321688,-2.8278,2.42115,0.522595,-2.83885,2.4072,0.577663,-2.84127,2.40415,0.531837,-2.82613,2.42325,0.275053,-2.84224,2.40292,0.32483,-2.83694,2.40962,0.264903,-2.83364,2.41377,0.275053,-2.84224,2.40292,0.38553,-2.86597,2.37296,0.478877,-2.86359,2.37597,0.478877,-2.86359,2.37597,0.533844,-2.87256,2.36465,0.577663,-2.84127,2.40415,0.299964,-2.86201,2.37797,0.38553,-2.86597,2.37296,0.275053,-2.84224,2.40292,0.460786,-2.8667,2.37205,0.533844,-2.87256,2.36465,0.478877,-2.86359,2.37597,0.299964,-2.86201,2.37797,0.392283,-2.86951,2.36849,0.38553,-2.86597,2.37296,0.433427,-2.87288,2.36424,0.349397,-2.88737,2.34595,0.392283,-2.86951,2.36849,0.299964,-2.86201,2.37797,0.349397,-2.88737,2.34595,0.433427,-2.87288,2.36424,0.392283,-2.86951,2.36849,0.349397,-2.88737,2.34595,0.533844,-2.87256,2.36465,0.433427,-2.87288,2.36424,0.349397,-2.88737,2.34595,0.501448,-2.88544,2.34839,0.533844,-2.87256,2.36465,0.349397,-2.88737,2.34595,0.468843,-2.89191,2.34022,0.501448,-2.88544,2.34839,0.399021,-2.89488,2.33648,0.468843,-2.89191,2.34022,0.349397,-2.88737,2.34595,-0.196781,-2.68179,2.60544,-0.092581,-2.6857,2.60051,-0.153413,-2.67849,2.60961,-0.2288,-2.6917,2.59294,-0.092581,-2.6857,2.60051,-0.196781,-2.68179,2.60544,-0.175678,-2.69433,2.58962,-0.127925,-2.69418,2.58981,-0.2288,-2.6917,2.59294,-0.127925,-2.69418,2.58981,-0.092581,-2.6857,2.60051,-0.2288,-2.6917,2.59294,-0.127925,-2.69418,2.58981,-0.057824,-2.70479,2.57642,-0.092581,-2.6857,2.60051,-0.2288,-2.6917,2.59294,-0.205445,-2.70227,2.5796,-0.175678,-2.69433,2.58962,-0.080767,-2.71438,2.5643,-0.057824,-2.70479,2.57642,-0.127925,-2.69418,2.58981,-0.272967,-2.72043,2.55666,-0.205445,-2.70227,2.5796,-0.2288,-2.6917,2.59294,-0.272967,-2.72043,2.55666,-0.233243,-2.7273,2.548,-0.205445,-2.70227,2.5796,-0.080767,-2.71438,2.5643,-0.033147,-2.74391,2.52704,-0.057824,-2.70479,2.57642,-0.295056,-2.75291,2.51568,-0.233243,-2.7273,2.548,-0.272967,-2.72043,2.55666,-0.295056,-2.75291,2.51568,-0.230253,-2.74037,2.5315,-0.233243,-2.7273,2.548,-0.069126,-2.74109,2.5306,-0.033147,-2.74391,2.52704,-0.080767,-2.71438,2.5643,-0.295056,-2.75291,2.51568,-0.069126,-2.74109,2.5306,-0.230253,-2.74037,2.5315,-0.295056,-2.75291,2.51568,-0.033147,-2.74391,2.52704,-0.069126,-2.74109,2.5306,-0.295056,-2.75291,2.51568,-0.035867,-2.75813,2.50909,-0.033147,-2.74391,2.52704,-0.295056,-2.75291,2.51568,-0.246873,-2.76129,2.5051,-0.035867,-2.75813,2.50909,-0.300349,-2.77553,2.48712,-0.246873,-2.76129,2.5051,-0.295056,-2.75291,2.51568,-0.300349,-2.77553,2.48712,-0.253295,-2.76975,2.49442,-0.246873,-2.76129,2.5051,-0.300349,-2.77553,2.48712,-0.253416,-2.79835,2.45832,-0.253295,-2.76975,2.49442,-0.294476,-2.81578,2.43631,-0.253416,-2.79835,2.45832,-0.300349,-2.77553,2.48712,-0.294476,-2.81578,2.43631,-0.242315,-2.83975,2.40607,-0.253416,-2.79835,2.45832,-0.284519,-2.83741,2.40902,-0.242315,-2.83975,2.40607,-0.294476,-2.81578,2.43631,-0.071095,-2.84226,2.40289,-0.038921,-2.845,2.39944,-0.051938,-2.83836,2.40781,-0.257975,-2.86783,2.37063,-0.242315,-2.83975,2.40607,-0.284519,-2.83741,2.40902,-0.071095,-2.84226,2.40289,-0.040735,-2.86362,2.37593,-0.038921,-2.845,2.39944,-0.257975,-2.86783,2.37063,-0.21218,-2.87392,2.36294,-0.242315,-2.83975,2.40607,-0.096814,-2.87012,2.36773,-0.040735,-2.86362,2.37593,-0.071095,-2.84226,2.40289,-0.113671,-2.87713,2.35888,-0.040735,-2.86362,2.37593,-0.096814,-2.87012,2.36773,-0.113671,-2.87713,2.35888,-0.074199,-2.88853,2.3445,-0.040735,-2.86362,2.37593,-0.257975,-2.86783,2.37063,-0.158106,-2.88516,2.34874,-0.21218,-2.87392,2.36294,-0.158106,-2.88516,2.34874,-0.074199,-2.88853,2.3445,-0.113671,-2.87713,2.35888,-0.199169,-2.89695,2.33386,-0.158106,-2.88516,2.34874,-0.257975,-2.86783,2.37063,-0.199169,-2.89695,2.33386,-0.074199,-2.88853,2.3445,-0.158106,-2.88516,2.34874,-0.199169,-2.89695,2.33386,-0.116382,-2.89882,2.3315,-0.074199,-2.88853,2.3445,-0.595233,-2.68108,2.60634,-0.491134,-2.67977,2.60799,-0.555794,-2.6773,2.61111,-0.595233,-2.68108,2.60634,-0.441134,-2.68823,2.59732,-0.491134,-2.67977,2.60799,-0.628595,-2.68974,2.59541,-0.441134,-2.68823,2.59732,-0.595233,-2.68108,2.60634,-0.628595,-2.68974,2.59541,-0.555282,-2.69631,2.58712,-0.441134,-2.68823,2.59732,-0.555282,-2.69631,2.58712,-0.491155,-2.69657,2.58679,-0.441134,-2.68823,2.59732,-0.661327,-2.70642,2.57435,-0.555282,-2.69631,2.58712,-0.628595,-2.68974,2.59541,-0.555282,-2.69631,2.58712,-0.508036,-2.69705,2.58618,-0.491155,-2.69657,2.58679,-0.661327,-2.70642,2.57435,-0.610396,-2.70403,2.57737,-0.555282,-2.69631,2.58712,-0.555282,-2.69631,2.58712,-0.513888,-2.70239,2.57944,-0.508036,-2.69705,2.58618,-0.454464,-2.70387,2.57758,-0.441134,-2.68823,2.59732,-0.491155,-2.69657,2.58679,-0.544193,-2.89804,2.33248,-0.513888,-2.70239,2.57944,-0.555282,-2.69631,2.58712,-0.454464,-2.70387,2.57758,-0.395513,-2.71681,2.56125,-0.441134,-2.68823,2.59732,-0.424593,-2.72228,2.55434,-0.395513,-2.71681,2.56125,-0.454464,-2.70387,2.57758,-0.544193,-2.89804,2.33248,-0.506125,-2.89343,2.33831,-0.513888,-2.70239,2.57944,-0.661327,-2.70642,2.57435,-0.641751,-2.72522,2.55062,-0.610396,-2.70403,2.57737,-0.424593,-2.72228,2.55434,-0.380773,-2.73837,2.53403,-0.395513,-2.71681,2.56125,-0.681789,-2.73301,2.54079,-0.641751,-2.72522,2.55062,-0.661327,-2.70642,2.57435,-0.688309,-2.74737,2.52267,-0.641751,-2.72522,2.55062,-0.681789,-2.73301,2.54079,-0.410881,-2.74817,2.52166,-0.380773,-2.73837,2.53403,-0.424593,-2.72228,2.55434,-0.410881,-2.74817,2.52166,-0.370514,-2.76249,2.50358,-0.380773,-2.73837,2.53403,-0.688309,-2.74737,2.52267,-0.659763,-2.76693,2.49798,-0.641751,-2.72522,2.55062,-0.404324,-2.77349,2.48969,-0.370514,-2.76249,2.50358,-0.410881,-2.74817,2.52166,-0.694366,-2.78245,2.47839,-0.659763,-2.76693,2.49798,-0.688309,-2.74737,2.52267,-0.367166,-2.78959,2.46937,-0.694366,-2.78245,2.47839,-0.659356,-2.82059,2.43024,-0.659763,-2.76693,2.49798,-0.400233,-2.82076,2.43004,-0.367166,-2.78959,2.46937,-0.404324,-2.77349,2.48969,-0.686832,-2.82615,2.42323,-0.659356,-2.82059,2.43024,-0.694366,-2.78245,2.47839,-0.400233,-2.82076,2.43004,-0.369032,-2.82798,2.42091,-0.367166,-2.78959,2.46937,-0.400233,-2.82076,2.43004,-0.376692,-2.85179,2.39087,-0.369032,-2.82798,2.42091,-0.414378,-2.85991,2.38061,-0.376692,-2.85179,2.39087,-0.400233,-2.82076,2.43004,-0.686832,-2.82615,2.42323,-0.641712,-2.85401,2.38807,-0.659356,-2.82059,2.43024,-0.665974,-2.87145,2.36605,-0.641712,-2.85401,2.38807,-0.686832,-2.82615,2.42323,-0.414378,-2.85991,2.38061,-0.386139,-2.86616,2.37273,-0.376692,-2.85179,2.39087,-0.665974,-2.87145,2.36605,-0.631308,-2.86795,2.37047,-0.641712,-2.85401,2.38807,-0.665974,-2.87145,2.36605,-0.608897,-2.87947,2.35593,-0.631308,-2.86795,2.37047,-0.438425,-2.88018,2.35503,-0.386139,-2.86616,2.37273,-0.414378,-2.85991,2.38061,-0.438425,-2.88018,2.35503,-0.396041,-2.88407,2.35012,-0.386139,-2.86616,2.37273,-0.637636,-2.89813,2.33238,-0.608897,-2.87947,2.35593,-0.444182,-2.89853,2.33186,-0.396041,-2.88407,2.35012,-0.438425,-2.88018,2.35503,-0.637636,-2.89813,2.33238,-0.603613,-2.89373,2.33792,-0.608897,-2.87947,2.35593,-0.444182,-2.89853,2.33186,-0.414943,-2.90002,2.32999,-0.396041,-2.88407,2.35012,-0.544193,-2.89804,2.33248,-0.51909,-2.90114,2.32858,-0.506125,-2.89343,2.33831,-0.637636,-2.89813,2.33238,-0.623052,-2.90215,2.32729,-0.603613,-2.89373,2.33792,-0.981157,-2.68169,2.60557,-0.968091,-2.67705,2.61142,-0.97531,-2.67301,2.61653,-0.981157,-2.68169,2.60557,-0.935518,-2.67888,2.60912,-0.968091,-2.67705,2.61142,-0.981157,-2.68169,2.60557,-0.892093,-2.682,2.60518,-0.935518,-2.67888,2.60912,-0.981157,-2.68169,2.60557,-0.877669,-2.69175,2.59288,-0.892093,-2.682,2.60518,-0.976208,-2.70115,2.58101,-0.918316,-2.69925,2.58341,-0.877669,-2.69175,2.59288,-0.976208,-2.70115,2.58101,-0.852094,-2.71743,2.56046,-0.901308,-2.70497,2.57619,-0.852094,-2.71743,2.56046,-0.918316,-2.69925,2.58341,-0.976208,-2.70115,2.58101,-0.964863,-2.71059,2.56909,-0.918316,-2.69925,2.58341,-0.87789,-2.73179,2.54234,-0.852094,-2.71743,2.56046,-0.901308,-2.70497,2.57619,-0.930383,-2.71654,2.56158,-0.903343,-2.73113,2.54317,-0.916246,-2.7139,2.56492,-0.955797,-2.7416,2.52995,-0.903343,-2.73113,2.54317,-0.930383,-2.71654,2.56158,-0.87789,-2.73179,2.54234,-0.842947,-2.73943,2.53269,-0.852094,-2.71743,2.56046,-0.955797,-2.7416,2.52995,-0.928734,-2.75917,2.50777,-0.903343,-2.73113,2.54317,-0.87789,-2.73179,2.54234,-0.835409,-2.76149,2.50485,-0.842947,-2.73943,2.53269,-0.856685,-2.78126,2.47989,-0.835409,-2.76149,2.50485,-0.87789,-2.73179,2.54234,-0.972801,-2.77746,2.48469,-0.928734,-2.75917,2.50777,-0.955797,-2.7416,2.52995,-0.856685,-2.78126,2.47989,-0.818867,-2.78517,2.47495,-0.835409,-2.76149,2.50485,-0.972801,-2.77746,2.48469,-0.939938,-2.77828,2.48365,-0.928734,-2.75917,2.50777,-0.972801,-2.77746,2.48469,-0.947879,-2.82109,2.42961,-0.939938,-2.77828,2.48365,-0.850663,-2.80635,2.44822,-0.818867,-2.78517,2.47495,-0.856685,-2.78126,2.47989,-0.985198,-2.8106,2.44286,-0.947879,-2.82109,2.42961,-0.972801,-2.77746,2.48469,-0.850663,-2.80635,2.44822,-0.81356,-2.80213,2.45355,-0.818867,-2.78517,2.47495,-0.850663,-2.80635,2.44822,-0.800878,-2.82263,2.42768,-0.81356,-2.80213,2.45355,-0.862919,-2.8162,2.43578,-0.800878,-2.82263,2.42768,-0.850663,-2.80635,2.44822,-0.947879,-2.82109,2.42961,-0.800878,-2.82263,2.42768,-0.862919,-2.8162,2.43578,-0.992903,-2.82992,2.41847,-0.947879,-2.82109,2.42961,-0.985198,-2.8106,2.44286,-0.992903,-2.82992,2.41847,-0.800878,-2.82263,2.42768,-0.947879,-2.82109,2.42961,-1.00342,-2.87995,2.35532,-0.947748,-2.83997,2.40579,-0.992903,-2.82992,2.41847,-0.947748,-2.83997,2.40579,-0.800878,-2.82263,2.42768,-0.992903,-2.82992,2.41847,-0.947748,-2.83997,2.40579,-0.859054,-2.839,2.40701,-0.800878,-2.82263,2.42768,-0.830929,-2.83924,2.4067,-0.800878,-2.82263,2.42768,-0.859054,-2.839,2.40701,-0.830929,-2.83924,2.4067,-0.786471,-2.84447,2.40011,-0.800878,-2.82263,2.42768,-1.00342,-2.87995,2.35532,-0.964768,-2.85661,2.38479,-0.947748,-2.83997,2.40579,-0.812881,-2.8684,2.3699,-0.786471,-2.84447,2.40011,-0.830929,-2.83924,2.4067,-0.812881,-2.8684,2.3699,-0.767943,-2.86731,2.37127,-0.786471,-2.84447,2.40011,-0.812881,-2.8684,2.3699,-0.755514,-2.87655,2.35961,-0.767943,-2.86731,2.37127,-1.00342,-2.87995,2.35532,-0.977237,-2.89103,2.34134,-0.964768,-2.85661,2.38479,-0.796489,-2.88503,2.3489,-0.755514,-2.87655,2.35961,-0.812881,-2.8684,2.3699,-1.00821,-2.89703,2.33376,-0.977237,-2.89103,2.34134,-1.00342,-2.87995,2.35532,-0.796489,-2.88503,2.3489,-0.758568,-2.89196,2.34016,-0.755514,-2.87655,2.35961,-0.782151,-2.8968,2.33405,-0.758568,-2.89196,2.34016,-0.796489,-2.88503,2.3489,-1.00821,-2.89703,2.33376,-0.990728,-2.91526,2.31075,-0.977237,-2.89103,2.34134,-1.089,-2.91078,2.31641,-1.06114,-2.90791,2.32003,-1.07932,-2.90502,2.32368,-1.02065,-2.91435,2.3119,-0.990728,-2.91526,2.31075,-1.00821,-2.89703,2.33376,-1.089,-2.91078,2.31641,-1.05795,-2.91503,2.31104,-1.06114,-2.90791,2.32003,-1.089,-2.91078,2.31641,-1.04899,-2.92151,2.30286,-1.05795,-2.91503,2.31104,-1.02065,-2.91435,2.3119,-0.995703,-2.92337,2.30052,-0.990728,-2.91526,2.31075,-1.04899,-2.92151,2.30286,-0.995703,-2.92337,2.30052,-1.02065,-2.91435,2.3119,-1.07643,-2.93465,2.28628,-1.04899,-2.92151,2.30286,-1.089,-2.91078,2.31641,-1.07643,-2.93465,2.28628,-0.995703,-2.92337,2.30052,-1.04899,-2.92151,2.30286,-1.07643,-2.93465,2.28628,-1.01452,-2.93742,2.28277,-0.995703,-2.92337,2.30052,-1.07643,-2.93465,2.28628,-1.04411,-2.93939,2.28029,-1.01452,-2.93742,2.28277,-1.06421,-2.94014,2.27935,-1.04411,-2.93939,2.28029,-1.07643,-2.93465,2.28628,-1.30419,-2.58854,2.72315,-1.22095,-2.58438,2.7284,-1.2696,-2.58472,2.72797,-1.30419,-2.58854,2.72315,-1.1719,-2.59496,2.71505,-1.22095,-2.58438,2.7284,-1.3391,-2.59724,2.71217,-1.1719,-2.59496,2.71505,-1.30419,-2.58854,2.72315,-1.3391,-2.59724,2.71217,-1.14399,-2.60787,2.69875,-1.1719,-2.59496,2.71505,-1.39618,-2.62243,2.68037,-1.24798,-2.60544,2.70182,-1.3391,-2.59724,2.71217,-1.24798,-2.60544,2.70182,-1.14399,-2.60787,2.69875,-1.3391,-2.59724,2.71217,-1.39618,-2.62243,2.68037,-1.31426,-2.61399,2.69102,-1.24798,-2.60544,2.70182,-1.1987,-2.61992,2.68354,-1.14399,-2.60787,2.69875,-1.24798,-2.60544,2.70182,-1.1987,-2.61992,2.68354,-1.12311,-2.63582,2.66347,-1.14399,-2.60787,2.69875,-1.40205,-2.63431,2.66538,-1.31426,-2.61399,2.69102,-1.39618,-2.62243,2.68037,-1.40205,-2.63431,2.66538,-1.35478,-2.64067,2.65736,-1.31426,-2.61399,2.69102,-1.18927,-2.64473,2.65223,-1.12311,-2.63582,2.66347,-1.1987,-2.61992,2.68354,-1.42391,-2.65408,2.64042,-1.35478,-2.64067,2.65736,-1.40205,-2.63431,2.66538,-1.18927,-2.64473,2.65223,-1.13621,-2.65602,2.63797,-1.12311,-2.63582,2.66347,-1.42391,-2.65408,2.64042,-1.38161,-2.6796,2.60821,-1.35478,-2.64067,2.65736,-1.16403,-2.66006,2.63287,-1.13621,-2.65602,2.63797,-1.18927,-2.64473,2.65223,-1.44896,-2.701,2.5812,-1.38161,-2.6796,2.60821,-1.42391,-2.65408,2.64042,-1.45341,-2.75033,2.51892,-1.38161,-2.6796,2.60821,-1.44896,-2.701,2.5812,-1.45341,-2.75033,2.51892,-1.38736,-2.7603,2.50635,-1.38161,-2.6796,2.60821,-1.24131,-2.75543,2.5125,-1.1476,-2.75827,2.50891,-1.18674,-2.74994,2.51942,-1.28427,-2.76811,2.49649,-1.1476,-2.75827,2.50891,-1.24131,-2.75543,2.5125,-1.28427,-2.76811,2.49649,-1.1154,-2.78178,2.47923,-1.1476,-2.75827,2.50891,-1.44597,-2.7987,2.45787,-1.29993,-2.78842,2.47085,-1.1154,-2.78178,2.47923,-1.28427,-2.76811,2.49649,-1.44597,-2.7987,2.45787,-1.37856,-2.79602,2.46126,-1.38736,-2.7603,2.50635,-1.17431,-2.79182,2.46656,-1.1154,-2.78178,2.47923,-1.29993,-2.78842,2.47085,-1.17431,-2.79182,2.46656,-1.10131,-2.81015,2.44343,-1.1154,-2.78178,2.47923,-1.29993,-2.78842,2.47085,-1.20465,-2.80206,2.45364,-1.17431,-2.79182,2.46656,-1.15897,-2.80039,2.45574,-1.10131,-2.81015,2.44343,-1.17431,-2.79182,2.46656,-1.28837,-2.80134,2.45455,-1.20465,-2.80206,2.45364,-1.29993,-2.78842,2.47085,-1.25277,-2.80721,2.44713,-1.20465,-2.80206,2.45364,-1.28837,-2.80134,2.45455,-1.152,-2.82919,2.41939,-1.10131,-2.81015,2.44343,-1.15897,-2.80039,2.45574,-1.41278,-2.84545,2.39886,-1.37856,-2.79602,2.46126,-1.44597,-2.7987,2.45787,-1.41278,-2.84545,2.39886,-1.36853,-2.82371,2.42631,-1.37856,-2.79602,2.46126,-1.152,-2.82919,2.41939,-1.10775,-2.83626,2.41047,-1.10131,-2.81015,2.44343,-1.41278,-2.84545,2.39886,-1.32406,-2.86067,2.37966,-1.36853,-2.82371,2.42631,-1.152,-2.82919,2.41939,-1.12743,-2.86196,2.37802,-1.10775,-2.83626,2.41047,-1.19252,-2.85852,2.38237,-1.12743,-2.86196,2.37802,-1.20235,-2.86474,2.37451,-1.12743,-2.86196,2.37802,-1.19252,-2.85852,2.38237,-1.35089,-2.88711,2.34628,-1.32406,-2.86067,2.37966,-1.41278,-2.84545,2.39886,-1.35089,-2.88711,2.34628,-1.25997,-2.8732,2.36384,-1.32406,-2.86067,2.37966,-1.25997,-2.8732,2.36384,-1.12743,-2.86196,2.37802,-1.20235,-2.86474,2.37451,-1.25997,-2.8732,2.36384,-1.15548,-2.87826,2.35745,-1.12743,-2.86196,2.37802,-1.35089,-2.88711,2.34628,-1.15548,-2.87826,2.35745,-1.25997,-2.8732,2.36384,-1.35089,-2.88711,2.34628,-1.19796,-2.89308,2.33875,-1.15548,-2.87826,2.35745,-1.32154,-2.89373,2.33793,-1.19796,-2.89308,2.33875,-1.35089,-2.88711,2.34628,-1.32154,-2.89373,2.33793,-1.21683,-2.8965,2.33443,-1.19796,-2.89308,2.33875,1.58177,-3.28226,1.8446,1.67204,-3.26553,1.86571,1.61322,-3.26926,1.86101,1.58177,-3.28226,1.8446,1.74859,-3.28683,1.83883,1.67204,-3.26553,1.86571,1.66183,-3.28797,1.83739,1.74859,-3.28683,1.83883,1.58177,-3.28226,1.8446,1.58177,-3.28226,1.8446,1.61781,-3.29183,1.83253,1.66183,-3.28797,1.83739,1.55978,-3.30885,1.81104,1.61781,-3.29183,1.83253,1.58177,-3.28226,1.8446,1.70455,-3.30253,1.81901,1.74859,-3.28683,1.83883,1.66183,-3.28797,1.83739,1.70455,-3.30253,1.81901,1.77681,-3.31317,1.80559,1.74859,-3.28683,1.83883,1.55978,-3.30885,1.81104,1.61486,-3.30486,1.81608,1.61781,-3.29183,1.83253,1.55978,-3.30885,1.81104,1.62431,-3.31551,1.80263,1.61486,-3.30486,1.81608,1.7167,-3.3249,1.79077,1.77681,-3.31317,1.80559,1.70455,-3.30253,1.81901,1.55978,-3.30885,1.81104,1.62086,-3.32771,1.78723,1.62431,-3.31551,1.80263,1.7167,-3.3249,1.79077,1.76156,-3.35323,1.75502,1.77681,-3.31317,1.80559,1.56477,-3.33283,1.78077,1.71151,-3.34779,1.76188,1.76156,-3.35323,1.75502,1.7167,-3.3249,1.79077,1.56477,-3.33283,1.78077,1.59978,-3.33475,1.77834,1.62086,-3.32771,1.78723,1.65369,-3.38636,1.7132,1.76156,-3.35323,1.75502,1.71151,-3.34779,1.76188,1.65369,-3.38636,1.7132,1.7021,-3.39118,1.70712,1.76156,-3.35323,1.75502,1.65369,-3.38636,1.7132,1.64251,-3.41914,1.67182,1.7021,-3.39118,1.70712,1.60386,-3.43237,1.65513,1.64251,-3.41914,1.67182,1.65369,-3.38636,1.7132,1.63582,-3.44937,1.63367,1.60255,-3.4503,1.63249,1.63582,-3.44937,1.63367,1.60386,-3.43237,1.65513,1.62102,-3.45534,1.62613,1.63582,-3.44937,1.63367,1.60255,-3.4503,1.63249,1.58936,-3.49527,1.57573,1.64263,-3.48868,1.58405,1.61227,-3.48178,1.59276,1.58936,-3.49527,1.57573,1.65277,-3.50534,1.56301,1.64263,-3.48868,1.58405,1.58978,-3.51974,1.54484,1.65277,-3.50534,1.56301,1.58936,-3.49527,1.57573,1.58978,-3.51974,1.54484,1.63916,-3.5212,1.543,1.65277,-3.50534,1.56301,1.58978,-3.51974,1.54484,1.62056,-3.52467,1.53862,1.63916,-3.5212,1.543,1.20171,-3.30133,1.82053,1.22659,-3.31087,1.80849,1.21569,-3.30002,1.82218,1.18297,-3.31649,1.8014,1.22659,-3.31087,1.80849,1.20171,-3.30133,1.82053,1.36287,-3.31888,1.79838,1.38293,-3.30017,1.822,1.36465,-3.30423,1.81687,1.18297,-3.31649,1.8014,1.2073,-3.33178,1.78209,1.22659,-3.31087,1.80849,1.36287,-3.31888,1.79838,1.40933,-3.32375,1.79222,1.38293,-3.30017,1.822,1.38034,-3.32905,1.78554,1.40933,-3.32375,1.79222,1.36287,-3.31888,1.79838,1.1677,-3.34556,1.7647,1.2073,-3.33178,1.78209,1.18297,-3.31649,1.8014,1.1677,-3.34556,1.7647,1.18867,-3.36329,1.74232,1.2073,-3.33178,1.78209,1.38034,-3.32905,1.78554,1.43332,-3.37775,1.72407,1.40933,-3.32375,1.79222,1.28933,-3.34822,1.76134,1.31449,-3.3574,1.74975,1.3064,-3.3485,1.76099,1.27821,-3.35679,1.75053,1.31449,-3.3574,1.74975,1.28933,-3.34822,1.76134,1.40791,-3.37689,1.72515,1.43332,-3.37775,1.72407,1.38034,-3.32905,1.78554,1.16123,-3.36912,1.73497,1.18867,-3.36329,1.74232,1.1677,-3.34556,1.7647,1.27821,-3.35679,1.75053,1.31022,-3.36922,1.73484,1.31449,-3.3574,1.74975,1.28515,-3.38984,1.70881,1.31022,-3.36922,1.73484,1.27821,-3.35679,1.75053,1.28515,-3.38984,1.70881,1.31013,-3.44216,1.64277,1.31022,-3.36922,1.73484,1.16123,-3.36912,1.73497,1.19241,-3.43419,1.65283,1.18867,-3.36329,1.74232,1.40791,-3.37689,1.72515,1.43924,-3.42008,1.67064,1.43332,-3.37775,1.72407,1.16122,-3.42551,1.66378,1.19241,-3.43419,1.65283,1.16123,-3.36912,1.73497,1.40855,-3.43799,1.64803,1.43924,-3.42008,1.67064,1.40791,-3.37689,1.72515,1.40855,-3.43799,1.64803,1.43231,-3.45041,1.63235,1.39612,-3.46665,1.61186,1.17946,-3.47665,1.59923,1.19241,-3.43419,1.65283,1.16122,-3.42551,1.66378,1.39612,-3.46665,1.61186,1.41443,-3.48327,1.59088,1.43231,-3.45041,1.63235,1.28124,-3.49839,1.57179,1.31013,-3.44216,1.64277,1.28515,-3.38984,1.70881,1.17946,-3.47665,1.59923,1.20921,-3.47438,1.6021,1.19241,-3.43419,1.65283,1.28124,-3.49839,1.57179,1.31328,-3.49235,1.57941,1.31013,-3.44216,1.64277,1.37376,-3.48865,1.58409,1.41443,-3.48327,1.59088,1.39612,-3.46665,1.61186,1.17946,-3.47665,1.59923,1.22983,-3.49097,1.58116,1.20921,-3.47438,1.6021,1.21591,-3.50402,1.56469,1.22983,-3.49097,1.58116,1.17946,-3.47665,1.59923,1.34849,-3.49782,1.57251,1.41443,-3.48327,1.59088,1.37376,-3.48865,1.58409,1.34849,-3.49782,1.57251,1.38977,-3.50217,1.56703,1.41443,-3.48327,1.59088,1.21591,-3.50402,1.56469,1.26123,-3.49865,1.57147,1.22983,-3.49097,1.58116,1.28124,-3.49839,1.57179,1.32262,-3.49882,1.57125,1.31328,-3.49235,1.57941,1.32262,-3.49882,1.57125,1.38977,-3.50217,1.56703,1.34849,-3.49782,1.57251,1.28124,-3.49839,1.57179,1.38977,-3.50217,1.56703,1.32262,-3.49882,1.57125,1.21591,-3.50402,1.56469,1.28124,-3.49839,1.57179,1.26123,-3.49865,1.57147,1.21591,-3.50402,1.56469,1.38977,-3.50217,1.56703,1.28124,-3.49839,1.57179,1.21591,-3.50402,1.56469,1.33384,-3.51618,1.54934,1.38977,-3.50217,1.56703,1.25182,-3.51475,1.55114,1.33384,-3.51618,1.54934,1.21591,-3.50402,1.56469,0.919506,-3.30213,1.81951,1.03166,-3.30438,1.81668,0.969874,-3.29702,1.82597,0.895949,-3.31024,1.80928,1.03166,-3.30438,1.81668,0.919506,-3.30213,1.81951,0.948561,-3.31301,1.80579,0.996312,-3.31286,1.80598,0.895949,-3.31024,1.80928,0.996312,-3.31286,1.80598,1.03166,-3.30438,1.81668,0.895949,-3.31024,1.80928,0.996312,-3.31286,1.80598,1.06641,-3.32346,1.79259,1.03166,-3.30438,1.81668,0.895949,-3.31024,1.80928,0.918793,-3.32094,1.79578,0.948561,-3.31301,1.80579,0.858131,-3.33379,1.77956,0.918793,-3.32094,1.79578,0.895949,-3.31024,1.80928,1.04347,-3.33306,1.78048,1.06641,-3.32346,1.79259,0.996312,-3.31286,1.80598,0.858131,-3.33379,1.77956,0.890995,-3.34597,1.76418,0.918793,-3.32094,1.79578,1.04347,-3.33306,1.78048,1.09109,-3.36259,1.74321,1.06641,-3.32346,1.79259,0.834007,-3.36207,1.74386,0.890995,-3.34597,1.76418,0.858131,-3.33379,1.77956,0.834007,-3.36207,1.74386,0.893985,-3.35905,1.74768,0.890995,-3.34597,1.76418,1.05511,-3.35977,1.74677,1.09109,-3.36259,1.74321,1.04347,-3.33306,1.78048,0.834007,-3.36207,1.74386,1.05511,-3.35977,1.74677,0.893985,-3.35905,1.74768,0.834007,-3.36207,1.74386,1.09109,-3.36259,1.74321,1.05511,-3.35977,1.74677,0.834007,-3.36207,1.74386,1.08837,-3.3768,1.72526,1.09109,-3.36259,1.74321,0.824214,-3.3802,1.72098,1.08837,-3.3768,1.72526,0.834007,-3.36207,1.74386,0.824214,-3.3802,1.72098,0.877575,-3.37995,1.72129,1.08837,-3.3768,1.72526,0.824214,-3.3802,1.72098,0.871118,-3.38765,1.71158,0.877575,-3.37995,1.72129,0.824214,-3.3802,1.72098,0.870821,-3.41702,1.6745,0.871118,-3.38765,1.71158,0.829055,-3.43273,1.65467,0.870821,-3.41702,1.6745,0.824214,-3.3802,1.72098,0.829055,-3.43273,1.65467,0.881923,-3.45842,1.62224,0.870821,-3.41702,1.6745,0.839719,-3.45608,1.62519,0.881923,-3.45842,1.62224,0.829055,-3.43273,1.65467,1.05314,-3.46094,1.61906,1.08532,-3.46368,1.61561,1.0723,-3.45704,1.62399,0.866264,-3.4865,1.5868,0.881923,-3.45842,1.62224,0.839719,-3.45608,1.62519,1.05314,-3.46094,1.61906,1.0835,-3.4823,1.59211,1.08532,-3.46368,1.61561,0.866264,-3.4865,1.5868,0.912058,-3.49259,1.57911,0.881923,-3.45842,1.62224,1.02742,-3.48879,1.58391,1.0835,-3.4823,1.59211,1.05314,-3.46094,1.61906,1.01057,-3.49581,1.57505,1.0835,-3.4823,1.59211,1.02742,-3.48879,1.58391,1.01057,-3.49581,1.57505,1.05004,-3.5072,1.56067,1.0835,-3.4823,1.59211,0.866264,-3.4865,1.5868,0.966131,-3.50384,1.56491,0.912058,-3.49259,1.57911,0.966131,-3.50384,1.56491,0.925068,-3.51563,1.55003,0.966131,-3.50384,1.56491,0.866264,-3.4865,1.5868,0.925068,-3.51563,1.55003,1.05004,-3.5072,1.56067,0.966131,-3.50384,1.56491,0.925068,-3.51563,1.55003,1.00786,-3.5175,1.54767,1.05004,-3.5072,1.56067,0.461081,-3.20258,1.94517,0.52995,-3.2077,1.93871,0.509007,-3.196,1.95348,0.682443,-3.19994,1.9485,0.73532,-3.20992,1.93591,0.719148,-3.19824,1.95066,0.452721,-3.20997,1.93585,0.52995,-3.2077,1.93871,0.461081,-3.20258,1.94517,0.670704,-3.21477,1.92979,0.73532,-3.20992,1.93591,0.682443,-3.19994,1.9485,0.670704,-3.21477,1.92979,0.725316,-3.24548,1.89103,0.73532,-3.20992,1.93591,0.46328,-3.24163,1.89589,0.52995,-3.2077,1.93871,0.452721,-3.20997,1.93585,0.46328,-3.24163,1.89589,0.53086,-3.24798,1.88787,0.52995,-3.2077,1.93871,0.683627,-3.35531,1.75239,0.725316,-3.24548,1.89103,0.670704,-3.21477,1.92979,0.504331,-3.29644,1.8267,0.53086,-3.24798,1.88787,0.46328,-3.24163,1.89589,0.504331,-3.29644,1.8267,0.595507,-3.3077,1.81248,0.53086,-3.24798,1.88787,0.683627,-3.35531,1.75239,0.71999,-3.45321,1.62882,0.725316,-3.24548,1.89103,0.580842,-3.36051,1.74583,0.595507,-3.3077,1.81248,0.504331,-3.29644,1.8267,0.580842,-3.36051,1.74583,0.657011,-3.35788,1.74915,0.595507,-3.3077,1.81248,0.457818,-3.4553,1.62619,0.504331,-3.29644,1.8267,0.46328,-3.24163,1.89589,0.621955,-3.39487,1.70246,0.657011,-3.35788,1.74915,0.580842,-3.36051,1.74583,0.621955,-3.39487,1.70246,0.678393,-3.37829,1.72339,0.657011,-3.35788,1.74915,0.678393,-3.37829,1.72339,0.71999,-3.45321,1.62882,0.683627,-3.35531,1.75239,0.621955,-3.39487,1.70246,0.71999,-3.45321,1.62882,0.678393,-3.37829,1.72339,0.457818,-3.4553,1.62619,0.493756,-3.4724,1.6046,0.504331,-3.29644,1.8267,0.648934,-3.41656,1.67508,0.71999,-3.45321,1.62882,0.621955,-3.39487,1.70246,0.67509,-3.45234,1.62991,0.71999,-3.45321,1.62882,0.648934,-3.41656,1.67508,0.67509,-3.45234,1.62991,0.73005,-3.50087,1.56867,0.71999,-3.45321,1.62882,0.448465,-3.48834,1.58448,0.493756,-3.4724,1.6046,0.457818,-3.4553,1.62619,0.669721,-3.49476,1.57637,0.73005,-3.50087,1.56867,0.67509,-3.45234,1.62991,0.448465,-3.48834,1.58448,0.476714,-3.51178,1.55489,0.493756,-3.4724,1.6046,0.677123,-3.50895,1.55847,0.73005,-3.50087,1.56867,0.669721,-3.49476,1.57637,0.409159,-3.53307,1.52802,0.677123,-3.50895,1.55847,0.721781,-3.51254,1.55394,0.73005,-3.50087,1.56867,0.694724,-3.51447,1.5515,0.721781,-3.51254,1.55394,0.677123,-3.50895,1.55847,0.409159,-3.53307,1.52802,0.469797,-3.52622,1.53666,0.476714,-3.51178,1.55489,0.409159,-3.53307,1.52802,0.439317,-3.5553,1.49996,0.469797,-3.52622,1.53666,0.378133,-3.54001,1.51925,0.439317,-3.5553,1.49996,0.409159,-3.53307,1.52802,0.350986,-3.55136,1.50493,0.439317,-3.5553,1.49996,0.378133,-3.54001,1.51925,0.354543,-3.57705,1.4725,0.439317,-3.5553,1.49996,0.350986,-3.55136,1.50493,0.354543,-3.57705,1.4725,0.389103,-3.58218,1.46603,-0.058971,-3.29876,1.82378,0.154272,-3.30669,1.81376,0.144892,-3.29727,1.82566,-0.06632,-3.31409,1.80442,0.154272,-3.30669,1.81376,-0.058971,-3.29876,1.82378,-0.06632,-3.31409,1.80442,0.150091,-3.31795,1.79955,0.154272,-3.30669,1.81376,-0.021114,-3.31854,1.79881,0.150091,-3.31795,1.79955,-0.06632,-3.31409,1.80442,-0.056178,-3.32084,1.79591,-0.021114,-3.31854,1.79881,-0.06632,-3.31409,1.80442,0.076936,-3.31878,1.7985,0.150091,-3.31795,1.79955,-0.021114,-3.31854,1.79881,0.106332,-3.31982,1.79719,0.150091,-3.31795,1.79955,0.076936,-3.31878,1.7985,0.134078,-3.32791,1.78698,0.150091,-3.31795,1.79955,0.106332,-3.31982,1.79719,-0.021114,-3.31854,1.79881,0.043977,-3.3286,1.78611,0.076936,-3.31878,1.7985,-0.014876,-3.32646,1.7888,0.043977,-3.3286,1.78611,-0.021114,-3.31854,1.79881,-0.025874,-3.34247,1.7686,0.043977,-3.3286,1.78611,-0.014876,-3.32646,1.7888,-0.025874,-3.34247,1.7686,0.021142,-3.34057,1.771,0.043977,-3.3286,1.78611,-0.025874,-3.34247,1.7686,0.000475,-3.35855,1.7483,0.021142,-3.34057,1.771,-0.040099,-3.36275,1.74301,-0.040099,-3.36275,1.74301,-0.011558,-3.38147,1.71937,0.000475,-3.35855,1.7483,-0.050808,-3.39566,1.70146,-0.011558,-3.38147,1.71937,-0.040099,-3.36275,1.74301,-0.012129,-3.43786,1.64819,-0.045497,-3.45068,1.63201,-0.012129,-3.43786,1.64819,-0.050808,-3.39566,1.70146,-0.004799,-3.45502,1.62654,0.15862,-3.4295,1.65875,0.158617,-3.47063,1.60684,0.170792,-3.42997,1.65815,0.121802,-3.46528,1.61358,0.158617,-3.47063,1.60684,0.15862,-3.4295,1.65875,-0.030752,-3.47838,1.59704,-0.004799,-3.45502,1.62654,-0.045497,-3.45068,1.63201,-0.030752,-3.47838,1.59704,0.015457,-3.47816,1.59733,-0.004799,-3.45502,1.62654,0.093979,-3.47988,1.59516,0.158617,-3.47063,1.60684,0.121802,-3.46528,1.61358,0.093979,-3.47988,1.59516,0.128848,-3.49344,1.57805,0.158617,-3.47063,1.60684,-0.030752,-3.47838,1.59704,0.02978,-3.48646,1.58685,0.015457,-3.47816,1.59733,0.067635,-3.4885,1.58428,0.128848,-3.49344,1.57805,0.093979,-3.47988,1.59516,-0.011596,-3.49627,1.57447,0.02978,-3.48646,1.58685,-0.030752,-3.47838,1.59704,-0.011596,-3.49627,1.57447,0.067635,-3.4885,1.58428,0.02978,-3.48646,1.58685,-0.011596,-3.49627,1.57447,0.128848,-3.49344,1.57805,0.067635,-3.4885,1.58428,-0.011596,-3.49627,1.57447,0.090282,-3.51221,1.55434,0.128848,-3.49344,1.57805,0.017112,-3.51018,1.55691,0.090282,-3.51221,1.55434,-0.011596,-3.49627,1.57447,0.017112,-3.51018,1.55691,0.058085,-3.51612,1.54941,0.090282,-3.51221,1.55434,-0.303551,-3.29832,1.82433,-0.173254,-3.30235,1.81924,-0.226167,-3.29227,1.83196,-0.354895,-3.30373,1.8175,-0.303551,-3.29832,1.82433,-0.341424,-3.29167,1.83273,-0.354895,-3.30373,1.8175,-0.173254,-3.30235,1.81924,-0.303551,-3.29832,1.82433,-0.256509,-3.31153,1.80766,-0.219502,-3.31126,1.80799,-0.354895,-3.30373,1.8175,-0.219502,-3.31126,1.80799,-0.173254,-3.30235,1.81924,-0.354895,-3.30373,1.8175,-0.219502,-3.31126,1.80799,-0.145235,-3.32256,1.79373,-0.173254,-3.30235,1.81924,-0.354895,-3.30373,1.8175,-0.280698,-3.32153,1.79503,-0.256509,-3.31153,1.80766,-0.194697,-3.32234,1.79402,-0.145235,-3.32256,1.79373,-0.219502,-3.31126,1.80799,-0.326649,-3.32908,1.7855,-0.280698,-3.32153,1.79503,-0.354895,-3.30373,1.8175,-0.177624,-3.34018,1.77149,-0.145235,-3.32256,1.79373,-0.194697,-3.32234,1.79402,-0.177624,-3.34018,1.77149,-0.136544,-3.35651,1.75088,-0.145235,-3.32256,1.79373,-0.326649,-3.32908,1.7855,-0.294233,-3.41033,1.68295,-0.280698,-3.32153,1.79503,-0.175626,-3.36633,1.73848,-0.136544,-3.35651,1.75088,-0.177624,-3.34018,1.77149,-0.175626,-3.36633,1.73848,-0.152986,-3.394,1.70355,-0.136544,-3.35651,1.75088,-0.196085,-3.39611,1.70089,-0.152986,-3.394,1.70355,-0.175626,-3.36633,1.73848,-0.226868,-3.41199,1.68085,-0.152986,-3.394,1.70355,-0.196085,-3.39611,1.70089,-0.324954,-3.48825,1.58459,-0.294233,-3.41033,1.68295,-0.326649,-3.32908,1.7855,-0.226868,-3.41199,1.68085,-0.182082,-3.41498,1.67708,-0.152986,-3.394,1.70355,-0.324954,-3.48825,1.58459,-0.281852,-3.41945,1.67143,-0.294233,-3.41033,1.68295,-0.281852,-3.41945,1.67143,-0.182082,-3.41498,1.67708,-0.226868,-3.41199,1.68085,-0.324954,-3.48825,1.58459,-0.292245,-3.43906,1.64668,-0.281852,-3.41945,1.67143,-0.292245,-3.43906,1.64668,-0.182082,-3.41498,1.67708,-0.281852,-3.41945,1.67143,-0.292245,-3.43906,1.64668,-0.212891,-3.42635,1.66272,-0.182082,-3.41498,1.67708,-0.292245,-3.43906,1.64668,-0.245823,-3.43473,1.65215,-0.212891,-3.42635,1.66272,-0.245823,-3.43473,1.65215,-0.219237,-3.43525,1.65149,-0.212891,-3.42635,1.66272,-0.221742,-3.46862,1.60937,-0.219237,-3.43525,1.65149,-0.245823,-3.43473,1.65215,-0.221742,-3.46862,1.60937,-0.198143,-3.45891,1.62162,-0.219237,-3.43525,1.65149,-0.221742,-3.46862,1.60937,-0.180102,-3.47453,1.60191,-0.198143,-3.45891,1.62162,-0.206681,-3.48645,1.58687,-0.180102,-3.47453,1.60191,-0.221742,-3.46862,1.60937,-0.324954,-3.48825,1.58459,-0.295469,-3.5128,1.5536,-0.292245,-3.43906,1.64668,-0.153247,-3.48313,1.59105,-0.116123,-3.4744,1.60208,-0.136664,-3.47266,1.60427,-0.153247,-3.48313,1.59105,-0.106937,-3.48575,1.58775,-0.116123,-3.4744,1.60208,-0.206681,-3.48645,1.58687,-0.153247,-3.48313,1.59105,-0.180102,-3.47453,1.60191,-0.206681,-3.48645,1.58687,-0.106937,-3.48575,1.58775,-0.153247,-3.48313,1.59105,-0.206681,-3.48645,1.58687,-0.116147,-3.50521,1.56318,-0.106937,-3.48575,1.58775,-0.336904,-3.51265,1.55379,-0.295469,-3.5128,1.5536,-0.324954,-3.48825,1.58459,-0.170527,-3.50986,1.55731,-0.116147,-3.50521,1.56318,-0.206681,-3.48645,1.58687,-0.170527,-3.50986,1.55731,-0.135433,-3.51246,1.55403,-0.116147,-3.50521,1.56318,-0.336904,-3.51265,1.55379,-0.300814,-3.51678,1.54858,-0.295469,-3.5128,1.5536,-0.326892,-3.52937,1.53269,-0.300814,-3.51678,1.54858,-0.336904,-3.51265,1.55379,-0.326892,-3.52937,1.53269,-0.309983,-3.52804,1.53436,-0.300814,-3.51678,1.54858,-0.629143,-3.30519,1.81566,-0.614771,-3.29575,1.82757,-0.622026,-3.29169,1.8327,-0.629143,-3.30519,1.81566,-0.582233,-3.29755,1.82529,-0.614771,-3.29575,1.82757,-0.629143,-3.30519,1.81566,-0.539689,-3.30104,1.82089,-0.582233,-3.29755,1.82529,-0.629143,-3.30519,1.81566,-0.516811,-3.31541,1.80276,-0.539689,-3.30104,1.82089,-0.565032,-3.31792,1.79958,-0.516811,-3.31541,1.80276,-0.629143,-3.30519,1.81566,-0.565032,-3.31792,1.79958,-0.498811,-3.33611,1.77663,-0.516811,-3.31541,1.80276,-0.548025,-3.32365,1.79236,-0.498811,-3.33611,1.77663,-0.565032,-3.31792,1.79958,-0.612698,-3.32953,1.78494,-0.565032,-3.31792,1.79958,-0.629143,-3.30519,1.81566,-0.524606,-3.35046,1.75851,-0.498811,-3.33611,1.77663,-0.548025,-3.32365,1.79236,-0.577099,-3.33522,1.77775,-0.550053,-3.34983,1.75931,-0.562962,-3.33257,1.7811,-0.602518,-3.36028,1.74612,-0.550053,-3.34983,1.75931,-0.577099,-3.33522,1.77775,-0.524606,-3.35046,1.75851,-0.489664,-3.35811,1.74886,-0.498811,-3.33611,1.77663,-0.602518,-3.36028,1.74612,-0.575168,-3.37723,1.72472,-0.550053,-3.34983,1.75931,-0.524606,-3.35046,1.75851,-0.482107,-3.38022,1.72095,-0.489664,-3.35811,1.74886,-0.503401,-3.39994,1.69606,-0.482107,-3.38022,1.72095,-0.524606,-3.35046,1.75851,-0.619451,-3.3959,1.70115,-0.575168,-3.37723,1.72472,-0.602518,-3.36028,1.74612,-0.619451,-3.3959,1.70115,-0.586647,-3.39694,1.69985,-0.575168,-3.37723,1.72472,-0.503401,-3.39994,1.69606,-0.465523,-3.40405,1.69088,-0.482107,-3.38022,1.72095,-0.619451,-3.3959,1.70115,-0.594595,-3.43977,1.64579,-0.586647,-3.39694,1.69985,-0.497379,-3.42503,1.66439,-0.465523,-3.40405,1.69088,-0.503401,-3.39994,1.69606,-0.631914,-3.42927,1.65904,-0.594595,-3.43977,1.64579,-0.619451,-3.3959,1.70115,-0.497379,-3.42503,1.66439,-0.460268,-3.42083,1.6697,-0.465523,-3.40405,1.69088,-0.509635,-3.43488,1.65196,-0.460268,-3.42083,1.6697,-0.509635,-3.43488,1.65196,-0.447212,-3.44231,1.64258,-0.460268,-3.42083,1.6697,-0.594595,-3.43977,1.64579,-0.447212,-3.44231,1.64258,-0.509635,-3.43488,1.65196,-0.639619,-3.4486,1.63464,-0.594595,-3.43977,1.64579,-0.631914,-3.42927,1.65904,-0.639619,-3.4486,1.63464,-0.447212,-3.44231,1.64258,-0.594595,-3.43977,1.64579,-0.650133,-3.49862,1.5715,-0.594464,-3.45865,1.62196,-0.639619,-3.4486,1.63464,-0.594464,-3.45865,1.62196,-0.447212,-3.44231,1.64258,-0.639619,-3.4486,1.63464,-0.594464,-3.45865,1.62196,-0.505769,-3.45768,1.62318,-0.447212,-3.44231,1.64258,-0.477645,-3.45792,1.62288,-0.447212,-3.44231,1.64258,-0.505769,-3.45768,1.62318,-0.477645,-3.45792,1.62288,-0.433188,-3.46314,1.61628,-0.447212,-3.44231,1.64258,-0.650133,-3.49862,1.5715,-0.611484,-3.47528,1.60096,-0.594464,-3.45865,1.62196,-0.459611,-3.48705,1.5861,-0.433188,-3.46314,1.61628,-0.477645,-3.45792,1.62288,-0.459611,-3.48705,1.5861,-0.414659,-3.48599,1.58745,-0.433188,-3.46314,1.61628,-0.459611,-3.48705,1.5861,-0.40223,-3.49523,1.57578,-0.414659,-3.48599,1.58745,-0.650133,-3.49862,1.5715,-0.623953,-3.5097,1.55751,-0.611484,-3.47528,1.60096,-0.439739,-3.50781,1.5599,-0.40223,-3.49523,1.57578,-0.459611,-3.48705,1.5861,-0.65493,-3.51571,1.54993,-0.623953,-3.5097,1.55751,-0.650133,-3.49862,1.5715,-0.439739,-3.50781,1.5599,-0.405284,-3.51063,1.55634,-0.40223,-3.49523,1.57578,-0.425666,-3.51544,1.55026,-0.405284,-3.51063,1.55634,-0.439739,-3.50781,1.5599,-0.65493,-3.51571,1.54993,-0.637445,-3.53394,1.52692,-0.623953,-3.5097,1.55751,-0.735744,-3.52945,1.53259,-0.707855,-3.52659,1.5362,-0.726032,-3.52369,1.53986,-0.667361,-3.53303,1.52807,-0.637445,-3.53394,1.52692,-0.65493,-3.51571,1.54993,-0.735744,-3.52945,1.53259,-0.704661,-3.53371,1.52721,-0.707855,-3.52659,1.5362,-0.735744,-3.52945,1.53259,-0.695706,-3.54019,1.51903,-0.704661,-3.53371,1.52721,-0.667361,-3.53303,1.52807,-0.642419,-3.54204,1.51669,-0.637445,-3.53394,1.52692,-0.723332,-3.55337,1.5024,-0.695706,-3.54019,1.51903,-0.735744,-3.52945,1.53259,-0.695706,-3.54019,1.51903,-0.642419,-3.54204,1.51669,-0.667361,-3.53303,1.52807,-0.723332,-3.55337,1.5024,-0.642419,-3.54204,1.51669,-0.695706,-3.54019,1.51903,-0.723332,-3.55337,1.5024,-0.661233,-3.5561,1.49895,-0.642419,-3.54204,1.51669,-0.723332,-3.55337,1.5024,-0.690858,-3.5581,1.49642,-0.661233,-3.5561,1.49895,-0.723332,-3.55337,1.5024,-0.709083,-3.55933,1.49486,-0.690858,-3.5581,1.49642,-0.9477,-3.29876,1.82378,-0.734456,-3.30669,1.81376,-0.743836,-3.29727,1.82566,-0.955048,-3.31409,1.80442,-0.734456,-3.30669,1.81376,-0.9477,-3.29876,1.82378,-0.955048,-3.31409,1.80442,-0.738638,-3.31795,1.79955,-0.734456,-3.30669,1.81376,-0.909843,-3.31854,1.79881,-0.738638,-3.31795,1.79955,-0.955048,-3.31409,1.80442,-0.944906,-3.32084,1.79591,-0.909843,-3.31854,1.79881,-0.955048,-3.31409,1.80442,-0.811792,-3.31878,1.7985,-0.738638,-3.31795,1.79955,-0.909843,-3.31854,1.79881,-0.782396,-3.31982,1.79719,-0.738638,-3.31795,1.79955,-0.811792,-3.31878,1.7985,-0.75465,-3.32791,1.78698,-0.738638,-3.31795,1.79955,-0.782396,-3.31982,1.79719,-0.909843,-3.31854,1.79881,-0.844753,-3.3286,1.78611,-0.811792,-3.31878,1.7985,-0.903604,-3.32647,1.7888,-0.844753,-3.3286,1.78611,-0.909843,-3.31854,1.79881,-0.914602,-3.34247,1.7686,-0.844753,-3.3286,1.78611,-0.903604,-3.32647,1.7888,-0.914602,-3.34247,1.7686,-0.867586,-3.34057,1.771,-0.844753,-3.3286,1.78611,-0.914602,-3.34247,1.7686,-0.888254,-3.35855,1.7483,-0.867586,-3.34057,1.771,-0.928786,-3.3627,1.74306,-0.928786,-3.3627,1.74306,-0.900286,-3.38147,1.71937,-0.888254,-3.35855,1.7483,-0.939553,-3.39591,1.70115,-0.900286,-3.38147,1.71937,-0.928786,-3.3627,1.74306,-0.939553,-3.39591,1.70115,-0.900857,-3.43786,1.64819,-0.900286,-3.38147,1.71937,-0.934225,-3.45068,1.63201,-0.900857,-3.43786,1.64819,-0.939553,-3.39591,1.70115,-0.934225,-3.45068,1.63201,-0.892594,-3.45702,1.62401,-0.900857,-3.43786,1.64819,-0.730108,-3.4295,1.65875,-0.730112,-3.47063,1.60684,-0.717936,-3.42997,1.65815,-0.766926,-3.46528,1.61358,-0.730112,-3.47063,1.60684,-0.730108,-3.4295,1.65875,-0.91948,-3.47838,1.59704,-0.892594,-3.45702,1.62401,-0.934225,-3.45068,1.63201,-0.91948,-3.47838,1.59704,-0.87108,-3.47923,1.59597,-0.892594,-3.45702,1.62401,-0.794749,-3.47988,1.59516,-0.730112,-3.47063,1.60684,-0.766926,-3.46528,1.61358,-0.794749,-3.47988,1.59516,-0.759881,-3.49344,1.57805,-0.730112,-3.47063,1.60684,-0.91948,-3.47838,1.59704,-0.858949,-3.48646,1.58685,-0.87108,-3.47923,1.59597,-0.821093,-3.4885,1.58428,-0.759881,-3.49344,1.57805,-0.794749,-3.47988,1.59516,-0.900324,-3.49627,1.57447,-0.858949,-3.48646,1.58685,-0.91948,-3.47838,1.59704,-0.900324,-3.49627,1.57447,-0.821093,-3.4885,1.58428,-0.858949,-3.48646,1.58685,-0.900324,-3.49627,1.57447,-0.759881,-3.49344,1.57805,-0.821093,-3.4885,1.58428,-0.900324,-3.49627,1.57447,-0.802281,-3.51365,1.55254,-0.759881,-3.49344,1.57805,-0.879533,-3.50667,1.56134,-0.802281,-3.51365,1.55254,-0.900324,-3.49627,1.57447,-0.856097,-3.51391,1.55221,-0.802281,-3.51365,1.55254,-0.879533,-3.50667,1.56134,-1.32832,-3.20896,1.93712,-1.17919,-3.21429,1.93039,-1.23969,-3.20366,1.94382,-1.35492,-3.21666,1.9274,-1.17919,-3.21429,1.93039,-1.32832,-3.20896,1.93712,-1.35492,-3.21666,1.9274,-1.15034,-3.22187,1.92082,-1.17919,-3.21429,1.93039,-1.30152,-3.22374,1.91847,-1.15034,-3.22187,1.92082,-1.35492,-3.21666,1.9274,-1.24672,-3.22517,1.91666,-1.15034,-3.22187,1.92082,-1.30152,-3.22374,1.91847,-1.35492,-3.21666,1.9274,-1.34146,-3.2339,1.90564,-1.30152,-3.22374,1.91847,-1.3924,-3.2359,1.90311,-1.34146,-3.2339,1.90564,-1.35492,-3.21666,1.9274,-1.21207,-3.23549,1.90364,-1.15034,-3.22187,1.92082,-1.24672,-3.22517,1.91666,-1.21207,-3.23549,1.90364,-1.12719,-3.23989,1.89808,-1.15034,-3.22187,1.92082,-1.3924,-3.2359,1.90311,-1.35986,-3.25162,1.88327,-1.34146,-3.2339,1.90564,-1.40589,-3.25505,1.87895,-1.19615,-3.25681,1.87672,-1.12719,-3.23989,1.89808,-1.21207,-3.23549,1.90364,-1.19615,-3.25681,1.87672,-1.13104,-3.25766,1.87565,-1.12719,-3.23989,1.89808,-1.16934,-3.26785,1.86279,-1.13104,-3.25766,1.87565,-1.19615,-3.25681,1.87672,-1.40589,-3.25505,1.87895,-1.35519,-3.27525,1.85345,-1.35986,-3.25162,1.88327,-1.40476,-3.28478,1.84142,-1.35519,-3.27525,1.85345,-1.40589,-3.25505,1.87895,-1.40476,-3.28478,1.84142,-1.32343,-3.2908,1.83382,-1.35519,-3.27525,1.85345,-1.39394,-3.29743,1.82545,-1.32343,-3.2908,1.83382,-1.40476,-3.28478,1.84142,-1.39394,-3.29743,1.82545,-1.26713,-3.29852,1.82407,-1.32343,-3.2908,1.83382,-1.39394,-3.29743,1.82545,-1.20276,-3.31009,1.80948,-1.26713,-3.29852,1.82407,-1.36427,-3.31458,1.8038,-1.20276,-3.31009,1.80948,-1.39394,-3.29743,1.82545,-1.36427,-3.31458,1.8038,-1.13245,-3.33017,1.78412,-1.20276,-3.31009,1.80948,-1.33794,-3.32488,1.79081,-1.13245,-3.33017,1.78412,-1.36427,-3.31458,1.8038,-1.26134,-3.33974,1.77205,-1.13245,-3.33017,1.78412,-1.33794,-3.32488,1.79081,-1.24418,-3.34242,1.76866,-1.13245,-3.33017,1.78412,-1.26134,-3.33974,1.77205,-1.22066,-3.34733,1.76247,-1.13245,-3.33017,1.78412,-1.24418,-3.34242,1.76866,-1.22066,-3.34733,1.76247,-1.07002,-3.37214,1.73115,-1.1645,-3.3618,1.7442,-1.07002,-3.37214,1.73115,-1.22066,-3.34733,1.76247,-1.13531,-3.37976,1.72153,-1.07002,-3.37214,1.73115,-1.1645,-3.3618,1.7442,-1.11201,-3.4116,1.68134,-1.07002,-3.37214,1.73115,-1.13531,-3.37976,1.72153,-1.11201,-3.4116,1.68134,-1.0568,-3.4091,1.6845,-1.07002,-3.37214,1.73115,-1.39691,-3.41256,1.68013,-1.29805,-3.41533,1.67663,-1.35443,-3.40246,1.69288,-1.4265,-3.43229,1.65523,-1.29805,-3.41533,1.67663,-1.39691,-3.41256,1.68013,-1.4265,-3.43229,1.65523,-1.28474,-3.43307,1.65424,-1.29805,-3.41533,1.67663,-1.11201,-3.4116,1.68134,-1.0716,-3.44886,1.63431,-1.0568,-3.4091,1.6845,-1.36767,-3.43441,1.65255,-1.28474,-3.43307,1.65424,-1.4265,-3.43229,1.65523,-1.11704,-3.44595,1.63799,-1.0716,-3.44886,1.63431,-1.11201,-3.4116,1.68134,-1.4265,-3.43229,1.65523,-1.38359,-3.43849,1.6474,-1.36767,-3.43441,1.65255,-1.36767,-3.43441,1.65255,-1.29575,-3.45253,1.62968,-1.28474,-3.43307,1.65424,-1.34496,-3.44726,1.63633,-1.29575,-3.45253,1.62968,-1.36767,-3.43441,1.65255,-1.42958,-3.47484,1.60151,-1.38359,-3.43849,1.6474,-1.4265,-3.43229,1.65523,-1.39285,-3.45858,1.62204,-1.34207,-3.45196,1.6304,-1.29575,-3.45253,1.62968,-1.34496,-3.44726,1.63633,-1.12534,-3.45417,1.6276,-1.0716,-3.44886,1.63431,-1.11704,-3.44595,1.63799,-1.12534,-3.45417,1.6276,-1.09232,-3.46879,1.60915,-1.0716,-3.44886,1.63431,-1.13811,-3.468,1.61015,-1.09232,-3.46879,1.60915,-1.12534,-3.45417,1.6276,-1.42958,-3.47484,1.60151,-1.37618,-3.47844,1.59698,-1.39285,-3.45858,1.62204,-1.14987,-3.47408,1.60248,-1.09232,-3.46879,1.60915,-1.13811,-3.468,1.61015,-1.17275,-3.4827,1.5916,-1.09232,-3.46879,1.60915,-1.14987,-3.47408,1.60248,-1.42958,-3.47484,1.60151,-1.33206,-3.48985,1.58257,-1.37618,-3.47844,1.59698,-1.39834,-3.49579,1.57507,-1.33206,-3.48985,1.58257,-1.42958,-3.47484,1.60151,-1.24213,-3.49499,1.57609,-1.09232,-3.46879,1.60915,-1.17275,-3.4827,1.5916,-1.24213,-3.49499,1.57609,-1.14898,-3.49953,1.57036,-1.09232,-3.46879,1.60915,-1.39834,-3.49579,1.57507,-1.24213,-3.49499,1.57609,-1.33206,-3.48985,1.58257,-1.39834,-3.49579,1.57507,-1.14898,-3.49953,1.57036,-1.24213,-3.49499,1.57609,-1.34712,-3.50876,1.55871,-1.14898,-3.49953,1.57036,-1.39834,-3.49579,1.57507,-1.34712,-3.50876,1.55871,-1.24305,-3.51366,1.55252,-1.14898,-3.49953,1.57036,1.37564,-2.67734,2.60816,1.50594,-2.68137,2.60307,1.45302,-2.67129,2.61579,1.3243,-2.68275,2.60133,1.37564,-2.67734,2.60816,1.33777,-2.67069,2.61655,1.3243,-2.68275,2.60133,1.50594,-2.68137,2.60307,1.37564,-2.67734,2.60816,1.42268,-2.69055,2.59148,1.45969,-2.69028,2.59182,1.3243,-2.68275,2.60133,1.45969,-2.69028,2.59182,1.50594,-2.68137,2.60307,1.3243,-2.68275,2.60133,1.45969,-2.69028,2.59182,1.53395,-2.70158,2.57755,1.50594,-2.68137,2.60307,1.3243,-2.68275,2.60133,1.39849,-2.70055,2.57885,1.42268,-2.69055,2.59148,1.48449,-2.70135,2.57784,1.53395,-2.70158,2.57755,1.45969,-2.69028,2.59182,1.35254,-2.7081,2.56932,1.39849,-2.70055,2.57885,1.3243,-2.68275,2.60133,1.50157,-2.7192,2.55532,1.53395,-2.70158,2.57755,1.48449,-2.70135,2.57784,1.50157,-2.7192,2.55532,1.54265,-2.73553,2.53471,1.53395,-2.70158,2.57755,1.35254,-2.7081,2.56932,1.38496,-2.78935,2.46677,1.39849,-2.70055,2.57885,1.50356,-2.74535,2.52231,1.5262,-2.77302,2.48738,1.48311,-2.77513,2.48472,1.5262,-2.77302,2.48738,1.50356,-2.74535,2.52231,1.45232,-2.79101,2.46467,1.5262,-2.77302,2.48738,1.48311,-2.77513,2.48472,1.35424,-2.86727,2.36842,1.38496,-2.78935,2.46677,1.35254,-2.7081,2.56932,1.45232,-2.79101,2.46467,1.49711,-2.794,2.4609,1.5262,-2.77302,2.48738,1.35424,-2.86727,2.36842,1.39734,-2.79847,2.45526,1.38496,-2.78935,2.46677,1.39734,-2.79847,2.45526,1.49711,-2.794,2.4609,1.45232,-2.79101,2.46467,1.35424,-2.86727,2.36842,1.38695,-2.81808,2.43051,1.39734,-2.79847,2.45526,1.38695,-2.81808,2.43051,1.49711,-2.794,2.4609,1.39734,-2.79847,2.45526,1.38695,-2.81808,2.43051,1.4663,-2.80537,2.44655,1.49711,-2.794,2.4609,1.38695,-2.81808,2.43051,1.43337,-2.81375,2.43597,1.4663,-2.80537,2.44655,1.43337,-2.81375,2.43597,1.46004,-2.81574,2.43346,1.4663,-2.80537,2.44655,1.45773,-2.84775,2.39305,1.46004,-2.81574,2.43346,1.43337,-2.81375,2.43597,1.45773,-2.84775,2.39305,1.48123,-2.83795,2.40542,1.46004,-2.81574,2.43346,1.45773,-2.84775,2.39305,1.49896,-2.85339,2.38593,1.48123,-2.83795,2.40542,1.35424,-2.86727,2.36842,1.38372,-2.89182,2.33743,1.38695,-2.81808,2.43051,1.46886,-2.86113,2.37616,1.49896,-2.85339,2.38593,1.45773,-2.84775,2.39305,1.52551,-2.86229,2.37471,1.56581,-2.85443,2.38462,1.54253,-2.85168,2.3881,1.46886,-2.86113,2.37616,1.52551,-2.86229,2.37471,1.49896,-2.85339,2.38593,1.52551,-2.86229,2.37471,1.57171,-2.86757,2.36804,1.56581,-2.85443,2.38462,1.46886,-2.86113,2.37616,1.57171,-2.86757,2.36804,1.52551,-2.86229,2.37471,1.49437,-2.88253,2.34915,1.57171,-2.86757,2.36804,1.46886,-2.86113,2.37616,1.49437,-2.88253,2.34915,1.56304,-2.88423,2.34701,1.57171,-2.86757,2.36804,1.34229,-2.89167,2.33761,1.38372,-2.89182,2.33743,1.35424,-2.86727,2.36842,1.49437,-2.88253,2.34915,1.54376,-2.89148,2.33786,1.56304,-2.88423,2.34701,1.51471,-2.88982,2.33995,1.54376,-2.89148,2.33786,1.49437,-2.88253,2.34915,1.34229,-2.89167,2.33761,1.37838,-2.8958,2.33241,1.38372,-2.89182,2.33743,1.3523,-2.90839,2.31651,1.37838,-2.8958,2.33241,1.34229,-2.89167,2.33761,1.3523,-2.90839,2.31651,1.36921,-2.90706,2.31819,1.37838,-2.8958,2.33241,1.10737,-2.67949,2.60544,1.21157,-2.6834,2.60051,1.15074,-2.67619,2.60961,1.07603,-2.68912,2.59329,1.21157,-2.6834,2.60051,1.10737,-2.67949,2.60544,1.12847,-2.69202,2.58962,1.17622,-2.69187,2.58981,1.07603,-2.68912,2.59329,1.17622,-2.69187,2.58981,1.21157,-2.6834,2.60051,1.07603,-2.68912,2.59329,1.17622,-2.69187,2.58981,1.24633,-2.70248,2.57642,1.21157,-2.6834,2.60051,1.07603,-2.68912,2.59329,1.09871,-2.69996,2.5796,1.12847,-2.69202,2.58962,1.03429,-2.7153,2.56024,1.09871,-2.69996,2.5796,1.07603,-2.68912,2.59329,1.22338,-2.71208,2.56431,1.24633,-2.70248,2.57642,1.17622,-2.69187,2.58981,1.03429,-2.7153,2.56024,1.07091,-2.72499,2.548,1.09871,-2.69996,2.5796,1.22338,-2.71208,2.56431,1.271,-2.74161,2.52703,1.24633,-2.70248,2.57642,1.01283,-2.74351,2.52463,1.01283,-2.74351,2.52463,1.0739,-2.73807,2.5315,1.07091,-2.72499,2.548,1.23503,-2.73879,2.5306,1.271,-2.74161,2.52703,1.22338,-2.71208,2.56431,1.01283,-2.74351,2.52463,1.23503,-2.73879,2.5306,1.0739,-2.73807,2.5315,1.01283,-2.74351,2.52463,1.271,-2.74161,2.52703,1.23503,-2.73879,2.5306,1.01283,-2.74351,2.52463,1.26828,-2.75582,2.50909,1.271,-2.74161,2.52703,1.00413,-2.75922,2.50481,1.26828,-2.75582,2.50909,1.01283,-2.74351,2.52463,1.00413,-2.75922,2.50481,1.05749,-2.75897,2.50511,1.26828,-2.75582,2.50909,1.00413,-2.75922,2.50481,1.05103,-2.76666,2.4954,1.05749,-2.75897,2.50511,1.00413,-2.75922,2.50481,1.05073,-2.79604,2.45832,1.05103,-2.76666,2.4954,1.00897,-2.81175,2.4385,1.05073,-2.79604,2.45832,1.00413,-2.75922,2.50481,1.00897,-2.81175,2.4385,1.06184,-2.83744,2.40606,1.05073,-2.79604,2.45832,1.01963,-2.8351,2.40902,1.06184,-2.83744,2.40606,1.00897,-2.81175,2.4385,1.23306,-2.83996,2.40289,1.26523,-2.84269,2.39944,1.25221,-2.83606,2.40781,1.04618,-2.86552,2.37062,1.06184,-2.83744,2.40606,1.01963,-2.8351,2.40902,1.23306,-2.83996,2.40289,1.26342,-2.86131,2.37593,1.26523,-2.84269,2.39944,1.04618,-2.86552,2.37062,1.08417,-2.86549,2.37066,1.06184,-2.83744,2.40606,1.20734,-2.86781,2.36773,1.26342,-2.86131,2.37593,1.23306,-2.83996,2.40289,1.04618,-2.86552,2.37062,1.10156,-2.87455,2.35923,1.08417,-2.86549,2.37066,1.19048,-2.87483,2.35888,1.26342,-2.86131,2.37593,1.20734,-2.86781,2.36773,1.19048,-2.87483,2.35888,1.22995,-2.88622,2.3445,1.26342,-2.86131,2.37593,1.04618,-2.86552,2.37062,1.14604,-2.88286,2.34874,1.10156,-2.87455,2.35923,1.14604,-2.88286,2.34874,1.22995,-2.88622,2.3445,1.19048,-2.87483,2.35888,1.10498,-2.89465,2.33386,1.14604,-2.88286,2.34874,1.04618,-2.86552,2.37062,1.10498,-2.89465,2.33386,1.22995,-2.88622,2.3445,1.14604,-2.88286,2.34874,1.10498,-2.89465,2.33386,1.18777,-2.89652,2.3315,1.22995,-2.88622,2.3445,0.763151,-2.66914,2.6185,0.785286,-2.67951,2.60541,0.775552,-2.67043,2.61687,0.92618,-2.68141,2.60301,0.954421,-2.67966,2.60523,0.941204,-2.67508,2.611,0.738144,-2.69398,2.58715,0.785286,-2.67951,2.60541,0.763151,-2.66914,2.6185,0.738144,-2.69398,2.58715,0.769602,-2.70333,2.57535,0.785286,-2.67951,2.60541,0.92618,-2.68141,2.60301,0.952803,-2.69938,2.58033,0.954421,-2.67966,2.60523,0.738144,-2.69398,2.58715,0.762514,-2.72035,2.55387,0.769602,-2.70333,2.57535,0.92618,-2.68141,2.60301,0.937848,-2.72334,2.55009,0.952803,-2.69938,2.58033,0.904522,-2.74762,2.51944,0.937848,-2.72334,2.55009,0.92618,-2.68141,2.60301,0.734262,-2.74396,2.52406,0.762514,-2.72035,2.55387,0.738144,-2.69398,2.58715,0.734262,-2.74396,2.52406,0.771546,-2.75729,2.50724,0.762514,-2.72035,2.55387,0.904522,-2.74762,2.51944,0.912796,-2.78812,2.46832,0.937848,-2.72334,2.55009,0.892049,-2.76352,2.49937,0.912796,-2.78812,2.46832,0.904522,-2.74762,2.51944,0.75439,-2.78783,2.46869,0.771546,-2.75729,2.50724,0.734262,-2.74396,2.52406,0.796845,-2.79539,2.45914,0.886532,-2.77983,2.47878,0.912796,-2.78812,2.46832,0.892049,-2.76352,2.49937,0.886532,-2.77983,2.47878,0.905545,-2.80095,2.45212,0.912796,-2.78812,2.46832,0.870626,-2.81147,2.43885,0.905545,-2.80095,2.45212,0.886532,-2.77983,2.47878,0.870626,-2.81147,2.43885,0.898145,-2.81386,2.43583,0.905545,-2.80095,2.45212,0.78237,-2.81663,2.43233,0.796845,-2.79539,2.45914,0.75439,-2.78783,2.46869,0.78237,-2.81663,2.43233,0.815569,-2.81642,2.4326,0.796845,-2.79539,2.45914,0.78237,-2.81663,2.43233,0.828081,-2.8378,2.40561,0.815569,-2.81642,2.4326,0.841893,-2.84354,2.39837,0.898145,-2.81386,2.43583,0.870626,-2.81147,2.43885,0.841893,-2.84354,2.39837,0.869949,-2.85488,2.38406,0.898145,-2.81386,2.43583,0.815943,-2.86346,2.37323,0.828081,-2.8378,2.40561,0.78237,-2.81663,2.43233,0.815943,-2.86346,2.37323,0.841893,-2.84354,2.39837,0.828081,-2.8378,2.40561,0.815943,-2.86346,2.37323,0.869949,-2.85488,2.38406,0.841893,-2.84354,2.39837,0.815943,-2.86346,2.37323,0.858472,-2.87727,2.35579,0.869949,-2.85488,2.38406,0.821838,-2.88438,2.34682,0.858472,-2.87727,2.35579,0.815943,-2.86346,2.37323,0.847698,-2.8941,2.33455,0.832862,-2.89928,2.32801,0.847698,-2.8941,2.33455,0.821838,-2.88438,2.34682,0.380353,-2.58271,2.7276,0.498385,-2.57833,2.73312,0.402497,-2.57905,2.73221,0.380353,-2.58271,2.7276,0.540026,-2.58938,2.71919,0.498385,-2.57833,2.73312,0.348821,-2.59308,2.71451,0.540026,-2.58938,2.71919,0.380353,-2.58271,2.7276,0.422001,-2.59419,2.71311,0.540026,-2.58938,2.71919,0.348821,-2.59308,2.71451,0.333838,-2.59588,2.71098,0.422001,-2.59419,2.71311,0.348821,-2.59308,2.71451,0.422001,-2.59419,2.71311,0.567764,-2.60171,2.70362,0.540026,-2.58938,2.71919,0.475587,-2.59731,2.70918,0.567764,-2.60171,2.70362,0.422001,-2.59419,2.71311,0.516055,-2.60934,2.69399,0.567764,-2.60171,2.70362,0.475587,-2.59731,2.70918,0.333838,-2.59588,2.71098,0.36297,-2.61445,2.68754,0.422001,-2.59419,2.71311,0.516055,-2.60934,2.69399,0.60352,-2.62998,2.66793,0.567764,-2.60171,2.70362,0.288199,-2.62997,2.66795,0.36297,-2.61445,2.68754,0.333838,-2.59588,2.71098,0.552771,-2.6316,2.66589,0.60352,-2.62998,2.66793,0.516055,-2.60934,2.69399,0.288199,-2.62997,2.66795,0.334697,-2.64352,2.65084,0.36297,-2.61445,2.68754,0.552771,-2.6316,2.66589,0.61004,-2.63608,2.66023,0.60352,-2.62998,2.66793,0.563718,-2.64656,2.647,0.61004,-2.63608,2.66023,0.552771,-2.6316,2.66589,0.270838,-2.65371,2.63798,0.334697,-2.64352,2.65084,0.288199,-2.62997,2.66795,0.324528,-2.66323,2.62596,0.563718,-2.64656,2.647,0.642899,-2.69283,2.5886,0.61004,-2.63608,2.66023,0.256062,-2.68968,2.59258,0.324528,-2.66323,2.62596,0.270838,-2.65371,2.63798,0.584122,-2.69153,2.59025,0.642899,-2.69283,2.5886,0.563718,-2.64656,2.647,0.311762,-2.70357,2.57504,0.252963,-2.72783,2.54442,0.311762,-2.70357,2.57504,0.256062,-2.68968,2.59258,0.581917,-2.77364,2.4866,0.642899,-2.69283,2.5886,0.584122,-2.69153,2.59025,0.581917,-2.77364,2.4866,0.643859,-2.76646,2.49567,0.642899,-2.69283,2.5886,0.252963,-2.72783,2.54442,0.313105,-2.75368,2.51179,0.311762,-2.70357,2.57504,0.255503,-2.76694,2.49506,0.313105,-2.75368,2.51179,0.252963,-2.72783,2.54442,0.255503,-2.76694,2.49506,0.320665,-2.77095,2.49,0.313105,-2.75368,2.51179,0.255503,-2.76694,2.49506,0.323195,-2.79123,2.4644,0.320665,-2.77095,2.49,0.581917,-2.77364,2.4866,0.623493,-2.81146,2.43886,0.643859,-2.76646,2.49567,0.287984,-2.83134,2.41377,0.323195,-2.79123,2.4644,0.287984,-2.83134,2.41377,0.335598,-2.81533,2.43398,0.323195,-2.79123,2.4644,0.554919,-2.82382,2.42325,0.623493,-2.81146,2.43886,0.581917,-2.77364,2.4866,0.287984,-2.83134,2.41377,0.344769,-2.82549,2.42115,0.335598,-2.81533,2.43398,0.554919,-2.82382,2.42325,0.600745,-2.83896,2.40415,0.623493,-2.81146,2.43886,0.287984,-2.83134,2.41377,0.347912,-2.83463,2.40962,0.344769,-2.82549,2.42115,0.545677,-2.83654,2.4072,0.600745,-2.83896,2.40415,0.554919,-2.82382,2.42325,0.298134,-2.83993,2.40292,0.347912,-2.83463,2.40962,0.287984,-2.83134,2.41377,0.298134,-2.83993,2.40292,0.408611,-2.86367,2.37296,0.347912,-2.83463,2.40962,0.501959,-2.86128,2.37597,0.501959,-2.86128,2.37597,0.556926,-2.87025,2.36465,0.600745,-2.83896,2.40415,0.323046,-2.8597,2.37797,0.483868,-2.86439,2.37205,0.556926,-2.87025,2.36465,0.501959,-2.86128,2.37597,0.323046,-2.8597,2.37797,0.415365,-2.86721,2.36849,0.408611,-2.86367,2.37296,0.456508,-2.87058,2.36424,0.556926,-2.87025,2.36465,0.483868,-2.86439,2.37205,0.372478,-2.88507,2.34595,0.415365,-2.86721,2.36849,0.323046,-2.8597,2.37797,0.372478,-2.88507,2.34595,0.456508,-2.87058,2.36424,0.415365,-2.86721,2.36849,0.372478,-2.88507,2.34595,0.556926,-2.87025,2.36465,0.456508,-2.87058,2.36424,0.372478,-2.88507,2.34595,0.52453,-2.88313,2.34839,0.556926,-2.87025,2.36465,0.372478,-2.88507,2.34595,0.491924,-2.88961,2.34022,0.52453,-2.88313,2.34839,0.422102,-2.89257,2.33648,0.491924,-2.88961,2.34022,0.372478,-2.88507,2.34595,-0.173699,-2.67949,2.60544,-0.0695,-2.6834,2.60051,-0.130332,-2.67619,2.60961,-0.205719,-2.68939,2.59294,-0.0695,-2.6834,2.60051,-0.173699,-2.67949,2.60544,-0.152596,-2.69202,2.58962,-0.104844,-2.69187,2.58981,-0.205719,-2.68939,2.59294,-0.104844,-2.69187,2.58981,-0.0695,-2.6834,2.60051,-0.205719,-2.68939,2.59294,-0.104844,-2.69187,2.58981,-0.034742,-2.70248,2.57642,-0.0695,-2.6834,2.60051,-0.205719,-2.68939,2.59294,-0.182363,-2.69996,2.5796,-0.152596,-2.69202,2.58962,-0.057685,-2.71208,2.5643,-0.034742,-2.70248,2.57642,-0.104844,-2.69187,2.58981,-0.249886,-2.71813,2.55666,-0.182363,-2.69996,2.5796,-0.205719,-2.68939,2.59294,-0.249886,-2.71813,2.55666,-0.210162,-2.72499,2.548,-0.182363,-2.69996,2.5796,-0.057685,-2.71208,2.5643,-0.010066,-2.7416,2.52704,-0.034742,-2.70248,2.57642,-0.271975,-2.7506,2.51568,-0.210162,-2.72499,2.548,-0.249886,-2.71813,2.55666,-0.271975,-2.7506,2.51568,-0.207171,-2.73807,2.5315,-0.210162,-2.72499,2.548,-0.046045,-2.73879,2.5306,-0.010066,-2.7416,2.52704,-0.057685,-2.71208,2.5643,-0.271975,-2.7506,2.51568,-0.046045,-2.73879,2.5306,-0.207171,-2.73807,2.5315,-0.271975,-2.7506,2.51568,-0.010066,-2.7416,2.52704,-0.046045,-2.73879,2.5306,-0.271975,-2.7506,2.51568,-0.012785,-2.75582,2.50909,-0.010066,-2.7416,2.52704,-0.271975,-2.7506,2.51568,-0.223792,-2.75899,2.5051,-0.012785,-2.75582,2.50909,-0.277268,-2.77323,2.48712,-0.223792,-2.75899,2.5051,-0.271975,-2.7506,2.51568,-0.277268,-2.77323,2.48712,-0.230213,-2.76744,2.49442,-0.223792,-2.75899,2.5051,-0.277268,-2.77323,2.48712,-0.230334,-2.79604,2.45832,-0.230213,-2.76744,2.49442,-0.271395,-2.81348,2.43631,-0.230334,-2.79604,2.45832,-0.277268,-2.77323,2.48712,-0.271395,-2.81348,2.43631,-0.219234,-2.83744,2.40607,-0.230334,-2.79604,2.45832,-0.261437,-2.8351,2.40902,-0.219234,-2.83744,2.40607,-0.271395,-2.81348,2.43631,-0.048014,-2.83996,2.40289,-0.015839,-2.84269,2.39944,-0.028856,-2.83606,2.40781,-0.234893,-2.86552,2.37063,-0.219234,-2.83744,2.40607,-0.261437,-2.8351,2.40902,-0.048014,-2.83996,2.40289,-0.017653,-2.86131,2.37593,-0.015839,-2.84269,2.39944,-0.234893,-2.86552,2.37063,-0.189098,-2.87161,2.36294,-0.219234,-2.83744,2.40607,-0.073732,-2.86781,2.36773,-0.017653,-2.86131,2.37593,-0.048014,-2.83996,2.40289,-0.090589,-2.87483,2.35888,-0.017653,-2.86131,2.37593,-0.073732,-2.86781,2.36773,-0.090589,-2.87483,2.35888,-0.051117,-2.88622,2.3445,-0.017653,-2.86131,2.37593,-0.234893,-2.86552,2.37063,-0.135025,-2.88286,2.34874,-0.189098,-2.87161,2.36294,-0.135025,-2.88286,2.34874,-0.051117,-2.88622,2.3445,-0.090589,-2.87483,2.35888,-0.176088,-2.89465,2.33386,-0.135025,-2.88286,2.34874,-0.234893,-2.86552,2.37063,-0.176088,-2.89465,2.33386,-0.051117,-2.88622,2.3445,-0.135025,-2.88286,2.34874,-0.176088,-2.89465,2.33386,-0.093301,-2.89652,2.3315,-0.051117,-2.88622,2.3445,-0.572152,-2.67877,2.60634,-0.468053,-2.67747,2.60799,-0.532713,-2.67499,2.61111,-0.572152,-2.67877,2.60634,-0.418052,-2.68592,2.59732,-0.468053,-2.67747,2.60799,-0.605514,-2.68743,2.59541,-0.418052,-2.68592,2.59732,-0.572152,-2.67877,2.60634,-0.605514,-2.68743,2.59541,-0.5322,-2.69401,2.58712,-0.418052,-2.68592,2.59732,-0.5322,-2.69401,2.58712,-0.468073,-2.69426,2.58679,-0.418052,-2.68592,2.59732,-0.638246,-2.70412,2.57435,-0.5322,-2.69401,2.58712,-0.605514,-2.68743,2.59541,-0.5322,-2.69401,2.58712,-0.484955,-2.69474,2.58618,-0.468073,-2.69426,2.58679,-0.638246,-2.70412,2.57435,-0.587314,-2.70172,2.57737,-0.5322,-2.69401,2.58712,-0.5322,-2.69401,2.58712,-0.490807,-2.70009,2.57944,-0.484955,-2.69474,2.58618,-0.431382,-2.70156,2.57758,-0.418052,-2.68592,2.59732,-0.468073,-2.69426,2.58679,-0.521112,-2.89574,2.33248,-0.490807,-2.70009,2.57944,-0.5322,-2.69401,2.58712,-0.431382,-2.70156,2.57758,-0.372432,-2.7145,2.56125,-0.418052,-2.68592,2.59732,-0.401511,-2.71997,2.55434,-0.372432,-2.7145,2.56125,-0.431382,-2.70156,2.57758,-0.521112,-2.89574,2.33248,-0.483043,-2.89112,2.33831,-0.490807,-2.70009,2.57944,-0.618669,-2.72292,2.55062,-0.587314,-2.70172,2.57737,-0.401511,-2.71997,2.55434,-0.357692,-2.73607,2.53403,-0.372432,-2.7145,2.56125,-0.658707,-2.73071,2.54079,-0.618669,-2.72292,2.55062,-0.638246,-2.70412,2.57435,-0.665228,-2.74506,2.52267,-0.618669,-2.72292,2.55062,-0.658707,-2.73071,2.54079,-0.387799,-2.74586,2.52166,-0.357692,-2.73607,2.53403,-0.401511,-2.71997,2.55434,-0.347432,-2.76019,2.50358,-0.665228,-2.74506,2.52267,-0.636681,-2.76462,2.49798,-0.618669,-2.72292,2.55062,-0.381242,-2.77119,2.48969,-0.347432,-2.76019,2.50358,-0.387799,-2.74586,2.52166,-0.671285,-2.78014,2.47839,-0.636681,-2.76462,2.49798,-0.665228,-2.74506,2.52267,-0.381242,-2.77119,2.48969,-0.344085,-2.78729,2.46937,-0.347432,-2.76019,2.50358,-0.671285,-2.78014,2.47839,-0.636275,-2.81829,2.43024,-0.636681,-2.76462,2.49798,-0.377151,-2.81845,2.43004,-0.344085,-2.78729,2.46937,-0.381242,-2.77119,2.48969,-0.66375,-2.82385,2.42323,-0.636275,-2.81829,2.43024,-0.671285,-2.78014,2.47839,-0.377151,-2.81845,2.43004,-0.34595,-2.82568,2.42091,-0.344085,-2.78729,2.46937,-0.377151,-2.81845,2.43004,-0.353611,-2.84948,2.39087,-0.34595,-2.82568,2.42091,-0.391296,-2.85761,2.38061,-0.353611,-2.84948,2.39087,-0.377151,-2.81845,2.43004,-0.66375,-2.82385,2.42323,-0.618631,-2.8517,2.38807,-0.636275,-2.81829,2.43024,-0.642893,-2.86915,2.36605,-0.618631,-2.8517,2.38807,-0.66375,-2.82385,2.42323,-0.391296,-2.85761,2.38061,-0.363057,-2.86385,2.37273,-0.353611,-2.84948,2.39087,-0.642893,-2.86915,2.36605,-0.608226,-2.86564,2.37047,-0.618631,-2.8517,2.38807,-0.642893,-2.86915,2.36605,-0.585815,-2.87716,2.35593,-0.608226,-2.86564,2.37047,-0.415343,-2.87787,2.35503,-0.363057,-2.86385,2.37273,-0.391296,-2.85761,2.38061,-0.37296,-2.88176,2.35012,-0.614555,-2.89582,2.33238,-0.585815,-2.87716,2.35593,-0.421101,-2.89623,2.33186,-0.37296,-2.88176,2.35012,-0.415343,-2.87787,2.35503,-0.614555,-2.89582,2.33238,-0.580532,-2.89143,2.33792,-0.585815,-2.87716,2.35593,-0.421101,-2.89623,2.33186,-0.391862,-2.89772,2.32999,-0.37296,-2.88176,2.35012,-0.521112,-2.89574,2.33248,-0.496008,-2.89883,2.32858,-0.483043,-2.89112,2.33831,-0.614555,-2.89582,2.33238,-0.599971,-2.89985,2.32729,-0.580532,-2.89143,2.33792,-0.958076,-2.67939,2.60557,-0.945009,-2.67475,2.61142,-0.952228,-2.67071,2.61653,-0.958076,-2.67939,2.60557,-0.912437,-2.67657,2.60912,-0.945009,-2.67475,2.61142,-0.958076,-2.67939,2.60557,-0.869011,-2.67969,2.60518,-0.912437,-2.67657,2.60912,-0.958076,-2.67939,2.60557,-0.854588,-2.68944,2.59288,-0.869011,-2.67969,2.60518,-0.953127,-2.69884,2.58101,-0.895235,-2.69694,2.58341,-0.854588,-2.68944,2.59288,-0.953127,-2.69884,2.58101,-0.829013,-2.71513,2.56046,-0.878227,-2.70266,2.57619,-0.829013,-2.71513,2.56046,-0.895235,-2.69694,2.58341,-0.953127,-2.69884,2.58101,-0.941782,-2.70829,2.56909,-0.895235,-2.69694,2.58341,-0.854808,-2.72948,2.54234,-0.829013,-2.71513,2.56046,-0.878227,-2.70266,2.57619,-0.907302,-2.71424,2.56158,-0.880262,-2.72883,2.54317,-0.893164,-2.71159,2.56492,-0.932715,-2.7393,2.52995,-0.880262,-2.72883,2.54317,-0.907302,-2.71424,2.56158,-0.854808,-2.72948,2.54234,-0.819866,-2.73713,2.53269,-0.829013,-2.71513,2.56046,-0.932715,-2.7393,2.52995,-0.905652,-2.75687,2.50777,-0.880262,-2.72883,2.54317,-0.854808,-2.72948,2.54234,-0.812328,-2.75918,2.50485,-0.819866,-2.73713,2.53269,-0.833604,-2.77896,2.47989,-0.812328,-2.75918,2.50485,-0.854808,-2.72948,2.54234,-0.94972,-2.77516,2.48469,-0.905652,-2.75687,2.50777,-0.932715,-2.7393,2.52995,-0.833604,-2.77896,2.47989,-0.795785,-2.78287,2.47495,-0.812328,-2.75918,2.50485,-0.94972,-2.77516,2.48469,-0.916857,-2.77598,2.48365,-0.905652,-2.75687,2.50777,-0.94972,-2.77516,2.48469,-0.924797,-2.81879,2.42961,-0.916857,-2.77598,2.48365,-0.827581,-2.80405,2.44822,-0.795785,-2.78287,2.47495,-0.833604,-2.77896,2.47989,-0.962116,-2.80829,2.44286,-0.924797,-2.81879,2.42961,-0.94972,-2.77516,2.48469,-0.827581,-2.80405,2.44822,-0.790479,-2.79982,2.45355,-0.795785,-2.78287,2.47495,-0.827581,-2.80405,2.44822,-0.777797,-2.82032,2.42768,-0.790479,-2.79982,2.45355,-0.839837,-2.8139,2.43578,-0.777797,-2.82032,2.42768,-0.827581,-2.80405,2.44822,-0.924797,-2.81879,2.42961,-0.777797,-2.82032,2.42768,-0.839837,-2.8139,2.43578,-0.969822,-2.82762,2.41847,-0.924797,-2.81879,2.42961,-0.962116,-2.80829,2.44286,-0.969822,-2.82762,2.41847,-0.777797,-2.82032,2.42768,-0.924797,-2.81879,2.42961,-0.980336,-2.87764,2.35532,-0.924666,-2.83767,2.40579,-0.969822,-2.82762,2.41847,-0.924666,-2.83767,2.40579,-0.777797,-2.82032,2.42768,-0.969822,-2.82762,2.41847,-0.924666,-2.83767,2.40579,-0.835972,-2.8367,2.40701,-0.777797,-2.82032,2.42768,-0.807847,-2.83694,2.4067,-0.777797,-2.82032,2.42768,-0.835972,-2.8367,2.40701,-0.807847,-2.83694,2.4067,-0.76339,-2.84216,2.40011,-0.777797,-2.82032,2.42768,-0.980336,-2.87764,2.35532,-0.941687,-2.8543,2.38479,-0.924666,-2.83767,2.40579,-0.7898,-2.86609,2.3699,-0.76339,-2.84216,2.40011,-0.807847,-2.83694,2.4067,-0.7898,-2.86609,2.3699,-0.744862,-2.86501,2.37127,-0.76339,-2.84216,2.40011,-0.7898,-2.86609,2.3699,-0.732433,-2.87425,2.35961,-0.744862,-2.86501,2.37127,-0.980336,-2.87764,2.35532,-0.954156,-2.88872,2.34134,-0.941687,-2.8543,2.38479,-0.773407,-2.88273,2.3489,-0.732433,-2.87425,2.35961,-0.7898,-2.86609,2.3699,-0.985132,-2.89473,2.33376,-0.954156,-2.88872,2.34134,-0.980336,-2.87764,2.35532,-0.773407,-2.88273,2.3489,-0.735486,-2.88965,2.34016,-0.732433,-2.87425,2.35961,-0.75907,-2.8945,2.33405,-0.735486,-2.88965,2.34016,-0.773407,-2.88273,2.3489,-0.985132,-2.89473,2.33376,-0.967647,-2.91296,2.31075,-0.954156,-2.88872,2.34134,-1.06592,-2.90847,2.31641,-1.03806,-2.9056,2.32003,-1.05623,-2.90271,2.32368,-0.997564,-2.91205,2.3119,-0.967647,-2.91296,2.31075,-0.985132,-2.89473,2.33376,-1.06592,-2.90847,2.31641,-1.03486,-2.91273,2.31104,-1.03806,-2.9056,2.32003,-1.06592,-2.90847,2.31641,-1.02591,-2.91921,2.30286,-1.03486,-2.91273,2.31104,-0.997564,-2.91205,2.3119,-0.972621,-2.92106,2.30052,-0.967647,-2.91296,2.31075,-1.02591,-2.91921,2.30286,-0.972621,-2.92106,2.30052,-0.997564,-2.91205,2.3119,-1.05335,-2.93234,2.28628,-1.02591,-2.91921,2.30286,-1.06592,-2.90847,2.31641,-1.05335,-2.93234,2.28628,-0.972621,-2.92106,2.30052,-1.02591,-2.91921,2.30286,-1.05335,-2.93234,2.28628,-0.991436,-2.93512,2.28277,-0.972621,-2.92106,2.30052,-1.05335,-2.93234,2.28628,-1.02103,-2.93709,2.28029,-0.991436,-2.93512,2.28277,-1.04113,-2.93783,2.27935,-1.02103,-2.93709,2.28029,-1.05335,-2.93234,2.28628,-1.28111,-2.58624,2.72315,-1.19786,-2.58207,2.7284,-1.24651,-2.58241,2.72797,-1.28111,-2.58624,2.72315,-1.14882,-2.59265,2.71505,-1.19786,-2.58207,2.7284,-1.31602,-2.59493,2.71217,-1.31602,-2.59493,2.71217,-1.12091,-2.60556,2.69875,-1.14882,-2.59265,2.71505,-1.3731,-2.62013,2.68037,-1.2249,-2.60313,2.70182,-1.31602,-2.59493,2.71217,-1.2249,-2.60313,2.70182,-1.12091,-2.60556,2.69875,-1.31602,-2.59493,2.71217,-1.3731,-2.62013,2.68037,-1.29118,-2.61169,2.69102,-1.2249,-2.60313,2.70182,-1.17562,-2.61762,2.68354,-1.12091,-2.60556,2.69875,-1.2249,-2.60313,2.70182,-1.17562,-2.61762,2.68354,-1.10003,-2.63351,2.66347,-1.12091,-2.60556,2.69875,-1.37897,-2.632,2.66538,-1.29118,-2.61169,2.69102,-1.3731,-2.62013,2.68037,-1.37897,-2.632,2.66538,-1.3317,-2.63836,2.65736,-1.29118,-2.61169,2.69102,-1.16619,-2.64242,2.65223,-1.10003,-2.63351,2.66347,-1.17562,-2.61762,2.68354,-1.40082,-2.65178,2.64042,-1.3317,-2.63836,2.65736,-1.37897,-2.632,2.66538,-1.16619,-2.64242,2.65223,-1.11313,-2.65372,2.63797,-1.10003,-2.63351,2.66347,-1.40082,-2.65178,2.64042,-1.35853,-2.6773,2.60821,-1.3317,-2.63836,2.65736,-1.14095,-2.65776,2.63287,-1.11313,-2.65372,2.63797,-1.16619,-2.64242,2.65223,-1.42588,-2.69869,2.5812,-1.35853,-2.6773,2.60821,-1.40082,-2.65178,2.64042,-1.43033,-2.74803,2.51892,-1.35853,-2.6773,2.60821,-1.42588,-2.69869,2.5812,-1.43033,-2.74803,2.51892,-1.36428,-2.75799,2.50635,-1.35853,-2.6773,2.60821,-1.21823,-2.75312,2.5125,-1.12452,-2.75597,2.50891,-1.16366,-2.74764,2.51942,-1.26119,-2.7658,2.49649,-1.12452,-2.75597,2.50891,-1.21823,-2.75312,2.5125,-1.26119,-2.7658,2.49649,-1.09232,-2.77947,2.47923,-1.12452,-2.75597,2.50891,-1.42289,-2.7964,2.45787,-1.36428,-2.75799,2.50635,-1.43033,-2.74803,2.51892,-1.27685,-2.78612,2.47085,-1.09232,-2.77947,2.47923,-1.26119,-2.7658,2.49649,-1.42289,-2.7964,2.45787,-1.35548,-2.79372,2.46126,-1.36428,-2.75799,2.50635,-1.15122,-2.78952,2.46656,-1.09232,-2.77947,2.47923,-1.27685,-2.78612,2.47085,-1.15122,-2.78952,2.46656,-1.07823,-2.80784,2.44343,-1.09232,-2.77947,2.47923,-1.27685,-2.78612,2.47085,-1.18157,-2.79975,2.45364,-1.15122,-2.78952,2.46656,-1.13589,-2.79808,2.45574,-1.07823,-2.80784,2.44343,-1.15122,-2.78952,2.46656,-1.26529,-2.79903,2.45455,-1.18157,-2.79975,2.45364,-1.27685,-2.78612,2.47085,-1.22969,-2.8049,2.44713,-1.18157,-2.79975,2.45364,-1.26529,-2.79903,2.45455,-1.12892,-2.82688,2.41939,-1.07823,-2.80784,2.44343,-1.13589,-2.79808,2.45574,-1.3897,-2.84315,2.39886,-1.35548,-2.79372,2.46126,-1.42289,-2.7964,2.45787,-1.3897,-2.84315,2.39886,-1.34545,-2.8214,2.42631,-1.35548,-2.79372,2.46126,-1.12892,-2.82688,2.41939,-1.08467,-2.83396,2.41047,-1.07823,-2.80784,2.44343,-1.3897,-2.84315,2.39886,-1.30098,-2.85836,2.37966,-1.34545,-2.8214,2.42631,-1.12892,-2.82688,2.41939,-1.10435,-2.85966,2.37802,-1.08467,-2.83396,2.41047,-1.16944,-2.85622,2.38237,-1.10435,-2.85966,2.37802,-1.17927,-2.86244,2.37451,-1.10435,-2.85966,2.37802,-1.16944,-2.85622,2.38237,-1.3278,-2.88481,2.34628,-1.30098,-2.85836,2.37966,-1.3897,-2.84315,2.39886,-1.3278,-2.88481,2.34628,-1.23689,-2.8709,2.36384,-1.30098,-2.85836,2.37966,-1.23689,-2.8709,2.36384,-1.10435,-2.85966,2.37802,-1.17927,-2.86244,2.37451,-1.23689,-2.8709,2.36384,-1.1324,-2.87596,2.35745,-1.10435,-2.85966,2.37802,-1.3278,-2.88481,2.34628,-1.1324,-2.87596,2.35745,-1.23689,-2.8709,2.36384,-1.3278,-2.88481,2.34628,-1.17488,-2.89077,2.33875,-1.1324,-2.87596,2.35745,-1.29846,-2.89142,2.33793,-1.17488,-2.89077,2.33875,-1.3278,-2.88481,2.34628,-1.29846,-2.89142,2.33793,-1.19375,-2.8942,2.33443,-1.17488,-2.89077,2.33875,0.956474,-3.11445,0.288853,0.981133,-3.11116,0.29301,0.96697,-3.11039,0.293978,0.989994,-3.11891,0.283221,0.953363,-3.12108,0.280489,0.989994,-3.11891,0.283221,0.956474,-3.11445,0.288853,0.953363,-3.12108,0.280489,0.98728,-3.1258,0.274522,0.989994,-3.11891,0.283221,0.957368,-3.12693,0.273105,0.98728,-3.1258,0.274522,0.953363,-3.12108,0.280489,0.957368,-3.12693,0.273105,0.97899,-3.13011,0.269087,0.98728,-3.1258,0.274522,0.96697,-3.13047,0.26864,0.97899,-3.13011,0.269087,0.957368,-3.12693,0.273105,0.844613,-3.04579,0.375513,0.886222,-3.04709,0.373879,0.862877,-3.04432,0.377371,0.833497,-3.04965,0.370645,0.886222,-3.04709,0.373879,0.844613,-3.04579,0.375513,0.854333,-3.0504,0.3697,0.872658,-3.05034,0.369772,0.833497,-3.04965,0.370645,0.872658,-3.05034,0.369772,0.886222,-3.04709,0.373879,0.833497,-3.04965,0.370645,0.872658,-3.05034,0.369772,0.898495,-3.05374,0.365482,0.886222,-3.04709,0.373879,0.833497,-3.04965,0.370645,0.84399,-3.05305,0.366357,0.854333,-3.0504,0.3697,0.890755,-3.0581,0.359986,0.898495,-3.05374,0.365482,0.872658,-3.05034,0.369772,0.890755,-3.0581,0.359986,0.903684,-3.05873,0.359188,0.898495,-3.05374,0.365482,0.833497,-3.04965,0.370645,0.832419,-3.06259,0.354308,0.84399,-3.05305,0.366357,0.816704,-3.06066,0.356754,0.832419,-3.06259,0.354308,0.833497,-3.04965,0.370645,0.809884,-3.07034,0.344536,0.832419,-3.06259,0.354308,0.816704,-3.06066,0.356754,0.809884,-3.07034,0.344536,0.83339,-3.06807,0.347398,0.832419,-3.06259,0.354308,0.895223,-3.06835,0.34705,0.903684,-3.05873,0.359188,0.890755,-3.0581,0.359986,0.895223,-3.06835,0.34705,0.909131,-3.0709,0.343818,0.903684,-3.05873,0.359188,0.809884,-3.07034,0.344536,0.895223,-3.06835,0.34705,0.83339,-3.06807,0.347398,0.809884,-3.07034,0.344536,0.909131,-3.0709,0.343818,0.895223,-3.06835,0.34705,0.809884,-3.07034,0.344536,0.907225,-3.07504,0.338601,0.909131,-3.0709,0.343818,0.80695,-3.07566,0.337817,0.907225,-3.07504,0.338601,0.809884,-3.07034,0.344536,0.80695,-3.07566,0.337817,0.827266,-3.07608,0.337283,0.907225,-3.07504,0.338601,0.80695,-3.07566,0.337817,0.824723,-3.0786,0.334107,0.827266,-3.07608,0.337283,0.807172,-3.09156,0.317752,0.824723,-3.0786,0.334107,0.80695,-3.07566,0.337817,0.807172,-3.09156,0.317752,0.8245,-3.09032,0.319315,0.824723,-3.0786,0.334107,0.810412,-3.10149,0.305214,0.8245,-3.09032,0.319315,0.807172,-3.09156,0.317752,0.810412,-3.10149,0.305214,0.828761,-3.10621,0.29926,0.8245,-3.09032,0.319315,0.895099,-3.10653,0.298847,0.906728,-3.10801,0.296979,0.902096,-3.10579,0.299788,0.822293,-3.11655,0.286206,0.828761,-3.10621,0.29926,0.810412,-3.10149,0.305214,0.895099,-3.10653,0.298847,0.906888,-3.11365,0.289863,0.906728,-3.10801,0.296979,0.822293,-3.11655,0.286206,0.837331,-3.11697,0.285672,0.828761,-3.10621,0.29926,0.884598,-3.11786,0.28455,0.906888,-3.11365,0.289863,0.895099,-3.10653,0.298847,0.884598,-3.11786,0.28455,0.899944,-3.12136,0.280138,0.906888,-3.11365,0.289863,0.822293,-3.11655,0.286206,0.844004,-3.12045,0.281286,0.837331,-3.11697,0.285672,0.878129,-3.12055,0.281152,0.899944,-3.12136,0.280138,0.884598,-3.11786,0.28455,0.822293,-3.11655,0.286206,0.861076,-3.12363,0.277262,0.844004,-3.12045,0.281286,0.861076,-3.12363,0.277262,0.899944,-3.12136,0.280138,0.878129,-3.12055,0.281152,0.844146,-3.12789,0.271889,0.861076,-3.12363,0.277262,0.822293,-3.11655,0.286206,0.844146,-3.12789,0.271889,0.899944,-3.12136,0.280138,0.861076,-3.12363,0.277262,0.844146,-3.12789,0.271889,0.882899,-3.12812,0.271596,0.899944,-3.12136,0.280138,0.864814,-3.12902,0.270465,0.882899,-3.12812,0.271596,0.844146,-3.12789,0.271889,0.693326,-3.04532,0.376119,0.733275,-3.04482,0.37675,0.708461,-3.04387,0.377949,0.693326,-3.04532,0.376119,0.751264,-3.04772,0.373079,0.733275,-3.04482,0.37675,0.680523,-3.04864,0.371923,0.751264,-3.04772,0.373079,0.693326,-3.04532,0.376119,0.680523,-3.04864,0.371923,0.708657,-3.05116,0.36874,0.751264,-3.04772,0.373079,0.708657,-3.05116,0.36874,0.733267,-3.05126,0.368616,0.751264,-3.04772,0.373079,0.667961,-3.05504,0.363842,0.708657,-3.05116,0.36874,0.680523,-3.04864,0.371923,0.708657,-3.05116,0.36874,0.726755,-3.05145,0.36838,0.733267,-3.05126,0.368616,0.733267,-3.05126,0.368616,0.766682,-3.05641,0.362113,0.751264,-3.04772,0.373079,0.667961,-3.05504,0.363842,0.687507,-3.05412,0.365002,0.708657,-3.05116,0.36874,0.747347,-3.05406,0.36508,0.766682,-3.05641,0.362113,0.733267,-3.05126,0.368616,0.708657,-3.05116,0.36874,0.724539,-3.05352,0.36576,0.726755,-3.05145,0.36838,0.712913,-3.12858,0.271024,0.724539,-3.05352,0.36576,0.708657,-3.05116,0.36874,0.75881,-3.06113,0.356161,0.766682,-3.05641,0.362113,0.747347,-3.05406,0.36508,0.712913,-3.12858,0.271024,0.727522,-3.12681,0.273259,0.724539,-3.05352,0.36576,0.667961,-3.05504,0.363842,0.675474,-3.06226,0.354733,0.687507,-3.05412,0.365002,0.75881,-3.06113,0.356161,0.770015,-3.05934,0.358417,0.766682,-3.05641,0.362113,0.75881,-3.06113,0.356161,0.775626,-3.0673,0.348366,0.770015,-3.05934,0.358417,0.659618,-3.06708,0.348645,0.675474,-3.06226,0.354733,0.667961,-3.05504,0.363842,0.764072,-3.07106,0.343622,0.775626,-3.0673,0.348366,0.75881,-3.06113,0.356161,0.657168,-3.07096,0.343747,0.675474,-3.06226,0.354733,0.659618,-3.06708,0.348645,0.779563,-3.07656,0.336681,0.657168,-3.07096,0.343747,0.668562,-3.07826,0.334534,0.675474,-3.06226,0.354733,0.766588,-3.08078,0.331354,0.779563,-3.07656,0.336681,0.764072,-3.07106,0.343622,0.655296,-3.08449,0.32667,0.668562,-3.07826,0.334534,0.657168,-3.07096,0.343747,0.766588,-3.08078,0.331354,0.780848,-3.08696,0.323556,0.779563,-3.07656,0.336681,0.655296,-3.08449,0.32667,0.668747,-3.09882,0.308584,0.668562,-3.07826,0.334534,0.768159,-3.09892,0.30846,0.658174,-3.10099,0.305849,0.668747,-3.09882,0.308584,0.655296,-3.08449,0.32667,0.768159,-3.09892,0.30846,0.780116,-3.10138,0.305348,0.780848,-3.08696,0.323556,0.76273,-3.11395,0.289492,0.658174,-3.10099,0.305849,0.675671,-3.11181,0.292192,0.668747,-3.09882,0.308584,0.76273,-3.11395,0.289492,0.777401,-3.11076,0.293505,0.780116,-3.10138,0.305348,0.666179,-3.11837,0.283903,0.675671,-3.11181,0.292192,0.658174,-3.10099,0.305849,0.76273,-3.11395,0.289492,0.773549,-3.11625,0.286585,0.777401,-3.11076,0.293505,0.666179,-3.11837,0.283903,0.679507,-3.11704,0.285579,0.675671,-3.11181,0.292192,0.76273,-3.11395,0.289492,0.773158,-3.11902,0.28308,0.773549,-3.11625,0.286585,0.666179,-3.11837,0.283903,0.688082,-3.12145,0.28002,0.679507,-3.11704,0.285579,0.753502,-3.12172,0.279676,0.773158,-3.11902,0.28308,0.76273,-3.11395,0.289492,0.677053,-3.12861,0.270981,0.688082,-3.12145,0.28002,0.666179,-3.11837,0.283903,0.751201,-3.12851,0.271104,0.773158,-3.11902,0.28308,0.753502,-3.12172,0.279676,0.677053,-3.12861,0.270981,0.69011,-3.12692,0.27311,0.688082,-3.12145,0.28002,0.751201,-3.12851,0.271104,0.762607,-3.12944,0.269935,0.773158,-3.11902,0.28308,0.712913,-3.12858,0.271024,0.722546,-3.12977,0.269524,0.727522,-3.12681,0.273259,0.677053,-3.12861,0.270981,0.68265,-3.13016,0.269031,0.69011,-3.12692,0.27311,0.544851,-3.04683,0.374213,0.550253,-3.04378,0.378059,0.547469,-3.04222,0.380027,0.544851,-3.04683,0.374213,0.56274,-3.04447,0.377184,0.550253,-3.04378,0.378059,0.544851,-3.04683,0.374213,0.57906,-3.04581,0.375493,0.56274,-3.04447,0.377184,0.544851,-3.04683,0.374213,0.58917,-3.05227,0.367342,0.57906,-3.04581,0.375493,0.55082,-3.05679,0.361639,0.569341,-3.05229,0.367317,0.544851,-3.04683,0.374213,0.569341,-3.05229,0.367317,0.58917,-3.05227,0.367342,0.544851,-3.04683,0.374213,0.575867,-3.05448,0.364546,0.58917,-3.05227,0.367342,0.569341,-3.05229,0.367317,0.575867,-3.05448,0.364546,0.594932,-3.05988,0.357734,0.58917,-3.05227,0.367342,0.584854,-3.06477,0.351556,0.594932,-3.05988,0.357734,0.575867,-3.05448,0.364546,0.555083,-3.06858,0.346756,0.569691,-3.05758,0.360641,0.563848,-3.05974,0.357909,0.555083,-3.06858,0.346756,0.575086,-3.06452,0.351877,0.569691,-3.05758,0.360641,0.584854,-3.06477,0.351556,0.597772,-3.067,0.348752,0.594932,-3.05988,0.357734,0.584854,-3.06477,0.351556,0.60109,-3.07581,0.337622,0.597772,-3.067,0.348752,0.593601,-3.0855,0.3254,0.60109,-3.07581,0.337622,0.584854,-3.06477,0.351556,0.555083,-3.06858,0.346756,0.565279,-3.07544,0.33809,0.575086,-3.06452,0.351877,0.548536,-3.08192,0.329912,0.565279,-3.07544,0.33809,0.555083,-3.06858,0.346756,0.606203,-3.08317,0.328341,0.548536,-3.08192,0.329912,0.561035,-3.08264,0.329003,0.565279,-3.07544,0.33809,0.548536,-3.08192,0.329912,0.557996,-3.09905,0.308297,0.561035,-3.08264,0.329003,0.593601,-3.0855,0.3254,0.608929,-3.09073,0.318789,0.606203,-3.08317,0.328341,0.543674,-3.09502,0.313381,0.557996,-3.09905,0.308297,0.548536,-3.08192,0.329912,0.594656,-3.09458,0.31393,0.608929,-3.09073,0.318789,0.593601,-3.0855,0.3254,0.594656,-3.09458,0.31393,0.614408,-3.09963,0.307555,0.608929,-3.09073,0.318789,0.589908,-3.09723,0.310583,0.614408,-3.09963,0.307555,0.594656,-3.09458,0.31393,0.557996,-3.09905,0.308297,0.614408,-3.09963,0.307555,0.589908,-3.09723,0.310583,0.540717,-3.10244,0.304021,0.557996,-3.09905,0.308297,0.543674,-3.09502,0.313381,0.540717,-3.10244,0.304021,0.614408,-3.09963,0.307555,0.557996,-3.09905,0.308297,0.536682,-3.12163,0.279788,0.558046,-3.10629,0.299153,0.540717,-3.10244,0.304021,0.558046,-3.10629,0.299153,0.614408,-3.09963,0.307555,0.540717,-3.10244,0.304021,0.558046,-3.10629,0.299153,0.592083,-3.10592,0.299622,0.602739,-3.10597,0.299555,0.614408,-3.09963,0.307555,0.592083,-3.10592,0.299622,0.602739,-3.10597,0.299555,0.619941,-3.10804,0.296941,0.614408,-3.09963,0.307555,0.536682,-3.12163,0.279788,0.551545,-3.11268,0.291089,0.558046,-3.10629,0.299153,0.609075,-3.11639,0.286409,0.619941,-3.10804,0.296941,0.602739,-3.10597,0.299555,0.609075,-3.11639,0.286409,0.627168,-3.11687,0.285797,0.619941,-3.10804,0.296941,0.609075,-3.11639,0.286409,0.631817,-3.12033,0.281431,0.627168,-3.11687,0.285797,0.536682,-3.12163,0.279788,0.546629,-3.12597,0.274315,0.551545,-3.11268,0.291089,0.616132,-3.12365,0.277243,0.631817,-3.12033,0.281431,0.609075,-3.11639,0.286409,0.534842,-3.12819,0.271512,0.546629,-3.12597,0.274315,0.536682,-3.12163,0.279788,0.616132,-3.12365,0.277243,0.630645,-3.12624,0.27397,0.631817,-3.12033,0.281431,0.621595,-3.1281,0.271625,0.630645,-3.12624,0.27397,0.616132,-3.12365,0.277243,0.534842,-3.12819,0.271512,0.542281,-3.13361,0.264666,0.546629,-3.12597,0.274315,0.503829,-3.13346,0.264857,0.514531,-3.13236,0.266243,0.507556,-3.13125,0.267645,0.530071,-3.13484,0.263123,0.542281,-3.13361,0.264666,0.534842,-3.12819,0.271512,0.503829,-3.13346,0.264857,0.515757,-3.1351,0.262793,0.514531,-3.13236,0.266243,0.530071,-3.13484,0.263123,0.539602,-3.13805,0.259066,0.542281,-3.13361,0.264666,0.503829,-3.13346,0.264857,0.519194,-3.13758,0.259655,0.515757,-3.1351,0.262793,0.508592,-3.14264,0.25327,0.519194,-3.13758,0.259655,0.503829,-3.13346,0.264857,0.519194,-3.13758,0.259655,0.539602,-3.13805,0.259066,0.508592,-3.14264,0.25327,0.539602,-3.13805,0.259066,0.519194,-3.13758,0.259655,0.508592,-3.14264,0.25327,0.532423,-3.14369,0.251946,0.539602,-3.13805,0.259066,0.508592,-3.14264,0.25327,0.521054,-3.14446,0.250976,0.532423,-3.14369,0.251946,0.508592,-3.14264,0.25327,0.51406,-3.14493,0.25038,0.521054,-3.14446,0.250976,0.444626,-3.04681,0.374226,0.474398,-3.04412,0.377632,0.458375,-3.04452,0.377118,0.444626,-3.04681,0.374226,0.493178,-3.04848,0.372124,0.474398,-3.04412,0.377632,0.435065,-3.05016,0.370008,0.493178,-3.04848,0.372124,0.444626,-3.04681,0.374226,0.466848,-3.05051,0.36956,0.493178,-3.04848,0.372124,0.435065,-3.05016,0.370008,0.435065,-3.05016,0.370008,0.449768,-3.05275,0.366737,0.466848,-3.05051,0.36956,0.479491,-3.05417,0.364941,0.493178,-3.04848,0.372124,0.466848,-3.05051,0.36956,0.424797,-3.05729,0.361003,0.449768,-3.05275,0.366737,0.435065,-3.05016,0.370008,0.479491,-3.05417,0.364941,0.500867,-3.05767,0.360531,0.493178,-3.04848,0.372124,0.424797,-3.05729,0.361003,0.438206,-3.06083,0.35654,0.449768,-3.05275,0.366737,0.482094,-3.0607,0.356697,0.500867,-3.05767,0.360531,0.479491,-3.05417,0.364941,0.482094,-3.0607,0.356697,0.498169,-3.06334,0.353365,0.500867,-3.05767,0.360531,0.489185,-3.06506,0.35119,0.498169,-3.06334,0.353365,0.482094,-3.0607,0.356697,0.41258,-3.07657,0.336675,0.438206,-3.06083,0.35654,0.424797,-3.05729,0.361003,0.41258,-3.07657,0.336675,0.43234,-3.07013,0.344795,0.438206,-3.06083,0.35654,0.41258,-3.07657,0.336675,0.431119,-3.09549,0.312787,0.43234,-3.07013,0.344795,0.41322,-3.09984,0.307298,0.431119,-3.09549,0.312787,0.41258,-3.07657,0.336675,0.460026,-3.09133,0.318033,0.494144,-3.09017,0.319501,0.483872,-3.08804,0.322189,0.460026,-3.09133,0.318033,0.502935,-3.09667,0.311293,0.494144,-3.09017,0.319501,0.452686,-3.09883,0.308574,0.502935,-3.09667,0.311293,0.460026,-3.09133,0.318033,0.452686,-3.09883,0.308574,0.486889,-3.09982,0.307324,0.502935,-3.09667,0.311293,0.486889,-3.09982,0.307324,0.506826,-3.10789,0.297133,0.502935,-3.09667,0.311293,0.456357,-3.10241,0.30405,0.486889,-3.09982,0.307324,0.452686,-3.09883,0.308574,0.493224,-3.10699,0.298272,0.506826,-3.10789,0.297133,0.486889,-3.09982,0.307324,0.456357,-3.10241,0.30405,0.470151,-3.10425,0.301731,0.486889,-3.09982,0.307324,0.41322,-3.09984,0.307298,0.436197,-3.10812,0.296842,0.431119,-3.09549,0.312787,0.422275,-3.11303,0.290645,0.436197,-3.10812,0.296842,0.41322,-3.09984,0.307298,0.422275,-3.11303,0.290645,0.449623,-3.11821,0.284107,0.436197,-3.10812,0.296842,0.481498,-3.11685,0.285827,0.506826,-3.10789,0.297133,0.493224,-3.10699,0.298272,0.440809,-3.12578,0.274558,0.449623,-3.11821,0.284107,0.422275,-3.11303,0.290645,0.481498,-3.11685,0.285827,0.494704,-3.12191,0.27944,0.506826,-3.10789,0.297133,0.472322,-3.12018,0.281626,0.440809,-3.12578,0.274558,0.472322,-3.12018,0.281626,0.449623,-3.11821,0.284107,0.440809,-3.12578,0.274558,0.494704,-3.12191,0.27944,0.472322,-3.12018,0.281626,0.440809,-3.12578,0.274558,0.480974,-3.12651,0.273629,0.494704,-3.12191,0.27944,0.440809,-3.12578,0.274558,0.475758,-3.12747,0.272427,0.480974,-3.12651,0.273629,0.458692,-3.12749,0.272398,0.475758,-3.12747,0.272427,0.440809,-3.12578,0.274558,0.215577,-3.04592,0.375354,0.225126,-3.04958,0.370736,0.220942,-3.04542,0.37599,0.208385,-3.05174,0.368013,0.225126,-3.04958,0.370736,0.215577,-3.04592,0.375354,0.277425,-3.05265,0.366856,0.285123,-3.04548,0.375918,0.278106,-3.04703,0.37395,0.208385,-3.05174,0.368013,0.217724,-3.05761,0.360605,0.225126,-3.04958,0.370736,0.277425,-3.05265,0.366856,0.29497,-3.0543,0.364781,0.285123,-3.04548,0.375918,0.284129,-3.05656,0.361929,0.29497,-3.0543,0.364781,0.277425,-3.05265,0.366856,0.202526,-3.06289,0.353931,0.217724,-3.05761,0.360605,0.208385,-3.05174,0.368013,0.284129,-3.05656,0.361929,0.30328,-3.07103,0.343656,0.29497,-3.0543,0.364781,0.202526,-3.06289,0.353931,0.210574,-3.0697,0.34534,0.217724,-3.05761,0.360605,0.249204,-3.06392,0.352641,0.258858,-3.06744,0.348194,0.255751,-3.06402,0.352508,0.244935,-3.0672,0.348494,0.258858,-3.06744,0.348194,0.249204,-3.06392,0.352641,0.294708,-3.07492,0.338755,0.30328,-3.07103,0.343656,0.284129,-3.05656,0.361929,0.200158,-3.07151,0.343053,0.210574,-3.0697,0.34534,0.202526,-3.06289,0.353931,0.244935,-3.0672,0.348494,0.257219,-3.07197,0.34247,0.258858,-3.06744,0.348194,0.247599,-3.07988,0.332486,0.257219,-3.07197,0.34247,0.244935,-3.0672,0.348494,0.247599,-3.07988,0.332486,0.257184,-3.09996,0.307144,0.257219,-3.07197,0.34247,0.199592,-3.09013,0.319555,0.210574,-3.0697,0.34534,0.200158,-3.07151,0.343053,0.199592,-3.09013,0.319555,0.212,-3.09692,0.310984,0.210574,-3.0697,0.34534,0.294708,-3.07492,0.338755,0.306731,-3.09149,0.317833,0.30328,-3.07103,0.343656,0.294955,-3.09836,0.309158,0.306731,-3.09149,0.317833,0.294708,-3.07492,0.338755,0.294955,-3.09836,0.309158,0.304074,-3.10313,0.303141,0.306731,-3.09149,0.317833,0.203355,-3.10617,0.299309,0.212,-3.09692,0.310984,0.199592,-3.09013,0.319555,0.290186,-3.10936,0.295277,0.304074,-3.10313,0.303141,0.294955,-3.09836,0.309158,0.290186,-3.10936,0.295277,0.297211,-3.11574,0.287225,0.304074,-3.10313,0.303141,0.203355,-3.10617,0.299309,0.218508,-3.11238,0.291471,0.212,-3.09692,0.310984,0.207661,-3.11368,0.289826,0.218508,-3.11238,0.291471,0.203355,-3.10617,0.299309,0.2461,-3.12154,0.279902,0.257184,-3.09996,0.307144,0.247599,-3.07988,0.332486,0.2461,-3.12154,0.279902,0.258394,-3.11923,0.282825,0.257184,-3.09996,0.307144,0.281604,-3.1178,0.284621,0.297211,-3.11574,0.287225,0.290186,-3.10936,0.295277,0.207661,-3.11368,0.289826,0.22637,-3.1187,0.283496,0.218508,-3.11238,0.291471,0.221027,-3.1237,0.277176,0.22637,-3.1187,0.283496,0.207661,-3.11368,0.289826,0.271907,-3.12133,0.280176,0.297211,-3.11574,0.287225,0.281604,-3.1178,0.284621,0.271907,-3.12133,0.280176,0.287745,-3.12299,0.278072,0.297211,-3.11574,0.287225,0.221027,-3.1237,0.277176,0.23842,-3.12164,0.279777,0.22637,-3.1187,0.283496,0.2461,-3.12154,0.279902,0.261976,-3.12171,0.279693,0.258394,-3.11923,0.282825,0.261976,-3.12171,0.279693,0.287745,-3.12299,0.278072,0.271907,-3.12133,0.280176,0.2461,-3.12154,0.279902,0.287745,-3.12299,0.278072,0.261976,-3.12171,0.279693,0.221027,-3.1237,0.277176,0.2461,-3.12154,0.279902,0.23842,-3.12164,0.279777,0.221027,-3.1237,0.277176,0.287745,-3.12299,0.278072,0.2461,-3.12154,0.279902,0.221027,-3.1237,0.277176,0.266282,-3.12837,0.271283,0.287745,-3.12299,0.278072,0.234807,-3.12782,0.271976,0.266282,-3.12837,0.271283,0.221027,-3.1237,0.277176,0.109237,-3.04573,0.375601,0.150318,-3.04709,0.373879,0.126974,-3.04432,0.377371,0.098173,-3.0494,0.370964,0.150318,-3.04709,0.373879,0.109237,-3.04573,0.375601,0.118431,-3.0504,0.3697,0.136755,-3.05034,0.369772,0.098173,-3.0494,0.370964,0.136755,-3.05034,0.369772,0.150318,-3.04709,0.373879,0.098173,-3.0494,0.370964,0.136755,-3.05034,0.369772,0.163657,-3.05441,0.364633,0.150318,-3.04709,0.373879,0.098173,-3.0494,0.370964,0.107006,-3.05345,0.365856,0.118431,-3.0504,0.3697,0.083727,-3.05838,0.359633,0.107006,-3.05345,0.365856,0.098173,-3.0494,0.370964,0.154852,-3.0581,0.359986,0.163657,-3.05441,0.364633,0.136755,-3.05034,0.369772,0.083727,-3.05838,0.359633,0.096338,-3.06305,0.35373,0.107006,-3.05345,0.365856,0.154852,-3.0581,0.359986,0.173127,-3.06943,0.345684,0.163657,-3.05441,0.364633,0.074469,-3.06923,0.345934,0.096338,-3.06305,0.35373,0.083727,-3.05838,0.359633,0.074469,-3.06923,0.345934,0.097486,-3.06807,0.347398,0.096338,-3.06305,0.35373,0.159319,-3.06835,0.34705,0.173127,-3.06943,0.345684,0.154852,-3.0581,0.359986,0.074469,-3.06923,0.345934,0.159319,-3.06835,0.34705,0.097486,-3.06807,0.347398,0.074469,-3.06923,0.345934,0.173127,-3.06943,0.345684,0.159319,-3.06835,0.34705,0.074469,-3.06923,0.345934,0.172083,-3.07488,0.338797,0.173127,-3.06943,0.345684,0.071256,-3.07538,0.338176,0.172083,-3.07488,0.338797,0.074469,-3.06923,0.345934,0.071256,-3.07538,0.338176,0.091362,-3.07608,0.337283,0.172083,-3.07488,0.338797,0.070586,-3.08156,0.330367,0.091362,-3.07608,0.337283,0.071256,-3.07538,0.338176,0.070586,-3.08156,0.330367,0.088819,-3.0786,0.334107,0.091362,-3.07608,0.337283,0.070586,-3.08156,0.330367,0.088597,-3.09032,0.319315,0.088819,-3.0786,0.334107,0.07284,-3.09701,0.310868,0.088597,-3.09032,0.319315,0.070586,-3.08156,0.330367,0.07284,-3.09701,0.310868,0.092857,-3.10621,0.299261,0.088597,-3.09032,0.319315,0.076661,-3.10531,0.300394,0.092857,-3.10621,0.299261,0.07284,-3.09701,0.310868,0.158564,-3.10717,0.298042,0.170911,-3.10822,0.296717,0.165916,-3.10567,0.299932,0.086848,-3.11698,0.28566,0.092857,-3.10621,0.299261,0.076661,-3.10531,0.300394,0.158564,-3.10717,0.298042,0.170215,-3.11537,0.287697,0.170911,-3.10822,0.296717,0.086848,-3.11698,0.28566,0.101427,-3.11697,0.285672,0.092857,-3.10621,0.299261,0.148694,-3.11786,0.28455,0.170215,-3.11537,0.287697,0.158564,-3.10717,0.298042,0.086848,-3.11698,0.28566,0.1081,-3.12045,0.281286,0.101427,-3.11697,0.285672,0.142225,-3.12055,0.281152,0.170215,-3.11537,0.287697,0.148694,-3.11786,0.28455,0.142225,-3.12055,0.281152,0.157373,-3.12492,0.275632,0.170215,-3.11537,0.287697,0.086848,-3.11698,0.28566,0.125173,-3.12363,0.277262,0.1081,-3.12045,0.281286,0.125173,-3.12363,0.277262,0.157373,-3.12492,0.275632,0.142225,-3.12055,0.281152,0.109414,-3.12816,0.27155,0.125173,-3.12363,0.277262,0.086848,-3.11698,0.28566,0.109414,-3.12816,0.27155,0.157373,-3.12492,0.275632,0.125173,-3.12363,0.277262,0.109414,-3.12816,0.27155,0.141185,-3.12888,0.270644,0.157373,-3.12492,0.275632,-0.024475,-3.04641,0.374735,-0.006981,-3.04592,0.375352,-0.01297,-3.04436,0.377328,0.032916,-3.04761,0.373223,0.045357,-3.04528,0.376165,0.036065,-3.04491,0.376633,0.032916,-3.04761,0.373223,0.048056,-3.04807,0.372642,0.045357,-3.04528,0.376165,0.034279,-3.05254,0.366999,0.048056,-3.04807,0.372642,0.032916,-3.04761,0.373223,0.034279,-3.05254,0.366999,0.045086,-3.05633,0.362218,0.048056,-3.04807,0.372642,-0.024475,-3.04641,0.374735,-0.007144,-3.05613,0.362465,-0.006981,-3.04592,0.375352,-0.023939,-3.11405,0.289362,-0.012599,-3.06932,0.345824,-0.024475,-3.04641,0.374735,-0.012599,-3.06932,0.345824,-0.007144,-3.05613,0.362465,-0.024475,-3.04641,0.374735,-0.012599,-3.06932,0.345824,0.002507,-3.06617,0.349792,-0.007144,-3.05613,0.362465,0.036028,-3.08041,0.331816,0.045086,-3.05633,0.362218,0.034279,-3.05254,0.366999,0.036028,-3.08041,0.331816,0.044393,-3.0926,0.316431,0.045086,-3.05633,0.362218,-0.012599,-3.06932,0.345824,0.013518,-3.07551,0.33801,0.002507,-3.06617,0.349792,0.008613,-3.08692,0.323602,0.008613,-3.08692,0.323602,0.027079,-3.08686,0.323684,0.013518,-3.07551,0.33801,0.017126,-3.09397,0.3147,0.027079,-3.08686,0.323684,0.008613,-3.08692,0.323602,0.033643,-3.09268,0.316329,0.044393,-3.0926,0.316431,0.036028,-3.08041,0.331816,0.017126,-3.09397,0.3147,0.033643,-3.09268,0.316329,0.027079,-3.08686,0.323684,0.017126,-3.09397,0.3147,0.044393,-3.0926,0.316431,0.033643,-3.09268,0.316329,-0.023939,-3.11405,0.289362,-0.016374,-3.11716,0.28543,-0.012599,-3.06932,0.345824,0.026716,-3.10175,0.304885,0.044393,-3.0926,0.316431,0.017126,-3.09397,0.3147,0.026716,-3.10175,0.304885,0.045082,-3.11794,0.284447,0.044393,-3.0926,0.316431,0.034125,-3.11166,0.292371,0.045082,-3.11794,0.284447,0.026716,-3.10175,0.304885,-0.026396,-3.12179,0.279595,-0.016374,-3.11716,0.28543,-0.023939,-3.11405,0.289362,0.032233,-3.12317,0.277842,0.045082,-3.11794,0.284447,0.034125,-3.11166,0.292371,-0.026396,-3.12179,0.279595,-0.020705,-3.1266,0.273525,-0.016374,-3.11716,0.28543,0.032233,-3.12317,0.277842,0.045748,-3.12679,0.273282,0.045082,-3.11794,0.284447,0.035236,-3.127,0.273014,0.045748,-3.12679,0.273282,0.032233,-3.12317,0.277842,-0.037396,-3.13366,0.264609,-0.020705,-3.1266,0.273525,-0.026396,-3.12179,0.279595,-0.037396,-3.13366,0.264609,-0.028161,-3.13671,0.260762,-0.020705,-3.1266,0.273525,-0.045241,-3.13536,0.262462,-0.028161,-3.13671,0.260762,-0.037396,-3.13366,0.264609,-0.051893,-3.13795,0.259191,-0.028161,-3.13671,0.260762,-0.045241,-3.13536,0.262462,-0.052382,-3.14239,0.253589,-0.028161,-3.13671,0.260762,-0.051893,-3.13795,0.259191,-0.052382,-3.14239,0.253589,-0.045868,-3.14585,0.249222,-0.028161,-3.13671,0.260762,-0.222466,-3.04493,0.376601,-0.140632,-3.04798,0.372757,-0.144232,-3.04436,0.377323,-0.225286,-3.05082,0.369174,-0.140632,-3.04798,0.372757,-0.222466,-3.04493,0.376601,-0.225286,-3.05082,0.369174,-0.142237,-3.0523,0.367304,-0.140632,-3.04798,0.372757,-0.207938,-3.05252,0.367021,-0.142237,-3.0523,0.367304,-0.225286,-3.05082,0.369174,-0.221394,-3.05341,0.365907,-0.207938,-3.05252,0.367021,-0.225286,-3.05082,0.369174,-0.170311,-3.05262,0.366901,-0.142237,-3.0523,0.367304,-0.207938,-3.05252,0.367021,-0.15903,-3.05302,0.366398,-0.142237,-3.0523,0.367304,-0.170311,-3.05262,0.366901,-0.148382,-3.05612,0.36248,-0.142237,-3.0523,0.367304,-0.15903,-3.05302,0.366398,-0.207938,-3.05252,0.367021,-0.182959,-3.05638,0.362147,-0.170311,-3.05262,0.366901,-0.205544,-3.05557,0.36318,-0.182959,-3.05638,0.362147,-0.207938,-3.05252,0.367021,-0.209765,-3.06171,0.355427,-0.182959,-3.05638,0.362147,-0.205544,-3.05557,0.36318,-0.209765,-3.06171,0.355427,-0.191722,-3.06098,0.356347,-0.182959,-3.05638,0.362147,-0.209765,-3.06171,0.355427,-0.199653,-3.06788,0.347639,-0.191722,-3.06098,0.356347,-0.215208,-3.06947,0.345626,-0.199653,-3.06788,0.347639,-0.209765,-3.06171,0.355427,-0.215208,-3.06947,0.345626,-0.204271,-3.07667,0.336536,-0.199653,-3.06788,0.347639,-0.21934,-3.08222,0.329542,-0.204271,-3.07667,0.336536,-0.215208,-3.06947,0.345626,-0.21934,-3.08222,0.329542,-0.20449,-3.09832,0.30922,-0.204271,-3.07667,0.336536,-0.217286,-3.1033,0.302933,-0.20449,-3.09832,0.30922,-0.21934,-3.08222,0.329542,-0.217286,-3.1033,0.302933,-0.201677,-3.1049,0.300911,-0.20449,-3.09832,0.30922,-0.138964,-3.0951,0.313273,-0.138965,-3.11089,0.29335,-0.134293,-3.09529,0.313041,-0.153093,-3.10884,0.295939,-0.138965,-3.11089,0.29335,-0.138964,-3.0951,0.313273,-0.211599,-3.11389,0.289561,-0.201677,-3.1049,0.300911,-0.217286,-3.1033,0.302933,-0.211599,-3.11389,0.289561,-0.193904,-3.11378,0.289702,-0.201677,-3.1049,0.300911,-0.163771,-3.11444,0.288866,-0.138965,-3.11089,0.29335,-0.153093,-3.10884,0.295939,-0.163771,-3.11444,0.288866,-0.150389,-3.11964,0.2823,-0.138965,-3.11089,0.29335,-0.211599,-3.11389,0.289561,-0.188407,-3.11697,0.285679,-0.193904,-3.11378,0.289702,-0.17388,-3.11775,0.284692,-0.150389,-3.11964,0.2823,-0.163771,-3.11444,0.288866,-0.204286,-3.12073,0.280928,-0.188407,-3.11697,0.285679,-0.211599,-3.11389,0.289561,-0.204286,-3.12073,0.280928,-0.17388,-3.11775,0.284692,-0.188407,-3.11697,0.285679,-0.150389,-3.11964,0.2823,-0.17388,-3.11775,0.284692,-0.204286,-3.12073,0.280928,-0.165189,-3.12685,0.273204,-0.150389,-3.11964,0.2823,-0.193269,-3.12607,0.274191,-0.165189,-3.12685,0.273204,-0.204286,-3.12073,0.280928,-0.193269,-3.12607,0.274191,-0.177545,-3.12835,0.271311,-0.165189,-3.12685,0.273204,-0.316325,-3.04476,0.376814,-0.266323,-3.04631,0.374862,-0.286629,-3.04244,0.379743,-0.336029,-3.04684,0.374193,-0.316325,-3.04476,0.376814,-0.330859,-3.04221,0.380036,-0.336029,-3.04684,0.374193,-0.266323,-3.04631,0.374862,-0.316325,-3.04476,0.376814,-0.298273,-3.04983,0.370416,-0.284071,-3.04973,0.370544,-0.336029,-3.04684,0.374193,-0.284071,-3.04973,0.370544,-0.266323,-3.04631,0.374862,-0.336029,-3.04684,0.374193,-0.284071,-3.04973,0.370544,-0.25557,-3.05407,0.365069,-0.266323,-3.04631,0.374862,-0.336029,-3.04684,0.374193,-0.307555,-3.05367,0.365569,-0.298273,-3.04983,0.370416,-0.274551,-3.05398,0.36518,-0.25557,-3.05407,0.365069,-0.284071,-3.04973,0.370544,-0.325189,-3.05657,0.361913,-0.307555,-3.05367,0.365569,-0.336029,-3.04684,0.374193,-0.268,-3.06083,0.356536,-0.25557,-3.05407,0.365069,-0.274551,-3.05398,0.36518,-0.268,-3.06083,0.356536,-0.252235,-3.0671,0.348628,-0.25557,-3.05407,0.365069,-0.325189,-3.05657,0.361913,-0.312749,-3.08775,0.322558,-0.307555,-3.05367,0.365569,-0.267233,-3.07086,0.343869,-0.252235,-3.0671,0.348628,-0.268,-3.06083,0.356536,-0.267233,-3.07086,0.343869,-0.258545,-3.08148,0.330465,-0.252235,-3.0671,0.348628,-0.275085,-3.08229,0.329445,-0.258545,-3.08148,0.330465,-0.267233,-3.07086,0.343869,-0.286898,-3.08839,0.321751,-0.258545,-3.08148,0.330465,-0.275085,-3.08229,0.329445,-0.32454,-3.11765,0.28481,-0.312749,-3.08775,0.322558,-0.325189,-3.05657,0.361913,-0.286898,-3.08839,0.321751,-0.269711,-3.08953,0.320304,-0.258545,-3.08148,0.330465,-0.32454,-3.11765,0.28481,-0.307998,-3.09125,0.318139,-0.312749,-3.08775,0.322558,-0.307998,-3.09125,0.318139,-0.269711,-3.08953,0.320304,-0.286898,-3.08839,0.321751,-0.32454,-3.11765,0.28481,-0.311987,-3.09877,0.308641,-0.307998,-3.09125,0.318139,-0.311987,-3.09877,0.308641,-0.269711,-3.08953,0.320304,-0.307998,-3.09125,0.318139,-0.311987,-3.09877,0.308641,-0.281534,-3.0939,0.314797,-0.269711,-3.08953,0.320304,-0.311987,-3.09877,0.308641,-0.294172,-3.09711,0.310737,-0.281534,-3.0939,0.314797,-0.294172,-3.09711,0.310737,-0.283969,-3.09731,0.310487,-0.281534,-3.0939,0.314797,-0.284931,-3.11012,0.294321,-0.283969,-3.09731,0.310487,-0.294172,-3.09711,0.310737,-0.284931,-3.11012,0.294321,-0.275874,-3.10639,0.299025,-0.283969,-3.09731,0.310487,-0.284931,-3.11012,0.294321,-0.268951,-3.11239,0.29146,-0.275874,-3.10639,0.299025,-0.279151,-3.11696,0.285686,-0.268951,-3.11239,0.29146,-0.284931,-3.11012,0.294321,-0.32454,-3.11765,0.28481,-0.313224,-3.12707,0.272921,-0.311987,-3.09877,0.308641,-0.258645,-3.11569,0.287291,-0.244399,-3.11234,0.291523,-0.252281,-3.11167,0.292366,-0.258645,-3.11569,0.287291,-0.240873,-3.11669,0.286024,-0.244399,-3.11234,0.291523,-0.279151,-3.11696,0.285686,-0.258645,-3.11569,0.287291,-0.268951,-3.11239,0.29146,-0.279151,-3.11696,0.285686,-0.240873,-3.11669,0.286024,-0.258645,-3.11569,0.287291,-0.279151,-3.11696,0.285686,-0.244408,-3.12416,0.276597,-0.240873,-3.11669,0.286024,-0.329065,-3.12732,0.272616,-0.313224,-3.12707,0.272921,-0.32454,-3.11765,0.28481,-0.265276,-3.12595,0.274343,-0.244408,-3.12416,0.276597,-0.279151,-3.11696,0.285686,-0.265276,-3.12595,0.274343,-0.251809,-3.12694,0.273086,-0.244408,-3.12416,0.276597,-0.329065,-3.12732,0.272616,-0.315275,-3.1286,0.270993,-0.313224,-3.12707,0.272921,-0.325282,-3.13343,0.264894,-0.315275,-3.1286,0.270993,-0.329065,-3.12732,0.272616,-0.325282,-3.13343,0.264894,-0.318794,-3.13292,0.265537,-0.315275,-3.1286,0.270993,-0.44116,-3.04683,0.374213,-0.435758,-3.04378,0.378059,-0.438542,-3.04222,0.380027,-0.44116,-3.04683,0.374213,-0.423272,-3.04447,0.377184,-0.435758,-3.04378,0.378059,-0.44116,-3.04683,0.374213,-0.406856,-3.04579,0.375522,-0.423272,-3.04447,0.377184,-0.44116,-3.04683,0.374213,-0.397239,-3.05189,0.367823,-0.406856,-3.04579,0.375522,-0.435191,-3.05679,0.361639,-0.416671,-3.05229,0.367317,-0.44116,-3.04683,0.374213,-0.416671,-3.05229,0.367317,-0.397239,-3.05189,0.367823,-0.44116,-3.04683,0.374213,-0.410081,-3.05451,0.364514,-0.397239,-3.05189,0.367823,-0.416671,-3.05229,0.367317,-0.410081,-3.05451,0.364514,-0.391083,-3.05985,0.357778,-0.397239,-3.05189,0.367823,-0.422533,-3.06007,0.357495,-0.410715,-3.06425,0.352215,-0.416954,-3.05754,0.360693,-0.402304,-3.0633,0.353416,-0.391083,-3.05985,0.357778,-0.410081,-3.05451,0.364514,-0.431094,-3.06869,0.346609,-0.410715,-3.06425,0.352215,-0.422533,-3.06007,0.357495,-0.402304,-3.0633,0.353416,-0.387555,-3.06799,0.347493,-0.391083,-3.05985,0.357778,-0.398187,-3.07043,0.344424,-0.387555,-3.06799,0.347493,-0.402304,-3.0633,0.353416,-0.398187,-3.07043,0.344424,-0.384752,-3.07636,0.336926,-0.387555,-3.06799,0.347493,-0.423237,-3.07955,0.332901,-0.437817,-3.0828,0.328804,-0.423237,-3.07955,0.332901,-0.431094,-3.06869,0.346609,-0.398187,-3.07043,0.344424,-0.378369,-3.08571,0.325133,-0.384752,-3.07636,0.336926,-0.390539,-3.09361,0.315164,-0.378369,-3.08571,0.325133,-0.398187,-3.07043,0.344424,-0.437817,-3.0828,0.328804,-0.428015,-3.09905,0.308297,-0.423237,-3.07955,0.332901,-0.390539,-3.09361,0.315164,-0.37647,-3.09177,0.317482,-0.378369,-3.08571,0.325133,-0.442245,-3.09512,0.313248,-0.428015,-3.09905,0.308297,-0.437817,-3.0828,0.328804,-0.390539,-3.09361,0.315164,-0.371603,-3.09964,0.307553,-0.37647,-3.09177,0.317482,-0.396103,-3.09723,0.310583,-0.371603,-3.09964,0.307553,-0.390539,-3.09361,0.315164,-0.428015,-3.09905,0.308297,-0.371603,-3.09964,0.307553,-0.396103,-3.09723,0.310583,-0.445294,-3.10244,0.304021,-0.428015,-3.09905,0.308297,-0.442245,-3.09512,0.313248,-0.371603,-3.09964,0.307553,-0.449329,-3.12163,0.279789,-0.432488,-3.10826,0.296667,-0.445294,-3.10244,0.304021,-0.432488,-3.10826,0.296667,-0.42643,-3.10623,0.299237,-0.445294,-3.10244,0.304021,-0.42643,-3.10623,0.299237,-0.371603,-3.09964,0.307553,-0.445294,-3.10244,0.304021,-0.42643,-3.10623,0.299237,-0.393928,-3.10592,0.299622,-0.371603,-3.09964,0.307553,-0.383135,-3.10601,0.299505,-0.371603,-3.09964,0.307553,-0.393928,-3.10592,0.299622,-0.383135,-3.10601,0.299505,-0.366074,-3.10802,0.296975,-0.371603,-3.09964,0.307553,-0.449329,-3.12163,0.279789,-0.435837,-3.11597,0.286939,-0.432488,-3.10826,0.296667,-0.376204,-3.11721,0.285372,-0.376204,-3.11721,0.285372,-0.358964,-3.11678,0.285908,-0.366074,-3.10802,0.296975,-0.376204,-3.11721,0.285372,-0.354194,-3.12033,0.281431,-0.358964,-3.11678,0.285908,-0.449329,-3.12163,0.279789,-0.439282,-3.12589,0.274421,-0.435837,-3.11597,0.286939,-0.369879,-3.12365,0.277243,-0.354194,-3.12033,0.281431,-0.376204,-3.11721,0.285372,-0.451045,-3.12826,0.271421,-0.439282,-3.12589,0.274421,-0.449329,-3.12163,0.279789,-0.369879,-3.12365,0.277243,-0.355366,-3.12624,0.27397,-0.354194,-3.12033,0.281431,-0.364416,-3.1281,0.271625,-0.355366,-3.12624,0.27397,-0.369879,-3.12365,0.277243,-0.451045,-3.12826,0.271421,-0.444459,-3.13519,0.262683,-0.439282,-3.12589,0.274421,-0.456381,-3.13488,0.263069,-0.444459,-3.13519,0.262683,-0.451045,-3.12826,0.271421,-0.482176,-3.13346,0.264856,-0.47148,-3.13236,0.266243,-0.478455,-3.13125,0.267645,-0.482176,-3.13346,0.264856,-0.470254,-3.1351,0.262793,-0.47148,-3.13236,0.266243,-0.482176,-3.13346,0.264856,-0.466817,-3.13758,0.259655,-0.470254,-3.1351,0.262793,-0.456381,-3.13488,0.263069,-0.446368,-3.13829,0.258757,-0.444459,-3.13519,0.262683,-0.466817,-3.13758,0.259655,-0.446368,-3.13829,0.258757,-0.456381,-3.13488,0.263069,-0.477335,-3.14269,0.253211,-0.466817,-3.13758,0.259655,-0.482176,-3.13346,0.264856,-0.477335,-3.14269,0.253211,-0.446368,-3.13829,0.258757,-0.466817,-3.13758,0.259655,-0.477335,-3.14269,0.253211,-0.453222,-3.14358,0.252087,-0.446368,-3.13829,0.258757,-0.477335,-3.14269,0.253211,-0.464957,-3.14446,0.250976,-0.453222,-3.14358,0.252087,-0.477335,-3.14269,0.253211,-0.471951,-3.14493,0.25038,-0.464957,-3.14446,0.250976,-0.564256,-3.04509,0.376405,-0.481688,-3.04798,0.372757,-0.485288,-3.04436,0.377323,-0.566074,-3.05122,0.368664,-0.481688,-3.04798,0.372757,-0.564256,-3.04509,0.376405,-0.566074,-3.05122,0.368664,-0.483293,-3.0523,0.367304,-0.481688,-3.04798,0.372757,-0.548994,-3.05252,0.367021,-0.483293,-3.0523,0.367304,-0.566074,-3.05122,0.368664,-0.56245,-3.05341,0.365907,-0.548994,-3.05252,0.367021,-0.566074,-3.05122,0.368664,-0.511366,-3.05262,0.366901,-0.483293,-3.0523,0.367304,-0.548994,-3.05252,0.367021,-0.500085,-3.05302,0.366398,-0.483293,-3.0523,0.367304,-0.511366,-3.05262,0.366901,-0.489438,-3.05612,0.36248,-0.483293,-3.0523,0.367304,-0.500085,-3.05302,0.366398,-0.548994,-3.05252,0.367021,-0.524015,-3.05638,0.362147,-0.511366,-3.05262,0.366901,-0.5466,-3.05557,0.36318,-0.524015,-3.05638,0.362147,-0.548994,-3.05252,0.367021,-0.55082,-3.06171,0.355427,-0.524015,-3.05638,0.362147,-0.5466,-3.05557,0.36318,-0.55082,-3.06171,0.355427,-0.532778,-3.06098,0.356347,-0.524015,-3.05638,0.362147,-0.55082,-3.06171,0.355427,-0.540709,-3.06788,0.347639,-0.532778,-3.06098,0.356347,-0.556394,-3.06962,0.345446,-0.540709,-3.06788,0.347639,-0.55082,-3.06171,0.355427,-0.556394,-3.06962,0.345446,-0.545326,-3.07667,0.336537,-0.540709,-3.06788,0.347639,-0.560373,-3.08187,0.32998,-0.545326,-3.07667,0.336537,-0.556394,-3.06962,0.345446,-0.560373,-3.08187,0.32998,-0.545546,-3.09832,0.30922,-0.545326,-3.07667,0.336537,-0.558351,-3.10323,0.303012,-0.545546,-3.09832,0.30922,-0.560373,-3.08187,0.32998,-0.558351,-3.10323,0.303012,-0.542375,-3.10567,0.299939,-0.545546,-3.09832,0.30922,-0.48002,-3.0951,0.313273,-0.480021,-3.11089,0.29335,-0.475348,-3.09529,0.313041,-0.494149,-3.10884,0.295939,-0.480021,-3.11089,0.29335,-0.48002,-3.0951,0.313273,-0.552692,-3.11387,0.289591,-0.542375,-3.10567,0.299939,-0.558351,-3.10323,0.303012,-0.552692,-3.11387,0.289591,-0.534118,-3.11419,0.28918,-0.542375,-3.10567,0.299939,-0.504826,-3.11444,0.288866,-0.480021,-3.11089,0.29335,-0.494149,-3.10884,0.295939,-0.504826,-3.11444,0.288866,-0.491445,-3.11964,0.2823,-0.480021,-3.11089,0.29335,-0.552692,-3.11387,0.289591,-0.529463,-3.11697,0.285679,-0.534118,-3.11419,0.28918,-0.514936,-3.11775,0.284692,-0.491445,-3.11964,0.2823,-0.504826,-3.11444,0.288866,-0.545341,-3.12073,0.280928,-0.529463,-3.11697,0.285679,-0.552692,-3.11387,0.289591,-0.545341,-3.12073,0.280928,-0.514936,-3.11775,0.284692,-0.529463,-3.11697,0.285679,-0.491445,-3.11964,0.2823,-0.545341,-3.12073,0.280928,-0.506245,-3.12685,0.273204,-0.491445,-3.11964,0.2823,-0.53447,-3.12601,0.274261,-0.506245,-3.12685,0.273204,-0.545341,-3.12073,0.280928,-0.53447,-3.12601,0.274261,-0.518978,-3.12836,0.271298,-0.506245,-3.12685,0.273204,-0.667032,-3.04702,0.373966,-0.635861,-3.04365,0.37822,-0.650611,-3.04409,0.377661,-0.667032,-3.04702,0.373966,-0.618245,-3.04677,0.374288,-0.635861,-3.04365,0.37822,-0.667032,-3.04702,0.373966,-0.61071,-3.04914,0.371295,-0.618245,-3.04677,0.374288,-0.667032,-3.04702,0.373966,-0.638995,-3.05092,0.36904,-0.61071,-3.04914,0.371295,-0.65324,-3.05073,0.369283,-0.638995,-3.05092,0.36904,-0.667032,-3.04702,0.373966,-0.667032,-3.04702,0.373966,-0.6618,-3.053,0.366415,-0.65324,-3.05073,0.369283,-0.679364,-3.05386,0.365338,-0.6618,-3.053,0.366415,-0.667032,-3.04702,0.373966,-0.638995,-3.05092,0.36904,-0.604881,-3.05392,0.365263,-0.61071,-3.04914,0.371295,-0.630217,-3.05372,0.365506,-0.604881,-3.05392,0.365263,-0.638995,-3.05092,0.36904,-0.679364,-3.05386,0.365338,-0.666607,-3.05716,0.361171,-0.6618,-3.053,0.366415,-0.630217,-3.05372,0.365506,-0.606046,-3.05913,0.358681,-0.604881,-3.05392,0.365263,-0.62529,-3.05999,0.357595,-0.606046,-3.05913,0.358681,-0.630217,-3.05372,0.365506,-0.679364,-3.05386,0.365338,-0.665733,-3.06329,0.353432,-0.666607,-3.05716,0.361171,-0.62529,-3.05999,0.357595,-0.616189,-3.06234,0.354633,-0.606046,-3.05913,0.358681,-0.681382,-3.06702,0.348718,-0.665733,-3.06329,0.353432,-0.679364,-3.05386,0.365338,-0.681382,-3.06702,0.348718,-0.65516,-3.06753,0.348072,-0.665733,-3.06329,0.353432,-0.681382,-3.06702,0.348718,-0.642594,-3.06877,0.346507,-0.65516,-3.06753,0.348072,-0.670981,-3.0746,0.339153,-0.642594,-3.06877,0.346507,-0.681382,-3.06702,0.348718,-0.670981,-3.0746,0.339153,-0.614831,-3.0746,0.339149,-0.642594,-3.06877,0.346507,-0.659513,-3.07835,0.334416,-0.614831,-3.0746,0.339149,-0.670981,-3.0746,0.339153,-0.659513,-3.07835,0.334416,-0.593771,-3.08496,0.326075,-0.614831,-3.0746,0.339149,-0.641619,-3.08175,0.330135,-0.593771,-3.08496,0.326075,-0.659513,-3.07835,0.334416,-0.62395,-3.08492,0.326132,-0.593771,-3.08496,0.326075,-0.641619,-3.08175,0.330135,-0.607075,-3.09344,0.315379,-0.593771,-3.08496,0.326075,-0.62395,-3.08492,0.326132,-0.607075,-3.09344,0.315379,-0.587858,-3.09419,0.314422,-0.593771,-3.08496,0.326075,-0.607075,-3.09344,0.315379,-0.586279,-3.10021,0.306823,-0.587858,-3.09419,0.314422,-0.678825,-3.09874,0.308679,-0.650012,-3.10027,0.306752,-0.665052,-3.09644,0.311584,-0.603454,-3.10475,0.301103,-0.586279,-3.10021,0.306823,-0.607075,-3.09344,0.315379,-0.688062,-3.10635,0.29908,-0.650012,-3.10027,0.306752,-0.678825,-3.09874,0.308679,-0.688062,-3.10635,0.29908,-0.64659,-3.10633,0.2991,-0.650012,-3.10027,0.306752,-0.670842,-3.10651,0.298881,-0.64659,-3.10633,0.2991,-0.688062,-3.10635,0.29908,-0.688062,-3.10635,0.29908,-0.675276,-3.10868,0.296142,-0.670842,-3.10651,0.298881,-0.66579,-3.10884,0.295931,-0.64659,-3.10633,0.2991,-0.670842,-3.10651,0.298881,-0.609107,-3.11306,0.290608,-0.586279,-3.10021,0.306823,-0.603454,-3.10475,0.301103,-0.609107,-3.11306,0.290608,-0.591,-3.11068,0.293619,-0.586279,-3.10021,0.306823,-0.66579,-3.10884,0.295931,-0.650959,-3.11137,0.29274,-0.64659,-3.10633,0.2991,-0.664706,-3.11079,0.293477,-0.650959,-3.11137,0.29274,-0.66579,-3.10884,0.295931,-0.687881,-3.11637,0.286433,-0.675276,-3.10868,0.296142,-0.688062,-3.10635,0.29908,-0.609107,-3.11306,0.290608,-0.59571,-3.11496,0.288207,-0.591,-3.11068,0.293619,-0.687881,-3.11637,0.286433,-0.67251,-3.11628,0.28655,-0.675276,-3.10868,0.296142,-0.615812,-3.11697,0.285679,-0.59571,-3.11496,0.288207,-0.609107,-3.11306,0.290608,-0.687881,-3.11637,0.286433,-0.659695,-3.11947,0.282519,-0.67251,-3.11628,0.28655,-0.680068,-3.12245,0.278758,-0.659695,-3.11947,0.282519,-0.687881,-3.11637,0.286433,-0.637181,-3.12081,0.280832,-0.59571,-3.11496,0.288207,-0.615812,-3.11697,0.285679,-0.637181,-3.12081,0.280832,-0.611154,-3.12362,0.277285,-0.59571,-3.11496,0.288207,-0.680068,-3.12245,0.278758,-0.637181,-3.12081,0.280832,-0.659695,-3.11947,0.282519,-0.611154,-3.12362,0.277285,-0.666742,-3.12577,0.274568,-0.611154,-3.12362,0.277285,-0.680068,-3.12245,0.278758,-0.666742,-3.12577,0.274568,-0.628289,-3.12656,0.273571,-0.611154,-3.12362,0.277285,-0.648841,-3.12747,0.272417,-0.628289,-3.12656,0.273571,-0.666742,-3.12577,0.274568,-0.86287,-3.04692,0.374096,-0.827374,-3.04618,0.375031,-0.85653,-3.04577,0.375542,-0.873493,-3.0498,0.370456,-0.827374,-3.04618,0.375031,-0.86287,-3.04692,0.374096,-0.873493,-3.0498,0.370456,-0.851268,-3.05053,0.369536,-0.827374,-3.04618,0.375031,-0.851268,-3.05053,0.369536,-0.812738,-3.05217,0.36747,-0.827374,-3.04618,0.375031,-0.830832,-3.05306,0.366344,-0.812738,-3.05217,0.36747,-0.851268,-3.05053,0.369536,-0.884466,-3.05637,0.362167,-0.851268,-3.05053,0.369536,-0.873493,-3.0498,0.370456,-0.884466,-3.05637,0.362167,-0.867197,-3.05556,0.363185,-0.851268,-3.05053,0.369536,-0.817095,-3.06132,0.355912,-0.812738,-3.05217,0.36747,-0.830832,-3.05306,0.366344,-0.802814,-3.06017,0.357364,-0.884466,-3.05637,0.362167,-0.874585,-3.06306,0.353721,-0.867197,-3.05556,0.363185,-0.892418,-3.06505,0.35121,-0.874585,-3.06306,0.353721,-0.884466,-3.05637,0.362167,-0.817095,-3.06132,0.355912,-0.793439,-3.07608,0.337286,-0.802814,-3.06017,0.357364,-0.892418,-3.06505,0.35121,-0.87777,-3.06961,0.345451,-0.874585,-3.06306,0.353721,-0.89606,-3.07464,0.339102,-0.809667,-3.07625,0.337078,-0.793439,-3.07608,0.337286,-0.817095,-3.06132,0.355912,-0.880666,-3.07855,0.334172,-0.897475,-3.0851,0.325905,-0.880666,-3.07855,0.334172,-0.89606,-3.07464,0.339102,-0.897475,-3.0851,0.325905,-0.880854,-3.09046,0.319139,-0.880666,-3.07855,0.334172,-0.809667,-3.07625,0.337078,-0.792898,-3.09389,0.31481,-0.793439,-3.07608,0.337286,-0.810847,-3.09707,0.310788,-0.792898,-3.09389,0.31481,-0.809667,-3.07625,0.337078,-0.896369,-3.09592,0.312247,-0.880854,-3.09046,0.319139,-0.897475,-3.0851,0.325905,-0.896369,-3.09592,0.312247,-0.877721,-3.10138,0.305352,-0.880854,-3.09046,0.319139,-0.810847,-3.09707,0.310788,-0.798165,-3.10696,0.298305,-0.792898,-3.09389,0.31481,-0.817338,-3.10978,0.294747,-0.798165,-3.10696,0.298305,-0.810847,-3.09707,0.310788,-0.889684,-3.11031,0.294079,-0.877721,-3.10138,0.305352,-0.896369,-3.09592,0.312247,-0.889684,-3.11031,0.294079,-0.874315,-3.10812,0.296849,-0.877721,-3.10138,0.305352,-0.889684,-3.11031,0.294079,-0.870771,-3.1133,0.290306,-0.874315,-3.10812,0.296849,-0.817338,-3.10978,0.294747,-0.804813,-3.11513,0.287993,-0.798165,-3.10696,0.298305,-0.819997,-3.11379,0.289686,-0.804813,-3.11513,0.287993,-0.817338,-3.10978,0.294747,-0.886267,-3.11347,0.290091,-0.870771,-3.1133,0.290306,-0.889684,-3.11031,0.294079,-0.886267,-3.11347,0.290091,-0.855825,-3.12081,0.28083,-0.876811,-3.12175,0.279644,-0.855825,-3.12081,0.28083,-0.886267,-3.11347,0.290091,-0.819997,-3.11379,0.289686,-0.816804,-3.12293,0.278151,-0.804813,-3.11513,0.287993,-0.831892,-3.12,0.281844,-0.816804,-3.12293,0.278151,-0.819997,-3.11379,0.289686,-0.841854,-3.122,0.279321,-0.816804,-3.12293,0.278151,-0.831892,-3.12,0.281844,-0.876811,-3.12175,0.279644,-0.841854,-3.122,0.279321,-0.855825,-3.12081,0.28083,-0.876811,-3.12175,0.279644,-0.816804,-3.12293,0.278151,-0.841854,-3.122,0.279321,-0.876811,-3.12175,0.279644,-0.82633,-3.12675,0.273324,-0.816804,-3.12293,0.278151,-0.854967,-3.12851,0.271107,-0.82633,-3.12675,0.273324,-0.876811,-3.12175,0.279644,-0.854967,-3.12851,0.271107,-0.83518,-3.12805,0.271689,-0.82633,-3.12675,0.273324,-1.00911,-3.04493,0.376601,-0.927279,-3.04798,0.372756,-0.930878,-3.04436,0.377323,-1.01193,-3.05082,0.369174,-0.927279,-3.04798,0.372756,-1.00911,-3.04493,0.376601,-1.01193,-3.05082,0.369174,-0.928884,-3.0523,0.367303,-0.927279,-3.04798,0.372756,-0.994585,-3.05252,0.367021,-0.928884,-3.0523,0.367303,-1.01193,-3.05082,0.369174,-1.00804,-3.05341,0.365907,-0.994585,-3.05252,0.367021,-1.01193,-3.05082,0.369174,-0.956957,-3.05262,0.366901,-0.928884,-3.0523,0.367303,-0.994585,-3.05252,0.367021,-0.945676,-3.05302,0.366398,-0.928884,-3.0523,0.367303,-0.956957,-3.05262,0.366901,-0.935029,-3.05612,0.36248,-0.928884,-3.0523,0.367303,-0.945676,-3.05302,0.366398,-0.994585,-3.05252,0.367021,-0.969606,-3.05638,0.362147,-0.956957,-3.05262,0.366901,-0.99219,-3.05557,0.36318,-0.969606,-3.05638,0.362147,-0.994585,-3.05252,0.367021,-0.996464,-3.06171,0.355424,-0.969606,-3.05638,0.362147,-0.99219,-3.05557,0.36318,-0.996464,-3.06171,0.355424,-0.978368,-3.06098,0.356347,-0.969606,-3.05638,0.362147,-0.996464,-3.06171,0.355424,-0.9863,-3.06788,0.347638,-0.978368,-3.06098,0.356347,-1.00186,-3.06951,0.345575,-0.9863,-3.06788,0.347638,-0.996464,-3.06171,0.355424,-1.00186,-3.06951,0.345575,-0.990917,-3.07667,0.336536,-0.9863,-3.06788,0.347638,-1.00649,-3.08451,0.326648,-0.990917,-3.07667,0.336536,-1.00186,-3.06951,0.345575,-1.00649,-3.08451,0.326648,-0.991136,-3.09826,0.309284,-0.990917,-3.07667,0.336536,-1.00359,-3.10416,0.301848,-0.991136,-3.09826,0.309284,-1.00649,-3.08451,0.326648,-0.92561,-3.0951,0.313273,-0.925612,-3.11089,0.29335,-0.920939,-3.09529,0.313041,-0.939739,-3.10884,0.295939,-0.925612,-3.11089,0.29335,-0.92561,-3.0951,0.313273,-1.00359,-3.10416,0.301848,-0.988012,-3.10561,0.300007,-0.991136,-3.09826,0.309284,-0.998354,-3.11382,0.28965,-0.988012,-3.10561,0.300007,-1.00359,-3.10416,0.301848,-0.998354,-3.11382,0.28965,-0.979709,-3.11419,0.28918,-0.988012,-3.10561,0.300007,-0.950417,-3.11444,0.288866,-0.925612,-3.11089,0.29335,-0.939739,-3.10884,0.295939,-0.950417,-3.11444,0.288866,-0.937036,-3.11964,0.2823,-0.925612,-3.11089,0.29335,-0.998354,-3.11382,0.28965,-0.975054,-3.11697,0.28568,-0.979709,-3.11419,0.28918,-0.960526,-3.11775,0.284692,-0.937036,-3.11964,0.2823,-0.950417,-3.11444,0.288866,-0.990931,-3.12073,0.280927,-0.975054,-3.11697,0.28568,-0.998354,-3.11382,0.28965,-0.990931,-3.12073,0.280927,-0.960526,-3.11775,0.284692,-0.975054,-3.11697,0.28568,-0.990931,-3.12073,0.280927,-0.937036,-3.11964,0.2823,-0.960526,-3.11775,0.284692,-0.990931,-3.12073,0.280927,-0.951835,-3.12685,0.273204,-0.937036,-3.11964,0.2823,-0.979914,-3.12607,0.274191,-0.951835,-3.12685,0.273204,-0.990931,-3.12073,0.280927,-0.979914,-3.12607,0.274191,-0.964191,-3.12835,0.271311,-0.951835,-3.12685,0.273204,0.57655,-2.80373,0.681052,0.590975,-2.80511,0.679317,0.582371,-2.8011,0.684378,0.569168,-2.81316,0.669152,0.590975,-2.80511,0.679317,0.57655,-2.80373,0.681052,0.569262,-2.81706,0.664231,0.590975,-2.80511,0.679317,0.569168,-2.81316,0.669152,0.569262,-2.81706,0.664231,0.589072,-2.82497,0.654248,0.590975,-2.80511,0.679317,0.575366,-2.82732,0.651281,0.589072,-2.82497,0.654248,0.569262,-2.81706,0.664231,0.607121,-2.82516,0.654011,0.638383,-2.8286,0.649665,0.625613,-2.82512,0.654056,0.595764,-2.82947,0.648561,0.638383,-2.8286,0.649665,0.607121,-2.82516,0.654011,0.590834,-2.8318,0.645619,0.590834,-2.8318,0.645619,0.638383,-2.8286,0.649665,0.595764,-2.82947,0.648561,0.576611,-2.83419,0.642612,0.590834,-2.8318,0.645619,0.575366,-2.82732,0.651281,0.576611,-2.83419,0.642612,0.638383,-2.8286,0.649665,0.590834,-2.8318,0.645619,0.613743,-2.83443,0.642299,0.638383,-2.8286,0.649665,0.576611,-2.83419,0.642612,0.626595,-2.83529,0.641216,0.638383,-2.8286,0.649665,0.613743,-2.83443,0.642299,0.626595,-2.83529,0.641216,0.652939,-2.83986,0.635447,0.638383,-2.8286,0.649665,0.637862,-2.84099,0.634027,0.652939,-2.83986,0.635447,0.626595,-2.83529,0.641216,0.576611,-2.83419,0.642612,0.595696,-2.84121,0.633748,0.613743,-2.83443,0.642299,0.576625,-2.85053,0.621989,0.595696,-2.84121,0.633748,0.576611,-2.83419,0.642612,0.637862,-2.84099,0.634027,0.659337,-2.84895,0.623979,0.652939,-2.83986,0.635447,0.576625,-2.85053,0.621989,0.588897,-2.84933,0.623495,0.595696,-2.84121,0.633748,0.645345,-2.85281,0.619107,0.659337,-2.84895,0.623979,0.637862,-2.84099,0.634027,0.572255,-2.88252,0.581604,0.588897,-2.84933,0.623495,0.576625,-2.85053,0.621989,0.660524,-2.85853,0.61189,0.645449,-2.86839,0.599447,0.660524,-2.85853,0.61189,0.645345,-2.85281,0.619107,0.572255,-2.88252,0.581604,0.587709,-2.87941,0.585531,0.588897,-2.84933,0.623495,0.645449,-2.86839,0.599447,0.659259,-2.86882,0.598897,0.660524,-2.85853,0.61189,0.611324,-2.86094,0.608843,0.626794,-2.86901,0.598663,0.624988,-2.86163,0.607978,0.60094,-2.87088,0.596299,0.626794,-2.86901,0.598663,0.611324,-2.86094,0.608843,0.64089,-2.87672,0.588925,0.659259,-2.86882,0.598897,0.645449,-2.86839,0.599447,0.60094,-2.87088,0.596299,0.61823,-2.87715,0.588389,0.626794,-2.86901,0.598663,0.64089,-2.87672,0.588925,0.650576,-2.88194,0.58234,0.659259,-2.86882,0.598897,0.604455,-2.88272,0.581349,0.61823,-2.87715,0.588389,0.60094,-2.87088,0.596299,0.62708,-2.88215,0.582076,0.650576,-2.88194,0.58234,0.64089,-2.87672,0.588925,0.604455,-2.88272,0.581349,0.62708,-2.88215,0.582076,0.61823,-2.87715,0.588389,0.604455,-2.88272,0.581349,0.650576,-2.88194,0.58234,0.62708,-2.88215,0.582076,0.572255,-2.88252,0.581604,0.587112,-2.88917,0.573205,0.587709,-2.87941,0.585531,0.604455,-2.88272,0.581349,0.636322,-2.88984,0.572363,0.650576,-2.88194,0.58234,0.617131,-2.88991,0.572275,0.636322,-2.88984,0.572363,0.604455,-2.88272,0.581349,0.576125,-2.88974,0.57249,0.587112,-2.88917,0.573205,0.572255,-2.88252,0.581604,0.472802,-2.80959,0.673658,0.526063,-2.80886,0.67458,0.507168,-2.80641,0.677671,0.472802,-2.80959,0.673658,0.500996,-2.81069,0.67227,0.526063,-2.80886,0.67458,0.500996,-2.81069,0.67227,0.53554,-2.81289,0.669492,0.526063,-2.80886,0.67458,0.472802,-2.80959,0.673658,0.48855,-2.81192,0.670715,0.500996,-2.81069,0.67227,0.51763,-2.81399,0.668101,0.53554,-2.81289,0.669492,0.500996,-2.81069,0.67227,0.524034,-2.82116,0.659055,0.53554,-2.81289,0.669492,0.51763,-2.81399,0.668101,0.454774,-2.82119,0.65902,0.48855,-2.81192,0.670715,0.472802,-2.80959,0.673658,0.454774,-2.82119,0.65902,0.471067,-2.82464,0.654659,0.48855,-2.81192,0.670715,0.524034,-2.82116,0.659055,0.540287,-2.82277,0.657021,0.53554,-2.81289,0.669492,0.51525,-2.82224,0.657692,0.540287,-2.82277,0.657021,0.524034,-2.82116,0.659055,0.506593,-2.82512,0.654054,0.540287,-2.82277,0.657021,0.51525,-2.82224,0.657692,0.450572,-2.82901,0.649152,0.471067,-2.82464,0.654659,0.454774,-2.82119,0.65902,0.506593,-2.82512,0.654054,0.532716,-2.83286,0.644282,0.540287,-2.82277,0.657021,0.450572,-2.82901,0.649152,0.463999,-2.83544,0.641034,0.471067,-2.82464,0.654659,0.50877,-2.83255,0.644674,0.532716,-2.83286,0.644282,0.506593,-2.82512,0.654054,0.447843,-2.83285,0.644299,0.463999,-2.83544,0.641034,0.450572,-2.82901,0.649152,0.516664,-2.83552,0.640935,0.532716,-2.83286,0.644282,0.50877,-2.83255,0.644674,0.44597,-2.84942,0.623388,0.463999,-2.83544,0.641034,0.447843,-2.83285,0.644299,0.44597,-2.84942,0.623388,0.461263,-2.8505,0.622019,0.463999,-2.83544,0.641034,0.447106,-2.86577,0.602745,0.461263,-2.8505,0.622019,0.44597,-2.84942,0.623388,0.447106,-2.86577,0.602745,0.466018,-2.87093,0.596229,0.461263,-2.8505,0.622019,0.531841,-2.86128,0.608416,0.544521,-2.86416,0.604782,0.541288,-2.86065,0.609215,0.521084,-2.87712,0.588425,0.544521,-2.86416,0.604782,0.531841,-2.86128,0.608416,0.521084,-2.87712,0.588425,0.544218,-2.87042,0.596875,0.544521,-2.86416,0.604782,0.45342,-2.8746,0.591595,0.466018,-2.87093,0.596229,0.447106,-2.86577,0.602745,0.45342,-2.8746,0.591595,0.471633,-2.87754,0.587886,0.466018,-2.87093,0.596229,0.521084,-2.87712,0.588425,0.536503,-2.87934,0.585619,0.544218,-2.87042,0.596875,0.455833,-2.87752,0.587921,0.471633,-2.87754,0.587886,0.45342,-2.8746,0.591595,0.512984,-2.88337,0.580531,0.536503,-2.87934,0.585619,0.521084,-2.87712,0.588425,0.459803,-2.88142,0.582995,0.471633,-2.87754,0.587886,0.455833,-2.87752,0.587921,0.459803,-2.88142,0.582995,0.486169,-2.88349,0.580382,0.471633,-2.87754,0.587886,0.512984,-2.88337,0.580531,0.529678,-2.88377,0.580031,0.536503,-2.87934,0.585619,0.466875,-2.88528,0.578118,0.486169,-2.88349,0.580382,0.459803,-2.88142,0.582995,0.466875,-2.88528,0.578118,0.512984,-2.88337,0.580531,0.486169,-2.88349,0.580382,0.466875,-2.88528,0.578118,0.529678,-2.88377,0.580031,0.512984,-2.88337,0.580531,0.466875,-2.88528,0.578118,0.509734,-2.88958,0.572694,0.529678,-2.88377,0.580031,0.481666,-2.88836,0.574233,0.509734,-2.88958,0.572694,0.466875,-2.88528,0.578118,0.392669,-2.81092,0.671979,0.413289,-2.80811,0.675528,0.400833,-2.80663,0.677398,0.392669,-2.81092,0.671979,0.417318,-2.81108,0.671776,0.413289,-2.80811,0.675528,0.345185,-2.81119,0.671636,0.365775,-2.8087,0.67478,0.356094,-2.80746,0.676344,0.345185,-2.81119,0.671636,0.364999,-2.81477,0.667116,0.365775,-2.8087,0.67478,0.392669,-2.81092,0.671979,0.421082,-2.81443,0.667556,0.417318,-2.81108,0.671776,0.393696,-2.81436,0.667638,0.421082,-2.81443,0.667556,0.392669,-2.81092,0.671979,0.339925,-2.81629,0.665198,0.364999,-2.81477,0.667116,0.345185,-2.81119,0.671636,0.393696,-2.81436,0.667638,0.420466,-2.81554,0.666147,0.421082,-2.81443,0.667556,0.393696,-2.81436,0.667638,0.405025,-2.81543,0.666284,0.420466,-2.81554,0.666147,0.396641,-2.81563,0.666034,0.405025,-2.81543,0.666284,0.393696,-2.81436,0.667638,0.409559,-2.81914,0.661602,0.420466,-2.81554,0.666147,0.405025,-2.81543,0.666284,0.339925,-2.81629,0.665198,0.355403,-2.81851,0.662408,0.364999,-2.81477,0.667116,0.409559,-2.81914,0.661602,0.422474,-2.81788,0.6632,0.420466,-2.81554,0.666147,0.339925,-2.81629,0.665198,0.350818,-2.82289,0.656875,0.355403,-2.81851,0.662408,0.4102,-2.82279,0.657002,0.422474,-2.81788,0.6632,0.409559,-2.81914,0.661602,0.337718,-2.8294,0.648654,0.350818,-2.82289,0.656875,0.339925,-2.81629,0.665198,0.4102,-2.82279,0.657002,0.424334,-2.83217,0.645162,0.422474,-2.81788,0.6632,0.411577,-2.82655,0.652255,0.424334,-2.83217,0.645162,0.4102,-2.82279,0.657002,0.337718,-2.8294,0.648654,0.351874,-2.83262,0.644596,0.350818,-2.82289,0.656875,0.411577,-2.82655,0.652255,0.425293,-2.84269,0.631878,0.424334,-2.83217,0.645162,0.33877,-2.85418,0.617381,0.351874,-2.83262,0.644596,0.337718,-2.8294,0.648654,0.412132,-2.85528,0.615991,0.425293,-2.84269,0.631878,0.411577,-2.82655,0.652255,0.412132,-2.85528,0.615991,0.425663,-2.85144,0.62083,0.425293,-2.84269,0.631878,0.33877,-2.85418,0.617381,0.353624,-2.8723,0.594502,0.351874,-2.83262,0.644596,0.403989,-2.87583,0.590055,0.425663,-2.85144,0.62083,0.412132,-2.85528,0.615991,0.403989,-2.87583,0.590055,0.420256,-2.86991,0.597527,0.425663,-2.85144,0.62083,0.340123,-2.87434,0.591932,0.353624,-2.8723,0.594502,0.33877,-2.85418,0.617381,0.403989,-2.87583,0.590055,0.416088,-2.87755,0.587878,0.420256,-2.86991,0.597527,0.403989,-2.87583,0.590055,0.411555,-2.88129,0.583162,0.416088,-2.87755,0.587878,0.396353,-2.88109,0.583409,0.411555,-2.88129,0.583162,0.403989,-2.87583,0.590055,0.340123,-2.87434,0.591932,0.367126,-2.88319,0.58076,0.353624,-2.8723,0.594502,0.353175,-2.88544,0.577922,0.367126,-2.88319,0.58076,0.340123,-2.87434,0.591932,0.388296,-2.88344,0.580439,0.388296,-2.88344,0.580439,0.401354,-2.88768,0.575089,0.411555,-2.88129,0.583162,0.367126,-2.88319,0.58076,0.401354,-2.88768,0.575089,0.388296,-2.88344,0.580439,0.353175,-2.88544,0.577922,0.401354,-2.88768,0.575089,0.367126,-2.88319,0.58076,0.368014,-2.88929,0.57306,0.401354,-2.88768,0.575089,0.353175,-2.88544,0.577922,0.368014,-2.88929,0.57306,0.390129,-2.88954,0.572742,0.401354,-2.88768,0.575089,0.241679,-2.80861,0.674894,0.277175,-2.80787,0.67583,0.248019,-2.80747,0.67634,0.231055,-2.8115,0.671255,0.277175,-2.80787,0.67583,0.241679,-2.80861,0.674894,0.231055,-2.8115,0.671255,0.253281,-2.81223,0.670335,0.277175,-2.80787,0.67583,0.253281,-2.81223,0.670335,0.291861,-2.81387,0.668253,0.277175,-2.80787,0.67583,0.273717,-2.81475,0.667142,0.291861,-2.81387,0.668253,0.253281,-2.81223,0.670335,0.220083,-2.81806,0.662966,0.253281,-2.81223,0.670335,0.231055,-2.8115,0.671255,0.220083,-2.81806,0.662966,0.237351,-2.81726,0.663984,0.253281,-2.81223,0.670335,0.287561,-2.82311,0.656592,0.291861,-2.81387,0.668253,0.273717,-2.81475,0.667142,0.287561,-2.82311,0.656592,0.301534,-2.82177,0.658289,0.291861,-2.81387,0.668253,0.220083,-2.81806,0.662966,0.229963,-2.82475,0.654519,0.237351,-2.81726,0.663984,0.212132,-2.82674,0.65201,0.229963,-2.82475,0.654519,0.220083,-2.81806,0.662966,0.287561,-2.82311,0.656592,0.310972,-2.83706,0.638992,0.301534,-2.82177,0.658289,0.212132,-2.82674,0.65201,0.226779,-2.83131,0.64625,0.229963,-2.82475,0.654519,0.208256,-2.8367,0.639436,0.226779,-2.83131,0.64625,0.212132,-2.82674,0.65201,0.294353,-2.83663,0.639529,0.310972,-2.83706,0.638992,0.287561,-2.82311,0.656592,0.208256,-2.8367,0.639436,0.223725,-2.84064,0.634469,0.226779,-2.83131,0.64625,0.295033,-2.85137,0.620922,0.310972,-2.83706,0.638992,0.294353,-2.83663,0.639529,0.207748,-2.85581,0.615318,0.223725,-2.84064,0.634469,0.208256,-2.8367,0.639436,0.207748,-2.85581,0.615318,0.223874,-2.85279,0.619125,0.223725,-2.84064,0.634469,0.295033,-2.85137,0.620922,0.311651,-2.85558,0.615608,0.310972,-2.83706,0.638992,0.207748,-2.85581,0.615318,0.226826,-2.86327,0.605907,0.223874,-2.85279,0.619125,0.295033,-2.85137,0.620922,0.306384,-2.86866,0.599104,0.311651,-2.85558,0.615608,0.290207,-2.86779,0.600197,0.306384,-2.86866,0.599104,0.295033,-2.85137,0.620922,0.2148,-2.87193,0.594967,0.226826,-2.86327,0.605907,0.207748,-2.85581,0.615318,0.2148,-2.87193,0.594967,0.230233,-2.86981,0.597648,0.226826,-2.86327,0.605907,0.287094,-2.87175,0.595193,0.306384,-2.86866,0.599104,0.290207,-2.86779,0.600197,0.2148,-2.87193,0.594967,0.233778,-2.87499,0.591105,0.230233,-2.86981,0.597648,0.287094,-2.87175,0.595193,0.299736,-2.87683,0.588791,0.306384,-2.86866,0.599104,0.284551,-2.87549,0.590484,0.299736,-2.87683,0.588791,0.287094,-2.87175,0.595193,0.218282,-2.87516,0.590889,0.233778,-2.87499,0.591105,0.2148,-2.87193,0.594967,0.218282,-2.87516,0.590889,0.248724,-2.8825,0.581628,0.233778,-2.87499,0.591105,0.227738,-2.88344,0.580442,0.248724,-2.8825,0.581628,0.218282,-2.87516,0.590889,0.284551,-2.87549,0.590484,0.287745,-2.88462,0.57895,0.299736,-2.87683,0.588791,0.272657,-2.8817,0.582642,0.287745,-2.88462,0.57895,0.284551,-2.87549,0.590484,0.262695,-2.8837,0.580119,0.287745,-2.88462,0.57895,0.272657,-2.8817,0.582642,0.227738,-2.88344,0.580442,0.262695,-2.8837,0.580119,0.248724,-2.8825,0.581628,0.227738,-2.88344,0.580442,0.287745,-2.88462,0.57895,0.262695,-2.8837,0.580119,0.227738,-2.88344,0.580442,0.278275,-2.88842,0.574158,0.287745,-2.88462,0.57895,0.248819,-2.89009,0.572048,0.278275,-2.88842,0.574158,0.227738,-2.88344,0.580442,0.248819,-2.89009,0.572048,0.269007,-2.88982,0.572393,0.278275,-2.88842,0.574158,0.023377,-2.77419,0.718341,0.156246,-2.77087,0.72253,0.026796,-2.77106,0.722288,0.023377,-2.77419,0.718341,0.162461,-2.77527,0.716985,0.156246,-2.77087,0.72253,0.023918,-2.77956,0.711567,0.162461,-2.77527,0.716985,0.023377,-2.77419,0.718341,0.023918,-2.77956,0.711567,0.160251,-2.7772,0.714539,0.162461,-2.77527,0.716985,0.023918,-2.77956,0.711567,0.048448,-2.77944,0.711719,0.160251,-2.7772,0.714539,0.111862,-2.77997,0.711048,0.160251,-2.7772,0.714539,0.048448,-2.77944,0.711719,0.134124,-2.7801,0.71088,0.160251,-2.7772,0.714539,0.111862,-2.77997,0.711048,0.134124,-2.7801,0.71088,0.157972,-2.7822,0.708236,0.160251,-2.7772,0.714539,0.053446,-2.7809,0.709871,0.111862,-2.77997,0.711048,0.048448,-2.77944,0.711719,0.023918,-2.77956,0.711567,0.028512,-2.78113,0.709582,0.048448,-2.77944,0.711719,0.149011,-2.78422,0.705676,0.157972,-2.7822,0.708236,0.134124,-2.7801,0.71088,0.053446,-2.7809,0.709871,0.091053,-2.78532,0.704299,0.111862,-2.77997,0.711048,0.056117,-2.78544,0.704137,0.091053,-2.78532,0.704299,0.053446,-2.7809,0.709871,0.056117,-2.78544,0.704137,0.075678,-2.79268,0.695009,0.091053,-2.78532,0.704299,0.046961,-2.79606,0.690737,0.075678,-2.79268,0.695009,0.056117,-2.78544,0.704137,0.060102,-2.80411,0.680573,0.038635,-2.80635,0.677748,0.060102,-2.80411,0.680573,0.046961,-2.79606,0.690737,0.038635,-2.80635,0.677748,0.053922,-2.81435,0.667645,0.060102,-2.80411,0.680573,0.031909,-2.82734,0.65125,0.053922,-2.81435,0.667645,0.038635,-2.80635,0.677748,0.031909,-2.82734,0.65125,0.053056,-2.84859,0.624438,0.053922,-2.81435,0.667645,0.036726,-2.85537,0.615872,0.053056,-2.84859,0.624438,0.031909,-2.82734,0.65125,0.159437,-2.8531,0.618739,0.176786,-2.85035,0.622207,0.168955,-2.84336,0.631028,0.159437,-2.8531,0.618739,0.172627,-2.86086,0.608949,0.176786,-2.85035,0.622207,0.036726,-2.85537,0.615872,0.058695,-2.8582,0.612303,0.053056,-2.84859,0.624438,0.144899,-2.8633,0.605866,0.172627,-2.86086,0.608949,0.159437,-2.8531,0.618739,0.04142,-2.86397,0.605022,0.058695,-2.8582,0.612303,0.036726,-2.85537,0.615872,0.144899,-2.8633,0.605866,0.162956,-2.86559,0.60297,0.172627,-2.86086,0.608949,0.04142,-2.86397,0.605022,0.07074,-2.86976,0.597714,0.058695,-2.8582,0.612303,0.045894,-2.86889,0.598807,0.126306,-2.87162,0.595368,0.162956,-2.86559,0.60297,0.144899,-2.8633,0.605866,0.126306,-2.87162,0.595368,0.145599,-2.87664,0.589023,0.162956,-2.86559,0.60297,0.045894,-2.86889,0.598807,0.080421,-2.87428,0.592011,0.07074,-2.86976,0.597714,0.055845,-2.87727,0.588228,0.080421,-2.87428,0.592011,0.045894,-2.86889,0.598807,0.114487,-2.87554,0.590417,0.055845,-2.87727,0.588228,0.09018,-2.87665,0.58901,0.080421,-2.87428,0.592011,0.09018,-2.87665,0.58901,0.145599,-2.87664,0.589023,0.114487,-2.87554,0.590417,0.055845,-2.87727,0.588228,0.145599,-2.87664,0.589023,0.09018,-2.87665,0.58901,0.055845,-2.87727,0.588228,0.140043,-2.88016,0.584589,0.145599,-2.87664,0.589023,0.06354,-2.88103,0.583489,0.140043,-2.88016,0.584589,0.055845,-2.87727,0.588228,0.06354,-2.88103,0.583489,0.130097,-2.88384,0.579944,0.140043,-2.88016,0.584589,0.070633,-2.8835,0.580363,0.130097,-2.88384,0.579944,0.06354,-2.88103,0.583489,0.07942,-2.8863,0.576835,0.130097,-2.88384,0.579944,0.070633,-2.8835,0.580363,0.07942,-2.8863,0.576835,0.11746,-2.88769,0.575082,0.130097,-2.88384,0.579944,0.094852,-2.88857,0.573967,0.11746,-2.88769,0.575082,0.07942,-2.8863,0.576835,-0.02017,-2.77783,0.713751,0.004056,-2.77395,0.718647,-0.004254,-2.77204,0.721051,-0.02017,-2.77783,0.713751,0.005015,-2.77947,0.711682,0.004056,-2.77395,0.718647,-0.048832,-2.81681,0.664551,0.005015,-2.77947,0.711682,-0.02017,-2.77783,0.713751,-0.048832,-2.81681,0.664551,-0.03796,-2.83658,0.639594,0.005015,-2.77947,0.711682,-0.078896,-2.85437,0.617141,-0.03796,-2.83658,0.639594,-0.048832,-2.81681,0.664551,-0.078896,-2.85437,0.617141,-0.082505,-2.88926,0.573104,-0.03796,-2.83658,0.639594,-0.103975,-2.883,0.581001,-0.082505,-2.88926,0.573104,-0.078896,-2.85437,0.617141,-0.099629,-2.88732,0.575541,-0.082505,-2.88926,0.573104,-0.103975,-2.883,0.581001,-0.217131,-2.8109,0.672002,-0.200468,-2.80841,0.675152,-0.213156,-2.80758,0.676195,-0.163888,-2.80691,0.677041,-0.148902,-2.80995,0.673203,-0.150018,-2.80643,0.677648,-0.16384,-2.81757,0.66359,-0.148902,-2.80995,0.673203,-0.163888,-2.80691,0.677041,-0.217131,-2.8109,0.672002,-0.201586,-2.81329,0.668983,-0.200468,-2.80841,0.675152,-0.16384,-2.81757,0.66359,-0.152946,-2.81754,0.663623,-0.148902,-2.80995,0.673203,-0.214839,-2.81571,0.665934,-0.201586,-2.81329,0.668983,-0.217131,-2.8109,0.672002,-0.214839,-2.81571,0.665934,-0.204005,-2.82576,0.653248,-0.201586,-2.81329,0.668983,-0.16384,-2.81757,0.66359,-0.168425,-2.83566,0.640748,-0.152946,-2.81754,0.663623,-0.174976,-2.83054,0.647213,-0.168425,-2.83566,0.640748,-0.16384,-2.81757,0.66359,-0.217892,-2.8873,0.575568,-0.204005,-2.82576,0.653248,-0.214839,-2.81571,0.665934,-0.217892,-2.8873,0.575568,-0.203044,-2.83898,0.636565,-0.204005,-2.82576,0.653248,-0.196642,-2.83975,0.635598,-0.168425,-2.83566,0.640748,-0.174976,-2.83054,0.647213,-0.196642,-2.83975,0.635598,-0.167603,-2.83878,0.636817,-0.168425,-2.83566,0.640748,-0.217892,-2.8873,0.575568,-0.204098,-2.8479,0.6253,-0.203044,-2.83898,0.636565,-0.204098,-2.8479,0.6253,-0.196642,-2.83975,0.635598,-0.203044,-2.83898,0.636565,-0.204098,-2.8479,0.6253,-0.188339,-2.84265,0.631928,-0.196642,-2.83975,0.635598,-0.188339,-2.84265,0.631928,-0.179725,-2.84101,0.634,-0.196642,-2.83975,0.635598,-0.179725,-2.84101,0.634,-0.167603,-2.83878,0.636817,-0.196642,-2.83975,0.635598,-0.179725,-2.84101,0.634,-0.160266,-2.84899,0.623927,-0.167603,-2.83878,0.636817,-0.173392,-2.84497,0.629,-0.160266,-2.84899,0.623927,-0.179725,-2.84101,0.634,-0.166667,-2.85953,0.61062,-0.160266,-2.84899,0.623927,-0.173392,-2.84497,0.629,-0.166667,-2.85953,0.61062,-0.151466,-2.86852,0.599276,-0.160266,-2.84899,0.623927,-0.217892,-2.8873,0.575568,-0.204386,-2.88813,0.574525,-0.204098,-2.8479,0.6253,-0.161385,-2.87807,0.587229,-0.161385,-2.87807,0.587229,-0.151451,-2.888,0.574694,-0.151466,-2.86852,0.599276,-0.164215,-2.88241,0.581746,-0.164247,-2.88789,0.574827,-0.151451,-2.888,0.574694,-0.164215,-2.88241,0.581746,-0.158301,-2.8896,0.572674,-0.151451,-2.888,0.574694,-0.164247,-2.88789,0.574827,-0.217892,-2.8873,0.575568,-0.209174,-2.88995,0.572228,-0.204386,-2.88813,0.574525,-0.317449,-2.80959,0.673658,-0.264188,-2.80886,0.67458,-0.283083,-2.80641,0.677671,-0.317449,-2.80959,0.673658,-0.289255,-2.81069,0.67227,-0.264188,-2.80886,0.67458,-0.289255,-2.81069,0.67227,-0.254711,-2.81289,0.669492,-0.264188,-2.80886,0.67458,-0.317449,-2.80959,0.673658,-0.301701,-2.81192,0.670715,-0.289255,-2.81069,0.67227,-0.272621,-2.81399,0.668101,-0.254711,-2.81289,0.669492,-0.289255,-2.81069,0.67227,-0.266217,-2.82116,0.659055,-0.254711,-2.81289,0.669492,-0.272621,-2.81399,0.668101,-0.335477,-2.82119,0.65902,-0.301701,-2.81192,0.670715,-0.317449,-2.80959,0.673658,-0.335477,-2.82119,0.65902,-0.319183,-2.82464,0.654659,-0.301701,-2.81192,0.670715,-0.266217,-2.82116,0.659055,-0.249963,-2.82277,0.657021,-0.254711,-2.81289,0.669492,-0.275001,-2.82224,0.657692,-0.249963,-2.82277,0.657021,-0.266217,-2.82116,0.659055,-0.283658,-2.82512,0.654054,-0.249963,-2.82277,0.657021,-0.275001,-2.82224,0.657692,-0.339775,-2.82912,0.64901,-0.319183,-2.82464,0.654659,-0.335477,-2.82119,0.65902,-0.283658,-2.82512,0.654054,-0.257535,-2.83286,0.644282,-0.249963,-2.82277,0.657021,-0.339775,-2.82912,0.64901,-0.326251,-2.83544,0.641034,-0.319183,-2.82464,0.654659,-0.28148,-2.83255,0.644674,-0.257535,-2.83286,0.644282,-0.283658,-2.82512,0.654054,-0.344033,-2.8419,0.632879,-0.326251,-2.83544,0.641034,-0.339775,-2.82912,0.64901,-0.273587,-2.83552,0.640935,-0.257535,-2.83286,0.644282,-0.28148,-2.83255,0.644674,-0.344033,-2.8419,0.632879,-0.328988,-2.8505,0.622019,-0.326251,-2.83544,0.641034,-0.343145,-2.86577,0.602745,-0.328988,-2.8505,0.622019,-0.344033,-2.8419,0.632879,-0.343145,-2.86577,0.602745,-0.324233,-2.87093,0.596229,-0.328988,-2.8505,0.622019,-0.25841,-2.86128,0.608416,-0.245746,-2.86408,0.604882,-0.249119,-2.86062,0.609251,-0.269167,-2.87712,0.588425,-0.245746,-2.86408,0.604882,-0.25841,-2.86128,0.608416,-0.269167,-2.87712,0.588425,-0.246033,-2.87042,0.596875,-0.245746,-2.86408,0.604882,-0.337088,-2.87427,0.592015,-0.324233,-2.87093,0.596229,-0.343145,-2.86577,0.602745,-0.337088,-2.87427,0.592015,-0.318618,-2.87754,0.587886,-0.324233,-2.87093,0.596229,-0.269167,-2.87712,0.588425,-0.253748,-2.87934,0.585619,-0.246033,-2.87042,0.596875,-0.335323,-2.87745,0.588008,-0.318618,-2.87754,0.587886,-0.337088,-2.87427,0.592015,-0.333504,-2.87825,0.58699,-0.318618,-2.87754,0.587886,-0.335323,-2.87745,0.588008,-0.277266,-2.88337,0.580531,-0.253748,-2.87934,0.585619,-0.269167,-2.87712,0.588425,-0.330447,-2.88142,0.582995,-0.318618,-2.87754,0.587886,-0.333504,-2.87825,0.58699,-0.330447,-2.88142,0.582995,-0.304082,-2.88349,0.580382,-0.318618,-2.87754,0.587886,-0.277266,-2.88337,0.580531,-0.260573,-2.88377,0.580031,-0.253748,-2.87934,0.585619,-0.323375,-2.88528,0.578118,-0.304082,-2.88349,0.580382,-0.330447,-2.88142,0.582995,-0.323375,-2.88528,0.578118,-0.277266,-2.88337,0.580531,-0.304082,-2.88349,0.580382,-0.323375,-2.88528,0.578118,-0.260573,-2.88377,0.580031,-0.277266,-2.88337,0.580531,-0.323375,-2.88528,0.578118,-0.280517,-2.88958,0.572694,-0.260573,-2.88377,0.580031,-0.308585,-2.88836,0.574233,-0.280517,-2.88958,0.572694,-0.323375,-2.88528,0.578118,-0.387786,-2.81568,0.66598,-0.375861,-2.81698,0.664328,-0.37958,-2.81521,0.666564,-0.396427,-2.81853,0.662371,-0.375861,-2.81698,0.664328,-0.387786,-2.81568,0.66598,-0.397245,-2.82111,0.659118,-0.375861,-2.81698,0.664328,-0.396427,-2.81853,0.662371,-0.393302,-2.88012,0.58463,-0.375861,-2.81698,0.664328,-0.397245,-2.82111,0.659118,-0.393302,-2.88012,0.58463,-0.376438,-2.87913,0.585884,-0.375861,-2.81698,0.664328,-0.393302,-2.88012,0.58463,-0.370123,-2.88628,0.576856,-0.376438,-2.87913,0.585884,-0.394044,-2.88737,0.575487,-0.370123,-2.88628,0.576856,-0.393302,-2.88012,0.58463,-0.394044,-2.88737,0.575487,-0.376866,-2.88981,0.572406,-0.370123,-2.88628,0.576856,-0.385852,-2.88984,0.572369,-0.376866,-2.88981,0.572406,-0.394044,-2.88737,0.575487,-0.390233,-2.79956,0.686325,-0.37865,-2.8019,0.683371,-0.383833,-2.79915,0.686837,-0.394875,-2.80459,0.679969,-0.37865,-2.8019,0.683371,-0.390233,-2.79956,0.686325,-0.394875,-2.80459,0.679969,-0.378582,-2.80718,0.676695,-0.37865,-2.8019,0.683371,-0.391373,-2.80924,0.674107,-0.378582,-2.80718,0.676695,-0.394875,-2.80459,0.679969,-0.391373,-2.80924,0.674107,-0.384268,-2.81056,0.672433,-0.378582,-2.80718,0.676695,-0.488539,-2.80899,0.674418,-0.476809,-2.80762,0.676152,-0.483641,-2.80657,0.677477,-0.488539,-2.80899,0.674418,-0.472309,-2.81145,0.671318,-0.476809,-2.80762,0.676152,-0.488539,-2.80899,0.674418,-0.475186,-2.83278,0.644383,-0.472309,-2.81145,0.671318,-0.488539,-2.80899,0.674418,-0.47643,-2.87373,0.592697,-0.475186,-2.83278,0.644383,-0.490038,-2.88532,0.578067,-0.47643,-2.87373,0.592697,-0.488539,-2.80899,0.674418,-0.490038,-2.88532,0.578067,-0.470988,-2.88081,0.58376,-0.47643,-2.87373,0.592697,-0.470988,-2.88081,0.58376,-0.423015,-2.88084,0.58373,-0.443422,-2.87985,0.584978,-0.490038,-2.88532,0.578067,-0.423015,-2.88084,0.58373,-0.470988,-2.88081,0.58376,-0.490038,-2.88532,0.578067,-0.423068,-2.88695,0.576019,-0.423015,-2.88084,0.58373,-0.46249,-2.88764,0.575143,-0.423068,-2.88695,0.576019,-0.490038,-2.88532,0.578067,-0.485241,-2.88883,0.573638,-0.46249,-2.88764,0.575143,-0.490038,-2.88532,0.578067,-0.430519,-2.88908,0.573322,-0.423068,-2.88695,0.576019,-0.46249,-2.88764,0.575143,-0.619761,-2.77196,0.721156,-0.567782,-2.77193,0.721193,-0.593028,-2.7702,0.723381,-0.63743,-2.77545,0.716753,-0.567782,-2.77193,0.721193,-0.619761,-2.77196,0.721156,-0.599274,-2.77523,0.717029,-0.567782,-2.77193,0.721193,-0.63743,-2.77545,0.716753,-0.63743,-2.77545,0.716753,-0.616297,-2.77784,0.713735,-0.599274,-2.77523,0.717029,-0.599274,-2.77523,0.717029,-0.549234,-2.77827,0.713189,-0.567782,-2.77193,0.721193,-0.576818,-2.77875,0.712589,-0.549234,-2.77827,0.713189,-0.599274,-2.77523,0.717029,-0.660976,-2.78915,0.699457,-0.616297,-2.77784,0.713735,-0.63743,-2.77545,0.716753,-0.562876,-2.78691,0.702288,-0.549234,-2.77827,0.713189,-0.576818,-2.77875,0.712589,-0.562876,-2.78691,0.702288,-0.540497,-2.79198,0.695884,-0.549234,-2.77827,0.713189,-0.660976,-2.78915,0.699457,-0.636122,-2.79055,0.697689,-0.616297,-2.77784,0.713735,-0.564831,-2.79262,0.695074,-0.540497,-2.79198,0.695884,-0.562876,-2.78691,0.702288,-0.584948,-2.79512,0.691923,-0.540497,-2.79198,0.695884,-0.564831,-2.79262,0.695074,-0.660976,-2.78915,0.699457,-0.641129,-2.79625,0.690499,-0.636122,-2.79055,0.697689,-0.669281,-2.80291,0.682087,-0.641129,-2.79625,0.690499,-0.660976,-2.78915,0.699457,-0.58822,-2.8025,0.682614,-0.540497,-2.79198,0.695884,-0.584948,-2.79512,0.691923,-0.58822,-2.8025,0.682614,-0.545835,-2.80248,0.682635,-0.540497,-2.79198,0.695884,-0.669281,-2.80291,0.682087,-0.651051,-2.8113,0.671506,-0.641129,-2.79625,0.690499,-0.58822,-2.8025,0.682614,-0.555217,-2.80854,0.674989,-0.545835,-2.80248,0.682635,-0.581896,-2.80881,0.674645,-0.555217,-2.80854,0.674989,-0.58822,-2.8025,0.682614,-0.674645,-2.8149,0.66696,-0.651051,-2.8113,0.671506,-0.669281,-2.80291,0.682087,-0.572361,-2.81135,0.671435,-0.555217,-2.80854,0.674989,-0.581896,-2.80881,0.674645,-0.674645,-2.8149,0.66696,-0.655758,-2.83152,0.645974,-0.651051,-2.8113,0.671506,-0.67571,-2.83878,0.636819,-0.655758,-2.83152,0.645974,-0.674645,-2.8149,0.66696,-0.67307,-2.85786,0.61273,-0.67307,-2.85786,0.61273,-0.648337,-2.86383,0.605197,-0.655758,-2.83152,0.645974,-0.552211,-2.85056,0.621942,-0.535022,-2.85313,0.6187,-0.540787,-2.84818,0.624952,-0.556293,-2.85784,0.612763,-0.535022,-2.85313,0.6187,-0.552211,-2.85056,0.621942,-0.556293,-2.85784,0.612763,-0.535634,-2.86321,0.605982,-0.535022,-2.85313,0.6187,-0.664922,-2.86767,0.600352,-0.648337,-2.86383,0.605197,-0.67307,-2.85786,0.61273,-0.567549,-2.8728,0.593873,-0.535634,-2.86321,0.605982,-0.556293,-2.85784,0.612763,-0.664922,-2.86767,0.600352,-0.639687,-2.87368,0.592767,-0.648337,-2.86383,0.605197,-0.663495,-2.87151,0.59551,-0.639687,-2.87368,0.592767,-0.664922,-2.86767,0.600352,-0.567549,-2.8728,0.593873,-0.548269,-2.87676,0.588872,-0.535634,-2.86321,0.605982,-0.575367,-2.87832,0.586901,-0.548269,-2.87676,0.588872,-0.567549,-2.8728,0.593873,-0.659629,-2.87519,0.590856,-0.639687,-2.87368,0.592767,-0.663495,-2.87151,0.59551,-0.655902,-2.87738,0.588091,-0.639687,-2.87368,0.592767,-0.659629,-2.87519,0.590856,-0.655056,-2.87901,0.586036,-0.639687,-2.87368,0.592767,-0.655902,-2.87738,0.588091,-0.655056,-2.87901,0.586036,-0.617494,-2.88224,0.581964,-0.639687,-2.87368,0.592767,-0.580976,-2.88159,0.582778,-0.548269,-2.87676,0.588872,-0.575367,-2.87832,0.586901,-0.580976,-2.88159,0.582778,-0.56006,-2.88308,0.580894,-0.548269,-2.87676,0.588872,-0.647131,-2.88307,0.580913,-0.617494,-2.88224,0.581964,-0.655056,-2.87901,0.586036,-0.617494,-2.88224,0.581964,-0.56006,-2.88308,0.580894,-0.580976,-2.88159,0.582778,-0.647131,-2.88307,0.580913,-0.56006,-2.88308,0.580894,-0.617494,-2.88224,0.581964,-0.627682,-2.88747,0.575361,-0.56006,-2.88308,0.580894,-0.647131,-2.88307,0.580913,-0.627682,-2.88747,0.575361,-0.586657,-2.89007,0.57207,-0.56006,-2.88308,0.580894}; -const GLfloat gameover_normals[] = {2e-06,-0.783818,0.62099,2e-06,-0.783818,0.62099,2e-06,-0.783818,0.62099,2e-06,-0.783818,0.62099,-1e-06,-0.783827,0.620979,-1e-06,-0.783827,0.620979,-1e-06,-0.783827,0.620979,-0,-0.783828,0.620978,-0,-0.783828,0.620978,-0,-0.783828,0.620978,3e-06,-0.78382,0.620989,3e-06,-0.78382,0.620989,3e-06,-0.78382,0.620989,4e-06,-0.783832,0.620973,4e-06,-0.783832,0.620973,4e-06,-0.783832,0.620973,-1e-06,-0.783844,0.620958,-1e-06,-0.783844,0.620958,-1e-06,-0.783844,0.620958,-1e-06,-0.783828,0.620979,-1e-06,-0.783828,0.620979,-1e-06,-0.783828,0.620979,-2e-06,-0.783833,0.620971,-2e-06,-0.783833,0.620971,-2e-06,-0.783833,0.620971,-1e-06,-0.783833,0.620971,-1e-06,-0.783833,0.620971,-1e-06,-0.783833,0.620971,-1e-06,-0.783837,0.620967,-1e-06,-0.783837,0.620967,-1e-06,-0.783837,0.620967,-5e-06,-0.783831,0.620974,-5e-06,-0.783831,0.620974,-5e-06,-0.783831,0.620974,1e-06,-0.783807,0.621004,1e-06,-0.783807,0.621004,1e-06,-0.783807,0.621004,-3e-06,-0.783827,0.620979,-3e-06,-0.783827,0.620979,-3e-06,-0.783827,0.620979,1e-06,-0.78383,0.620975,1e-06,-0.78383,0.620975,1e-06,-0.78383,0.620975,-1e-05,-0.783821,0.620987,-1e-05,-0.783821,0.620987,-1e-05,-0.783821,0.620987,-4e-06,-0.783821,0.620987,-4e-06,-0.783821,0.620987,-4e-06,-0.783821,0.620987,-4e-06,-0.78382,0.620988,-4e-06,-0.78382,0.620988,-4e-06,-0.78382,0.620988,4e-06,-0.783829,0.620976,4e-06,-0.783829,0.620976,4e-06,-0.783829,0.620976,2e-06,-0.783821,0.620986,2e-06,-0.783821,0.620986,2e-06,-0.783821,0.620986,7e-06,-0.783823,0.620985,7e-06,-0.783823,0.620985,7e-06,-0.783823,0.620985,-1e-06,-0.783809,0.621002,-1e-06,-0.783809,0.621002,-1e-06,-0.783809,0.621002,1e-06,-0.783836,0.620969,1e-06,-0.783836,0.620969,1e-06,-0.783836,0.620969,1e-06,-0.783822,0.620986,1e-06,-0.783822,0.620986,1e-06,-0.783822,0.620986,-1e-06,-0.783832,0.620972,-1e-06,-0.783832,0.620972,-1e-06,-0.783832,0.620972,-1e-06,-0.783839,0.620964,-1e-06,-0.783839,0.620964,-1e-06,-0.783839,0.620964,1e-06,-0.783814,0.620995,1e-06,-0.783814,0.620995,1e-06,-0.783814,0.620995,-5e-06,-0.783827,0.620979,-5e-06,-0.783827,0.620979,-5e-06,-0.783827,0.620979,-7e-06,-0.783826,0.620981,-7e-06,-0.783826,0.620981,-7e-06,-0.783826,0.620981,-7e-06,-0.783827,0.62098,-7e-06,-0.783827,0.62098,-7e-06,-0.783827,0.62098,-4e-06,-0.783828,0.620978,-4e-06,-0.783828,0.620978,-4e-06,-0.783828,0.620978,-1.7e-05,-0.78384,0.620963,-1.7e-05,-0.78384,0.620963,-1.7e-05,-0.78384,0.620963,0,-0.783821,0.620987,0,-0.783821,0.620987,0,-0.783821,0.620987,-1.3e-05,-0.783827,0.620979,-1.3e-05,-0.783827,0.620979,-1.3e-05,-0.783827,0.620979,8e-06,-0.783823,0.620985,8e-06,-0.783823,0.620985,8e-06,-0.783823,0.620985,-1e-06,-0.78382,0.620989,-1e-06,-0.78382,0.620989,-1e-06,-0.78382,0.620989,2e-06,-0.783826,0.62098,2e-06,-0.783826,0.62098,2e-06,-0.783826,0.62098,9e-06,-0.783811,0.621,9e-06,-0.783811,0.621,9e-06,-0.783811,0.621,1e-06,-0.783828,0.620978,1e-06,-0.783828,0.620978,1e-06,-0.783828,0.620978,3.4e-05,-0.783757,0.621067,3.4e-05,-0.783757,0.621067,3.4e-05,-0.783757,0.621067,1e-06,-0.783831,0.620974,1e-06,-0.783831,0.620974,1e-06,-0.783831,0.620974,-2e-06,-0.783833,0.620972,-2e-06,-0.783833,0.620972,-2e-06,-0.783833,0.620972,2e-06,-0.783839,0.620964,2e-06,-0.783839,0.620964,2e-06,-0.783839,0.620964,-5e-06,-0.783816,0.620993,-5e-06,-0.783816,0.620993,-5e-06,-0.783816,0.620993,-6e-06,-0.783863,0.620934,-6e-06,-0.783863,0.620934,-6e-06,-0.783863,0.620934,-0,-0.783814,0.620996,-0,-0.783814,0.620996,-0,-0.783814,0.620996,-0,-0.78382,0.620988,-0,-0.78382,0.620988,-0,-0.78382,0.620988,-0,-0.783821,0.620987,-0,-0.783821,0.620987,-0,-0.783821,0.620987,-0,-0.783822,0.620986,-0,-0.783822,0.620986,-0,-0.783822,0.620986,-2e-06,-0.783811,0.620999,-2e-06,-0.783811,0.620999,-2e-06,-0.783811,0.620999,-2e-06,-0.783828,0.620978,-2e-06,-0.783828,0.620978,-2e-06,-0.783828,0.620978,-3e-06,-0.783905,0.620881,-3e-06,-0.783905,0.620881,-3e-06,-0.783905,0.620881,3e-06,-0.783821,0.620987,3e-06,-0.783821,0.620987,3e-06,-0.783821,0.620987,-9e-06,-0.783798,0.621015,-9e-06,-0.783798,0.621015,-9e-06,-0.783798,0.621015,-2.2e-05,-0.783883,0.620908,-2.2e-05,-0.783883,0.620908,-2.2e-05,-0.783883,0.620908,-0,-0.783824,0.620983,-0,-0.783824,0.620983,-0,-0.783824,0.620983,-1e-06,-0.783826,0.620981,-1e-06,-0.783826,0.620981,-1e-06,-0.783826,0.620981,-3e-06,-0.783823,0.620984,-3e-06,-0.783823,0.620984,-3e-06,-0.783823,0.620984,2e-06,-0.783826,0.620981,2e-06,-0.783826,0.620981,2e-06,-0.783826,0.620981,-5e-06,-0.783828,0.620978,-5e-06,-0.783828,0.620978,-5e-06,-0.783828,0.620978,1.3e-05,-0.783833,0.620971,1.3e-05,-0.783833,0.620971,1.3e-05,-0.783833,0.620971,7e-06,-0.783819,0.62099,7e-06,-0.783819,0.62099,7e-06,-0.783819,0.62099,8e-06,-0.783823,0.620984,8e-06,-0.783823,0.620984,8e-06,-0.783823,0.620984,-4e-06,-0.78383,0.620976,-4e-06,-0.78383,0.620976,-4e-06,-0.78383,0.620976,2.8e-05,-0.783848,0.620952,2.8e-05,-0.783848,0.620952,2.8e-05,-0.783848,0.620952,-4e-06,-0.78383,0.620976,-4e-06,-0.783822,0.620985,-4e-06,-0.783822,0.620985,-4e-06,-0.783822,0.620985,-1e-06,-0.783826,0.62098,-1e-06,-0.783826,0.62098,-1e-06,-0.783826,0.62098,-2e-06,-0.783821,0.620987,-2e-06,-0.783821,0.620987,-2e-06,-0.783821,0.620987,-2e-06,-0.783824,0.620983,-2e-06,-0.783824,0.620983,-2e-06,-0.783824,0.620983,4e-06,-0.783827,0.62098,4e-06,-0.783827,0.62098,4e-06,-0.783827,0.62098,-2e-06,-0.783824,0.620983,-2e-06,-0.783829,0.620977,-2e-06,-0.783829,0.620977,-2e-06,-0.783829,0.620977,9e-06,-0.783828,0.620978,9e-06,-0.783828,0.620978,9e-06,-0.783828,0.620978,9e-06,-0.783828,0.620978,-4e-06,-0.783826,0.62098,-4e-06,-0.783826,0.62098,-4e-06,-0.783826,0.62098,-9e-06,-0.783818,0.62099,-9e-06,-0.783818,0.62099,-9e-06,-0.783818,0.62099,3e-06,-0.783822,0.620985,3e-06,-0.783822,0.620985,3e-06,-0.783822,0.620985,1e-06,-0.783835,0.620969,1e-06,-0.783835,0.620969,1e-06,-0.783835,0.620969,0,-0.783821,0.620987,0,-0.783821,0.620987,0,-0.783821,0.620987,1.2e-05,-0.783815,0.620995,1.2e-05,-0.783815,0.620995,1.2e-05,-0.783815,0.620995,4e-06,-0.783835,0.620969,4e-06,-0.783835,0.620969,4e-06,-0.783835,0.620969,2e-06,-0.783822,0.620985,2e-06,-0.783822,0.620985,2e-06,-0.783822,0.620985,8e-06,-0.783824,0.620983,8e-06,-0.783824,0.620983,8e-06,-0.783824,0.620983,4e-06,-0.783829,0.620977,4e-06,-0.783829,0.620977,4e-06,-0.783829,0.620977,2e-06,-0.78382,0.620988,2e-06,-0.78382,0.620988,2e-06,-0.78382,0.620988,1e-06,-0.783826,0.620981,1e-06,-0.783826,0.620981,1e-06,-0.783826,0.620981,1e-06,-0.783824,0.620983,1e-06,-0.783824,0.620983,1e-06,-0.783824,0.620983,4e-06,-0.783827,0.620979,4e-06,-0.783827,0.620979,4e-06,-0.783827,0.620979,-1.5e-05,-0.783817,0.620992,-1.5e-05,-0.783817,0.620992,-1.5e-05,-0.783817,0.620992,3e-06,-0.78383,0.620976,3e-06,-0.78383,0.620976,3e-06,-0.78383,0.620976,-1e-06,-0.783818,0.620991,-1e-06,-0.783818,0.620991,-1e-06,-0.783818,0.620991,-0,-0.783825,0.620982,-0,-0.783825,0.620982,-0,-0.783825,0.620982,-5e-06,-0.783828,0.620978,-5e-06,-0.783828,0.620978,-5e-06,-0.783828,0.620978,4e-06,-0.783812,0.620998,4e-06,-0.783812,0.620998,4e-06,-0.783812,0.620998,4e-06,-0.783843,0.620959,4e-06,-0.783843,0.620959,4e-06,-0.783843,0.620959,-2e-06,-0.78383,0.620975,-2e-06,-0.78383,0.620975,-2e-06,-0.78383,0.620975,6e-06,-0.783819,0.620989,6e-06,-0.783819,0.620989,6e-06,-0.783819,0.620989,2e-06,-0.783824,0.620983,2e-06,-0.783824,0.620983,2e-06,-0.783824,0.620983,-2e-06,-0.783823,0.620985,-2e-06,-0.783823,0.620985,-2e-06,-0.783823,0.620985,3e-06,-0.783817,0.620992,3e-06,-0.783817,0.620992,3e-06,-0.783817,0.620992,0,-0.783825,0.620982,0,-0.783825,0.620982,0,-0.783825,0.620982,-3e-06,-0.783827,0.620979,-3e-06,-0.783827,0.620979,-3e-06,-0.783827,0.620979,-2e-06,-0.783821,0.620986,-2e-06,-0.783821,0.620986,-2e-06,-0.783821,0.620986,-1e-05,-0.783826,0.62098,-1e-05,-0.783826,0.62098,-1e-05,-0.783826,0.62098,-3e-06,-0.783827,0.620979,-1.1e-05,-0.783825,0.620982,-1.1e-05,-0.783825,0.620982,-1.1e-05,-0.783825,0.620982,-1.2e-05,-0.783826,0.62098,-1.2e-05,-0.783826,0.62098,-1.2e-05,-0.783826,0.62098,1e-06,-0.783834,0.620971,1e-06,-0.783834,0.620971,1e-06,-0.783834,0.620971,1e-06,-0.783824,0.620983,1e-06,-0.783824,0.620983,1e-06,-0.783824,0.620983,6e-06,-0.783828,0.620979,6e-06,-0.783828,0.620979,6e-06,-0.783828,0.620979,3e-06,-0.783823,0.620985,3e-06,-0.783823,0.620985,3e-06,-0.783823,0.620985,0,-0.783826,0.62098,0,-0.783826,0.62098,0,-0.783826,0.62098,0,-0.783827,0.620979,0,-0.783827,0.620979,0,-0.783827,0.620979,2e-06,-0.783823,0.620984,2e-06,-0.783823,0.620984,2e-06,-0.783823,0.620984,0,-0.78382,0.620988,0,-0.78382,0.620988,0,-0.78382,0.620988,3e-06,-0.783828,0.620978,3e-06,-0.783828,0.620978,3e-06,-0.783828,0.620978,1e-06,-0.783831,0.620974,1e-06,-0.783831,0.620974,1e-06,-0.783831,0.620974,0,-0.783827,0.620979,0,-0.783827,0.620979,-5e-06,-0.783821,0.620987,-5e-06,-0.783821,0.620987,-5e-06,-0.783821,0.620987,-3e-06,-0.783822,0.620985,-3e-06,-0.783822,0.620985,-3e-06,-0.783822,0.620985,-5.8e-05,-0.783795,0.62102,-5.8e-05,-0.783795,0.62102,-5.8e-05,-0.783795,0.62102,-4e-06,-0.783825,0.620981,-4e-06,-0.783825,0.620981,-4e-06,-0.783825,0.620981,-3e-06,-0.783826,0.620981,-3e-06,-0.783826,0.620981,-3e-06,-0.783826,0.620981,-3e-06,-0.783826,0.62098,-3e-06,-0.783826,0.62098,-3e-06,-0.783826,0.62098,-8e-06,-0.783827,0.62098,-8e-06,-0.783827,0.62098,-8e-06,-0.783827,0.62098,-3e-06,-0.783827,0.620979,-3e-06,-0.783827,0.620979,-3e-06,-0.783827,0.620979,-5e-06,-0.783824,0.620984,-5e-06,-0.783824,0.620984,-5e-06,-0.783824,0.620984,1e-06,-0.783835,0.620969,1e-06,-0.783835,0.620969,1e-06,-0.783835,0.620969,7e-06,-0.783823,0.620985,7e-06,-0.783823,0.620985,7e-06,-0.783823,0.620985,-4e-06,-0.783825,0.620982,-4e-06,-0.783825,0.620982,-4e-06,-0.783825,0.620982,6e-06,-0.78383,0.620975,6e-06,-0.78383,0.620975,6e-06,-0.78383,0.620975,-3e-06,-0.783825,0.620982,-3e-06,-0.783825,0.620982,-3e-06,-0.783825,0.620982,-0,-0.783806,0.621006,-0,-0.783806,0.621006,-0,-0.783806,0.621006,-3e-06,-0.783825,0.620981,-3e-06,-0.783825,0.620981,-3e-06,-0.783825,0.620981,-1.9e-05,-0.78386,0.620938,-1.9e-05,-0.78386,0.620938,-1.9e-05,-0.78386,0.620938,6e-06,-0.783823,0.620984,6e-06,-0.783823,0.620984,6e-06,-0.783823,0.620984,-3e-06,-0.783825,0.620982,-3e-06,-0.783825,0.620982,-3e-06,-0.783816,0.620993,-3e-06,-0.783816,0.620993,-3e-06,-0.783816,0.620993,2e-06,-0.783829,0.620977,2e-06,-0.783829,0.620977,2e-06,-0.783829,0.620977,1e-06,-0.783843,0.620959,1e-06,-0.783843,0.620959,1e-06,-0.783843,0.620959,8e-06,-0.783824,0.620983,8e-06,-0.783824,0.620983,8e-06,-0.783824,0.620983,5e-06,-0.783837,0.620966,5e-06,-0.783837,0.620966,5e-06,-0.783837,0.620966,-1e-06,-0.783815,0.620994,-1e-06,-0.783815,0.620994,-1e-06,-0.783815,0.620994,-2e-06,-0.783828,0.620979,-2e-06,-0.783828,0.620979,-2e-06,-0.783828,0.620979,-0,-0.783845,0.620956,-0,-0.783845,0.620956,-0,-0.783845,0.620956,0,-0.783825,0.620982,0,-0.783825,0.620982,0,-0.783825,0.620982,-4e-06,-0.783826,0.62098,-4e-06,-0.783826,0.62098,-4e-06,-0.783826,0.62098,2e-06,-0.783821,0.620987,2e-06,-0.783821,0.620987,2e-06,-0.783821,0.620987,-3e-06,-0.783827,0.620979,-3e-06,-0.783827,0.620979,-3e-06,-0.783827,0.620979,1e-06,-0.78382,0.620988,1e-06,-0.78382,0.620988,1e-06,-0.78382,0.620988,-1e-06,-0.783822,0.620985,-1e-06,-0.783822,0.620985,-1e-06,-0.783822,0.620985,2e-06,-0.783829,0.620976,2e-06,-0.783829,0.620976,2e-06,-0.783829,0.620976,6e-06,-0.783819,0.620989,6e-06,-0.783819,0.620989,6e-06,-0.783819,0.620989,-2e-06,-0.783825,0.620982,-2e-06,-0.783825,0.620982,-2e-06,-0.783825,0.620982,1.4e-05,-0.783835,0.62097,1.4e-05,-0.783835,0.62097,1.4e-05,-0.783835,0.62097,6e-06,-0.783825,0.620982,6e-06,-0.783825,0.620982,6e-06,-0.783825,0.620982,-2e-06,-0.783828,0.620978,-2e-06,-0.783828,0.620978,-2e-06,-0.783828,0.620978,2e-06,-0.783848,0.620952,2e-06,-0.783848,0.620952,2e-06,-0.783848,0.620952,-0,-0.783824,0.620983,-0,-0.783824,0.620983,-0,-0.783824,0.620983,0,-0.783823,0.620984,0,-0.783823,0.620984,0,-0.783823,0.620984,-1e-06,-0.783815,0.620995,-1e-06,-0.783815,0.620995,-1e-06,-0.783815,0.620995,6e-06,-0.783827,0.620979,6e-06,-0.783827,0.620979,6e-06,-0.783827,0.620979,-2e-06,-0.783831,0.620974,-2e-06,-0.783831,0.620974,-2e-06,-0.783831,0.620974,-0,-0.783833,0.620972,-0,-0.783833,0.620972,-0,-0.783833,0.620972,-2e-06,-0.78383,0.620976,-2e-06,-0.78383,0.620976,-2e-06,-0.78383,0.620976,-3e-06,-0.783825,0.620981,-3e-06,-0.783825,0.620981,-3e-06,-0.783825,0.620981,-0,-0.783822,0.620985,-0,-0.783822,0.620985,-0,-0.783822,0.620985,4e-06,-0.783827,0.620979,4e-06,-0.783827,0.620979,4e-06,-0.783827,0.620979,1e-06,-0.783823,0.620984,1e-06,-0.783823,0.620984,1e-06,-0.783823,0.620984,6e-06,-0.783825,0.620982,6e-06,-0.783825,0.620982,6e-06,-0.783825,0.620982,-1e-06,-0.783821,0.620987,-1e-06,-0.783821,0.620987,-1e-06,-0.783821,0.620987,-1e-06,-0.783821,0.620987,-4e-06,-0.78382,0.620988,-4e-06,-0.78382,0.620988,-4e-06,-0.78382,0.620988,-2e-06,-0.783825,0.620982,-2e-06,-0.783825,0.620982,-2e-06,-0.783825,0.620982,-1e-06,-0.783831,0.620975,-1e-06,-0.783831,0.620975,-1e-06,-0.783831,0.620975,-2e-06,-0.783851,0.620949,-2e-06,-0.783851,0.620949,-2e-06,-0.783851,0.620949,4e-06,-0.783809,0.621002,4e-06,-0.783809,0.621002,4e-06,-0.783809,0.621002,5e-06,-0.78382,0.620988,5e-06,-0.78382,0.620988,5e-06,-0.78382,0.620988,-4e-06,-0.783829,0.620977,-4e-06,-0.783829,0.620977,-4e-06,-0.783829,0.620977,1.1e-05,-0.783834,0.62097,1.1e-05,-0.783834,0.62097,1.1e-05,-0.783834,0.62097,-4e-06,-0.783827,0.620979,-4e-06,-0.783827,0.620979,-4e-06,-0.783827,0.620979,-0,-0.78383,0.620976,-0,-0.78383,0.620976,-0,-0.78383,0.620976,1e-06,-0.783825,0.620982,1e-06,-0.783825,0.620982,1e-06,-0.783825,0.620982,1e-06,-0.783824,0.620984,1e-06,-0.783824,0.620984,1e-06,-0.783824,0.620984,-0,-0.783822,0.620985,-0,-0.783822,0.620985,-0,-0.783822,0.620985,6e-06,-0.783829,0.620977,6e-06,-0.783829,0.620977,6e-06,-0.783829,0.620977,-1.3e-05,-0.783838,0.620966,-1.3e-05,-0.783838,0.620966,-1.3e-05,-0.783838,0.620966,6e-06,-0.783817,0.620991,6e-06,-0.783817,0.620991,6e-06,-0.783817,0.620991,-4e-06,-0.783824,0.620983,-4e-06,-0.783824,0.620983,-4e-06,-0.783824,0.620983,7e-06,-0.783828,0.620978,7e-06,-0.783828,0.620978,7e-06,-0.783828,0.620978,6e-06,-0.783828,0.620978,6e-06,-0.783828,0.620978,6e-06,-0.783828,0.620978,9e-06,-0.783825,0.620982,9e-06,-0.783825,0.620982,9e-06,-0.783825,0.620982,9e-06,-0.783825,0.620981,9e-06,-0.783825,0.620981,9e-06,-0.783825,0.620981,6e-06,-0.783827,0.62098,6e-06,-0.783827,0.62098,6e-06,-0.783827,0.62098,-5e-06,-0.783824,0.620982,-5e-06,-0.783824,0.620982,-5e-06,-0.783824,0.620982,-2e-06,-0.783826,0.620981,-2e-06,-0.783826,0.620981,-2e-06,-0.783826,0.620981,-6e-06,-0.783827,0.62098,-6e-06,-0.783827,0.62098,-6e-06,-0.783827,0.62098,-8e-06,-0.783826,0.620981,-8e-06,-0.783826,0.620981,-8e-06,-0.783826,0.620981,-3e-06,-0.783823,0.620984,-3e-06,-0.783823,0.620984,-3e-06,-0.783823,0.620984,-4e-06,-0.783824,0.620984,-4e-06,-0.783824,0.620984,-4e-06,-0.783824,0.620984,-0,-0.783827,0.620979,-0,-0.783827,0.620979,-0,-0.783827,0.620979,7e-06,-0.783826,0.62098,7e-06,-0.783826,0.62098,7e-06,-0.783826,0.62098,1.2e-05,-0.783822,0.620986,1.2e-05,-0.783822,0.620986,1.2e-05,-0.783822,0.620986,7e-06,-0.783826,0.620981,7e-06,-0.783826,0.620981,7e-06,-0.783826,0.620981,9e-06,-0.783826,0.62098,9e-06,-0.783826,0.62098,9e-06,-0.783826,0.62098,-3e-06,-0.783828,0.620977,-3e-06,-0.783828,0.620977,-3e-06,-0.783828,0.620977,1e-05,-0.783818,0.620991,1e-05,-0.783818,0.620991,1e-05,-0.783818,0.620991,2e-06,-0.78383,0.620976,2e-06,-0.78383,0.620976,2e-06,-0.78383,0.620976,-8e-06,-0.783814,0.620996,-8e-06,-0.783814,0.620996,-8e-06,-0.783814,0.620996,-2e-06,-0.783823,0.620984,-2e-06,-0.783823,0.620984,-2e-06,-0.783823,0.620984,1e-06,-0.783829,0.620977,1e-06,-0.783829,0.620977,1e-06,-0.783829,0.620977,2e-06,-0.783811,0.621,2e-06,-0.783811,0.621,2e-06,-0.783811,0.621,3e-06,-0.783802,0.621011,3e-06,-0.783802,0.621011,3e-06,-0.783802,0.621011,2e-06,-0.783817,0.620992,2e-06,-0.783817,0.620992,2e-06,-0.783817,0.620992,-1.7e-05,-0.783771,0.621051,-1.7e-05,-0.783771,0.621051,-1.7e-05,-0.783771,0.621051,-1e-06,-0.783843,0.620959,-1e-06,-0.783843,0.620959,-1e-06,-0.783843,0.620959,-2e-06,-0.783817,0.620992,-2e-06,-0.783817,0.620992,-2e-06,-0.783817,0.620992,-3e-06,-0.783823,0.620984,-3e-06,-0.783823,0.620984,-3e-06,-0.783823,0.620984,1e-06,-0.783839,0.620964,1e-06,-0.783839,0.620964,1e-06,-0.783839,0.620964,2e-06,-0.783829,0.620977,2e-06,-0.783829,0.620977,2e-06,-0.783829,0.620977,3e-06,-0.783817,0.620992,3e-06,-0.783817,0.620992,3e-06,-0.783817,0.620992,2e-06,-0.783827,0.620979,2e-06,-0.783827,0.620979,2e-06,-0.783827,0.620979,-1e-06,-0.783822,0.620985,-1e-06,-0.783822,0.620985,-1e-06,-0.783822,0.620985,1e-06,-0.783833,0.620972,1e-06,-0.783833,0.620972,1e-06,-0.783833,0.620972,6e-06,-0.783828,0.620978,6e-06,-0.783828,0.620978,6e-06,-0.783828,0.620978,-4e-06,-0.78383,0.620975,-4e-06,-0.78383,0.620975,-4e-06,-0.78383,0.620975,2e-06,-0.783822,0.620985,2e-06,-0.783822,0.620985,2e-06,-0.783822,0.620985,-8e-06,-0.783826,0.62098,-8e-06,-0.783826,0.62098,-8e-06,-0.783826,0.62098,1e-06,-0.783824,0.620983,1e-06,-0.783824,0.620983,1e-06,-0.783824,0.620983,4e-06,-0.783828,0.620978,4e-06,-0.783828,0.620978,4e-06,-0.783828,0.620978,5e-06,-0.783818,0.62099,5e-06,-0.783818,0.62099,5e-06,-0.783818,0.62099,-1e-06,-0.783793,0.621022,-1e-06,-0.783793,0.621022,-1e-06,-0.783793,0.621022,0,-0.783842,0.620961,0,-0.783842,0.620961,0,-0.783842,0.620961,0,-0.783829,0.620977,0,-0.783829,0.620977,0,-0.783829,0.620977,-1e-06,-0.783836,0.620968,-1e-06,-0.783836,0.620968,-1e-06,-0.783836,0.620968,-1e-06,-0.7838,0.621013,-1e-06,-0.7838,0.621013,-1e-06,-0.7838,0.621013,-2e-06,-0.783814,0.620995,-2e-06,-0.783814,0.620995,-2e-06,-0.783814,0.620995,4e-06,-0.783823,0.620984,4e-06,-0.783823,0.620984,4e-06,-0.783823,0.620984,5e-06,-0.783826,0.62098,5e-06,-0.783826,0.62098,5e-06,-0.783826,0.62098,2e-06,-0.783829,0.620977,2e-06,-0.783829,0.620977,2e-06,-0.783829,0.620977,-3e-06,-0.783824,0.620983,-3e-06,-0.783824,0.620983,-3e-06,-0.783824,0.620983,-8e-06,-0.783828,0.620978,-8e-06,-0.783828,0.620978,-8e-06,-0.783828,0.620978,-4e-06,-0.783809,0.621002,-4e-06,-0.783809,0.621002,-4e-06,-0.783809,0.621002,-8e-06,-0.783826,0.62098,-8e-06,-0.783826,0.62098,-8e-06,-0.783826,0.62098,-7e-06,-0.783822,0.620986,-7e-06,-0.783822,0.620986,-7e-06,-0.783822,0.620986,-1e-06,-0.783828,0.620979,-1e-06,-0.783828,0.620979,-1e-06,-0.783828,0.620979,-6e-06,-0.783822,0.620986,-6e-06,-0.783822,0.620986,-6e-06,-0.783822,0.620986,-1e-06,-0.783823,0.620985,-1e-06,-0.783823,0.620985,-1e-06,-0.783823,0.620985,-7e-06,-0.783818,0.620991,-7e-06,-0.783818,0.620991,-7e-06,-0.783818,0.620991,-0,-0.783832,0.620974,-0,-0.783832,0.620974,-0,-0.783832,0.620974,-3.4e-05,-0.7839,0.620887,-3.4e-05,-0.7839,0.620887,-3.4e-05,-0.7839,0.620887,2e-06,-0.783828,0.620977,2e-06,-0.783828,0.620977,2e-06,-0.783828,0.620977,-0,-0.783825,0.620982,-0,-0.783825,0.620982,-0,-0.783825,0.620982,2e-06,-0.783828,0.620978,2e-06,-0.783828,0.620978,2e-06,-0.783828,0.620978,-0,-0.783815,0.620995,-0,-0.783815,0.620995,-0,-0.783815,0.620995,-6e-06,-0.783825,0.620981,-6e-06,-0.783825,0.620981,-6e-06,-0.783825,0.620981,-5e-06,-0.783809,0.621002,-5e-06,-0.783809,0.621002,-5e-06,-0.783809,0.621002,-0,-0.783818,0.62099,-0,-0.783818,0.62099,-0,-0.783818,0.62099,-2e-06,-0.783836,0.620967,-2e-06,-0.783836,0.620967,-2e-06,-0.783836,0.620967,-5e-06,-0.783833,0.620972,-5e-06,-0.783833,0.620972,-5e-06,-0.783833,0.620972,-5e-06,-0.78383,0.620975,-5e-06,-0.78383,0.620975,-5e-06,-0.78383,0.620975,3e-06,-0.783825,0.620982,3e-06,-0.783825,0.620982,3e-06,-0.783825,0.620982,2e-06,-0.783825,0.620982,2e-06,-0.783825,0.620982,2e-06,-0.783825,0.620982,-4e-06,-0.783824,0.620983,-4e-06,-0.783824,0.620983,-4e-06,-0.783824,0.620983,3e-06,-0.783824,0.620984,3e-06,-0.783824,0.620984,3e-06,-0.783824,0.620984,1.1e-05,-0.783825,0.620982,1.1e-05,-0.783825,0.620982,1.1e-05,-0.783825,0.620982,-3e-06,-0.783827,0.620979,-3e-06,-0.783827,0.620979,-3e-06,-0.783827,0.620979,-3e-06,-0.783827,0.620979,-2e-06,-0.783827,0.620979,-2e-06,-0.783827,0.620979,-2e-06,-0.783827,0.620979,-2e-06,-0.783818,0.62099,-2e-06,-0.783818,0.62099,-2e-06,-0.783818,0.62099,7e-06,-0.783826,0.620981,7e-06,-0.783826,0.620981,7e-06,-0.783826,0.620981,-0,-0.783819,0.620989,-0,-0.783819,0.620989,-0,-0.783819,0.620989,8e-06,-0.783859,0.620939,8e-06,-0.783859,0.620939,8e-06,-0.783859,0.620939,5e-06,-0.783825,0.620982,5e-06,-0.783825,0.620982,5e-06,-0.783825,0.620982,3e-06,-0.783825,0.620982,3e-06,-0.783825,0.620982,3e-06,-0.783825,0.620982,4e-06,-0.783825,0.620982,4e-06,-0.783825,0.620982,4e-06,-0.783825,0.620982,-3.8e-05,-0.783843,0.620959,-3.8e-05,-0.783843,0.620959,-3.8e-05,-0.783843,0.620959,-1e-06,-0.783831,0.620974,-1e-06,-0.783831,0.620974,-1e-06,-0.783831,0.620974,-9e-06,-0.783824,0.620983,-9e-06,-0.783824,0.620983,-9e-06,-0.783824,0.620983,-1.2e-05,-0.783821,0.620987,-1.2e-05,-0.783821,0.620987,-1.2e-05,-0.783821,0.620987,-5e-06,-0.783828,0.620978,-5e-06,-0.783828,0.620978,-5e-06,-0.783828,0.620978,2e-06,-0.783818,0.62099,2e-06,-0.783818,0.62099,2e-06,-0.783818,0.62099,-1.3e-05,-0.783821,0.620986,-1.3e-05,-0.783821,0.620986,-1.3e-05,-0.783821,0.620986,-5e-06,-0.783828,0.620978,-5e-06,-0.783828,0.620978,-5e-06,-0.783828,0.620978,5e-06,-0.783816,0.620993,5e-06,-0.783816,0.620993,5e-06,-0.783816,0.620993,2e-06,-0.783832,0.620972,2e-06,-0.783832,0.620972,2e-06,-0.783832,0.620972,-0,-0.783817,0.620992,-0,-0.783817,0.620992,-0,-0.783817,0.620992,5e-06,-0.783825,0.620982,5e-06,-0.783825,0.620982,5e-06,-0.783825,0.620982,1e-06,-0.783836,0.620968,1e-06,-0.783836,0.620968,1e-06,-0.783836,0.620968,1e-06,-0.783833,0.620972,1e-06,-0.783833,0.620972,1e-06,-0.783833,0.620972,0,-0.783824,0.620983,0,-0.783824,0.620983,0,-0.783824,0.620983,1e-06,-0.783818,0.620991,1e-06,-0.783818,0.620991,1e-06,-0.783818,0.620991,-2e-06,-0.783828,0.620979,-2e-06,-0.783828,0.620979,-2e-06,-0.783828,0.620979,1e-06,-0.783849,0.620952,1e-06,-0.783849,0.620952,1e-06,-0.783849,0.620952,-1e-06,-0.783775,0.621045,-1e-06,-0.783775,0.621045,-1e-06,-0.783775,0.621045,4e-06,-0.783826,0.620981,4e-06,-0.783826,0.620981,4e-06,-0.783826,0.620981,1e-06,-0.783824,0.620983,1e-06,-0.783824,0.620983,1e-06,-0.783824,0.620983,4e-06,-0.783816,0.620993,4e-06,-0.783816,0.620993,4e-06,-0.783816,0.620993,3e-06,-0.783831,0.620974,3e-06,-0.783831,0.620974,3e-06,-0.783831,0.620974,-9e-06,-0.783808,0.621003,-9e-06,-0.783808,0.621003,-9e-06,-0.783808,0.621003,-6e-06,-0.783831,0.620974,-6e-06,-0.783831,0.620974,-6e-06,-0.783831,0.620974,8e-06,-0.783822,0.620986,8e-06,-0.783822,0.620986,8e-06,-0.783822,0.620986,1e-05,-0.783827,0.620979,1e-05,-0.783827,0.620979,1e-05,-0.783827,0.620979,7e-06,-0.783828,0.620978,7e-06,-0.783828,0.620978,7e-06,-0.783828,0.620978,4e-06,-0.783826,0.620981,4e-06,-0.783826,0.620981,4e-06,-0.783826,0.620981,-1e-06,-0.783828,0.620979,-1e-06,-0.783828,0.620979,-1e-06,-0.783828,0.620979,-2e-06,-0.783826,0.620981,-2e-06,-0.783826,0.620981,-2e-06,-0.783826,0.620981,-3.3e-05,-0.783826,0.62098,-3.3e-05,-0.783826,0.62098,-3.3e-05,-0.783826,0.62098,1e-05,-0.783826,0.62098,1e-05,-0.783826,0.62098,1e-05,-0.783826,0.62098,-0,-0.783819,0.62099,-0,-0.783819,0.62099,-0,-0.783819,0.62099,4e-06,-0.783821,0.620987,4e-06,-0.783821,0.620987,4e-06,-0.783821,0.620987,7e-06,-0.783834,0.62097,7e-06,-0.783834,0.62097,7e-06,-0.783834,0.62097,3e-06,-0.783823,0.620984,3e-06,-0.783823,0.620984,3e-06,-0.783823,0.620984,4e-06,-0.783822,0.620986,4e-06,-0.783822,0.620986,4e-06,-0.783822,0.620986,2e-06,-0.783823,0.620984,2e-06,-0.783823,0.620984,2e-06,-0.783823,0.620984,1e-06,-0.78383,0.620976,1e-06,-0.78383,0.620976,1e-06,-0.78383,0.620976,0,-0.783828,0.620977,0,-0.783828,0.620977,0,-0.783828,0.620977,1e-06,-0.78383,0.620976,1e-06,-0.78383,0.620976,1e-06,-0.783827,0.620979,1e-06,-0.783827,0.620979,1e-06,-0.783827,0.620979,-0,-0.783829,0.620977,-0,-0.783829,0.620977,-0,-0.783829,0.620977,-0,-0.78383,0.620975,-0,-0.78383,0.620975,-0,-0.78383,0.620975,0,-0.783833,0.620972,0,-0.783833,0.620972,0,-0.783833,0.620972,2e-06,-0.783827,0.62098,2e-06,-0.783827,0.62098,2e-06,-0.783827,0.62098,1e-06,-0.783824,0.620983,1e-06,-0.783824,0.620983,1e-06,-0.783824,0.620983,-5e-06,-0.783857,0.620941,-5e-06,-0.783857,0.620941,-5e-06,-0.783857,0.620941,1e-06,-0.783817,0.620991,1e-06,-0.783817,0.620991,1e-06,-0.783817,0.620991,5e-06,-0.783825,0.620981,5e-06,-0.783825,0.620981,5e-06,-0.783825,0.620981,1e-06,-0.783827,0.620979,1e-06,-0.783827,0.620979,1e-06,-0.783827,0.620979,6e-06,-0.783822,0.620985,6e-06,-0.783822,0.620985,6e-06,-0.783822,0.620985,2e-06,-0.783826,0.62098,2e-06,-0.783826,0.62098,2e-06,-0.783826,0.62098,6e-06,-0.783832,0.620973,6e-06,-0.783832,0.620973,6e-06,-0.783832,0.620973,-2e-06,-0.783827,0.62098,-2e-06,-0.783827,0.62098,-2e-06,-0.783827,0.62098,1e-06,-0.783825,0.620981,1e-06,-0.783825,0.620981,1e-06,-0.783825,0.620981,-1e-06,-0.783826,0.620981,-1e-06,-0.783826,0.620981,-1e-06,-0.783826,0.620981,-2e-06,-0.783824,0.620983,-2e-06,-0.783824,0.620983,-2e-06,-0.783824,0.620983,1e-06,-0.783823,0.620984,1e-06,-0.783823,0.620984,1e-06,-0.783823,0.620984,2e-06,-0.783832,0.620973,2e-06,-0.783832,0.620973,2e-06,-0.783832,0.620973,3e-06,-0.783825,0.620982,3e-06,-0.783825,0.620982,3e-06,-0.783825,0.620982,-4e-06,-0.783823,0.620984,-4e-06,-0.783823,0.620984,-4e-06,-0.783823,0.620984,1.5e-05,-0.783827,0.620979,1.5e-05,-0.783827,0.620979,1.5e-05,-0.783827,0.620979,-2e-06,-0.783816,0.620993,-2e-06,-0.783816,0.620993,-2e-06,-0.783816,0.620993,-8.7e-05,-0.783802,0.621011,-8.7e-05,-0.783802,0.621011,-8.7e-05,-0.783802,0.621011,-2e-06,-0.78382,0.620989,-2e-06,-0.78382,0.620989,-2e-06,-0.78382,0.620989,-5e-06,-0.783814,0.620995,-5e-06,-0.783814,0.620995,-5e-06,-0.783814,0.620995,-0,-0.783826,0.620981,-0,-0.783826,0.620981,-0,-0.783826,0.620981,5e-06,-0.783833,0.620972,5e-06,-0.783833,0.620972,5e-06,-0.783833,0.620972,5e-06,-0.783823,0.620984,5e-06,-0.783823,0.620984,5e-06,-0.783823,0.620984,1.2e-05,-0.783823,0.620984,1.2e-05,-0.783823,0.620984,1.2e-05,-0.783823,0.620984,9e-06,-0.78382,0.620989,9e-06,-0.78382,0.620989,9e-06,-0.78382,0.620989,6e-06,-0.783827,0.620979,6e-06,-0.783827,0.620979,6e-06,-0.783827,0.620979,5e-06,-0.783826,0.620981,5e-06,-0.783826,0.620981,5e-06,-0.783826,0.620981,1e-06,-0.783839,0.620964,1e-06,-0.783839,0.620964,1e-06,-0.783839,0.620964,-5e-06,-0.783829,0.620976,-5e-06,-0.783829,0.620976,-5e-06,-0.783829,0.620976,4e-06,-0.783825,0.620982,4e-06,-0.783825,0.620982,4e-06,-0.783825,0.620982,-1e-06,-0.783798,0.621016,-1e-06,-0.783798,0.621016,-1e-06,-0.783798,0.621016,-0,-0.783825,0.620982,-0,-0.783825,0.620982,-0,-0.783825,0.620982,-3e-06,-0.78383,0.620976,-3e-06,-0.78383,0.620976,-3e-06,-0.78383,0.620976,1e-06,-0.783824,0.620984,1e-06,-0.783824,0.620984,1e-06,-0.783824,0.620984,4e-06,-0.78384,0.620963,4e-06,-0.78384,0.620963,4e-06,-0.78384,0.620963,-4e-06,-0.783808,0.621003,-4e-06,-0.783808,0.621003,-4e-06,-0.783808,0.621003,-7e-06,-0.783821,0.620986,-7e-06,-0.783821,0.620986,-7e-06,-0.783821,0.620986,1.5e-05,-0.783839,0.620964,1.5e-05,-0.783839,0.620964,1.5e-05,-0.783839,0.620964,1.5e-05,-0.783838,0.620966,1.5e-05,-0.783838,0.620966,1.5e-05,-0.783838,0.620966,4e-06,-0.78383,0.620975,4e-06,-0.78383,0.620975,4e-06,-0.78383,0.620975,-2e-06,-0.783813,0.620997,-2e-06,-0.783813,0.620997,-2e-06,-0.783813,0.620997,-0,-0.78383,0.620976,-0,-0.78383,0.620976,-0,-0.78383,0.620976,-5e-06,-0.783828,0.620978,-5e-06,-0.783828,0.620978,-5e-06,-0.783828,0.620978,6e-06,-0.783808,0.621003,6e-06,-0.783808,0.621003,6e-06,-0.783808,0.621003,7e-06,-0.783824,0.620983,7e-06,-0.783824,0.620983,7e-06,-0.783824,0.620983,6e-06,-0.783821,0.620987,6e-06,-0.783821,0.620987,6e-06,-0.783821,0.620987,-5e-06,-0.783835,0.62097,-5e-06,-0.783835,0.62097,-5e-06,-0.783835,0.62097,1e-06,-0.783828,0.620977,1e-06,-0.783828,0.620977,1e-06,-0.783828,0.620977,3e-06,-0.783827,0.62098,3e-06,-0.783827,0.62098,3e-06,-0.783827,0.62098,-0,-0.783828,0.620978,-0,-0.783828,0.620978,-0,-0.783828,0.620978,8e-06,-0.783817,0.620991,8e-06,-0.783817,0.620991,8e-06,-0.783817,0.620991,1.1e-05,-0.783821,0.620987,1.1e-05,-0.783821,0.620987,1.1e-05,-0.783821,0.620987,3e-06,-0.783827,0.62098,1e-06,-0.783827,0.620979,1e-06,-0.783827,0.620979,1e-06,-0.783827,0.620979,1.4e-05,-0.783819,0.62099,1.4e-05,-0.783819,0.62099,1.4e-05,-0.783819,0.62099,-1e-06,-0.783826,0.620981,-1e-06,-0.783826,0.620981,-1e-06,-0.783826,0.620981,-0,-0.783825,0.620981,-0,-0.783825,0.620981,-0,-0.783825,0.620981,1.1e-05,-0.783833,0.620972,1.1e-05,-0.783833,0.620972,1.1e-05,-0.783833,0.620972,-2e-06,-0.783826,0.620981,-2e-06,-0.783826,0.620981,-2e-06,-0.783826,0.620981,8e-06,-0.783826,0.620981,8e-06,-0.783826,0.620981,8e-06,-0.783826,0.620981,-1e-06,-0.783837,0.620967,-1e-06,-0.783837,0.620967,-1e-06,-0.783837,0.620967,1e-06,-0.78383,0.620975,1e-06,-0.78383,0.620975,1e-06,-0.78383,0.620975,1e-06,-0.783821,0.620987,1e-06,-0.783821,0.620987,1e-06,-0.783821,0.620987,1e-06,-0.783821,0.620987,-2e-06,-0.783824,0.620983,-2e-06,-0.783824,0.620983,-2e-06,-0.783824,0.620983,-1e-06,-0.783824,0.620983,-1e-06,-0.783824,0.620983,-1e-06,-0.783824,0.620983,1e-06,-0.78382,0.620988,1e-06,-0.78382,0.620988,1e-06,-0.78382,0.620988,4e-06,-0.783831,0.620974,4e-06,-0.783831,0.620974,4e-06,-0.783831,0.620974,-3e-06,-0.783821,0.620987,-3e-06,-0.783821,0.620987,-3e-06,-0.783821,0.620987,1e-06,-0.783824,0.620983,1e-06,-0.783824,0.620983,1e-06,-0.783824,0.620983,2.6e-05,-0.783838,0.620966,2.6e-05,-0.783838,0.620966,2.6e-05,-0.783838,0.620966,1e-06,-0.783824,0.620983,0,-0.783824,0.620983,0,-0.783824,0.620983,0,-0.783824,0.620983,0,-0.783821,0.620987,0,-0.783821,0.620987,0,-0.783821,0.620987,1.2e-05,-0.783825,0.620982,1.2e-05,-0.783825,0.620982,1.2e-05,-0.783825,0.620982,-2e-06,-0.783826,0.620981,-2e-06,-0.783826,0.620981,-2e-06,-0.783826,0.620981,2e-06,-0.783834,0.62097,2e-06,-0.783834,0.62097,2e-06,-0.783834,0.62097,2e-06,-0.783833,0.620972,2e-06,-0.783833,0.620972,2e-06,-0.783833,0.620972,8e-06,-0.783821,0.620987,8e-06,-0.783821,0.620987,8e-06,-0.783821,0.620987,-3e-06,-0.783826,0.620981,-3e-06,-0.783826,0.620981,-3e-06,-0.783826,0.620981,1e-06,-0.783825,0.620982,1e-06,-0.783825,0.620982,1e-06,-0.783825,0.620982,7e-06,-0.783835,0.620969,7e-06,-0.783835,0.620969,7e-06,-0.783835,0.620969,-1e-06,-0.783806,0.621006,-1e-06,-0.783806,0.621006,-1e-06,-0.783806,0.621006,-1.9e-05,-0.783857,0.620942,-1.9e-05,-0.783857,0.620942,-1.9e-05,-0.783857,0.620942,0,-0.783828,0.620978,0,-0.783828,0.620978,0,-0.783828,0.620978,-0,-0.783829,0.620977,-0,-0.783829,0.620977,-0,-0.783829,0.620977,6e-06,-0.783821,0.620987,6e-06,-0.783821,0.620987,6e-06,-0.783821,0.620987,1e-06,-0.783817,0.620992,1e-06,-0.783817,0.620992,1e-06,-0.783817,0.620992,1e-06,-0.783818,0.62099,1e-06,-0.783818,0.62099,1e-06,-0.783818,0.62099,-3e-06,-0.783858,0.620941,-3e-06,-0.783858,0.620941,-3e-06,-0.783858,0.620941,9e-06,-0.783827,0.620979,9e-06,-0.783827,0.620979,9e-06,-0.783827,0.620979,-1e-06,-0.783835,0.620969,-1e-06,-0.783835,0.620969,-1e-06,-0.783835,0.620969,1e-06,-0.783817,0.620992,1e-06,-0.783817,0.620992,1e-06,-0.783817,0.620992,1e-06,-0.783821,0.620987,1e-06,-0.783821,0.620987,1e-06,-0.783821,0.620987,-0,-0.78385,0.62095,-0,-0.78385,0.62095,-0,-0.78385,0.62095,1e-06,-0.783845,0.620957,1e-06,-0.783845,0.620957,1e-06,-0.783845,0.620957,0,-0.783903,0.620883,0,-0.783903,0.620883,0,-0.783903,0.620883,-2e-06,-0.783804,0.621008,-2e-06,-0.783804,0.621008,-2e-06,-0.783804,0.621008,0,-0.783827,0.620979,0,-0.783827,0.620979,0,-0.783827,0.620979,1e-06,-0.783822,0.620985,1e-06,-0.783822,0.620985,1e-06,-0.783822,0.620985,-3e-06,-0.783832,0.620973,-3e-06,-0.783832,0.620973,-3e-06,-0.783832,0.620973,-2e-06,-0.783823,0.620985,-2e-06,-0.783823,0.620985,-2e-06,-0.783823,0.620985,4e-06,-0.783835,0.620969,4e-06,-0.783835,0.620969,4e-06,-0.783835,0.620969,3e-06,-0.78382,0.620989,3e-06,-0.78382,0.620989,3e-06,-0.78382,0.620989,1e-06,-0.783821,0.620987,1e-06,-0.783821,0.620987,1e-06,-0.783821,0.620987,4e-06,-0.783828,0.620978,4e-06,-0.783828,0.620978,4e-06,-0.783828,0.620978,-1e-06,-0.783831,0.620975,-1e-06,-0.783831,0.620975,-1e-06,-0.783831,0.620975,-5e-06,-0.783826,0.62098,-5e-06,-0.783826,0.62098,-5e-06,-0.783826,0.62098,6e-06,-0.783822,0.620985,6e-06,-0.783822,0.620985,6e-06,-0.783822,0.620985,6e-06,-0.783822,0.620986,6e-06,-0.783822,0.620986,6e-06,-0.783822,0.620986,7e-06,-0.783826,0.62098,7e-06,-0.783826,0.62098,7e-06,-0.783826,0.62098,2e-06,-0.783826,0.62098,2e-06,-0.783826,0.62098,2e-06,-0.783826,0.62098,4e-06,-0.783825,0.620982,4e-06,-0.783825,0.620982,4e-06,-0.783825,0.620982,3e-06,-0.783824,0.620983,3e-06,-0.783824,0.620983,3e-06,-0.783824,0.620983,3e-06,-0.783824,0.620983,3e-06,-0.783824,0.620983,3e-06,-0.783824,0.620983,3e-06,-0.783823,0.620984,3e-06,-0.783823,0.620984,3e-06,-0.783823,0.620984,3e-06,-0.783821,0.620986,3e-06,-0.783821,0.620986,3e-06,-0.783821,0.620986,2e-06,-0.783824,0.620984,2e-06,-0.783824,0.620984,2e-06,-0.783824,0.620984,-1e-06,-0.783834,0.62097,-1e-06,-0.783834,0.62097,-1e-06,-0.783834,0.62097,-0,-0.783835,0.620969,-0,-0.783835,0.620969,-0,-0.783835,0.620969,-0,-0.783835,0.620969,-1e-06,-0.783824,0.620983,-1e-06,-0.783824,0.620983,-1e-06,-0.783824,0.620983,4e-06,-0.783812,0.620998,4e-06,-0.783812,0.620998,4e-06,-0.783812,0.620998,3e-06,-0.783825,0.620982,3e-06,-0.783825,0.620982,3e-06,-0.783825,0.620982,4e-06,-0.783839,0.620964,4e-06,-0.783839,0.620964,4e-06,-0.783839,0.620964,-0,-0.783825,0.620982,-0,-0.783825,0.620982,-0,-0.783825,0.620982,0,-0.783842,0.62096,0,-0.783842,0.62096,0,-0.783842,0.62096,1e-06,-0.783838,0.620966,1e-06,-0.783838,0.620966,1e-06,-0.783838,0.620966,2e-06,-0.783833,0.620971,2e-06,-0.783833,0.620971,2e-06,-0.783833,0.620971,1e-06,-0.783834,0.62097,1e-06,-0.783834,0.62097,1e-06,-0.783834,0.62097,9e-06,-0.783832,0.620973,9e-06,-0.783832,0.620973,9e-06,-0.783832,0.620973,-1e-06,-0.783828,0.620977,-1e-06,-0.783828,0.620977,-1e-06,-0.783828,0.620977,6e-06,-0.7838,0.621014,6e-06,-0.7838,0.621014,6e-06,-0.7838,0.621014,7e-06,-0.78382,0.620988,7e-06,-0.78382,0.620988,7e-06,-0.78382,0.620988,5e-06,-0.783816,0.620993,5e-06,-0.783816,0.620993,5e-06,-0.783816,0.620993,-6e-06,-0.783836,0.620968,-6e-06,-0.783836,0.620968,-6e-06,-0.783836,0.620968,-1e-06,-0.783832,0.620973,-1e-06,-0.783832,0.620973,-1e-06,-0.783832,0.620973,-7e-06,-0.783826,0.620981,-7e-06,-0.783826,0.620981,-7e-06,-0.783826,0.620981,3e-06,-0.78383,0.620976,3e-06,-0.78383,0.620976,3e-06,-0.78383,0.620976,-2e-06,-0.783821,0.620987,-2e-06,-0.783821,0.620987,-2e-06,-0.783821,0.620987,-2e-06,-0.783828,0.620978,-2e-06,-0.783828,0.620978,-2e-06,-0.783828,0.620978,-2e-06,-0.783823,0.620984,-2e-06,-0.783823,0.620984,-2e-06,-0.783823,0.620984,-0,-0.783826,0.62098,-0,-0.783826,0.62098,-0,-0.783826,0.62098,-0,-0.783816,0.620993,-0,-0.783816,0.620993,-0,-0.783816,0.620993,2e-06,-0.783825,0.620981,2e-06,-0.783825,0.620981,2e-06,-0.783825,0.620981,-4e-06,-0.783846,0.620955,-4e-06,-0.783846,0.620955,-4e-06,-0.783846,0.620955,4e-06,-0.783803,0.62101,4e-06,-0.783803,0.62101,4e-06,-0.783803,0.62101,4e-06,-0.783828,0.620979,4e-06,-0.783828,0.620979,4e-06,-0.783828,0.620979,-5e-06,-0.783822,0.620985,-5e-06,-0.783822,0.620985,-5e-06,-0.783822,0.620985,-5e-06,-0.783829,0.620976,-5e-06,-0.783829,0.620976,-5e-06,-0.783829,0.620976,-2e-06,-0.783824,0.620983,-2e-06,-0.783824,0.620983,-2e-06,-0.783824,0.620983,-1e-06,-0.783824,0.620984,-1e-06,-0.783824,0.620984,-1e-06,-0.783824,0.620984,-1e-06,-0.783822,0.620985,-1e-06,-0.783822,0.620985,-1e-06,-0.783822,0.620985,1e-06,-0.783829,0.620977,1e-06,-0.783829,0.620977,1e-06,-0.783829,0.620977,1e-06,-0.784089,0.620648,1e-06,-0.784089,0.620648,1e-06,-0.784089,0.620648,8e-06,-0.783832,0.620973,8e-06,-0.783832,0.620973,8e-06,-0.783832,0.620973,-4e-06,-0.783821,0.620987,-4e-06,-0.783821,0.620987,-4e-06,-0.783821,0.620987,0,-0.783825,0.620982,0,-0.783825,0.620982,0,-0.783825,0.620982,2e-06,-0.783826,0.620981,2e-06,-0.783826,0.620981,2e-06,-0.783826,0.620981,-2e-06,-0.783826,0.62098,-2e-06,-0.783826,0.62098,-2e-06,-0.783826,0.62098,5e-06,-0.783811,0.620999,5e-06,-0.783811,0.620999,5e-06,-0.783811,0.620999,1e-05,-0.783827,0.620979,1e-05,-0.783827,0.620979,1e-05,-0.783827,0.620979,4e-06,-0.783833,0.620972,4e-06,-0.783833,0.620972,4e-06,-0.783833,0.620972,7e-06,-0.783825,0.620982,7e-06,-0.783825,0.620982,7e-06,-0.783825,0.620982,3e-06,-0.783836,0.620968,3e-06,-0.783836,0.620968,3e-06,-0.783836,0.620968,7e-06,-0.783799,0.621015,7e-06,-0.783799,0.621015,7e-06,-0.783799,0.621015,-0,-0.783824,0.620984,-0,-0.783824,0.620984,-0,-0.783824,0.620984,-4e-06,-0.783808,0.621004,-4e-06,-0.783808,0.621004,-4e-06,-0.783808,0.621004,1e-06,-0.783821,0.620987,1e-06,-0.783821,0.620987,1e-06,-0.783821,0.620987,-0,-0.783824,0.620983,-0,-0.783824,0.620983,-0,-0.783824,0.620983,-0,-0.783824,0.620983,-1e-06,-0.78384,0.620963,-1e-06,-0.78384,0.620963,-1e-06,-0.78384,0.620963,-3e-06,-0.783825,0.620982,-3e-06,-0.783825,0.620982,-3e-06,-0.783825,0.620982,-1e-06,-0.783803,0.621009,-1e-06,-0.783803,0.621009,-1e-06,-0.783803,0.621009,-0,-0.783867,0.620929,-0,-0.783867,0.620929,-0,-0.783867,0.620929,-4e-06,-0.7838,0.621013,-4e-06,-0.7838,0.621013,-4e-06,-0.7838,0.621013,0,-0.78382,0.620988,0,-0.78382,0.620988,0,-0.78382,0.620988,1e-06,-0.783822,0.620985,1e-06,-0.783822,0.620985,1e-06,-0.783822,0.620985,-0,-0.783837,0.620967,-0,-0.783837,0.620967,-0,-0.783837,0.620967,-0,-0.783826,0.620981,-0,-0.783826,0.620981,-0,-0.783826,0.620981,8e-06,-0.783844,0.620958,8e-06,-0.783844,0.620958,8e-06,-0.783844,0.620958,-2e-06,-0.783826,0.62098,-2e-06,-0.783826,0.62098,-2e-06,-0.783826,0.62098,-2e-06,-0.783826,0.62098,6e-06,-0.783828,0.620978,6e-06,-0.783828,0.620978,6e-06,-0.783828,0.620978,1e-06,-0.783831,0.620974,1e-06,-0.783831,0.620974,1e-06,-0.783831,0.620974,-2e-06,-0.783829,0.620976,-2e-06,-0.783829,0.620976,-2e-06,-0.783829,0.620976,-1e-06,-0.783824,0.620983,-1e-06,-0.783824,0.620983,-1e-06,-0.783824,0.620983,-1e-06,-0.783824,0.620983,2e-06,-0.783827,0.620979,2e-06,-0.783827,0.620979,2e-06,-0.783827,0.620979,-1e-06,-0.783824,0.620983,-4e-06,-0.783828,0.620978,-4e-06,-0.783828,0.620978,-4e-06,-0.783828,0.620978,-5e-06,-0.783827,0.620979,-5e-06,-0.783827,0.620979,-5e-06,-0.783827,0.620979,2e-06,-0.783826,0.620981,2e-06,-0.783826,0.620981,2e-06,-0.783826,0.620981,8e-06,-0.783823,0.620984,8e-06,-0.783823,0.620984,8e-06,-0.783823,0.620984,-4e-06,-0.783826,0.62098,-4e-06,-0.783826,0.62098,-4e-06,-0.783826,0.62098,-5e-06,-0.783825,0.620981,-5e-06,-0.783825,0.620981,-5e-06,-0.783825,0.620981,8e-06,-0.783824,0.620983,8e-06,-0.783824,0.620983,8e-06,-0.783824,0.620983,3e-06,-0.783826,0.62098,3e-06,-0.783826,0.62098,3e-06,-0.783826,0.62098,-4e-06,-0.783824,0.620983,-4e-06,-0.783824,0.620983,-4e-06,-0.783824,0.620983,-1e-06,-0.783826,0.620981,-1e-06,-0.783826,0.620981,-1e-06,-0.783826,0.620981,-1e-06,-0.783826,0.62098,-1e-06,-0.783826,0.62098,-1e-06,-0.783826,0.62098,4e-06,-0.783828,0.620978,4e-06,-0.783828,0.620978,4e-06,-0.783828,0.620978,0,-0.783832,0.620973,0,-0.783832,0.620973,0,-0.783832,0.620973,-1e-06,-0.783827,0.620979,-1e-06,-0.783827,0.620979,-1e-06,-0.783827,0.620979,-1e-06,-0.783826,0.62098,-1e-06,-0.783826,0.62098,1e-06,-0.783824,0.620983,1e-06,-0.783824,0.620983,1e-06,-0.783824,0.620983,2e-06,-0.783822,0.620986,2e-06,-0.783822,0.620986,2e-06,-0.783822,0.620986,-8e-06,-0.783823,0.620984,-8e-06,-0.783823,0.620984,-8e-06,-0.783823,0.620984,-2e-06,-0.783812,0.620999,-2e-06,-0.783812,0.620999,-2e-06,-0.783812,0.620999,0,-0.78382,0.620989,0,-0.78382,0.620989,0,-0.78382,0.620989,1e-06,-0.783782,0.621036,1e-06,-0.783782,0.621036,1e-06,-0.783782,0.621036,-2e-06,-0.783827,0.620979,-2e-06,-0.783827,0.620979,-2e-06,-0.783827,0.620979,-2e-06,-0.783831,0.620975,-2e-06,-0.783831,0.620975,-2e-06,-0.783831,0.620975,2e-06,-0.783861,0.620936,2e-06,-0.783861,0.620936,2e-06,-0.783861,0.620936,0,-0.783824,0.620983,0,-0.783824,0.620983,0,-0.783824,0.620983,-0,-0.783828,0.620978,-0,-0.783828,0.620978,-0,-0.783828,0.620978,-0,-0.783829,0.620977,-0,-0.783829,0.620977,-0,-0.783829,0.620977,-0,-0.783833,0.620971,-0,-0.783833,0.620971,-0,-0.783833,0.620971,-1e-06,-0.783835,0.620969,-1e-06,-0.783835,0.620969,-1e-06,-0.783835,0.620969,0,-0.783909,0.620876,0,-0.783909,0.620876,0,-0.783909,0.620876,-3e-06,-0.783779,0.62104,-3e-06,-0.783779,0.62104,-3e-06,-0.783779,0.62104,2e-06,-0.783827,0.620979,2e-06,-0.783827,0.620979,2e-06,-0.783827,0.620979,1e-06,-0.783826,0.62098,1e-06,-0.783826,0.62098,1e-06,-0.783826,0.62098,2e-06,-0.783824,0.620983,2e-06,-0.783824,0.620983,2e-06,-0.783824,0.620983,1e-06,-0.783828,0.620978,1e-06,-0.783828,0.620978,1e-06,-0.783828,0.620978,-9e-06,-0.783808,0.621003,-9e-06,-0.783808,0.621003,-9e-06,-0.783808,0.621003,-7e-06,-0.783826,0.620981,-7e-06,-0.783826,0.620981,-7e-06,-0.783826,0.620981,0,-0.783821,0.620987,0,-0.783821,0.620987,0,-0.783821,0.620987,2e-06,-0.783827,0.620979,2e-06,-0.783827,0.620979,2e-06,-0.783827,0.620979,-1e-06,-0.783828,0.620978,-1e-06,-0.783828,0.620978,-1e-06,-0.783828,0.620978,-6e-06,-0.783825,0.620983,-6e-06,-0.783825,0.620983,-6e-06,-0.783825,0.620983,-6e-06,-0.783824,0.620982,-6e-06,-0.783824,0.620982,-6e-06,-0.783824,0.620982,-3.3e-05,-0.783824,0.620983,-3.3e-05,-0.783824,0.620983,-3.3e-05,-0.783824,0.620983,-4e-06,-0.783824,0.620983,-4e-06,-0.783824,0.620983,-4e-06,-0.783824,0.620983,0,-0.783829,0.620976,0,-0.783829,0.620976,0,-0.783829,0.620976,2e-06,-0.783823,0.620984,2e-06,-0.783823,0.620984,2e-06,-0.783823,0.620984,-2e-06,-0.783822,0.620986,-2e-06,-0.783822,0.620986,-2e-06,-0.783822,0.620986,-2e-06,-0.783819,0.620989,-2e-06,-0.783819,0.620989,-2e-06,-0.783819,0.620989,1e-06,-0.783828,0.620978,1e-06,-0.783828,0.620978,1e-06,-0.783828,0.620978,-2e-06,-0.783827,0.620979,-2e-06,-0.783827,0.620979,-2e-06,-0.783827,0.620979,3e-06,-0.783827,0.62098,3e-06,-0.783827,0.62098,3e-06,-0.783827,0.62098,-3e-06,-0.783832,0.620973,-3e-06,-0.783832,0.620973,-3e-06,-0.783832,0.620973,1e-06,-0.78384,0.620963,1e-06,-0.78384,0.620963,1e-06,-0.78384,0.620963,1e-06,-0.783837,0.620966,1e-06,-0.783837,0.620966,1e-06,-0.783837,0.620966,0,-0.783822,0.620985,0,-0.783822,0.620985,0,-0.783822,0.620985,1e-06,-0.78382,0.620988,1e-06,-0.78382,0.620988,1e-06,-0.78382,0.620988,-0,-0.78384,0.620963,-0,-0.78384,0.620963,-0,-0.78384,0.620963,4e-06,-0.783807,0.621005,4e-06,-0.783807,0.621005,4e-06,-0.783807,0.621005,-1e-06,-0.783828,0.620979,-1e-06,-0.783828,0.620979,-1e-06,-0.783828,0.620979,6e-06,-0.783835,0.62097,6e-06,-0.783835,0.62097,6e-06,-0.783835,0.62097,-4e-06,-0.783828,0.620978,-4e-06,-0.783828,0.620978,-4e-06,-0.783828,0.620978,5e-06,-0.78382,0.620988,5e-06,-0.78382,0.620988,5e-06,-0.78382,0.620988,-5e-06,-0.783849,0.620952,-5e-06,-0.783849,0.620952,-5e-06,-0.783849,0.620952,2e-06,-0.783822,0.620985,2e-06,-0.783822,0.620985,2e-06,-0.783822,0.620985,5e-06,-0.78382,0.620988,3e-06,-0.783831,0.620974,3e-06,-0.783831,0.620974,3e-06,-0.783831,0.620974,-3e-06,-0.78383,0.620975,-3e-06,-0.78383,0.620975,-3e-06,-0.78383,0.620975,6e-06,-0.78385,0.62095,6e-06,-0.78385,0.62095,6e-06,-0.78385,0.62095,-1e-06,-0.783822,0.620986,-1e-06,-0.783822,0.620986,-1e-06,-0.783822,0.620986,-3e-06,-0.783819,0.62099,-3e-06,-0.783819,0.62099,-3e-06,-0.783819,0.62099,5e-06,-0.783824,0.620983,5e-06,-0.783824,0.620983,5e-06,-0.783824,0.620983,3e-06,-0.783828,0.620978,3e-06,-0.783828,0.620978,3e-06,-0.783828,0.620978,-1e-06,-0.783829,0.620977,-1e-06,-0.783829,0.620977,-1e-06,-0.783829,0.620977,2e-06,-0.783826,0.62098,2e-06,-0.783826,0.62098,2e-06,-0.783826,0.62098,3e-06,-0.783826,0.620981,3e-06,-0.783826,0.620981,3e-06,-0.783826,0.620981,3e-06,-0.783827,0.620979,3e-06,-0.783827,0.620979,3e-06,-0.783827,0.620979,7e-06,-0.783822,0.620986,7e-06,-0.783822,0.620986,7e-06,-0.783822,0.620986,3e-06,-0.783826,0.62098,3e-06,-0.783826,0.62098,3e-06,-0.783826,0.62098,7e-06,-0.783822,0.620986,3e-06,-0.783826,0.620981,3e-06,-0.783826,0.620981,3e-06,-0.783826,0.620981,-6e-06,-0.783824,0.620982,-6e-06,-0.783824,0.620982,-6e-06,-0.783824,0.620982,4e-06,-0.783827,0.62098,4e-06,-0.783827,0.62098,4e-06,-0.783827,0.62098,-5e-06,-0.783833,0.620971,-5e-06,-0.783833,0.620971,-5e-06,-0.783833,0.620971,2e-06,-0.783828,0.620979,2e-06,-0.783828,0.620979,2e-06,-0.783828,0.620979,4e-06,-0.783831,0.620974,4e-06,-0.783831,0.620974,4e-06,-0.783831,0.620974,1e-06,-0.783819,0.62099,1e-06,-0.783819,0.62099,1e-06,-0.783819,0.62099,0,-0.783828,0.620978,0,-0.783828,0.620978,0,-0.783828,0.620978,-8e-06,-0.783828,0.620978,-8e-06,-0.783828,0.620978,-8e-06,-0.783828,0.620978,5e-06,-0.783824,0.620983,5e-06,-0.783824,0.620983,5e-06,-0.783824,0.620983,-4e-06,-0.783832,0.620973,-4e-06,-0.783832,0.620973,-4e-06,-0.783832,0.620973,1e-05,-0.784043,0.620706,1e-05,-0.784043,0.620706,1e-05,-0.784043,0.620706,-4e-06,-0.783828,0.620977,-4e-06,-0.783828,0.620977,-4e-06,-0.783828,0.620977,0,-0.783824,0.620983,0,-0.783824,0.620983,0,-0.783824,0.620983,1e-06,-0.783823,0.620984,1e-06,-0.783823,0.620984,1e-06,-0.783823,0.620984,1e-05,-0.783817,0.620992,1e-05,-0.783817,0.620992,1e-05,-0.783817,0.620992,1e-06,-0.78383,0.620976,1e-06,-0.78383,0.620976,1e-06,-0.78383,0.620976,0,-0.783813,0.620997,0,-0.783813,0.620997,0,-0.783813,0.620997,2e-06,-0.783822,0.620986,2e-06,-0.783822,0.620986,2e-06,-0.783822,0.620986,-3e-06,-0.783841,0.620961,-3e-06,-0.783841,0.620961,-3e-06,-0.783841,0.620961,-1e-06,-0.783841,0.620962,-1e-06,-0.783841,0.620962,-1e-06,-0.783841,0.620962,-4e-06,-0.783824,0.620983,-4e-06,-0.783824,0.620983,-4e-06,-0.783824,0.620983,2e-06,-0.783828,0.620978,2e-06,-0.783828,0.620978,2e-06,-0.783828,0.620978,-3e-06,-0.783821,0.620987,-3e-06,-0.783821,0.620987,-3e-06,-0.783821,0.620987,2e-06,-0.783827,0.620979,2e-06,-0.783827,0.620979,2e-06,-0.783827,0.620979,3e-06,-0.783824,0.620983,3e-06,-0.783824,0.620983,3e-06,-0.783824,0.620983,2e-06,-0.783839,0.620964,2e-06,-0.783839,0.620964,2e-06,-0.783839,0.620964,-1e-06,-0.783818,0.620991,-1e-06,-0.783818,0.620991,-1e-06,-0.783818,0.620991,-2e-06,-0.783819,0.620989,-2e-06,-0.783819,0.620989,-2e-06,-0.783819,0.620989,4e-06,-0.783826,0.62098,4e-06,-0.783826,0.62098,4e-06,-0.783826,0.62098,-4e-06,-0.783823,0.620984,-4e-06,-0.783823,0.620984,-4e-06,-0.783823,0.620984,-9e-06,-0.783837,0.620967,-9e-06,-0.783837,0.620967,-9e-06,-0.783837,0.620967,-5e-06,-0.783829,0.620976,-5e-06,-0.783829,0.620976,-5e-06,-0.783829,0.620976,-4e-06,-0.783823,0.620985,-4e-06,-0.783823,0.620985,-4e-06,-0.783823,0.620985,3e-06,-0.783826,0.620981,3e-06,-0.783826,0.620981,3e-06,-0.783826,0.620981,3e-06,-0.783827,0.620979,3e-06,-0.783827,0.620979,3e-06,-0.783827,0.620979,-0,-0.783826,0.62098,-0,-0.783826,0.62098,-0,-0.783826,0.62098,-8e-06,-0.783824,0.620982,-8e-06,-0.783824,0.620982,-8e-06,-0.783824,0.620982,-7e-06,-0.783822,0.620985,-7e-06,-0.783822,0.620985,-7e-06,-0.783822,0.620985,7e-06,-0.783832,0.620973,7e-06,-0.783832,0.620973,7e-06,-0.783832,0.620973,1e-06,-0.783824,0.620983,1e-06,-0.783824,0.620983,1e-06,-0.783824,0.620983,3e-06,-0.783827,0.62098,3e-06,-0.783827,0.62098,3e-06,-0.783827,0.62098,-0,-0.783823,0.620985,-0,-0.783823,0.620985,-0,-0.783823,0.620985,3e-06,-0.783826,0.620981,3e-06,-0.783826,0.620981,3e-06,-0.783826,0.620981,-2e-06,-0.783827,0.620979,-2e-06,-0.783827,0.620979,-2e-06,-0.783827,0.620979,3e-06,-0.783827,0.620979,3e-06,-0.783827,0.620979,3e-06,-0.783827,0.620979,-3e-06,-0.78382,0.620988,-3e-06,-0.78382,0.620988,-3e-06,-0.78382,0.620988,-7e-06,-0.783815,0.620994,-7e-06,-0.783815,0.620994,-7e-06,-0.783815,0.620994,-6e-06,-0.783836,0.620967,-6e-06,-0.783836,0.620967,-6e-06,-0.783836,0.620967,7e-06,-0.783891,0.620899,7e-06,-0.783891,0.620899,7e-06,-0.783891,0.620899,-5e-06,-0.783783,0.621035,-5e-06,-0.783783,0.621035,-5e-06,-0.783783,0.621035,-2e-06,-0.783827,0.62098,-2e-06,-0.783827,0.62098,-2e-06,-0.783827,0.62098,1e-06,-0.783816,0.620994,1e-06,-0.783816,0.620994,1e-06,-0.783816,0.620994,-2e-06,-0.783822,0.620985,-2e-06,-0.783822,0.620985,-2e-06,-0.783822,0.620985,-2e-06,-0.783824,0.620982,-2e-06,-0.783824,0.620982,-2e-06,-0.783824,0.620982,-3e-06,-0.783807,0.621005,-3e-06,-0.783807,0.621005,-3e-06,-0.783807,0.621005,2e-06,-0.783824,0.620983,2e-06,-0.783824,0.620983,2e-06,-0.783824,0.620983,-2e-06,-0.783846,0.620955,-2e-06,-0.783846,0.620955,-2e-06,-0.783846,0.620955,5e-06,-0.783825,0.620982,5e-06,-0.783825,0.620982,5e-06,-0.783825,0.620982,-2e-06,-0.783833,0.620972,-2e-06,-0.783833,0.620972,-2e-06,-0.783833,0.620972,5e-06,-0.783798,0.621016,5e-06,-0.783798,0.621016,5e-06,-0.783798,0.621016,2e-06,-0.783828,0.620978,2e-06,-0.783828,0.620978,2e-06,-0.783828,0.620978,-1e-06,-0.783839,0.620964,-1e-06,-0.783839,0.620964,-1e-06,-0.783839,0.620964,1e-06,-0.783834,0.62097,1e-06,-0.783834,0.62097,1e-06,-0.783834,0.62097,-3e-06,-0.783828,0.620979,-3e-06,-0.783828,0.620979,-3e-06,-0.783828,0.620979,-1e-05,-0.783821,0.620986,-1e-05,-0.783821,0.620986,-1e-05,-0.783821,0.620986,-4e-06,-0.783831,0.620975,-4e-06,-0.783831,0.620975,-4e-06,-0.783831,0.620975,-1.2e-05,-0.783814,0.620996,-1.2e-05,-0.783814,0.620996,-1.2e-05,-0.783814,0.620996,8e-06,-0.783823,0.620984,8e-06,-0.783823,0.620984,8e-06,-0.783823,0.620984,4e-06,-0.783828,0.620978,4e-06,-0.783828,0.620978,4e-06,-0.783828,0.620978,-1.4e-05,-0.783839,0.620964,-1.4e-05,-0.783839,0.620964,-1.4e-05,-0.783839,0.620964,1.1e-05,-0.783825,0.620982,1.1e-05,-0.783825,0.620982,1.1e-05,-0.783825,0.620982,4e-06,-0.783823,0.620984,4e-06,-0.783823,0.620984,4e-06,-0.783823,0.620984,1e-05,-0.783826,0.620981,1e-05,-0.783826,0.620981,1e-05,-0.783826,0.620981,0,-0.783824,0.620983,0,-0.783824,0.620983,0,-0.783824,0.620983,-5e-06,-0.783822,0.620985,-5e-06,-0.783822,0.620985,-5e-06,-0.783822,0.620985,7e-06,-0.783825,0.620982,7e-06,-0.783825,0.620982,7e-06,-0.783825,0.620982,-3e-06,-0.783825,0.620982,-3e-06,-0.783825,0.620982,-3e-06,-0.783825,0.620982,8e-06,-0.783829,0.620977,8e-06,-0.783829,0.620977,8e-06,-0.783829,0.620977,-2e-06,-0.783828,0.620979,-2e-06,-0.783828,0.620979,-2e-06,-0.783828,0.620979,1e-05,-0.783831,0.620975,1e-05,-0.783831,0.620975,1e-05,-0.783831,0.620975,1.2e-05,-0.783827,0.620979,1.2e-05,-0.783827,0.620979,1.2e-05,-0.783827,0.620979,5e-06,-0.783831,0.620974,5e-06,-0.783831,0.620974,5e-06,-0.783831,0.620974,-3e-06,-0.783826,0.62098,-3e-06,-0.783826,0.62098,-3e-06,-0.783826,0.62098,-3e-06,-0.783827,0.620979,-3e-06,-0.783827,0.620979,-3e-06,-0.783827,0.620979,5e-06,-0.783831,0.620974,2e-06,-0.783822,0.620986,2e-06,-0.783822,0.620986,2e-06,-0.783822,0.620986,-0,-0.783825,0.620981,-0,-0.783825,0.620981,-0,-0.783825,0.620981,-2e-06,-0.78383,0.620976,-2e-06,-0.78383,0.620976,-2e-06,-0.78383,0.620976,-2e-06,-0.783829,0.620977,-2e-06,-0.783829,0.620977,-2e-06,-0.783829,0.620977,-1e-06,-0.783832,0.620973,-1e-06,-0.783832,0.620973,-1e-06,-0.783832,0.620973,0,-0.783812,0.620999,0,-0.783812,0.620999,0,-0.783812,0.620999,2e-06,-0.783844,0.620958,2e-06,-0.783844,0.620958,2e-06,-0.783844,0.620958,-4e-06,-0.783815,0.620994,-4e-06,-0.783815,0.620994,-4e-06,-0.783815,0.620994,1e-06,-0.783826,0.620981,1e-06,-0.783826,0.620981,1e-06,-0.783826,0.620981,0,-0.783835,0.620969,0,-0.783835,0.620969,0,-0.783835,0.620969,-4e-06,-0.783824,0.620983,-4e-06,-0.783824,0.620983,-4e-06,-0.783824,0.620983,-9e-06,-0.783815,0.620994,-9e-06,-0.783815,0.620994,-9e-06,-0.783815,0.620994,-1e-06,-0.783821,0.620987,-1e-06,-0.783821,0.620987,-1e-06,-0.783821,0.620987,2e-06,-0.783822,0.620986,2e-06,-0.783822,0.620986,2e-06,-0.783822,0.620986,-7e-06,-0.78383,0.620976,-7e-06,-0.78383,0.620976,-7e-06,-0.78383,0.620976,2e-06,-0.783825,0.620982,2e-06,-0.783825,0.620982,2e-06,-0.783825,0.620982,3e-06,-0.783827,0.620979,3e-06,-0.783827,0.620979,3e-06,-0.783827,0.620979,0,-0.783819,0.620989,0,-0.783819,0.620989,0,-0.783819,0.620989,-4e-06,-0.783825,0.620982,-4e-06,-0.783825,0.620982,-4e-06,-0.783825,0.620982,4e-06,-0.783827,0.62098,4e-06,-0.783827,0.62098,4e-06,-0.783827,0.62098,-0,-0.78383,0.620976,-0,-0.78383,0.620976,-0,-0.78383,0.620976,4e-06,-0.783829,0.620977,4e-06,-0.783829,0.620977,4e-06,-0.783829,0.620977,4e-06,-0.783823,0.620984,4e-06,-0.783823,0.620984,4e-06,-0.783823,0.620984,1e-06,-0.783822,0.620985,1e-06,-0.783822,0.620985,1e-06,-0.783822,0.620985,-5e-06,-0.783825,0.620981,-5e-06,-0.783825,0.620981,-5e-06,-0.783825,0.620981,3e-06,-0.783825,0.620981,3e-06,-0.783825,0.620981,3e-06,-0.783825,0.620981,-5e-06,-0.783825,0.620981,3e-06,-0.783823,0.620984,3e-06,-0.783823,0.620984,3e-06,-0.783823,0.620984,-0,-0.783828,0.620978,-0,-0.783828,0.620978,-0,-0.783828,0.620978,-2e-06,-0.783827,0.620979,-2e-06,-0.783827,0.620979,-2e-06,-0.783827,0.620979,2e-06,-0.783834,0.620971,2e-06,-0.783834,0.620971,2e-06,-0.783834,0.620971,-3e-06,-0.783823,0.620985,-3e-06,-0.783823,0.620985,-3e-06,-0.783823,0.620985,-1e-06,-0.783826,0.62098,-1e-06,-0.783826,0.62098,-1e-06,-0.783826,0.62098,9e-06,-0.783816,0.620993,9e-06,-0.783816,0.620993,9e-06,-0.783816,0.620993,-9e-06,-0.783837,0.620967,-9e-06,-0.783837,0.620967,-9e-06,-0.783837,0.620967,-9e-06,-0.783839,0.620964,-9e-06,-0.783839,0.620964,-9e-06,-0.783839,0.620964,-0,-0.783825,0.620982,-0,-0.783825,0.620982,-0,-0.783825,0.620982,6e-06,-0.783829,0.620976,6e-06,-0.783829,0.620976,6e-06,-0.783829,0.620976,4e-06,-0.78383,0.620976,4e-06,-0.78383,0.620976,4e-06,-0.78383,0.620976,-0,-0.783837,0.620967,-0,-0.783837,0.620967,-0,-0.783837,0.620967,-1e-06,-0.783814,0.620996,-1e-06,-0.783814,0.620996,-1e-06,-0.783814,0.620996,-2e-06,-0.783861,0.620937,-2e-06,-0.783861,0.620937,-2e-06,-0.783861,0.620937,-0,-0.78382,0.620988,-0,-0.78382,0.620988,-0,-0.78382,0.620988,-0,-0.783821,0.620987,-0,-0.783821,0.620987,-0,-0.783821,0.620987,5e-06,-0.783859,0.620939,5e-06,-0.783859,0.620939,5e-06,-0.783859,0.620939,0,-0.78383,0.620975,0,-0.78383,0.620975,0,-0.78383,0.620975,0,-0.783836,0.620968,0,-0.783836,0.620968,0,-0.783836,0.620968,1e-06,-0.783823,0.620984,1e-06,-0.783823,0.620984,1e-06,-0.783823,0.620984,-0,-0.783811,0.620999,-0,-0.783811,0.620999,-0,-0.783811,0.620999,1e-06,-0.783849,0.620951,1e-06,-0.783849,0.620951,1e-06,-0.783849,0.620951,-0,-0.783814,0.620996,-0,-0.783814,0.620996,-0,-0.783814,0.620996,-0,-0.783813,0.620997,-0,-0.783813,0.620997,-0,-0.783813,0.620997,1e-06,-0.783819,0.620989,1e-06,-0.783819,0.620989,1e-06,-0.783819,0.620989,-1e-06,-0.78384,0.620963,-1e-06,-0.78384,0.620963,-1e-06,-0.78384,0.620963,1e-06,-0.783826,0.620981,1e-06,-0.783826,0.620981,1e-06,-0.783826,0.620981,-5e-06,-0.783849,0.620951,-5e-06,-0.783849,0.620951,-5e-06,-0.783849,0.620951,-1e-06,-0.783832,0.620973,-1e-06,-0.783832,0.620973,-1e-06,-0.783832,0.620973,1e-06,-0.783823,0.620984,1e-06,-0.783823,0.620984,1e-06,-0.783823,0.620984,2e-06,-0.783826,0.62098,2e-06,-0.783826,0.62098,2e-06,-0.783826,0.62098,2e-06,-0.783826,0.620981,2e-06,-0.783826,0.620981,2e-06,-0.783826,0.620981,2e-06,-0.783826,0.620981,3e-06,-0.783825,0.620981,3e-06,-0.783825,0.620981,3e-06,-0.783825,0.620981,3e-06,-0.783828,0.620978,3e-06,-0.783828,0.620978,3e-06,-0.783828,0.620978,7e-06,-0.783826,0.620981,7e-06,-0.783826,0.620981,7e-06,-0.783826,0.620981,5e-06,-0.783824,0.620983,5e-06,-0.783824,0.620983,5e-06,-0.783824,0.620983,1e-06,-0.783826,0.620981,1e-06,-0.783826,0.620981,1e-06,-0.783826,0.620981,-1e-06,-0.783822,0.620985,-1e-06,-0.783822,0.620985,-1e-06,-0.783822,0.620985,2e-06,-0.783829,0.620976,2e-06,-0.783829,0.620976,2e-06,-0.783829,0.620976,2e-06,-0.783827,0.620979,2e-06,-0.783827,0.620979,2e-06,-0.783827,0.620979,3e-06,-0.783829,0.620977,3e-06,-0.783829,0.620977,3e-06,-0.783829,0.620977,3e-06,-0.783826,0.620981,3e-06,-0.783826,0.620981,3e-06,-0.783826,0.620981,1e-06,-0.783822,0.620985,1e-06,-0.783822,0.620985,1e-06,-0.783822,0.620985,2e-06,-0.783825,0.620982,2e-06,-0.783825,0.620982,2e-06,-0.783825,0.620982,2e-06,-0.783825,0.620982,-1e-06,-0.783828,0.620978,-1e-06,-0.783828,0.620978,-1e-06,-0.783828,0.620978,-4e-06,-0.78382,0.620988,-4e-06,-0.78382,0.620988,-4e-06,-0.78382,0.620988,1e-06,-0.783832,0.620973,1e-06,-0.783832,0.620973,1e-06,-0.783832,0.620973,2e-06,-0.78383,0.620975,2e-06,-0.78383,0.620975,2e-06,-0.78383,0.620975,-4e-06,-0.78382,0.620988,-4e-06,-0.783812,0.620999,-4e-06,-0.783812,0.620999,-4e-06,-0.783812,0.620999,-1e-06,-0.783783,0.621035,-1e-06,-0.783783,0.621035,-1e-06,-0.783783,0.621035,-1e-06,-0.78388,0.620912,-1e-06,-0.78388,0.620912,-1e-06,-0.78388,0.620912,-1e-06,-0.78384,0.620963,-1e-06,-0.78384,0.620963,-1e-06,-0.78384,0.620963,1e-06,-0.783814,0.620995,1e-06,-0.783814,0.620995,1e-06,-0.783814,0.620995,1e-06,-0.783821,0.620986,1e-06,-0.783821,0.620986,1e-06,-0.783821,0.620986,-0,-0.783835,0.620969,-0,-0.783835,0.620969,-0,-0.783835,0.620969,-0,-0.783826,0.620981,-0,-0.783826,0.620981,-0,-0.783826,0.620981,-0,-0.783826,0.62098,-0,-0.783826,0.62098,-0,-0.783826,0.62098,-0,-0.78383,0.620976,-0,-0.78383,0.620976,-0,-0.78383,0.620976,4e-06,-0.783826,0.62098,4e-06,-0.783826,0.62098,4e-06,-0.783826,0.62098,3e-06,-0.783823,0.620984,3e-06,-0.783823,0.620984,3e-06,-0.783823,0.620984,2e-06,-0.783826,0.62098,2e-06,-0.783826,0.62098,2e-06,-0.783826,0.62098,0,-0.783825,0.620982,0,-0.783825,0.620982,0,-0.783825,0.620982,1e-06,-0.783825,0.620982,1e-06,-0.783825,0.620982,1e-06,-0.783825,0.620982,4e-06,-0.783827,0.620979,4e-06,-0.783827,0.620979,4e-06,-0.783827,0.620979,1e-06,-0.783827,0.620979,1e-06,-0.783827,0.620979,1e-06,-0.783827,0.620979,1e-06,-0.783828,0.620978,1e-06,-0.783828,0.620978,1e-06,-0.783828,0.620978,-0,-0.783817,0.620992,-0,-0.783817,0.620992,-0,-0.783817,0.620992,-2e-06,-0.783813,0.620997,-2e-06,-0.783813,0.620997,-2e-06,-0.783813,0.620997,-6e-06,-0.783822,0.620986,-6e-06,-0.783822,0.620986,-6e-06,-0.783822,0.620986,3e-06,-0.783825,0.620982,3e-06,-0.783825,0.620982,3e-06,-0.783825,0.620982,5e-06,-0.78383,0.620975,5e-06,-0.78383,0.620975,5e-06,-0.78383,0.620975,2e-06,-0.783825,0.620982,2e-06,-0.783825,0.620982,2e-06,-0.783825,0.620982,4e-06,-0.783828,0.620978,4e-06,-0.783828,0.620978,4e-06,-0.783828,0.620978,5e-06,-0.783828,0.620978,5e-06,-0.783828,0.620978,5e-06,-0.783828,0.620978,-2e-06,-0.783827,0.620979,-2e-06,-0.783827,0.620979,-2e-06,-0.783827,0.620979,7e-06,-0.783826,0.62098,7e-06,-0.783826,0.62098,7e-06,-0.783826,0.62098,-2.5e-05,-0.783823,0.620984,-2.5e-05,-0.783823,0.620984,-2.5e-05,-0.783823,0.620984,2e-06,-0.783825,0.620981,2e-06,-0.783825,0.620981,2e-06,-0.783825,0.620981,1e-06,-0.783823,0.620984,1e-06,-0.783823,0.620984,1e-06,-0.783823,0.620984,5.1e-05,-0.783832,0.620972,5.1e-05,-0.783832,0.620972,5.1e-05,-0.783832,0.620972,1.5e-05,-0.783831,0.620975,1.5e-05,-0.783831,0.620975,1.5e-05,-0.783831,0.620975,7e-06,-0.783828,0.620978,7e-06,-0.783828,0.620978,7e-06,-0.783828,0.620978,-8e-06,-0.783844,0.620957,-8e-06,-0.783844,0.620957,-8e-06,-0.783844,0.620957,-0,-0.783805,0.621007,-0,-0.783805,0.621007,-0,-0.783805,0.621007,7e-06,-0.78382,0.620988,7e-06,-0.78382,0.620988,7e-06,-0.78382,0.620988,-1.5e-05,-0.783841,0.620961,-1.5e-05,-0.783841,0.620961,-1.5e-05,-0.783841,0.620961,-4e-06,-0.783827,0.62098,-4e-06,-0.783827,0.62098,-4e-06,-0.783827,0.62098,-8e-06,-0.783826,0.620981,-8e-06,-0.783826,0.620981,-8e-06,-0.783826,0.620981,-1e-06,-0.783825,0.620982,-1e-06,-0.783825,0.620982,-1e-06,-0.783825,0.620982,-8e-06,-0.783826,0.620981,-1e-06,-0.783829,0.620977,-1e-06,-0.783829,0.620977,-1e-06,-0.783829,0.620977,-1e-06,-0.783829,0.620977,1e-06,-0.783827,0.620979,1e-06,-0.783827,0.620979,1e-06,-0.783827,0.620979,1e-06,-0.783796,0.621019,1e-06,-0.783796,0.621019,1e-06,-0.783796,0.621019,-4e-06,-0.783841,0.620962,-4e-06,-0.783841,0.620962,-4e-06,-0.783841,0.620962,1e-06,-0.783835,0.620969,1e-06,-0.783835,0.620969,1e-06,-0.783835,0.620969,0,-0.783813,0.620997,0,-0.783813,0.620997,0,-0.783813,0.620997,1e-06,-0.783819,0.620989,1e-06,-0.783819,0.620989,1e-06,-0.783819,0.620989,-3e-06,-0.783841,0.620961,-3e-06,-0.783841,0.620961,-3e-06,-0.783841,0.620961,-3e-06,-0.783844,0.620958,-3e-06,-0.783844,0.620958,-3e-06,-0.783844,0.620958,-5e-06,-0.783827,0.620979,-5e-06,-0.783827,0.620979,-5e-06,-0.783827,0.620979,3e-06,-0.783825,0.620982,3e-06,-0.783825,0.620982,3e-06,-0.783825,0.620982,3e-06,-0.783824,0.620983,3e-06,-0.783824,0.620983,3e-06,-0.783824,0.620983,-7e-06,-0.783826,0.620981,-7e-06,-0.783826,0.620981,-7e-06,-0.783826,0.620981,-0,-0.783801,0.621013,-0,-0.783801,0.621013,-0,-0.783801,0.621013,-2e-06,-0.78383,0.620976,-2e-06,-0.78383,0.620976,-2e-06,-0.78383,0.620976,-1e-06,-0.78383,0.620975,-1e-06,-0.78383,0.620975,-1e-06,-0.78383,0.620975,-3e-06,-0.783822,0.620986,-3e-06,-0.783822,0.620986,-3e-06,-0.783822,0.620986,-2e-06,-0.783829,0.620977,-2e-06,-0.783829,0.620977,-2e-06,-0.783829,0.620977,-8e-06,-0.783827,0.620979,-8e-06,-0.783827,0.620979,-8e-06,-0.783827,0.620979,6e-06,-0.783822,0.620985,6e-06,-0.783822,0.620985,6e-06,-0.783822,0.620985,-8e-06,-0.783828,0.620978,-8e-06,-0.783828,0.620978,-8e-06,-0.783828,0.620978,7e-06,-0.783823,0.620984,7e-06,-0.783823,0.620984,7e-06,-0.783823,0.620984,0,-0.783828,0.620978,0,-0.783828,0.620978,0,-0.783828,0.620978,-6e-06,-0.783825,0.620981,-6e-06,-0.783825,0.620981,-6e-06,-0.783825,0.620981,-7e-06,-0.783834,0.62097,-7e-06,-0.783834,0.62097,-7e-06,-0.783834,0.62097,-1e-06,-0.783824,0.620983,-1e-06,-0.783824,0.620983,-1e-06,-0.783824,0.620983,-4e-06,-0.783822,0.620985,-4e-06,-0.783822,0.620985,-4e-06,-0.783822,0.620985,-6e-06,-0.783827,0.62098,-6e-06,-0.783827,0.62098,-6e-06,-0.783827,0.62098,-1e-06,-0.783835,0.62097,-1e-06,-0.783835,0.62097,-1e-06,-0.783835,0.62097,2e-06,-0.78383,0.620976,2e-06,-0.78383,0.620976,2e-06,-0.78383,0.620976,5e-06,-0.783821,0.620986,5e-06,-0.783821,0.620986,5e-06,-0.783821,0.620986,4e-06,-0.783847,0.620954,4e-06,-0.783847,0.620954,4e-06,-0.783847,0.620954,2e-06,-0.783829,0.620977,2e-06,-0.783829,0.620977,2e-06,-0.783829,0.620977,1e-06,-0.783817,0.620992,1e-06,-0.783817,0.620992,1e-06,-0.783817,0.620992,-1e-06,-0.783815,0.620994,-1e-06,-0.783815,0.620994,-1e-06,-0.783815,0.620994,-5e-06,-0.783813,0.620997,-5e-06,-0.783813,0.620997,-5e-06,-0.783813,0.620997,-6e-06,-0.78384,0.620963,-6e-06,-0.78384,0.620963,-6e-06,-0.78384,0.620963,7e-06,-0.783891,0.620899,7e-06,-0.783891,0.620899,7e-06,-0.783891,0.620899,-4e-06,-0.783796,0.621019,-4e-06,-0.783796,0.621019,-4e-06,-0.783796,0.621019,-2e-06,-0.783825,0.620982,-2e-06,-0.783825,0.620982,-2e-06,-0.783825,0.620982,1e-06,-0.783815,0.620994,1e-06,-0.783815,0.620994,1e-06,-0.783815,0.620994,-1.5e-05,-0.783849,0.620952,-1.5e-05,-0.783849,0.620952,-1.5e-05,-0.783849,0.620952,-2e-06,-0.783803,0.621009,-2e-06,-0.783803,0.621009,-2e-06,-0.783803,0.621009,5e-06,-0.783837,0.620966,5e-06,-0.783837,0.620966,5e-06,-0.783837,0.620966,-1e-06,-0.783826,0.62098,-1e-06,-0.783826,0.62098,-1e-06,-0.783826,0.62098,-4e-06,-0.783826,0.620981,-4e-06,-0.783826,0.620981,-4e-06,-0.783826,0.620981,-5e-06,-0.783824,0.620983,-5e-06,-0.783824,0.620983,-5e-06,-0.783824,0.620983,0,-0.783817,0.620992,0,-0.783817,0.620992,0,-0.783817,0.620992,2e-06,-0.783836,0.620967,2e-06,-0.783836,0.620967,2e-06,-0.783836,0.620967,0,-0.783842,0.62096,0,-0.783842,0.62096,0,-0.783842,0.62096,-0,-0.783848,0.620953,-0,-0.783848,0.620953,-0,-0.783848,0.620953,8e-06,-0.783832,0.620973,8e-06,-0.783832,0.620973,8e-06,-0.783832,0.620973,4e-06,-0.783823,0.620984,4e-06,-0.783823,0.620984,4e-06,-0.783823,0.620984,3e-06,-0.783826,0.62098,3e-06,-0.783826,0.62098,3e-06,-0.783826,0.62098,8e-06,-0.783838,0.620965,8e-06,-0.783838,0.620965,8e-06,-0.783838,0.620965,1e-06,-0.783818,0.620991,1e-06,-0.783818,0.620991,1e-06,-0.783818,0.620991,4e-06,-0.783826,0.62098,4e-06,-0.783826,0.62098,4e-06,-0.783826,0.62098,5e-06,-0.783824,0.620983,5e-06,-0.783824,0.620983,5e-06,-0.783824,0.620983,-2e-06,-0.783825,0.620982,-2e-06,-0.783825,0.620982,-2e-06,-0.783825,0.620982,-9e-06,-0.783826,0.620981,-9e-06,-0.783826,0.620981,-9e-06,-0.783826,0.620981,3e-06,-0.783831,0.620974,3e-06,-0.783831,0.620974,3e-06,-0.783831,0.620974,0,-0.783839,0.620964,0,-0.783839,0.620964,0,-0.783839,0.620964,0,-0.783826,0.620981,0,-0.783826,0.620981,0,-0.783826,0.620981,-1e-06,-0.783821,0.620987,-1e-06,-0.783821,0.620987,-1e-06,-0.783821,0.620987,0,-0.783801,0.621011,0,-0.783801,0.621011,0,-0.783801,0.621011,-4e-06,-0.783822,0.620986,-4e-06,-0.783822,0.620986,-4e-06,-0.783822,0.620986,1e-06,-0.783815,0.620994,1e-06,-0.783815,0.620994,1e-06,-0.783815,0.620994,1e-06,-0.783797,0.621016,1e-06,-0.783797,0.621016,1e-06,-0.783797,0.621016,1e-06,-0.783847,0.620954,1e-06,-0.783847,0.620954,1e-06,-0.783847,0.620954,-1e-06,-0.783833,0.620971,-1e-06,-0.783833,0.620971,-1e-06,-0.783833,0.620971,-1e-06,-0.783801,0.621012,-1e-06,-0.783801,0.621012,-1e-06,-0.783801,0.621012,-2e-06,-0.783828,0.620977,-2e-06,-0.783828,0.620977,-2e-06,-0.783828,0.620977,0,-0.783812,0.620998,0,-0.783812,0.620998,0,-0.783812,0.620998,-7e-06,-0.78382,0.620989,-7e-06,-0.78382,0.620989,-7e-06,-0.78382,0.620989,1e-06,-0.783828,0.620978,1e-06,-0.783828,0.620978,1e-06,-0.783828,0.620978,-3e-06,-0.783825,0.620981,-3e-06,-0.783825,0.620981,-3e-06,-0.783825,0.620981,-5e-06,-0.783823,0.620985,-5e-06,-0.783823,0.620985,-5e-06,-0.783823,0.620985,-5e-06,-0.783829,0.620977,-5e-06,-0.783829,0.620977,-5e-06,-0.783829,0.620977,-7e-06,-0.783801,0.621012,-7e-06,-0.783801,0.621012,-7e-06,-0.783801,0.621012,-6e-06,-0.783832,0.620973,-6e-06,-0.783832,0.620973,-6e-06,-0.783832,0.620973,2e-06,-0.783823,0.620984,2e-06,-0.783823,0.620984,2e-06,-0.783823,0.620984,-3e-06,-0.783825,0.620982,-3e-06,-0.783825,0.620982,-3e-06,-0.783825,0.620982,-1e-06,-0.783827,0.62098,-1e-06,-0.783827,0.62098,-1e-06,-0.783827,0.62098,1e-06,-0.783822,0.620986,1e-06,-0.783822,0.620986,1e-06,-0.783822,0.620986,-1e-06,-0.783826,0.620981,-1e-06,-0.783826,0.620981,-1e-06,-0.783826,0.620981,-2e-06,-0.783826,0.620981,-2e-06,-0.783826,0.620981,-2e-06,-0.783826,0.620981,-5e-06,-0.783827,0.62098,-5e-06,-0.783827,0.62098,-5e-06,-0.783827,0.62098,-1e-06,-0.783827,0.620979,-1e-06,-0.783827,0.620979,-1e-06,-0.783827,0.620979,-4e-06,-0.783829,0.620977,-4e-06,-0.783829,0.620977,-4e-06,-0.783829,0.620977,7e-06,-0.783824,0.620983,7e-06,-0.783824,0.620983,7e-06,-0.783824,0.620983,7e-06,-0.783824,0.620983,4e-06,-0.783824,0.620984,4e-06,-0.783824,0.620984,4e-06,-0.783824,0.620984,-1e-06,-0.783826,0.62098,-1e-06,-0.783826,0.62098,-1e-06,-0.783826,0.62098,-2e-06,-0.783829,0.620977,-2e-06,-0.783829,0.620977,-2e-06,-0.783829,0.620977,-4e-06,-0.783826,0.620981,-4e-06,-0.783826,0.620981,-4e-06,-0.783826,0.620981,-2e-06,-0.783833,0.620972,-2e-06,-0.783833,0.620972,-2e-06,-0.783833,0.620972,-3e-06,-0.783825,0.620982,-3e-06,-0.783825,0.620982,-3e-06,-0.783825,0.620982,-3e-06,-0.783831,0.620974,-3e-06,-0.783831,0.620974,-3e-06,-0.783831,0.620974,7e-06,-0.783815,0.620995,7e-06,-0.783815,0.620995,7e-06,-0.783815,0.620995,-0,-0.783828,0.620977,-0,-0.783828,0.620977,-0,-0.783828,0.620977,3e-06,-0.783822,0.620985,3e-06,-0.783822,0.620985,3e-06,-0.783822,0.620985,3e-06,-0.783833,0.620972,3e-06,-0.783833,0.620972,3e-06,-0.783833,0.620972,-2e-06,-0.783809,0.621002,-2e-06,-0.783809,0.621002,-2e-06,-0.783809,0.621002,2.4e-05,-0.783853,0.620947,2.4e-05,-0.783853,0.620947,2.4e-05,-0.783853,0.620947,-2e-06,-0.783824,0.620983,-2e-06,-0.783824,0.620983,-2e-06,-0.783824,0.620983,6e-06,-0.783844,0.620958,6e-06,-0.783844,0.620958,6e-06,-0.783844,0.620958,-4e-06,-0.783817,0.620992,-4e-06,-0.783817,0.620992,-4e-06,-0.783817,0.620992,-2e-06,-0.783827,0.620979,-2e-06,-0.783827,0.620979,-2e-06,-0.783827,0.620979,1e-06,-0.78379,0.621027,1e-06,-0.78379,0.621027,1e-06,-0.78379,0.621027,-1e-06,-0.783843,0.62096,-1e-06,-0.783843,0.62096,-1e-06,-0.783843,0.62096,-1e-06,-0.783821,0.620987,-1e-06,-0.783821,0.620987,-1e-06,-0.783821,0.620987,1e-06,-0.783832,0.620973,1e-06,-0.783832,0.620973,1e-06,-0.783832,0.620973,-1e-06,-0.783825,0.620982,-1e-06,-0.783825,0.620982,-1e-06,-0.783825,0.620982,-0,-0.783827,0.62098,-0,-0.783827,0.62098,-0,-0.783827,0.62098,1e-06,-0.783819,0.62099,1e-06,-0.783819,0.62099,1e-06,-0.783819,0.62099,-2e-06,-0.783832,0.620974,-2e-06,-0.783832,0.620974,-2e-06,-0.783832,0.620974,1e-06,-0.783827,0.62098,1e-06,-0.783827,0.62098,1e-06,-0.783827,0.62098,1e-06,-0.783828,0.620978,1e-06,-0.783828,0.620978,1e-06,-0.783828,0.620978,-1e-06,-0.783825,0.620982,-1e-06,-0.783825,0.620982,-1e-06,-0.783825,0.620982,1e-06,-0.783826,0.62098,1e-06,-0.783826,0.62098,1e-06,-0.783826,0.62098,1e-06,-0.783824,0.620983,1e-06,-0.783824,0.620983,1e-06,-0.783824,0.620983,-2e-06,-0.783826,0.62098,-2e-06,-0.783826,0.62098,-2e-06,-0.783826,0.62098,1e-06,-0.783824,0.620983,-2e-06,-0.783825,0.620981,-2e-06,-0.783825,0.620981,-2e-06,-0.783825,0.620981,1e-06,-0.783824,0.620983,-2e-06,-0.783825,0.620981,0,-0.783824,0.620984,0,-0.783824,0.620984,0,-0.783824,0.620984,-2e-06,-0.783824,0.620983,-2e-06,-0.783824,0.620983,-2e-06,-0.783824,0.620983,1e-06,-0.783828,0.620978,1e-06,-0.783828,0.620978,1e-06,-0.783828,0.620978,2e-06,-0.783826,0.620981,2e-06,-0.783826,0.620981,2e-06,-0.783826,0.620981,-2e-06,-0.783825,0.620982,-2e-06,-0.783825,0.620982,-2e-06,-0.783825,0.620982,0,-0.783827,0.620979,0,-0.783827,0.620979,0,-0.783827,0.620979,5e-06,-0.783824,0.620984,5e-06,-0.783824,0.620984,5e-06,-0.783824,0.620984,5e-06,-0.783824,0.620983,5e-06,-0.783824,0.620983,5e-06,-0.783824,0.620983,-1e-06,-0.783824,0.620983,-1e-06,-0.783824,0.620983,-1e-06,-0.783824,0.620983,-0,-0.783826,0.620981,-0,-0.783826,0.620981,-0,-0.783826,0.620981,-0,-0.783825,0.620981,-0,-0.783825,0.620981,-0,-0.783825,0.620981,-2e-06,-0.783823,0.620985,-2e-06,-0.783823,0.620985,-2e-06,-0.783823,0.620985,-3e-06,-0.783832,0.620973,-3e-06,-0.783832,0.620973,-3e-06,-0.783832,0.620973,0,-0.783832,0.620973,0,-0.783832,0.620973,0,-0.783832,0.620973,3e-06,-0.78383,0.620976,3e-06,-0.78383,0.620976,3e-06,-0.78383,0.620976,-1e-06,-0.783827,0.62098,-1e-06,-0.783827,0.62098,-1e-06,-0.783827,0.62098,1e-06,-0.783825,0.620982,1e-06,-0.783825,0.620982,1e-06,-0.783825,0.620982,1e-06,-0.783827,0.620979,1e-06,-0.783827,0.620979,1e-06,-0.783827,0.620979,2e-06,-0.783822,0.620985,2e-06,-0.783822,0.620985,2e-06,-0.783822,0.620985,2e-06,-0.783825,0.620982,2e-06,-0.783825,0.620982,2e-06,-0.783825,0.620982,4e-06,-0.783827,0.620979,4e-06,-0.783827,0.620979,4e-06,-0.783827,0.620979,4e-06,-0.783825,0.620982,4e-06,-0.783825,0.620982,4e-06,-0.783825,0.620982,1e-06,-0.783826,0.620981,1e-06,-0.783826,0.620981,1e-06,-0.783826,0.620981,-0,-0.783827,0.620979,-0,-0.783827,0.620979,-0,-0.783827,0.620979,-1e-06,-0.783826,0.62098,-1e-06,-0.783826,0.62098,-1e-06,-0.783826,0.62098,4e-06,-0.783827,0.62098,4e-06,-0.783827,0.62098,4e-06,-0.783827,0.62098,-0,-0.783824,0.620983,-0,-0.783824,0.620983,-0,-0.783824,0.620983,-1e-06,-0.783825,0.620981,-1e-06,-0.783825,0.620981,-1e-06,-0.783825,0.620981,0,-0.783826,0.620981,0,-0.783826,0.620981,0,-0.783826,0.620981,3e-06,-0.783826,0.620981,3e-06,-0.783826,0.620981,3e-06,-0.783826,0.620981,-1e-06,-0.783825,0.620982,-1e-06,-0.783825,0.620982,-1e-06,-0.783825,0.620982,2e-06,-0.783826,0.620981,2e-06,-0.783826,0.620981,2e-06,-0.783826,0.620981,-2e-06,-0.783825,0.620982,-2e-06,-0.783825,0.620982,-2e-06,-0.783825,0.620982,3e-06,-0.783828,0.620978,3e-06,-0.783828,0.620978,3e-06,-0.783828,0.620978,5e-06,-0.783826,0.620981,5e-06,-0.783826,0.620981,5e-06,-0.783826,0.620981,3e-06,-0.783825,0.620982,3e-06,-0.783825,0.620982,3e-06,-0.783825,0.620982,7e-06,-0.783827,0.620979,7e-06,-0.783827,0.620979,7e-06,-0.783827,0.620979,1e-06,-0.783826,0.620981,1e-06,-0.783826,0.620981,1e-06,-0.783826,0.620981,4e-06,-0.783825,0.620982,4e-06,-0.783825,0.620982,4e-06,-0.783825,0.620982,-0,-0.783825,0.620981,-0,-0.783825,0.620981,-0,-0.783825,0.620981,2e-06,-0.783829,0.620977,2e-06,-0.783829,0.620977,2e-06,-0.783829,0.620977,4e-06,-0.783821,0.620987,4e-06,-0.783821,0.620987,4e-06,-0.783821,0.620987,-3e-06,-0.783829,0.620976,-3e-06,-0.783829,0.620976,-3e-06,-0.783829,0.620976,2e-06,-0.783829,0.620976,2e-06,-0.783829,0.620976,2e-06,-0.783829,0.620976,-3e-06,-0.783821,0.620987,-3e-06,-0.783821,0.620987,-3e-06,-0.783821,0.620987,-1e-06,-0.78383,0.620975,-1e-06,-0.78383,0.620975,-1e-06,-0.78383,0.620975,1e-06,-0.783828,0.620978,1e-06,-0.783828,0.620978,1e-06,-0.783828,0.620978,2e-06,-0.783803,0.621009,2e-06,-0.783803,0.621009,2e-06,-0.783803,0.621009,2e-06,-0.7838,0.621014,2e-06,-0.7838,0.621014,2e-06,-0.7838,0.621014,-4e-06,-0.783821,0.620987,-4e-06,-0.783821,0.620987,-4e-06,-0.783821,0.620987,-1e-06,-0.783833,0.620971,-1e-06,-0.783833,0.620971,-1e-06,-0.783833,0.620971,-1e-06,-0.783825,0.620981,-1e-06,-0.783825,0.620981,-1e-06,-0.783825,0.620981,1e-06,-0.783816,0.620993,1e-06,-0.783816,0.620993,1e-06,-0.783816,0.620993,-1e-06,-0.783827,0.620979,-1e-06,-0.783827,0.620979,-1e-06,-0.783827,0.620979,-1e-06,-0.783825,0.620982,-1e-06,-0.783825,0.620982,-1e-06,-0.783825,0.620982,-4e-06,-0.783852,0.620948,-4e-06,-0.783852,0.620948,-4e-06,-0.783852,0.620948,-2e-06,-0.783819,0.62099,-2e-06,-0.783819,0.62099,-2e-06,-0.783819,0.62099,1e-06,-0.783823,0.620984,1e-06,-0.783823,0.620984,1e-06,-0.783823,0.620984,0,-0.783822,0.620986,0,-0.783822,0.620986,0,-0.783822,0.620986,-1e-06,-0.783823,0.620985,-1e-06,-0.783823,0.620985,-1e-06,-0.783823,0.620985,-1e-06,-0.783831,0.620975,-1e-06,-0.783831,0.620975,-1e-06,-0.783831,0.620975,2e-06,-0.783828,0.620978,2e-06,-0.783828,0.620978,2e-06,-0.783828,0.620978,-5e-06,-0.783827,0.620979,-5e-06,-0.783827,0.620979,-5e-06,-0.783827,0.620979,3e-06,-0.783827,0.620979,3e-06,-0.783827,0.620979,3e-06,-0.783827,0.620979,0,-0.783823,0.620984,0,-0.783823,0.620984,0,-0.783823,0.620984,-2e-06,-0.783825,0.620982,-2e-06,-0.783825,0.620982,-2e-06,-0.783825,0.620982,0,-0.783822,0.620986,0,-0.783822,0.620986,0,-0.783822,0.620986,-0,-0.783815,0.620994,-0,-0.783815,0.620994,-0,-0.783815,0.620994,-0,-0.783828,0.620978,-0,-0.783828,0.620978,-0,-0.783828,0.620978,0,-0.783827,0.620979,0,-0.783827,0.620979,0,-0.783827,0.620979,-2e-06,-0.783763,0.62106,-2e-06,-0.783763,0.62106,-2e-06,-0.783763,0.62106,-1e-06,-0.783824,0.620982,-1e-06,-0.783824,0.620982,-1e-06,-0.783824,0.620982,-2e-06,-0.783827,0.620979,-2e-06,-0.783827,0.620979,-2e-06,-0.783827,0.620979,0,-0.783825,0.620981,0,-0.783825,0.620981,0,-0.783825,0.620981,1e-06,-0.783826,0.620981,1e-06,-0.783826,0.620981,1e-06,-0.783826,0.620981,0,-0.783826,0.62098,0,-0.783826,0.62098,0,-0.783826,0.62098,4e-06,-0.783818,0.62099,4e-06,-0.783818,0.62099,4e-06,-0.783818,0.62099,0,-0.783826,0.620981,0,-0.783826,0.620981,0,-0.783826,0.620981,3e-06,-0.783826,0.62098,3e-06,-0.783826,0.62098,3e-06,-0.783826,0.62098,-1e-06,-0.783825,0.620981,-1e-06,-0.783825,0.620981,-1e-06,-0.783825,0.620981,2e-06,-0.783827,0.62098,2e-06,-0.783827,0.62098,2e-06,-0.783827,0.62098,3e-06,-0.78383,0.620976,3e-06,-0.78383,0.620976,3e-06,-0.78383,0.620976,1e-06,-0.783824,0.620983,1e-06,-0.783824,0.620983,1e-06,-0.783824,0.620983,0,-0.783821,0.620986,0,-0.783821,0.620986,0,-0.783821,0.620986,0,-0.783824,0.620982,0,-0.783824,0.620982,0,-0.783824,0.620982,-1e-06,-0.783825,0.620982,-1e-06,-0.783825,0.620982,-1e-06,-0.783825,0.620982,0,-0.783827,0.620979,0,-0.783827,0.620979,0,-0.783827,0.620979,0,-0.783828,0.620977,0,-0.783828,0.620977,0,-0.783828,0.620977,-1e-06,-0.783826,0.62098,-1e-06,-0.783826,0.62098,-1e-06,-0.783826,0.62098,2e-06,-0.783819,0.62099,2e-06,-0.783819,0.62099,2e-06,-0.783819,0.62099,0,-0.783822,0.620985,0,-0.783822,0.620985,0,-0.783822,0.620985,-1e-06,-0.783825,0.620982,-1e-06,-0.783825,0.620982,-1e-06,-0.783825,0.620982,-1e-06,-0.783827,0.62098,-1e-06,-0.783827,0.62098,-1e-06,-0.783827,0.62098,0,-0.783827,0.620979,0,-0.783827,0.620979,0,-0.783827,0.620979,-0,-0.783827,0.620979,2e-06,-0.783825,0.620982,2e-06,-0.783825,0.620982,2e-06,-0.783825,0.620982,0,-0.783826,0.620981,0,-0.783826,0.620981,0,-0.783826,0.620981,-1e-06,-0.783826,0.620981,-1e-06,-0.783826,0.620981,-1e-06,-0.783826,0.620981,4e-06,-0.783826,0.620981,4e-06,-0.783826,0.620981,4e-06,-0.783826,0.620981,-1e-06,-0.783826,0.620981,0,-0.783826,0.620981,0,-0.783826,0.620981,0,-0.783826,0.620981,1e-06,-0.783826,0.620981,1e-06,-0.783826,0.620981,1e-06,-0.783826,0.620981,0,-0.783825,0.620981,0,-0.783825,0.620981,0,-0.783825,0.620981,-0,-0.783825,0.620982,-0,-0.783825,0.620982,-0,-0.783825,0.620982,-9e-06,-0.783828,0.620979,-9e-06,-0.783828,0.620979,-9e-06,-0.783828,0.620979,-0,-0.783826,0.620981,-0,-0.783826,0.620981,-0,-0.783826,0.620981,-5e-06,-0.783825,0.620982,-5e-06,-0.783825,0.620982,-5e-06,-0.783825,0.620982,8e-06,-0.78382,0.620988,8e-06,-0.78382,0.620988,8e-06,-0.78382,0.620988,1e-06,-0.783826,0.620981,1e-06,-0.783826,0.620981,1e-06,-0.783826,0.620981,1e-06,-0.783826,0.62098,1e-06,-0.783826,0.62098,1e-06,-0.783826,0.62098,-3e-06,-0.783823,0.620984,-3e-06,-0.783823,0.620984,-3e-06,-0.783823,0.620984,1e-06,-0.783826,0.62098,1e-06,-0.783828,0.620978,1e-06,-0.783828,0.620978,1e-06,-0.783828,0.620978,2e-06,-0.783821,0.620987,2e-06,-0.783821,0.620987,2e-06,-0.783821,0.620987,3e-06,-0.783827,0.620979,3e-06,-0.783827,0.620979,3e-06,-0.783827,0.620979,2e-06,-0.78382,0.620989,2e-06,-0.78382,0.620989,2e-06,-0.78382,0.620989,0,-0.783826,0.620981,0,-0.783826,0.620981,0,-0.783826,0.620981,-0,-0.783823,0.620984,-0,-0.783823,0.620984,-0,-0.783823,0.620984,1e-06,-0.783826,0.62098,1e-06,-0.783826,0.62098,1e-06,-0.783826,0.62098,-2e-06,-0.783827,0.620978,-2e-06,-0.783827,0.620978,-2e-06,-0.783827,0.620978,2e-06,-0.783822,0.620985,2e-06,-0.783822,0.620985,2e-06,-0.783822,0.620985,1e-06,-0.783827,0.620979,1e-06,-0.783827,0.620979,1e-06,-0.783827,0.620979,1e-06,-0.783826,0.62098,1e-06,-0.783826,0.62098,0,-0.783818,0.62099,0,-0.783818,0.62099,0,-0.783818,0.62099,-0,-0.783823,0.620985,-0,-0.783823,0.620985,-0,-0.783823,0.620985,0,-0.78383,0.620976,0,-0.78383,0.620976,0,-0.78383,0.620976,0,-0.783832,0.620972,0,-0.783832,0.620972,0,-0.783832,0.620972,3e-06,-0.783823,0.620985,3e-06,-0.783823,0.620985,3e-06,-0.783823,0.620985,0,-0.783837,0.620966,0,-0.783837,0.620966,0,-0.783837,0.620966,-1e-06,-0.783781,0.621037,-1e-06,-0.783781,0.621037,-1e-06,-0.783781,0.621037,3e-06,-0.783824,0.620983,3e-06,-0.783824,0.620983,3e-06,-0.783824,0.620983,0,-0.783825,0.620982,0,-0.783825,0.620982,0,-0.783825,0.620982,1e-06,-0.783823,0.620984,1e-06,-0.783823,0.620984,1e-06,-0.783823,0.620984,1e-06,-0.783828,0.620979,1e-06,-0.783828,0.620979,1e-06,-0.783828,0.620979,-1e-06,-0.783824,0.620983,-1e-06,-0.783824,0.620983,-1e-06,-0.783824,0.620983,-1e-06,-0.783825,0.620982,-1e-06,-0.783825,0.620982,-1e-06,-0.783825,0.620982,-1e-06,-0.783825,0.620982,-1e-06,-0.783826,0.620981,-1e-06,-0.783826,0.620981,-1e-06,-0.783826,0.620981,1e-06,-0.783825,0.620982,1e-06,-0.783825,0.620982,1e-06,-0.783825,0.620982,1e-06,-0.783825,0.620982,1e-06,-0.783825,0.620982,1e-06,-0.783825,0.620981,1e-06,-0.783825,0.620981,1e-06,-0.783825,0.620981,-0,-0.783826,0.620981,-0,-0.783826,0.620981,-0,-0.783826,0.620981,0,-0.783826,0.620981,1e-06,-0.783827,0.620979,1e-06,-0.783827,0.620979,1e-06,-0.783827,0.620979,-0,-0.783827,0.62098,-0,-0.783827,0.62098,-0,-0.783827,0.62098,1e-06,-0.783824,0.620983,1e-06,-0.783824,0.620983,1e-06,-0.783824,0.620983,1e-06,-0.783824,0.620983,-0,-0.783828,0.620978,-0,-0.783828,0.620978,-0,-0.783828,0.620978,1e-06,-0.783824,0.620983,0,-0.783826,0.62098,0,-0.783826,0.62098,0,-0.783826,0.62098,-3e-06,-0.783821,0.620987,-3e-06,-0.783821,0.620987,-3e-06,-0.783821,0.620987,-1e-06,-0.78383,0.620976,-1e-06,-0.78383,0.620976,-1e-06,-0.78383,0.620976,-1e-06,-0.783826,0.62098,-1e-06,-0.783826,0.62098,-1e-06,-0.783826,0.62098,-1e-06,-0.783827,0.620979,-1e-06,-0.783827,0.620979,-1e-06,-0.783827,0.620979,-1e-06,-0.783831,0.620975,-1e-06,-0.783831,0.620975,-1e-06,-0.783831,0.620975,-0,-0.783829,0.620977,-0,-0.783829,0.620977,-0,-0.783829,0.620977,2e-06,-0.783828,0.620978,2e-06,-0.783828,0.620978,2e-06,-0.783828,0.620978,0,-0.783823,0.620985,0,-0.783823,0.620985,0,-0.783823,0.620985,-2e-06,-0.78384,0.620962,-2e-06,-0.78384,0.620962,-2e-06,-0.78384,0.620962,0,-0.783821,0.620986,0,-0.783821,0.620986,0,-0.783821,0.620986,2e-06,-0.783824,0.620983,2e-06,-0.783824,0.620983,2e-06,-0.783824,0.620983,1e-06,-0.783822,0.620985,1e-06,-0.783822,0.620985,1e-06,-0.783822,0.620985,2e-06,-0.783822,0.620986,2e-06,-0.783822,0.620986,2e-06,-0.783822,0.620986,-0,-0.783825,0.620982,-0,-0.783825,0.620982,-0,-0.783825,0.620982,2e-06,-0.783828,0.620978,2e-06,-0.783828,0.620978,2e-06,-0.783828,0.620978,-2e-06,-0.783825,0.620982,-2e-06,-0.783825,0.620982,-2e-06,-0.783825,0.620982,0,-0.783826,0.620981,0,-0.783826,0.620981,0,-0.783826,0.620981,-3e-06,-0.783826,0.62098,-3e-06,-0.783826,0.62098,-3e-06,-0.783826,0.62098,-4e-06,-0.783825,0.620982,-4e-06,-0.783825,0.620982,-4e-06,-0.783825,0.620982,-1e-06,-0.783824,0.620983,-1e-06,-0.783824,0.620983,-1e-06,-0.783824,0.620983,-1e-06,-0.783826,0.620981,-1e-06,-0.783826,0.620981,-1e-06,-0.783826,0.620981,2e-06,-0.783826,0.620981,2e-06,-0.783826,0.620981,2e-06,-0.783826,0.620981,0,-0.783827,0.620979,0,-0.783827,0.620979,0,-0.783827,0.620979,1e-06,-0.783826,0.620981,1e-06,-0.783826,0.620981,1e-06,-0.783826,0.620981,0,-0.783827,0.62098,0,-0.783827,0.62098,0,-0.783827,0.62098,-8e-06,-0.783824,0.620984,-8e-06,-0.783824,0.620984,-8e-06,-0.783824,0.620984,0,-0.783825,0.620982,0,-0.783825,0.620982,0,-0.783825,0.620982,-3e-06,-0.783819,0.620989,-3e-06,-0.783819,0.620989,-3e-06,-0.783819,0.620989,1e-06,-0.783829,0.620977,1e-06,-0.783829,0.620977,1e-06,-0.783829,0.620977,3e-06,-0.783832,0.620973,3e-06,-0.783832,0.620973,3e-06,-0.783832,0.620973,3e-06,-0.783823,0.620984,3e-06,-0.783823,0.620984,3e-06,-0.783823,0.620984,5e-06,-0.783824,0.620984,5e-06,-0.783824,0.620984,5e-06,-0.783824,0.620984,4e-06,-0.783823,0.620985,4e-06,-0.783823,0.620985,4e-06,-0.783823,0.620985,2e-06,-0.783828,0.620978,2e-06,-0.783828,0.620978,2e-06,-0.783828,0.620978,-0,-0.783825,0.620981,-0,-0.783825,0.620981,-0,-0.783825,0.620981,2e-06,-0.783822,0.620986,2e-06,-0.783822,0.620986,2e-06,-0.783822,0.620986,1e-06,-0.783821,0.620987,1e-06,-0.783821,0.620987,1e-06,-0.783821,0.620987,-2e-06,-0.783825,0.620982,-2e-06,-0.783825,0.620982,-2e-06,-0.783825,0.620982,-0,-0.783834,0.620971,-0,-0.783834,0.620971,-0,-0.783834,0.620971,-1e-06,-0.783827,0.620979,-1e-06,-0.783827,0.620979,-1e-06,-0.783827,0.620979,-0,-0.783825,0.620982,-0,-0.783825,0.620982,-0,-0.783825,0.620982,-1e-06,-0.783827,0.620979,-3e-06,-0.783818,0.62099,-3e-06,-0.783818,0.62099,-3e-06,-0.783818,0.62099,-0,-0.783824,0.620983,-0,-0.783824,0.620983,-0,-0.783824,0.620983,-1e-06,-0.783826,0.62098,-1e-06,-0.783826,0.62098,-1e-06,-0.783826,0.62098,7e-06,-0.783832,0.620973,7e-06,-0.783832,0.620973,7e-06,-0.783832,0.620973,1e-06,-0.783825,0.620982,1e-06,-0.783825,0.620982,1e-06,-0.783825,0.620982,-3e-06,-0.783823,0.620984,-3e-06,-0.783823,0.620984,-3e-06,-0.783823,0.620984,-1e-06,-0.783828,0.620979,-1e-06,-0.783828,0.620979,-1e-06,-0.783828,0.620979,-1e-06,-0.783825,0.620982,-1e-06,-0.783825,0.620982,-1e-06,-0.783825,0.620982,-0,-0.783822,0.620986,-0,-0.783822,0.620986,-0,-0.783822,0.620986,0,-0.783828,0.620977,0,-0.783828,0.620977,0,-0.783828,0.620977,8e-06,-0.783817,0.620992,8e-06,-0.783817,0.620992,8e-06,-0.783817,0.620992,-1e-06,-0.783823,0.620984,-1e-06,-0.783823,0.620984,-1e-06,-0.783823,0.620984,2e-06,-0.783828,0.620978,2e-06,-0.783828,0.620978,2e-06,-0.783828,0.620978,1.3e-05,-0.783821,0.620987,1.3e-05,-0.783821,0.620987,1.3e-05,-0.783821,0.620987,2e-06,-0.783828,0.620977,2e-06,-0.783828,0.620977,2e-06,-0.783828,0.620977,-3e-06,-0.783825,0.620982,-3e-06,-0.783825,0.620982,-3e-06,-0.783825,0.620982,1e-06,-0.783825,0.620982,1e-06,-0.783825,0.620982,1e-06,-0.783825,0.620982,-5e-06,-0.783828,0.620978,-5e-06,-0.783828,0.620978,-5e-06,-0.783828,0.620978,-1e-06,-0.783825,0.620981,-1e-06,-0.783825,0.620981,-1e-06,-0.783825,0.620981,-2e-06,-0.783827,0.62098,-2e-06,-0.783827,0.62098,-2e-06,-0.783827,0.62098,-3e-06,-0.783826,0.620981,-3e-06,-0.783826,0.620981,-3e-06,-0.783826,0.620981,-1e-06,-0.783825,0.620981,-3e-06,-0.783826,0.620981,-1e-06,-0.783824,0.620983,-1e-06,-0.783824,0.620983,-1e-06,-0.783824,0.620983,6e-06,-0.783824,0.620983,6e-06,-0.783824,0.620983,6e-06,-0.783824,0.620983,-0,-0.783824,0.620983,-0,-0.783824,0.620983,-0,-0.783824,0.620983,2e-06,-0.783832,0.620973,2e-06,-0.783832,0.620973,2e-06,-0.783832,0.620973,-2e-06,-0.783826,0.62098,-2e-06,-0.783826,0.62098,-2e-06,-0.783826,0.62098,-0,-0.78382,0.620988,-0,-0.78382,0.620988,-0,-0.78382,0.620988,2e-06,-0.78383,0.620976,2e-06,-0.78383,0.620976,2e-06,-0.78383,0.620976,-1e-06,-0.783825,0.620981,-1e-06,-0.783825,0.620981,-1e-06,-0.783825,0.620981,-2e-06,-0.783825,0.620982,-2e-06,-0.783825,0.620982,-2e-06,-0.783825,0.620982,-1e-06,-0.783824,0.620984,-1e-06,-0.783824,0.620984,-1e-06,-0.783824,0.620984,-0,-0.783826,0.620981,-0,-0.783826,0.620981,-0,-0.783826,0.620981,2e-06,-0.783829,0.620976,2e-06,-0.783829,0.620976,2e-06,-0.783829,0.620976,-1e-06,-0.783827,0.620979,-1e-06,-0.783827,0.620979,-1e-06,-0.783827,0.620979,-3e-06,-0.783824,0.620983,-3e-06,-0.783824,0.620983,-3e-06,-0.783824,0.620983,0,-0.783824,0.620983,0,-0.783824,0.620983,0,-0.783824,0.620983,-0,-0.783823,0.620984,-0,-0.783823,0.620984,-0,-0.783823,0.620984,0,-0.783833,0.620972,0,-0.783833,0.620972,0,-0.783833,0.620972,-2e-06,-0.783824,0.620983,-2e-06,-0.783824,0.620983,-2e-06,-0.783824,0.620983,3e-06,-0.783826,0.620981,3e-06,-0.783826,0.620981,3e-06,-0.783826,0.620981,1e-06,-0.783822,0.620986,1e-06,-0.783822,0.620986,1e-06,-0.783822,0.620986,-1e-06,-0.783822,0.620985,-1e-06,-0.783822,0.620985,-1e-06,-0.783822,0.620985,-0,-0.78382,0.620988,-0,-0.78382,0.620988,-0,-0.78382,0.620988,4e-06,-0.783828,0.620977,4e-06,-0.783828,0.620977,4e-06,-0.783828,0.620977,-5e-06,-0.783813,0.620997,-5e-06,-0.783813,0.620997,-5e-06,-0.783813,0.620997,4e-06,-0.783828,0.620977,-2e-06,-0.783827,0.62098,-2e-06,-0.783827,0.62098,-2e-06,-0.783827,0.62098,-4e-06,-0.783832,0.620973,-4e-06,-0.783832,0.620973,-4e-06,-0.783832,0.620973,5e-06,-0.783819,0.620989,5e-06,-0.783819,0.620989,5e-06,-0.783819,0.620989,1e-06,-0.783826,0.620981,1e-06,-0.783826,0.620981,1e-06,-0.783826,0.620981,-2e-06,-0.783826,0.62098,-2e-06,-0.783826,0.62098,-2e-06,-0.783826,0.62098,-2e-06,-0.783824,0.620983,-2e-06,-0.783824,0.620983,-2e-06,-0.783824,0.620983,-0,-0.783828,0.620978,-0,-0.783828,0.620978,-0,-0.783828,0.620978,-1e-06,-0.783834,0.620971,-1e-06,-0.783834,0.620971,-1e-06,-0.783834,0.620971,3e-06,-0.783823,0.620985,3e-06,-0.783823,0.620985,3e-06,-0.783823,0.620985,-1e-06,-0.783826,0.62098,-1e-06,-0.783826,0.62098,-1e-06,-0.783826,0.62098,-0,-0.783825,0.620982,-0,-0.783825,0.620982,-0,-0.783825,0.620982,-0,-0.783828,0.620978,-0,-0.783828,0.620978,-0,-0.783828,0.620978,-0,-0.783827,0.620979,-0,-0.783827,0.620979,-0,-0.783827,0.620979,1e-06,-0.783824,0.620983,1e-06,-0.783824,0.620983,1e-06,-0.783824,0.620983,0,-0.783853,0.620946,0,-0.783853,0.620946,0,-0.783853,0.620946,-0,-0.783838,0.620965,-0,-0.783838,0.620965,-0,-0.783838,0.620965,-2e-06,-0.783822,0.620985,-2e-06,-0.783822,0.620985,-2e-06,-0.783822,0.620985,0,-0.783822,0.620986,0,-0.783822,0.620986,0,-0.783822,0.620986,-1e-06,-0.783826,0.620981,-1e-06,-0.783826,0.620981,-1e-06,-0.783826,0.620981,-1e-06,-0.783826,0.62098,-1e-06,-0.783826,0.62098,-1e-06,-0.783826,0.62098,1e-06,-0.783831,0.620974,1e-06,-0.783831,0.620974,1e-06,-0.783831,0.620974,1e-06,-0.783824,0.620983,1e-06,-0.783824,0.620983,1e-06,-0.783824,0.620983,1e-06,-0.783824,0.620983,1e-06,-0.783827,0.62098,1e-06,-0.783827,0.62098,1e-06,-0.783827,0.62098,1e-06,-0.783826,0.62098,1e-06,-0.783826,0.62098,1e-06,-0.783826,0.62098,1e-06,-0.783826,0.620981,1e-06,-0.783826,0.620981,1e-06,-0.783826,0.620981,1e-06,-0.783825,0.620981,1e-06,-0.783825,0.620981,1e-06,-0.783825,0.620981,0,-0.783824,0.620983,0,-0.783824,0.620983,0,-0.783824,0.620983,-1e-05,-0.783825,0.620983,-1e-05,-0.783825,0.620983,-1e-05,-0.783825,0.620983,-3e-06,-0.783824,0.620983,-3e-06,-0.783824,0.620983,-3e-06,-0.783824,0.620983,-1e-06,-0.783826,0.62098,-1e-06,-0.783826,0.62098,-1e-06,-0.783826,0.62098,-0,-0.783826,0.62098,-0,-0.783826,0.62098,-0,-0.783826,0.62098,-2e-06,-0.783822,0.620986,-2e-06,-0.783822,0.620986,-2e-06,-0.783822,0.620986,-1e-06,-0.783825,0.620981,-1e-06,-0.783825,0.620981,-1e-06,-0.783825,0.620981,-0,-0.783824,0.620983,-0,-0.783824,0.620983,-0,-0.783824,0.620983,1e-06,-0.783824,0.620983,1e-06,-0.783824,0.620983,1e-06,-0.783824,0.620983,-1e-06,-0.783828,0.620978,-1e-06,-0.783828,0.620978,-1e-06,-0.783828,0.620978,-2e-06,-0.783827,0.620979,-2e-06,-0.783827,0.620979,-2e-06,-0.783827,0.620979,-1e-06,-0.783831,0.620974,-1e-06,-0.783831,0.620974,-1e-06,-0.783831,0.620974,-1e-06,-0.783824,0.620983,-1e-06,-0.783824,0.620983,-1e-06,-0.783824,0.620983,-1e-06,-0.783824,0.620983,-4e-06,-0.783835,0.620969,-4e-06,-0.783835,0.620969,-4e-06,-0.783835,0.620969,1e-06,-0.783825,0.620982,1e-06,-0.783825,0.620982,1e-06,-0.783825,0.620982,0,-0.783835,0.620969,0,-0.783835,0.620969,0,-0.783835,0.620969,-0,-0.783819,0.620989,-0,-0.783819,0.620989,-0,-0.783819,0.620989,-0,-0.783815,0.620994,-0,-0.783815,0.620994,-0,-0.783815,0.620994,1e-06,-0.783855,0.620944,1e-06,-0.783855,0.620944,1e-06,-0.783855,0.620944,-4e-06,-0.783825,0.620982,-4e-06,-0.783825,0.620982,-4e-06,-0.783825,0.620982,0,-0.783824,0.620983,0,-0.783824,0.620983,0,-0.783824,0.620983,-1e-06,-0.783826,0.62098,-1e-06,-0.783826,0.62098,-1e-06,-0.783826,0.62098,-0,-0.783829,0.620977,-0,-0.783829,0.620977,-0,-0.783829,0.620977,-0,-0.783822,0.620985,-0,-0.783822,0.620985,-0,-0.783822,0.620985,-4e-06,-0.783825,0.620981,-4e-06,-0.783825,0.620981,-4e-06,-0.783825,0.620981,0,-0.783826,0.62098,0,-0.783826,0.62098,0,-0.783826,0.62098,-0,-0.783826,0.620981,-0,-0.783826,0.620981,-0,-0.783826,0.620981,-0,-0.783826,0.620981,-4e-06,-0.783827,0.620979,-4e-06,-0.783827,0.620979,-4e-06,-0.783827,0.620979,-2e-06,-0.783825,0.620982,-2e-06,-0.783825,0.620982,-2e-06,-0.783825,0.620982,-0,-0.783828,0.620978,-0,-0.783828,0.620978,-0,-0.783828,0.620978,1e-06,-0.783823,0.620985,1e-06,-0.783823,0.620985,1e-06,-0.783823,0.620985,1e-06,-0.783822,0.620985,1e-06,-0.783822,0.620985,1e-06,-0.783822,0.620985,1e-06,-0.783824,0.620983,1e-06,-0.783824,0.620983,1e-06,-0.783824,0.620983,0,-0.783826,0.62098,0,-0.783826,0.62098,0,-0.783826,0.62098,0,-0.783823,0.620984,0,-0.783823,0.620984,0,-0.783823,0.620984,0,-0.783822,0.620985,0,-0.783822,0.620985,0,-0.783822,0.620985,-0,-0.783829,0.620976,-0,-0.783829,0.620976,-0,-0.783829,0.620976,-2e-06,-0.783819,0.62099,-2e-06,-0.783819,0.62099,-2e-06,-0.783819,0.62099,1e-06,-0.783829,0.620976,1e-06,-0.783829,0.620976,1e-06,-0.783829,0.620976,-0,-0.783827,0.620979,-0,-0.783827,0.620979,-0,-0.783827,0.620979,5e-06,-0.783815,0.620994,5e-06,-0.783815,0.620994,5e-06,-0.783815,0.620994,2e-06,-0.783825,0.620982,2e-06,-0.783825,0.620982,2e-06,-0.783825,0.620982,3e-06,-0.783826,0.62098,3e-06,-0.783826,0.62098,3e-06,-0.783826,0.62098,1e-06,-0.783826,0.620981,1e-06,-0.783826,0.620981,1e-06,-0.783826,0.620981,1e-06,-0.783825,0.620982,1e-06,-0.783825,0.620982,1e-06,-0.783825,0.620982,1e-06,-0.783828,0.620978,1e-06,-0.783828,0.620978,1e-06,-0.783828,0.620978,-0,-0.783825,0.620982,-0,-0.783825,0.620982,-0,-0.783825,0.620982,1e-06,-0.783825,0.620982,1e-06,-0.783825,0.620982,1e-06,-0.783825,0.620982,-0,-0.783837,0.620966,-0,-0.783837,0.620966,-0,-0.783837,0.620966,1e-06,-0.783825,0.620982,2e-06,-0.78381,0.621,2e-06,-0.78381,0.621,2e-06,-0.78381,0.621,-1e-06,-0.783824,0.620983,-1e-06,-0.783824,0.620983,-1e-06,-0.783824,0.620983,-2e-06,-0.783826,0.620981,-2e-06,-0.783826,0.620981,-2e-06,-0.783826,0.620981,-3e-06,-0.783825,0.620982,-3e-06,-0.783825,0.620982,-3e-06,-0.783825,0.620982,-3e-06,-0.783825,0.620982,-1e-06,-0.783821,0.620987,-1e-06,-0.783821,0.620987,-1e-06,-0.783821,0.620987,0,-0.783827,0.620979,0,-0.783827,0.620979,0,-0.783827,0.620979,-0,-0.783825,0.620982,-0,-0.783825,0.620982,-0,-0.783825,0.620982,-1e-06,-0.783825,0.620982,-1e-06,-0.783825,0.620982,-1e-06,-0.783825,0.620982,-0,-0.783827,0.620979,-0,-0.783827,0.620979,-0,-0.783827,0.620979,-1e-06,-0.783824,0.620984,-1e-06,-0.783824,0.620984,-1e-06,-0.783824,0.620984,1e-06,-0.78383,0.620975,1e-06,-0.78383,0.620975,1e-06,-0.78383,0.620975,-1e-06,-0.783831,0.620975,-1e-06,-0.783831,0.620975,-1e-06,-0.783831,0.620975,2e-06,-0.783824,0.620983,2e-06,-0.783824,0.620983,2e-06,-0.783824,0.620983,-3.2e-05,-0.783758,0.621067,-3.2e-05,-0.783758,0.621067,-3.2e-05,-0.783758,0.621067,-1e-06,-0.783826,0.620981,-1e-06,-0.783826,0.620981,-1e-06,-0.783826,0.620981,1e-06,-0.783819,0.620989,1e-06,-0.783819,0.620989,1e-06,-0.783819,0.620989,1e-06,-0.783817,0.620992,1e-06,-0.783817,0.620992,1e-06,-0.783817,0.620992,0,-0.783823,0.620984,0,-0.783823,0.620984,0,-0.783823,0.620984,1e-06,-0.78383,0.620975,1e-06,-0.78383,0.620975,1e-06,-0.78383,0.620975,1e-06,-0.783828,0.620977,1e-06,-0.783828,0.620977,1e-06,-0.783828,0.620977,-4e-06,-0.783821,0.620987,-4e-06,-0.783821,0.620987,-4e-06,-0.783821,0.620987,0,-0.783835,0.620969,0,-0.783835,0.620969,0,-0.783835,0.620969,1e-06,-0.783814,0.620996,1e-06,-0.783814,0.620996,1e-06,-0.783814,0.620996,0,-0.783822,0.620985,0,-0.783822,0.620985,0,-0.783822,0.620985,0,-0.783823,0.620984,0,-0.783823,0.620984,0,-0.783823,0.620984,-1e-06,-0.783827,0.62098,-1e-06,-0.783827,0.62098,-1e-06,-0.783827,0.62098,-4e-06,-0.783835,0.620969,-4e-06,-0.783835,0.620969,-4e-06,-0.783835,0.620969,-1e-06,-0.783826,0.620981,-1e-06,-0.783826,0.620981,-1e-06,-0.783826,0.620981,-4e-06,-0.783822,0.620986,-4e-06,-0.783822,0.620986,-4e-06,-0.783822,0.620986,2e-06,-0.783826,0.62098,2e-06,-0.783826,0.62098,2e-06,-0.783826,0.62098,-1e-06,-0.783825,0.620981,-1e-06,-0.783825,0.620981,-1e-06,-0.783825,0.620981,2e-06,-0.783826,0.62098,2e-06,-0.783826,0.62098,-2e-06,-0.783827,0.620979,-2e-06,-0.783827,0.620979,-2e-06,-0.783827,0.620979,-3e-06,-0.783821,0.620987,-3e-06,-0.783821,0.620987,-3e-06,-0.783821,0.620987,-2e-06,-0.783825,0.620981,-2e-06,-0.783825,0.620981,-2e-06,-0.783825,0.620981,2e-06,-0.783828,0.620978,2e-06,-0.783828,0.620978,2e-06,-0.783828,0.620978,9e-06,-0.783827,0.620979,9e-06,-0.783827,0.620979,9e-06,-0.783827,0.620979,1e-06,-0.783833,0.620971,1e-06,-0.783833,0.620971,1e-06,-0.783833,0.620971,-3.6e-05,-0.783816,0.620993,-3.6e-05,-0.783816,0.620993,-3.6e-05,-0.783816,0.620993,-0,-0.783823,0.620984,-0,-0.783823,0.620984,-0,-0.783823,0.620984,-2e-06,-0.78382,0.620988,-2e-06,-0.78382,0.620988,-2e-06,-0.78382,0.620988,0,-0.783826,0.62098,0,-0.783826,0.62098,0,-0.783826,0.62098,-0,-0.783826,0.620981,-0,-0.783826,0.620981,-0,-0.783826,0.620981,0,-0.783824,0.620983,0,-0.783824,0.620983,0,-0.783824,0.620983,-1e-06,-0.783824,0.620983,-1e-06,-0.783824,0.620983,-1e-06,-0.783824,0.620983,2e-06,-0.783828,0.620978,2e-06,-0.783828,0.620978,2e-06,-0.783828,0.620978,1e-06,-0.783826,0.620981,1e-06,-0.783826,0.620981,1e-06,-0.783826,0.620981,1e-06,-0.783832,0.620973,1e-06,-0.783832,0.620973,1e-06,-0.783832,0.620973,-4e-06,-0.783818,0.62099,-4e-06,-0.783818,0.62099,-4e-06,-0.783818,0.62099,-3e-06,-0.783827,0.62098,-3e-06,-0.783827,0.62098,-3e-06,-0.783827,0.62098,0,-0.783827,0.620979,0,-0.783827,0.620979,0,-0.783827,0.620979,-3e-06,-0.78384,0.620963,-3e-06,-0.78384,0.620963,-3e-06,-0.78384,0.620963,-1e-06,-0.783825,0.620982,-1e-06,-0.783825,0.620982,-1e-06,-0.783825,0.620982,1e-06,-0.783827,0.620979,1e-06,-0.783827,0.620979,1e-06,-0.783827,0.620979,4e-06,-0.783825,0.620982,4e-06,-0.783825,0.620982,4e-06,-0.783825,0.620982,1e-06,-0.783818,0.62099,1e-06,-0.783818,0.62099,1e-06,-0.783818,0.62099,2e-06,-0.783817,0.620992,2e-06,-0.783817,0.620992,2e-06,-0.783817,0.620992,4e-06,-0.783819,0.620989,4e-06,-0.783819,0.620989,4e-06,-0.783819,0.620989,1e-06,-0.783829,0.620976,1e-06,-0.783829,0.620976,1e-06,-0.783829,0.620976,-5e-06,-0.783824,0.620982,-5e-06,-0.783824,0.620982,-5e-06,-0.783824,0.620982,-0,-0.783818,0.62099,-0,-0.783818,0.62099,-0,-0.783818,0.62099,-1e-06,-0.783825,0.620982,-1e-06,-0.783825,0.620982,-1e-06,-0.783825,0.620982,-2e-06,-0.783842,0.62096,-2e-06,-0.783842,0.62096,-2e-06,-0.783842,0.62096,-1e-06,-0.783829,0.620977,-1e-06,-0.783829,0.620977,-1e-06,-0.783829,0.620977,-1e-06,-0.783828,0.620978,-1e-06,-0.783828,0.620978,-1e-06,-0.783828,0.620978,1e-06,-0.783828,0.620978,1e-06,-0.783828,0.620978,1e-06,-0.783828,0.620978,3e-06,-0.783826,0.62098,3e-06,-0.783826,0.62098,3e-06,-0.783826,0.62098,-1e-06,-0.783828,0.620978,3e-06,-0.783826,0.62098,-4e-06,-0.783825,0.620981,-4e-06,-0.783825,0.620981,-4e-06,-0.783825,0.620981,3e-06,-0.783826,0.62098,-1e-06,-0.783821,0.620987,-1e-06,-0.783821,0.620987,-1e-06,-0.783821,0.620987,-4e-06,-0.783826,0.620981,-4e-06,-0.783826,0.620981,-4e-06,-0.783826,0.620981,1e-06,-0.783829,0.620977,1e-06,-0.783829,0.620977,1e-06,-0.783829,0.620977,-1e-06,-0.783808,0.621003,-1e-06,-0.783808,0.621003,-1e-06,-0.783808,0.621003,-0,-0.783828,0.620978,-0,-0.783828,0.620978,-0,-0.783828,0.620978,-0,-0.783826,0.620981,-0,-0.783826,0.620981,-0,-0.783826,0.620981,0,-0.783828,0.620978,0,-0.783828,0.620978,-0,-0.783823,0.620984,-0,-0.783823,0.620984,-0,-0.783823,0.620984,-2e-06,-0.783827,0.620979,-2e-06,-0.783827,0.620979,-2e-06,-0.783827,0.620979,2e-06,-0.783825,0.620981,2e-06,-0.783825,0.620981,2e-06,-0.783825,0.620981,2e-06,-0.783825,0.620982,2e-06,-0.783825,0.620982,2e-06,-0.783825,0.620982,1e-06,-0.783825,0.620982,1e-06,-0.783825,0.620982,1e-06,-0.783825,0.620982,0,-0.783817,0.620991,0,-0.783817,0.620991,0,-0.783817,0.620991,1e-06,-0.783827,0.62098,1e-06,-0.783827,0.62098,1e-06,-0.783827,0.62098,-2e-06,-0.783828,0.620978,-2e-06,-0.783828,0.620978,-2e-06,-0.783828,0.620978,0,-0.783826,0.62098,0,-0.783826,0.62098,0,-0.783826,0.62098,2e-06,-0.783826,0.620981,2e-06,-0.783826,0.620981,2e-06,-0.783826,0.620981,0,-0.783822,0.620985,0,-0.783822,0.620985,0,-0.783822,0.620985,6e-06,-0.783841,0.620962,6e-06,-0.783841,0.620962,6e-06,-0.783841,0.620962,-1e-06,-0.783825,0.620982,-1e-06,-0.783825,0.620982,-1e-06,-0.783825,0.620982,-1.7e-05,-0.783863,0.620933,-1.7e-05,-0.783863,0.620933,-1.7e-05,-0.783863,0.620933,0,-0.783823,0.620984,0,-0.783823,0.620984,0,-0.783823,0.620984,1e-06,-0.783824,0.620983,1e-06,-0.783824,0.620983,1e-06,-0.783824,0.620983,0,-0.783824,0.620983,0,-0.783824,0.620983,0,-0.783824,0.620983,2e-06,-0.78383,0.620975,2e-06,-0.78383,0.620975,2e-06,-0.78383,0.620975,2e-06,-0.783821,0.620987,2e-06,-0.783821,0.620987,2e-06,-0.783821,0.620987,-1e-06,-0.783829,0.620977,-1e-06,-0.783829,0.620977,-1e-06,-0.783829,0.620977,-3e-06,-0.783825,0.620981,-3e-06,-0.783825,0.620981,-3e-06,-0.783825,0.620981,-4e-06,-0.783824,0.620983,-4e-06,-0.783824,0.620983,-4e-06,-0.783824,0.620983,-1e-06,-0.783825,0.620982,-1e-06,-0.783825,0.620982,-1e-06,-0.783825,0.620982,-3e-06,-0.783823,0.620984,-3e-06,-0.783823,0.620984,-3e-06,-0.783823,0.620984,-4e-06,-0.783826,0.620981,-4e-06,-0.783826,0.620981,-4e-06,-0.783826,0.620981,1e-06,-0.783825,0.620981,1e-06,-0.783825,0.620981,1e-06,-0.783825,0.620981,-8e-06,-0.783825,0.620981,-8e-06,-0.783825,0.620981,-8e-06,-0.783825,0.620981,-4e-06,-0.783827,0.620979,-4e-06,-0.783827,0.620979,-4e-06,-0.783827,0.620979,3e-06,-0.783827,0.62098,3e-06,-0.783827,0.62098,3e-06,-0.783827,0.62098,-2e-06,-0.783827,0.620979,-2e-06,-0.783827,0.620979,-2e-06,-0.783827,0.620979,-2e-06,-0.783825,0.620982,-2e-06,-0.783825,0.620982,-2e-06,-0.783825,0.620982,2e-06,-0.783826,0.620981,2e-06,-0.783826,0.620981,2e-06,-0.783826,0.620981,-1e-06,-0.783827,0.62098,-1e-06,-0.783827,0.62098,-1e-06,-0.783827,0.62098,2e-06,-0.783822,0.620985,2e-06,-0.783822,0.620985,2e-06,-0.783822,0.620985,-4e-06,-0.783824,0.620983,-4e-06,-0.783824,0.620983,-4e-06,-0.783824,0.620983,-0,-0.783829,0.620977,-0,-0.783829,0.620977,-0,-0.783829,0.620977,2e-06,-0.783827,0.62098,2e-06,-0.783827,0.62098,2e-06,-0.783827,0.62098,-2e-06,-0.783826,0.620981,-2e-06,-0.783826,0.620981,-2e-06,-0.783826,0.620981,-2e-06,-0.783824,0.620983,-2e-06,-0.783824,0.620983,-2e-06,-0.783824,0.620983,0,-0.783826,0.620981,0,-0.783826,0.620981,0,-0.783826,0.620981,-1e-06,-0.783824,0.620983,-1e-06,-0.783824,0.620983,-1e-06,-0.783824,0.620983,-5e-06,-0.783827,0.620979,-5e-06,-0.783827,0.620979,-5e-06,-0.783827,0.620979,6e-06,-0.783829,0.620977,6e-06,-0.783829,0.620977,6e-06,-0.783829,0.620977,-2e-06,-0.783825,0.620982,-2e-06,-0.783825,0.620982,-2e-06,-0.783825,0.620982,-1e-06,-0.783827,0.620979,-1e-06,-0.783827,0.620979,-1e-06,-0.783827,0.620979,2e-06,-0.783824,0.620983,2e-06,-0.783824,0.620983,2e-06,-0.783824,0.620983,2e-06,-0.783824,0.620983,-0,-0.783826,0.62098,-0,-0.783826,0.62098,-0,-0.783826,0.62098,-0,-0.783818,0.620991,-0,-0.783818,0.620991,-0,-0.783818,0.620991,1e-06,-0.783826,0.620981,1e-06,-0.783826,0.620981,1e-06,-0.783826,0.620981,0,-0.783829,0.620976,0,-0.783829,0.620976,0,-0.783829,0.620976,-0,-0.78382,0.620988,-0,-0.78382,0.620988,-0,-0.78382,0.620988,-0,-0.783825,0.620982,-0,-0.783825,0.620982,-0,-0.783825,0.620982,0,-0.783827,0.620979,0,-0.783827,0.620979,0,-0.783827,0.620979,-9e-06,-0.783894,0.620895,-9e-06,-0.783894,0.620895,-9e-06,-0.783894,0.620895,1e-06,-0.783821,0.620987,1e-06,-0.783821,0.620987,1e-06,-0.783821,0.620987,-0,-0.783827,0.620979,-0,-0.783827,0.620979,2e-06,-0.783824,0.620983,2e-06,-0.783824,0.620983,2e-06,-0.783824,0.620983,0,-0.783826,0.62098,0,-0.783826,0.62098,0,-0.783826,0.62098,-0,-0.783828,0.620979,-0,-0.783828,0.620979,-0,-0.783828,0.620979,-1e-06,-0.783823,0.620984,-1e-06,-0.783823,0.620984,-1e-06,-0.783823,0.620984,-0,-0.783825,0.620982,-0,-0.783825,0.620982,-0,-0.783825,0.620982,0,-0.783822,0.620986,0,-0.783822,0.620986,0,-0.783822,0.620986,-2e-06,-0.783824,0.620983,-2e-06,-0.783824,0.620983,-2e-06,-0.783824,0.620983,-0,-0.783828,0.620978,-0,-0.783828,0.620978,-0,-0.783828,0.620978,2e-06,-0.783825,0.620982,2e-06,-0.783825,0.620982,2e-06,-0.783825,0.620982,1e-06,-0.783824,0.620983,1e-06,-0.783824,0.620983,1e-06,-0.783824,0.620983,-2e-06,-0.783827,0.620979,-2e-06,-0.783827,0.620979,-2e-06,-0.783827,0.620979,3e-06,-0.783826,0.62098,3e-06,-0.783826,0.62098,3e-06,-0.783826,0.62098,3e-06,-0.783826,0.620981,3e-06,-0.783826,0.620981,3e-06,-0.783826,0.620981,-2e-06,-0.783825,0.620982,-2e-06,-0.783825,0.620982,-2e-06,-0.783825,0.620982,2e-06,-0.783826,0.620981,2e-06,-0.783826,0.620981,2e-06,-0.783826,0.620981,2e-06,-0.783825,0.620982,2e-06,-0.783825,0.620982,2e-06,-0.783825,0.620982,-1e-06,-0.783827,0.620979,-1e-06,-0.783827,0.620979,-1e-06,-0.783827,0.620979,-1e-06,-0.783827,0.620979,-1e-06,-0.783825,0.620982,-1e-06,-0.783825,0.620982,-1e-06,-0.783825,0.620982,2e-06,-0.783827,0.620979,2e-06,-0.783827,0.620979,2e-06,-0.783827,0.620979,-2e-06,-0.783826,0.620981,-2e-06,-0.783826,0.620981,-2e-06,-0.783826,0.620981,-4e-06,-0.783825,0.620982,-4e-06,-0.783825,0.620982,-4e-06,-0.783825,0.620982,3e-06,-0.783827,0.62098,3e-06,-0.783827,0.62098,3e-06,-0.783827,0.62098,-1e-06,-0.783829,0.620977,-1e-06,-0.783829,0.620977,-1e-06,-0.783829,0.620977,2e-06,-0.783824,0.620983,2e-06,-0.783824,0.620983,2e-06,-0.783824,0.620983,-1e-06,-0.783828,0.620978,-1e-06,-0.783828,0.620978,-1e-06,-0.783828,0.620978,0,-0.783826,0.62098,0,-0.783826,0.62098,0,-0.783826,0.62098,-1e-06,-0.783829,0.620976,-1e-06,-0.783829,0.620976,-1e-06,-0.783829,0.620976,-1e-06,-0.783828,0.620978,-1e-06,-0.783828,0.620978,0,-0.783826,0.62098,-0,-0.783825,0.620982,-0,-0.783825,0.620982,-0,-0.783825,0.620982,2e-06,-0.783822,0.620985,2e-06,-0.783822,0.620985,2e-06,-0.783822,0.620985,-1e-06,-0.783826,0.620981,-1e-06,-0.783826,0.620981,-1e-06,-0.783826,0.620981,3e-06,-0.78381,0.621001,3e-06,-0.78381,0.621001,3e-06,-0.78381,0.621001,-1e-06,-0.783826,0.620981,0,-0.783825,0.620982,0,-0.783825,0.620982,0,-0.783825,0.620982,1e-06,-0.783825,0.620981,1e-06,-0.783825,0.620981,1e-06,-0.783825,0.620981,-1e-06,-0.783821,0.620987,-1e-06,-0.783821,0.620987,-1e-06,-0.783821,0.620987,1e-06,-0.783832,0.620974,1e-06,-0.783832,0.620974,1e-06,-0.783832,0.620974,1e-06,-0.783821,0.620987,1e-06,-0.783821,0.620987,1e-06,-0.783821,0.620987,1e-06,-0.783823,0.620984,1e-06,-0.783823,0.620984,1e-06,-0.783823,0.620984,1e-06,-0.783826,0.620981,1e-06,-0.783826,0.620981,1e-06,-0.783826,0.620981,1e-06,-0.783831,0.620974,1e-06,-0.783831,0.620974,1e-06,-0.783831,0.620974,-2e-06,-0.783837,0.620967,-2e-06,-0.783837,0.620967,-2e-06,-0.783837,0.620967,-1e-06,-0.783816,0.620993,-1e-06,-0.783816,0.620993,-1e-06,-0.783816,0.620993,3e-06,-0.783822,0.620985,3e-06,-0.783822,0.620985,3e-06,-0.783822,0.620985,-1e-06,-0.783824,0.620983,-1e-06,-0.783824,0.620983,-1e-06,-0.783824,0.620983,1e-06,-0.783827,0.62098,1e-06,-0.783827,0.62098,1e-06,-0.783827,0.62098,-0,-0.783824,0.620983,-0,-0.783824,0.620983,-0,-0.783824,0.620983,1e-06,-0.783826,0.620981,1e-06,-0.783826,0.620981,1e-06,-0.783826,0.620981,0,-0.783826,0.620981,0,-0.783826,0.620981,0,-0.783826,0.620981,0,-0.783827,0.620979,0,-0.783827,0.620979,0,-0.783827,0.620979,-4e-06,-0.783823,0.620985,-4e-06,-0.783823,0.620985,-4e-06,-0.783823,0.620985,1e-06,-0.783825,0.620981,1e-06,-0.783825,0.620981,1e-06,-0.783825,0.620981,1e-06,-0.783832,0.620972,1e-06,-0.783832,0.620972,1e-06,-0.783832,0.620972,0,-0.78383,0.620976,0,-0.78383,0.620976,0,-0.78383,0.620976,-0,-0.783825,0.620981,-0,-0.783825,0.620981,-0,-0.783825,0.620981,0,-0.783824,0.620983,0,-0.783824,0.620983,0,-0.783824,0.620983,-0,-0.783825,0.620982,-0,-0.783825,0.620982,-0,-0.783825,0.620982,-2e-06,-0.783823,0.620984,-2e-06,-0.783823,0.620984,-2e-06,-0.783823,0.620984,-1e-06,-0.783824,0.620983,-1e-06,-0.783824,0.620983,-1e-06,-0.783824,0.620983,-1e-06,-0.783823,0.620984,-1e-06,-0.783823,0.620984,-1e-06,-0.783823,0.620984,2e-06,-0.783825,0.620981,2e-06,-0.783825,0.620981,2e-06,-0.783825,0.620981,-4e-06,-0.78383,0.620976,-4e-06,-0.78383,0.620976,-4e-06,-0.78383,0.620976,3e-06,-0.783819,0.620989,3e-06,-0.783819,0.620989,3e-06,-0.783819,0.620989,-3e-06,-0.783825,0.620982,-3e-06,-0.783825,0.620982,-3e-06,-0.783825,0.620982,2e-06,-0.783826,0.62098,2e-06,-0.783826,0.62098,2e-06,-0.783826,0.62098,3e-06,-0.783826,0.62098,3e-06,-0.783826,0.62098,3e-06,-0.783826,0.62098,0,-0.783827,0.620979,0,-0.783827,0.620979,0,-0.783827,0.620979,1e-06,-0.78383,0.620975,1e-06,-0.78383,0.620975,1e-06,-0.78383,0.620975,-1e-06,-0.783825,0.620982,-1e-06,-0.783825,0.620982,-1e-06,-0.783825,0.620982,1.2e-05,-0.783801,0.621013,1.2e-05,-0.783801,0.621013,1.2e-05,-0.783801,0.621013,0,-0.783823,0.620984,0,-0.783823,0.620984,0,-0.783823,0.620984,1e-06,-0.783825,0.620982,1e-06,-0.783825,0.620982,1e-06,-0.783825,0.620982,0,-0.783824,0.620983,0,-0.783824,0.620983,0,-0.783824,0.620983,2e-06,-0.78383,0.620975,2e-06,-0.78383,0.620975,2e-06,-0.78383,0.620975,-0,-0.783816,0.620994,-0,-0.783816,0.620994,-0,-0.783816,0.620994,0,-0.783827,0.62098,0,-0.783827,0.62098,0,-0.783827,0.62098,1e-06,-0.783824,0.620983,1e-06,-0.783824,0.620983,1e-06,-0.783824,0.620983,1e-06,-0.783831,0.620974,1e-06,-0.783831,0.620974,1e-06,-0.783831,0.620974,-3e-06,-0.783811,0.621,-3e-06,-0.783811,0.621,-3e-06,-0.783811,0.621,2e-06,-0.783827,0.620979,2e-06,-0.783827,0.620979,2e-06,-0.783827,0.620979,-4e-06,-0.783921,0.620861,-4e-06,-0.783921,0.620861,-4e-06,-0.783921,0.620861,2e-06,-0.783828,0.620978,2e-06,-0.783828,0.620978,2e-06,-0.783828,0.620978,-0,-0.783819,0.62099,-0,-0.783819,0.62099,-0,-0.783819,0.62099,4e-06,-0.783828,0.620978,4e-06,-0.783828,0.620978,4e-06,-0.783828,0.620978,-3e-06,-0.783826,0.620981,-3e-06,-0.783826,0.620981,-3e-06,-0.783826,0.620981,-2e-06,-0.783825,0.620981,-2e-06,-0.783825,0.620981,-2e-06,-0.783825,0.620981,-1e-06,-0.783822,0.620985,-1e-06,-0.783822,0.620985,-1e-06,-0.783822,0.620985,-0,-0.783826,0.620981,-0,-0.783826,0.620981,-0,-0.783826,0.620981,1e-06,-0.783824,0.620984,1e-06,-0.783824,0.620984,1e-06,-0.783824,0.620984,0,-0.783824,0.620982,0,-0.783824,0.620982,0,-0.783824,0.620982,-5e-06,-0.783826,0.62098,-5e-06,-0.783826,0.62098,-5e-06,-0.783826,0.62098,-9e-06,-0.783818,0.62099,-9e-06,-0.783818,0.62099,-9e-06,-0.783818,0.62099,-2e-06,-0.783827,0.62098,-2e-06,-0.783827,0.62098,-2e-06,-0.783827,0.62098,-1e-06,-0.783827,0.62098,-1e-06,-0.783827,0.62098,-1e-06,-0.783827,0.62098,1e-06,-0.783826,0.62098,1e-06,-0.783826,0.62098,1e-06,-0.783826,0.62098,-2e-06,-0.783827,0.620979,-2e-06,-0.783827,0.620979,-2e-06,-0.783827,0.620979,-2e-06,-0.783828,0.620979,-2e-06,-0.783828,0.620979,-2e-06,-0.783828,0.620979,-2e-06,-0.783827,0.620979,-4e-06,-0.783826,0.62098,-4e-06,-0.783826,0.62098,-4e-06,-0.783826,0.62098,1e-06,-0.783825,0.620982,1e-06,-0.783825,0.620982,1e-06,-0.783825,0.620982,-2e-06,-0.783826,0.620981,-2e-06,-0.783826,0.620981,-2e-06,-0.783826,0.620981,-0,-0.783824,0.620983,-0,-0.783824,0.620983,-0,-0.783824,0.620983,-2e-06,-0.783826,0.62098,-2e-06,-0.783826,0.62098,-2e-06,-0.783826,0.62098,1e-06,-0.783826,0.620981,1e-06,-0.783826,0.620981,1e-06,-0.783826,0.620981,-2e-06,-0.783825,0.620981,-2e-06,-0.783825,0.620981,-2e-06,-0.783825,0.620981,-3e-06,-0.783826,0.620981,-3e-06,-0.783826,0.620981,-3e-06,-0.783826,0.620981,-0,-0.783824,0.620983,-0,-0.783824,0.620983,-0,-0.783824,0.620983,-2e-06,-0.783827,0.62098,-2e-06,-0.783827,0.62098,-2e-06,-0.783827,0.62098,-2e-06,-0.783825,0.620981,-2e-06,-0.783825,0.620981,-2e-06,-0.783825,0.620981,-0,-0.783825,0.620982,-0,-0.783825,0.620982,-0,-0.783825,0.620982,4e-06,-0.783831,0.620975,4e-06,-0.783831,0.620975,4e-06,-0.783831,0.620975,-3e-06,-0.783826,0.620981,-3e-06,-0.783826,0.620981,4e-06,-0.78383,0.620976,4e-06,-0.78383,0.620976,4e-06,-0.78383,0.620976,5e-06,-0.78383,0.620975,5e-06,-0.78383,0.620975,5e-06,-0.78383,0.620975,-1e-06,-0.783823,0.620984,-1e-06,-0.783823,0.620984,-1e-06,-0.783823,0.620984,-1e-06,-0.783822,0.620985,-1e-06,-0.783822,0.620985,-1e-06,-0.783822,0.620985,2e-06,-0.78382,0.620988,2e-06,-0.78382,0.620988,2e-06,-0.78382,0.620988,1.3e-05,-0.783826,0.62098,1.3e-05,-0.783826,0.62098,1.3e-05,-0.783826,0.62098,-2e-06,-0.78381,0.621001,-2e-06,-0.78381,0.621001,-2e-06,-0.78381,0.621001,0,-0.783825,0.620982,0,-0.783825,0.620982,0,-0.783825,0.620982,0,-0.783827,0.620979,0,-0.783827,0.620979,0,-0.783827,0.620979,0,-0.783827,0.620979,-0,-0.783826,0.620981,-0,-0.783826,0.620981,-0,-0.783826,0.620981,0,-0.783826,0.620981,1.6e-05,-0.783803,0.621009,1.6e-05,-0.783803,0.621009,1.6e-05,-0.783803,0.621009,0,-0.783828,0.620978,0,-0.783828,0.620978,0,-0.783828,0.620978,3e-06,-0.783823,0.620984,3e-06,-0.783823,0.620984,3e-06,-0.783823,0.620984,1e-06,-0.783824,0.620983,1e-06,-0.783824,0.620983,1e-06,-0.783824,0.620983,-0,-0.783825,0.620982,-0,-0.783825,0.620982,-0,-0.783825,0.620982,5e-06,-0.783824,0.620983,5e-06,-0.783824,0.620983,5e-06,-0.783824,0.620983,2e-06,-0.783829,0.620977,2e-06,-0.783829,0.620977,2e-06,-0.783829,0.620977,4e-06,-0.783826,0.62098,4e-06,-0.783826,0.62098,4e-06,-0.783826,0.62098,3e-06,-0.783827,0.620979,3e-06,-0.783827,0.620979,3e-06,-0.783827,0.620979,4e-06,-0.783828,0.620978,4e-06,-0.783828,0.620978,4e-06,-0.783828,0.620978,-3e-06,-0.783825,0.620982,-3e-06,-0.783825,0.620982,-3e-06,-0.783825,0.620982,-3e-06,-0.783822,0.620986,-3e-06,-0.783822,0.620986,-3e-06,-0.783822,0.620986,-3e-06,-0.783826,0.620981,-3e-06,-0.783826,0.620981,-3e-06,-0.783826,0.620981,-3e-06,-0.783824,0.620983,-3e-06,-0.783824,0.620983,-3e-06,-0.783824,0.620983,0,-0.783825,0.620982,0,-0.783825,0.620982,0,-0.783825,0.620982,2e-06,-0.783827,0.62098,2e-06,-0.783827,0.62098,2e-06,-0.783827,0.62098,1e-06,-0.783825,0.620982,1e-06,-0.783825,0.620982,1e-06,-0.783825,0.620982,-1e-06,-0.783828,0.620978,-1e-06,-0.783828,0.620978,-1e-06,-0.783828,0.620978,0,-0.783823,0.620984,0,-0.783823,0.620984,0,-0.783823,0.620984,-1e-06,-0.783827,0.620979,-1e-06,-0.783827,0.620979,-1e-06,-0.783827,0.620979,-0,-0.78383,0.620976,-0,-0.78383,0.620976,-0,-0.78383,0.620976,-3e-06,-0.783824,0.620982,-3e-06,-0.783824,0.620982,-3e-06,-0.783824,0.620982,-1e-06,-0.783821,0.620987,-1e-06,-0.783821,0.620987,-1e-06,-0.783821,0.620987,1e-06,-0.783827,0.62098,1e-06,-0.783827,0.62098,1e-06,-0.783827,0.62098,-3e-06,-0.783822,0.620986,-3e-06,-0.783822,0.620986,-3e-06,-0.783822,0.620986,4e-06,-0.783827,0.62098,4e-06,-0.783827,0.62098,4e-06,-0.783827,0.62098,-1.2e-05,-0.78382,0.620989,-1.2e-05,-0.78382,0.620989,-1.2e-05,-0.78382,0.620989,5e-06,-0.783825,0.620981,5e-06,-0.783825,0.620981,5e-06,-0.783825,0.620981,-2e-06,-0.783823,0.620985,-2e-06,-0.783823,0.620985,-2e-06,-0.783823,0.620985,-1e-06,-0.78383,0.620975,-1e-06,-0.78383,0.620975,-1e-06,-0.78383,0.620975,0,-0.783827,0.620979,0,-0.783827,0.620979,0,-0.783827,0.620979,-1e-06,-0.783828,0.620978,-1e-06,-0.783828,0.620978,-1e-06,-0.783828,0.620978,2e-06,-0.783825,0.620982,2e-06,-0.783825,0.620982,2e-06,-0.783825,0.620982,-3e-06,-0.783824,0.620983,-3e-06,-0.783824,0.620983,-3e-06,-0.783824,0.620983,-2e-06,-0.783822,0.620986,-2e-06,-0.783822,0.620986,-2e-06,-0.783822,0.620986,3e-06,-0.783826,0.62098,3e-06,-0.783826,0.62098,3e-06,-0.783826,0.62098,4e-06,-0.783831,0.620974,4e-06,-0.783831,0.620974,4e-06,-0.783831,0.620974,-2e-06,-0.783828,0.620977,-2e-06,-0.783828,0.620977,-2e-06,-0.783828,0.620977,-1e-06,-0.783815,0.620995,-1e-06,-0.783815,0.620995,-1e-06,-0.783815,0.620995,-9e-06,-0.783837,0.620967,-9e-06,-0.783837,0.620967,-9e-06,-0.783837,0.620967,-3e-06,-0.78383,0.620975,-3e-06,-0.78383,0.620975,-3e-06,-0.78383,0.620975,3e-06,-0.783824,0.620983,3e-06,-0.783824,0.620983,3e-06,-0.783824,0.620983,-2e-06,-0.783826,0.62098,-2e-06,-0.783826,0.62098,-2e-06,-0.783826,0.62098,3e-06,-0.78383,0.620976,3e-06,-0.78383,0.620976,3e-06,-0.78383,0.620976,0,-0.783823,0.620984,0,-0.783823,0.620984,0,-0.783823,0.620984,-0,-0.783824,0.620982,-0,-0.783824,0.620982,-0,-0.783824,0.620982,3e-06,-0.783818,0.620991,3e-06,-0.783818,0.620991,3e-06,-0.783818,0.620991,-2e-06,-0.783804,0.621008,-2e-06,-0.783804,0.621008,-2e-06,-0.783804,0.621008,1e-06,-0.783828,0.620978,1e-06,-0.783828,0.620978,1e-06,-0.783828,0.620978,0,-0.783832,0.620973,0,-0.783832,0.620973,0,-0.783832,0.620973,0,-0.783827,0.62098,0,-0.783827,0.62098,0,-0.783827,0.62098,1e-06,-0.783827,0.620979,1e-06,-0.783827,0.620979,1e-06,-0.783827,0.620979,-0,-0.783831,0.620974,-0,-0.783831,0.620974,-0,-0.783831,0.620974,8e-06,-0.783851,0.620949,8e-06,-0.783851,0.620949,8e-06,-0.783851,0.620949,-0,-0.783825,0.620982,-0,-0.783825,0.620982,-0,-0.783825,0.620982,0,-0.783825,0.620981,0,-0.783825,0.620981,0,-0.783825,0.620981,1e-06,-0.783825,0.620981,1e-06,-0.783825,0.620981,1e-06,-0.783825,0.620981,1e-06,-0.783825,0.620982,1e-06,-0.783825,0.620982,1e-06,-0.783825,0.620982,-1e-06,-0.783828,0.620978,-1e-06,-0.783828,0.620978,-1e-06,-0.783828,0.620978,-0,-0.783827,0.620979,-0,-0.783827,0.620979,-0,-0.783827,0.620979,-2e-06,-0.783825,0.620982,-2e-06,-0.783825,0.620982,-2e-06,-0.783825,0.620982,-0,-0.783826,0.62098,-0,-0.783826,0.62098,-0,-0.783826,0.62098,-0,-0.783822,0.620986,-0,-0.783822,0.620986,-0,-0.783822,0.620986,2e-06,-0.783825,0.620982,2e-06,-0.783825,0.620982,2e-06,-0.783825,0.620982,2e-06,-0.783826,0.620981,2e-06,-0.783826,0.620981,2e-06,-0.783826,0.620981,1e-06,-0.783826,0.620981,1e-06,-0.783826,0.620981,1e-06,-0.783826,0.620981,-1e-06,-0.783835,0.620969,-1e-06,-0.783835,0.620969,-1e-06,-0.783835,0.620969,0,-0.783826,0.620981,0,-0.783826,0.620981,0,-0.783826,0.620981,-0,-0.783825,0.620982,-0,-0.783825,0.620982,-0,-0.783825,0.620982,1e-06,-0.783826,0.620981,-0,-0.783825,0.620981,-0,-0.783825,0.620981,-0,-0.783825,0.620981,0,-0.783825,0.620982,0,-0.783825,0.620982,0,-0.783825,0.620982,-0,-0.783823,0.620984,-0,-0.783823,0.620984,-0,-0.783823,0.620984,1e-06,-0.783825,0.620982,1e-06,-0.783825,0.620982,1e-06,-0.783825,0.620982,-1e-06,-0.783826,0.620981,-1e-06,-0.783826,0.620981,-1e-06,-0.783826,0.620981,-4e-06,-0.783832,0.620973,-4e-06,-0.783832,0.620973,-4e-06,-0.783832,0.620973,1e-06,-0.783823,0.620984,1e-06,-0.783823,0.620984,1e-06,-0.783823,0.620984,0,-0.783827,0.620979,0,-0.783827,0.620979,0,-0.783827,0.620979,-1e-06,-0.783825,0.620982,-1e-06,-0.783825,0.620982,-1e-06,-0.783825,0.620982,0,-0.783826,0.620981,0,-0.783826,0.620981,0,-0.783826,0.620981,3e-06,-0.783827,0.62098,3e-06,-0.783827,0.62098,3e-06,-0.783827,0.62098,-0,-0.783826,0.620981,-0,-0.783826,0.620981,-0,-0.783826,0.620981,-0,-0.783824,0.620983,-0,-0.783824,0.620983,-0,-0.783824,0.620983,0,-0.783825,0.620982,0,-0.783825,0.620982,0,-0.783825,0.620982,-1e-06,-0.783825,0.620982,-1e-06,-0.783825,0.620982,-2e-06,-0.783833,0.620972,-2e-06,-0.783833,0.620972,-2e-06,-0.783833,0.620972,-1e-06,-0.783826,0.620981,-1e-06,-0.783826,0.620981,-1e-06,-0.783826,0.620981,-0,-0.783826,0.620981,-0,-0.783826,0.620981,-0,-0.783826,0.620981,-5e-06,-0.783805,0.621007,-5e-06,-0.783805,0.621007,-5e-06,-0.783805,0.621007,-0,-0.783828,0.620978,-0,-0.783828,0.620978,-0,-0.783828,0.620978,0,-0.783827,0.62098,0,-0.783827,0.62098,0,-0.783827,0.62098,-0,-0.783825,0.620982,-0,-0.783825,0.620982,-0,-0.783825,0.620982,0,-0.783822,0.620985,0,-0.783822,0.620985,0,-0.783822,0.620985,0,-0.783836,0.620968,0,-0.783836,0.620968,0,-0.783836,0.620968,-1e-06,-0.783825,0.620982,-1e-06,-0.783825,0.620982,-1e-06,-0.783825,0.620982,-0,-0.783827,0.62098,-0,-0.783827,0.62098,-0,-0.783827,0.62098,1e-06,-0.783819,0.62099,1e-06,-0.783819,0.62099,1e-06,-0.783819,0.62099,-2e-06,-0.783832,0.620974,-2e-06,-0.783832,0.620974,-2e-06,-0.783832,0.620974,1e-06,-0.783827,0.62098,1e-06,-0.783827,0.62098,1e-06,-0.783827,0.62098,1e-06,-0.783828,0.620978,1e-06,-0.783828,0.620978,1e-06,-0.783828,0.620978,-1e-06,-0.783825,0.620982,-1e-06,-0.783825,0.620982,-1e-06,-0.783825,0.620982,-3e-06,-0.78382,0.620988,-3e-06,-0.78382,0.620988,-3e-06,-0.78382,0.620988,-1e-06,-0.783831,0.620973,-1e-06,-0.783831,0.620973,-1e-06,-0.783831,0.620973,-2e-06,-0.783826,0.62098,-2e-06,-0.783826,0.62098,-2e-06,-0.783826,0.62098,1e-06,-0.783824,0.620983,1e-06,-0.783824,0.620983,1e-06,-0.783824,0.620983,-1e-06,-0.783827,0.620979,-1e-06,-0.783827,0.620979,-1e-06,-0.783827,0.620979,1e-06,-0.783824,0.620983,2e-06,-0.783826,0.620981,2e-06,-0.783826,0.620981,2e-06,-0.783826,0.620981,0,-0.783824,0.620984,0,-0.783824,0.620984,0,-0.783824,0.620984,1e-06,-0.783826,0.62098,1e-06,-0.783826,0.62098,1e-06,-0.783826,0.62098,2e-06,-0.783826,0.62098,2e-06,-0.783826,0.62098,2e-06,-0.783826,0.62098,2e-06,-0.783826,0.620981,2e-06,-0.783826,0.620981,2e-06,-0.783826,0.620981,-2e-06,-0.783825,0.620982,-2e-06,-0.783825,0.620982,-2e-06,-0.783825,0.620982,-2e-06,-0.783825,0.620982,-6e-06,-0.783827,0.620979,-6e-06,-0.783827,0.620979,-6e-06,-0.783827,0.620979,-6e-06,-0.783825,0.620981,-6e-06,-0.783825,0.620981,-6e-06,-0.783825,0.620981,-1e-06,-0.783824,0.620983,-1e-06,-0.783824,0.620983,-1e-06,-0.783824,0.620983,-0,-0.783826,0.620981,-0,-0.783826,0.620981,-0,-0.783826,0.620981,-0,-0.783825,0.620981,-0,-0.783825,0.620981,-0,-0.783825,0.620981,-2e-06,-0.783823,0.620985,-2e-06,-0.783823,0.620985,-2e-06,-0.783823,0.620985,-3e-06,-0.783832,0.620973,-3e-06,-0.783832,0.620973,-3e-06,-0.783832,0.620973,-1.3e-05,-0.783831,0.620974,-1.3e-05,-0.783831,0.620974,-1.3e-05,-0.783831,0.620974,-4e-06,-0.783821,0.620986,-4e-06,-0.783821,0.620986,-4e-06,-0.783821,0.620986,-1e-06,-0.783827,0.62098,-1e-06,-0.783827,0.62098,-1e-06,-0.783827,0.62098,-2e-06,-0.783827,0.620979,-2e-06,-0.783827,0.620979,-2e-06,-0.783827,0.620979,1e-06,-0.783827,0.620979,1e-06,-0.783827,0.620979,1e-06,-0.783827,0.620979,2e-06,-0.783822,0.620985,2e-06,-0.783822,0.620985,2e-06,-0.783822,0.620985,2e-06,-0.783825,0.620982,2e-06,-0.783825,0.620982,2e-06,-0.783825,0.620982,4e-06,-0.783827,0.620979,4e-06,-0.783827,0.620979,4e-06,-0.783827,0.620979,4e-06,-0.783825,0.620982,4e-06,-0.783825,0.620982,4e-06,-0.783825,0.620982,-1e-05,-0.78383,0.620976,-1e-05,-0.78383,0.620976,-1e-05,-0.78383,0.620976,0,-0.783819,0.620989,0,-0.783819,0.620989,0,-0.783819,0.620989,-1e-06,-0.783826,0.62098,-1e-06,-0.783826,0.62098,-1e-06,-0.783826,0.62098,4e-06,-0.783827,0.62098,4e-06,-0.783827,0.62098,4e-06,-0.783827,0.62098,-0,-0.783824,0.620983,-0,-0.783824,0.620983,-0,-0.783824,0.620983,-1e-06,-0.783825,0.620981,-1e-06,-0.783825,0.620981,-1e-06,-0.783825,0.620981,0,-0.783826,0.620981,0,-0.783826,0.620981,0,-0.783826,0.620981,3e-06,-0.783826,0.620981,3e-06,-0.783826,0.620981,3e-06,-0.783826,0.620981,-1e-06,-0.783825,0.620982,-1e-06,-0.783825,0.620982,-1e-06,-0.783825,0.620982,2e-06,-0.783826,0.620981,2e-06,-0.783826,0.620981,2e-06,-0.783826,0.620981,-2e-06,-0.783825,0.620982,-2e-06,-0.783825,0.620982,-2e-06,-0.783825,0.620982,-1e-06,-0.783825,0.620982,-1e-06,-0.783825,0.620982,-1e-06,-0.783825,0.620982,3e-06,-0.783825,0.620982,3e-06,-0.783825,0.620982,3e-06,-0.783825,0.620982,3e-06,-0.783828,0.620977,3e-06,-0.783828,0.620977,3e-06,-0.783828,0.620977,-2e-06,-0.783826,0.62098,-2e-06,-0.783826,0.62098,-2e-06,-0.783826,0.62098,4e-06,-0.783825,0.620982,4e-06,-0.783825,0.620982,4e-06,-0.783825,0.620982,-6e-06,-0.783825,0.620981,-6e-06,-0.783825,0.620981,-6e-06,-0.783825,0.620981,2e-06,-0.783829,0.620977,2e-06,-0.783829,0.620977,2e-06,-0.783829,0.620977,4e-06,-0.783821,0.620987,4e-06,-0.783821,0.620987,4e-06,-0.783821,0.620987,-3e-06,-0.783829,0.620976,-3e-06,-0.783829,0.620976,-3e-06,-0.783829,0.620976,2e-06,-0.783829,0.620976,2e-06,-0.783829,0.620976,2e-06,-0.783829,0.620976,-3e-06,-0.783821,0.620987,-3e-06,-0.783821,0.620987,-3e-06,-0.783821,0.620987,-1e-06,-0.78383,0.620975,-1e-06,-0.78383,0.620975,-1e-06,-0.78383,0.620975,-3e-06,-0.783831,0.620974,-3e-06,-0.783831,0.620974,-3e-06,-0.783831,0.620974,2e-06,-0.783803,0.621009,2e-06,-0.783803,0.621009,2e-06,-0.783803,0.621009,-4e-06,-0.783844,0.620958,-4e-06,-0.783844,0.620958,-4e-06,-0.783844,0.620958,7e-06,-0.783855,0.620944,7e-06,-0.783855,0.620944,7e-06,-0.783855,0.620944,-1e-06,-0.783819,0.62099,-1e-06,-0.783819,0.62099,-1e-06,-0.783819,0.62099,-1e-06,-0.783825,0.620981,-1e-06,-0.783825,0.620981,-1e-06,-0.783825,0.620981,-1e-06,-0.783826,0.620981,-1e-06,-0.783826,0.620981,-1e-06,-0.783826,0.620981,-1e-06,-0.783827,0.620979,-1e-06,-0.783827,0.620979,-1e-06,-0.783827,0.620979,-1e-06,-0.783825,0.620982,-1e-06,-0.783825,0.620982,-1e-06,-0.783825,0.620982,-4e-06,-0.783852,0.620948,-4e-06,-0.783852,0.620948,-4e-06,-0.783852,0.620948,-2e-06,-0.783819,0.62099,-2e-06,-0.783819,0.62099,-2e-06,-0.783819,0.62099,3e-06,-0.783826,0.62098,3e-06,-0.783826,0.62098,3e-06,-0.783826,0.62098,0,-0.783822,0.620986,0,-0.783822,0.620986,0,-0.783822,0.620986,-3e-06,-0.783824,0.620983,-3e-06,-0.783824,0.620983,-3e-06,-0.783824,0.620983,5e-06,-0.783821,0.620986,5e-06,-0.783821,0.620986,5e-06,-0.783821,0.620986,-2e-06,-0.783826,0.62098,-2e-06,-0.783826,0.62098,-2e-06,-0.783826,0.62098,6e-06,-0.783823,0.620985,6e-06,-0.783823,0.620985,6e-06,-0.783823,0.620985,1e-06,-0.783824,0.620983,1e-06,-0.783824,0.620983,1e-06,-0.783824,0.620983,0,-0.783823,0.620984,0,-0.783823,0.620984,0,-0.783823,0.620984,-3e-06,-0.783828,0.620978,-3e-06,-0.783828,0.620978,-3e-06,-0.783828,0.620978,0,-0.783822,0.620986,0,-0.783822,0.620986,0,-0.783822,0.620986,-0,-0.783815,0.620994,-0,-0.783815,0.620994,-0,-0.783815,0.620994,-0,-0.783828,0.620979,-0,-0.783828,0.620979,-0,-0.783828,0.620979,0,-0.783827,0.620979,0,-0.783827,0.620979,0,-0.783827,0.620979,-2e-06,-0.783763,0.62106,-2e-06,-0.783763,0.62106,-2e-06,-0.783763,0.62106,-1e-06,-0.783824,0.620982,-1e-06,-0.783824,0.620982,-1e-06,-0.783824,0.620982,-2e-06,-0.783827,0.620979,-2e-06,-0.783827,0.620979,-2e-06,-0.783827,0.620979,0,-0.783825,0.620981,0,-0.783825,0.620981,0,-0.783825,0.620981,1e-06,-0.783826,0.620981,1e-06,-0.783826,0.620981,1e-06,-0.783826,0.620981,0,-0.783826,0.62098,0,-0.783826,0.62098,0,-0.783826,0.62098,4e-06,-0.783818,0.62099,4e-06,-0.783818,0.62099,4e-06,-0.783818,0.62099,0,-0.783826,0.620981,0,-0.783826,0.620981,0,-0.783826,0.620981,3e-06,-0.783826,0.62098,3e-06,-0.783826,0.62098,3e-06,-0.783826,0.62098,-1e-06,-0.783825,0.620981,-1e-06,-0.783825,0.620981,-1e-06,-0.783825,0.620981,2e-06,-0.783827,0.62098,2e-06,-0.783827,0.62098,2e-06,-0.783827,0.62098,3e-06,-0.78383,0.620976,3e-06,-0.78383,0.620976,3e-06,-0.78383,0.620976,2e-06,-0.783828,0.620978,2e-06,-0.783828,0.620978,2e-06,-0.783828,0.620978,0,-0.783821,0.620986,0,-0.783821,0.620986,0,-0.783821,0.620986,2e-06,-0.783828,0.620978,-1e-06,-0.783825,0.620982,-1e-06,-0.783825,0.620982,-1e-06,-0.783825,0.620982,2e-06,-0.78383,0.620976,2e-06,-0.78383,0.620976,2e-06,-0.78383,0.620976,1e-06,-0.783822,0.620986,1e-06,-0.783822,0.620986,1e-06,-0.783822,0.620986,1e-06,-0.783831,0.620974,1e-06,-0.783831,0.620974,1e-06,-0.783831,0.620974,2e-06,-0.783819,0.62099,2e-06,-0.783819,0.62099,2e-06,-0.783819,0.62099,3e-06,-0.783823,0.620984,3e-06,-0.783823,0.620984,3e-06,-0.783823,0.620984,-1e-06,-0.783825,0.620982,-1e-06,-0.783825,0.620982,-1e-06,-0.783825,0.620982,-1e-06,-0.783827,0.62098,-1e-06,-0.783827,0.62098,-1e-06,-0.783827,0.62098,3e-06,-0.783827,0.620979,3e-06,-0.783827,0.620979,3e-06,-0.783827,0.620979,0,-0.783825,0.620982,0,-0.783825,0.620982,0,-0.783825,0.620982,1e-06,-0.783826,0.620981,1e-06,-0.783826,0.620981,1e-06,-0.783826,0.620981,1e-06,-0.783825,0.620982,1e-06,-0.783825,0.620982,1e-06,-0.783825,0.620982,2e-06,-0.783825,0.620982,2e-06,-0.783825,0.620982,2e-06,-0.783825,0.620982,-1e-06,-0.783826,0.620981,-1e-06,-0.783826,0.620981,-1e-06,-0.783826,0.620981,1e-06,-0.783826,0.620981,1e-06,-0.783826,0.620981,1e-06,-0.783826,0.620981,0,-0.783826,0.620981,0,-0.783826,0.620981,0,-0.783826,0.620981,-3e-06,-0.783826,0.620981,-3e-06,-0.783826,0.620981,-3e-06,-0.783826,0.620981,0,-0.783823,0.620984,0,-0.783823,0.620984,0,-0.783823,0.620984,2e-06,-0.783824,0.620983,2e-06,-0.783824,0.620983,2e-06,-0.783824,0.620983,1e-06,-0.783825,0.620981,1e-06,-0.783825,0.620981,1e-06,-0.783825,0.620981,3e-06,-0.783825,0.620982,3e-06,-0.783825,0.620982,3e-06,-0.783825,0.620982,-5e-06,-0.783825,0.620981,-5e-06,-0.783825,0.620981,-5e-06,-0.783825,0.620981,-4e-06,-0.783829,0.620977,-4e-06,-0.783829,0.620977,-4e-06,-0.783829,0.620977,1e-06,-0.783826,0.620981,1e-06,-0.783826,0.620981,1e-06,-0.783826,0.620981,1e-06,-0.783826,0.62098,1e-06,-0.783826,0.62098,1e-06,-0.783826,0.62098,-3e-06,-0.783823,0.620984,-3e-06,-0.783823,0.620984,-3e-06,-0.783823,0.620984,4e-06,-0.783825,0.620982,4e-06,-0.783825,0.620982,4e-06,-0.783825,0.620982,-1e-06,-0.783826,0.620981,-1e-06,-0.783826,0.620981,-1e-06,-0.783826,0.620981,4e-06,-0.783826,0.620981,4e-06,-0.783826,0.620981,4e-06,-0.783826,0.620981,-1e-06,-0.783826,0.620981,2e-06,-0.78382,0.620989,2e-06,-0.78382,0.620989,2e-06,-0.78382,0.620989,0,-0.783826,0.620981,0,-0.783826,0.620981,0,-0.783826,0.620981,1e-06,-0.783828,0.620978,1e-06,-0.783828,0.620978,1e-06,-0.783828,0.620978,1e-06,-0.783826,0.62098,1e-06,-0.783826,0.62098,1e-06,-0.783826,0.62098,-2e-06,-0.783827,0.620978,-2e-06,-0.783827,0.620978,-2e-06,-0.783827,0.620978,2e-06,-0.783822,0.620985,2e-06,-0.783822,0.620985,2e-06,-0.783822,0.620985,1e-06,-0.783827,0.620979,1e-06,-0.783827,0.620979,1e-06,-0.783827,0.620979,1e-06,-0.783826,0.62098,1e-06,-0.783826,0.62098,0,-0.783818,0.62099,0,-0.783818,0.62099,0,-0.783818,0.62099,-0,-0.783823,0.620985,-0,-0.783823,0.620985,-0,-0.783823,0.620985,0,-0.78383,0.620976,0,-0.78383,0.620976,0,-0.78383,0.620976,0,-0.783832,0.620972,0,-0.783832,0.620972,0,-0.783832,0.620972,3e-06,-0.783823,0.620985,3e-06,-0.783823,0.620985,3e-06,-0.783823,0.620985,0,-0.783837,0.620966,0,-0.783837,0.620966,0,-0.783837,0.620966,0,-0.783834,0.620971,0,-0.783834,0.620971,0,-0.783834,0.620971,-1e-06,-0.783821,0.620987,-1e-06,-0.783821,0.620987,-1e-06,-0.783821,0.620987,0,-0.783825,0.620982,0,-0.783825,0.620982,0,-0.783825,0.620982,1e-06,-0.783823,0.620984,1e-06,-0.783823,0.620984,1e-06,-0.783823,0.620984,1e-06,-0.783828,0.620979,1e-06,-0.783828,0.620979,1e-06,-0.783828,0.620979,-1e-06,-0.783824,0.620983,-1e-06,-0.783824,0.620983,-1e-06,-0.783824,0.620983,-1e-06,-0.783825,0.620982,-1e-06,-0.783825,0.620982,-1e-06,-0.783825,0.620982,-1e-06,-0.783825,0.620982,-1e-06,-0.783826,0.620981,-1e-06,-0.783826,0.620981,-1e-06,-0.783826,0.620981,1e-06,-0.783825,0.620982,1e-06,-0.783825,0.620982,1e-06,-0.783825,0.620982,1e-06,-0.783825,0.620982,-3e-06,-0.783826,0.62098,-3e-06,-0.783826,0.62098,-3e-06,-0.783826,0.62098,-3e-06,-0.783826,0.62098,-0,-0.783824,0.620983,-0,-0.783824,0.620983,-0,-0.783824,0.620983,-4e-06,-0.783824,0.620983,-4e-06,-0.783824,0.620983,-4e-06,-0.783824,0.620983,-3e-06,-0.783826,0.620981,-3e-06,-0.783826,0.620981,-3e-06,-0.783826,0.620981,-0,-0.783827,0.62098,-0,-0.783827,0.62098,-0,-0.783827,0.62098,-3e-06,-0.783821,0.620986,-3e-06,-0.783821,0.620986,-3e-06,-0.783821,0.620986,-1e-06,-0.783826,0.620981,-1e-06,-0.783826,0.620981,-1e-06,-0.783826,0.620981,-0,-0.783828,0.620978,-0,-0.783828,0.620978,-0,-0.783828,0.620978,1e-06,-0.783824,0.620983,1e-06,-0.783824,0.620983,1e-06,-0.783824,0.620983,0,-0.783826,0.62098,0,-0.783826,0.62098,0,-0.783826,0.62098,-3e-06,-0.783821,0.620987,-3e-06,-0.783821,0.620987,-3e-06,-0.783821,0.620987,-1e-06,-0.78383,0.620976,-1e-06,-0.78383,0.620976,-1e-06,-0.78383,0.620976,-1e-06,-0.783826,0.62098,-1e-06,-0.783826,0.62098,-1e-06,-0.783826,0.62098,-1e-06,-0.783827,0.620979,-1e-06,-0.783827,0.620979,-1e-06,-0.783827,0.620979,-1e-06,-0.783831,0.620975,-1e-06,-0.783831,0.620975,-1e-06,-0.783831,0.620975,-0,-0.783829,0.620977,-0,-0.783829,0.620977,-0,-0.783829,0.620977,2e-06,-0.783828,0.620978,2e-06,-0.783828,0.620978,2e-06,-0.783828,0.620978,0,-0.783823,0.620985,0,-0.783823,0.620985,0,-0.783823,0.620985,-2e-06,-0.78384,0.620962,-2e-06,-0.78384,0.620962,-2e-06,-0.78384,0.620962,0,-0.783821,0.620986,0,-0.783821,0.620986,0,-0.783821,0.620986,2e-06,-0.783824,0.620983,2e-06,-0.783824,0.620983,2e-06,-0.783824,0.620983,1e-06,-0.783822,0.620985,1e-06,-0.783822,0.620985,1e-06,-0.783822,0.620985,-2e-06,-0.783832,0.620974,-2e-06,-0.783832,0.620974,-2e-06,-0.783832,0.620974,-0,-0.783825,0.620982,-0,-0.783825,0.620982,-0,-0.783825,0.620982,-1e-06,-0.783826,0.620981,-1e-06,-0.783826,0.620981,-1e-06,-0.783826,0.620981,-2e-06,-0.783825,0.620982,-2e-06,-0.783825,0.620982,-2e-06,-0.783825,0.620982,0,-0.783826,0.620981,0,-0.783826,0.620981,0,-0.783826,0.620981,-0,-0.783823,0.620984,-0,-0.783823,0.620984,-0,-0.783823,0.620984,1e-06,-0.783826,0.620981,1e-06,-0.783826,0.620981,1e-06,-0.783826,0.620981,-0,-0.783827,0.62098,-0,-0.783827,0.62098,-0,-0.783827,0.62098,-1e-06,-0.783826,0.620981,-1e-06,-0.783826,0.620981,-1e-06,-0.783826,0.620981,2e-06,-0.783826,0.620981,2e-06,-0.783826,0.620981,2e-06,-0.783826,0.620981,0,-0.783827,0.620979,0,-0.783827,0.620979,0,-0.783827,0.620979,1e-06,-0.783826,0.620981,1e-06,-0.783826,0.620981,1e-06,-0.783826,0.620981,0,-0.783827,0.62098,0,-0.783827,0.62098,0,-0.783827,0.62098,-8e-06,-0.783824,0.620984,-8e-06,-0.783824,0.620984,-8e-06,-0.783824,0.620984,0,-0.783825,0.620982,0,-0.783825,0.620982,0,-0.783825,0.620982,-3e-06,-0.783819,0.620989,-3e-06,-0.783819,0.620989,-3e-06,-0.783819,0.620989,1e-06,-0.783829,0.620977,1e-06,-0.783829,0.620977,1e-06,-0.783829,0.620977,3e-06,-0.783832,0.620973,3e-06,-0.783832,0.620973,3e-06,-0.783832,0.620973,3e-06,-0.783823,0.620984,3e-06,-0.783823,0.620984,3e-06,-0.783823,0.620984,5e-06,-0.783824,0.620984,5e-06,-0.783824,0.620984,5e-06,-0.783824,0.620984,4e-06,-0.783823,0.620985,4e-06,-0.783823,0.620985,4e-06,-0.783823,0.620985,4e-06,-0.783824,0.620983,4e-06,-0.783824,0.620983,4e-06,-0.783824,0.620983,-0,-0.783825,0.620981,-0,-0.783825,0.620981,-0,-0.783825,0.620981,-6e-06,-0.783817,0.620992,-6e-06,-0.783817,0.620992,-6e-06,-0.783817,0.620992,0,-0.783827,0.620979,0,-0.783827,0.620979,0,-0.783827,0.620979,1e-06,-0.783821,0.620987,1e-06,-0.783821,0.620987,1e-06,-0.783821,0.620987,1e-06,-0.783822,0.620985,1e-06,-0.783822,0.620985,1e-06,-0.783822,0.620985,1e-06,-0.783828,0.620978,1e-06,-0.783828,0.620978,1e-06,-0.783828,0.620978,-0,-0.783825,0.620982,-0,-0.783825,0.620982,-0,-0.783825,0.620982,2e-06,-0.783826,0.620981,2e-06,-0.783826,0.620981,2e-06,-0.783826,0.620981,2e-06,-0.783823,0.620985,2e-06,-0.783823,0.620985,2e-06,-0.783823,0.620985,-0,-0.783824,0.620983,-0,-0.783824,0.620983,-0,-0.783824,0.620983,-1e-06,-0.783826,0.62098,-1e-06,-0.783826,0.62098,-1e-06,-0.783826,0.62098,7e-06,-0.783832,0.620973,7e-06,-0.783832,0.620973,7e-06,-0.783832,0.620973,1e-06,-0.783825,0.620982,1e-06,-0.783825,0.620982,1e-06,-0.783825,0.620982,-3e-06,-0.783823,0.620984,-3e-06,-0.783823,0.620984,-3e-06,-0.783823,0.620984,-1e-06,-0.783828,0.620979,-1e-06,-0.783828,0.620979,-1e-06,-0.783828,0.620979,-1e-06,-0.783829,0.620976,-1e-06,-0.783829,0.620976,-1e-06,-0.783829,0.620976,0,-0.783826,0.62098,0,-0.783826,0.62098,0,-0.783826,0.62098,0,-0.783825,0.620982,0,-0.783825,0.620982,0,-0.783825,0.620982,4.2e-05,-0.783766,0.621056,4.2e-05,-0.783766,0.621056,4.2e-05,-0.783766,0.621056,2e-06,-0.783822,0.620985,2e-06,-0.783822,0.620985,2e-06,-0.783822,0.620985,4e-06,-0.783824,0.620983,4e-06,-0.783824,0.620983,4e-06,-0.783824,0.620983,-1e-06,-0.783821,0.620987,-1e-06,-0.783821,0.620987,-1e-06,-0.783821,0.620987,-4e-06,-0.783823,0.620984,-4e-06,-0.783823,0.620984,-4e-06,-0.783823,0.620984,3e-06,-0.783824,0.620984,3e-06,-0.783824,0.620984,3e-06,-0.783824,0.620984,-2e-06,-0.783827,0.620979,-2e-06,-0.783827,0.620979,-2e-06,-0.783827,0.620979,1e-06,-0.783827,0.620979,1e-06,-0.783827,0.620979,1e-06,-0.783827,0.620979,2e-06,-0.783827,0.62098,2e-06,-0.783827,0.62098,2e-06,-0.783827,0.62098,1e-06,-0.783825,0.620982,1e-06,-0.783825,0.620982,1e-06,-0.783825,0.620982,3e-06,-0.783827,0.620979,3e-06,-0.783827,0.620979,3e-06,-0.783827,0.620979,-1e-06,-0.783825,0.620981,-1e-06,-0.783825,0.620981,-1e-06,-0.783825,0.620981,3e-06,-0.783826,0.62098,3e-06,-0.783826,0.62098,3e-06,-0.783826,0.62098,-1e-06,-0.783824,0.620983,-1e-06,-0.783824,0.620983,-1e-06,-0.783824,0.620983,5e-06,-0.783826,0.620981,5e-06,-0.783826,0.620981,5e-06,-0.783826,0.620981,-0,-0.783824,0.620983,-0,-0.783824,0.620983,-0,-0.783824,0.620983,-1e-06,-0.783824,0.620983,-1e-06,-0.783824,0.620983,1e-06,-0.783826,0.620981,1e-06,-0.783826,0.620981,1e-06,-0.783826,0.620981,-1e-06,-0.783832,0.620973,-1e-06,-0.783832,0.620973,-1e-06,-0.783832,0.620973,4e-06,-0.783827,0.62098,4e-06,-0.783827,0.62098,4e-06,-0.783827,0.62098,-0,-0.783818,0.620991,-0,-0.783818,0.620991,-0,-0.783818,0.620991,2e-06,-0.783827,0.62098,2e-06,-0.783827,0.62098,2e-06,-0.783827,0.62098,1e-06,-0.783828,0.620978,1e-06,-0.783828,0.620978,1e-06,-0.783828,0.620978,-0,-0.783826,0.620981,-0,-0.783826,0.620981,-0,-0.783826,0.620981,2e-06,-0.783829,0.620976,2e-06,-0.783829,0.620976,2e-06,-0.783829,0.620976,-1e-06,-0.783827,0.620979,-1e-06,-0.783827,0.620979,-1e-06,-0.783827,0.620979,-3e-06,-0.783824,0.620983,-3e-06,-0.783824,0.620983,-3e-06,-0.783824,0.620983,0,-0.783824,0.620983,0,-0.783824,0.620983,0,-0.783824,0.620983,-0,-0.783823,0.620984,-0,-0.783823,0.620984,-0,-0.783823,0.620984,0,-0.783833,0.620972,0,-0.783833,0.620972,0,-0.783833,0.620972,-2e-06,-0.783824,0.620983,-2e-06,-0.783824,0.620983,-2e-06,-0.783824,0.620983,3e-06,-0.783826,0.620981,3e-06,-0.783826,0.620981,3e-06,-0.783826,0.620981,-3e-06,-0.783825,0.620981,-3e-06,-0.783825,0.620981,-3e-06,-0.783825,0.620981,-1e-06,-0.783822,0.620985,-1e-06,-0.783822,0.620985,-1e-06,-0.783822,0.620985,-0,-0.78382,0.620988,-0,-0.78382,0.620988,-0,-0.78382,0.620988,-3e-06,-0.783827,0.620979,-3e-06,-0.783827,0.620979,-3e-06,-0.783827,0.620979,-9e-06,-0.783823,0.620984,-9e-06,-0.783823,0.620984,-9e-06,-0.783823,0.620984,4e-06,-0.783825,0.620983,4e-06,-0.783825,0.620983,4e-06,-0.783825,0.620983,-8e-06,-0.783828,0.620978,-8e-06,-0.783828,0.620978,-8e-06,-0.783828,0.620978,-1.1e-05,-0.783836,0.620968,-1.1e-05,-0.783836,0.620968,-1.1e-05,-0.783836,0.620968,4e-06,-0.783828,0.620978,4e-06,-0.783828,0.620978,4e-06,-0.783828,0.620978,-2e-06,-0.783823,0.620984,-2e-06,-0.783823,0.620984,-2e-06,-0.783823,0.620984,1e-06,-0.783831,0.620974,1e-06,-0.783831,0.620974,1e-06,-0.783831,0.620974,2e-06,-0.783826,0.62098,2e-06,-0.783826,0.62098,2e-06,-0.783826,0.62098,0,-0.783823,0.620984,0,-0.783823,0.620984,0,-0.783823,0.620984,-1e-06,-0.783834,0.620971,-1e-06,-0.783834,0.620971,-1e-06,-0.783834,0.620971,3e-06,-0.783823,0.620985,3e-06,-0.783823,0.620985,3e-06,-0.783823,0.620985,-1e-06,-0.783826,0.62098,-1e-06,-0.783826,0.62098,-1e-06,-0.783826,0.62098,-0,-0.783825,0.620982,-0,-0.783825,0.620982,-0,-0.783825,0.620982,-0,-0.783828,0.620978,-0,-0.783828,0.620978,-0,-0.783828,0.620978,-0,-0.783827,0.620979,-0,-0.783827,0.620979,-0,-0.783827,0.620979,1e-06,-0.783824,0.620983,1e-06,-0.783824,0.620983,1e-06,-0.783824,0.620983,0,-0.783853,0.620946,0,-0.783853,0.620946,0,-0.783853,0.620946,-0,-0.783838,0.620965,-0,-0.783838,0.620965,-0,-0.783838,0.620965,-2e-06,-0.783822,0.620985,-2e-06,-0.783822,0.620985,-2e-06,-0.783822,0.620985,0,-0.783822,0.620986,0,-0.783822,0.620986,0,-0.783822,0.620986,-1e-06,-0.783826,0.620981,-1e-06,-0.783826,0.620981,-1e-06,-0.783826,0.620981,-1e-06,-0.783826,0.62098,-1e-06,-0.783826,0.62098,-1e-06,-0.783826,0.62098,1e-06,-0.783831,0.620974,1e-06,-0.783831,0.620974,1e-06,-0.783831,0.620974,1e-06,-0.783824,0.620983,1e-06,-0.783824,0.620983,1e-06,-0.783824,0.620983,1e-06,-0.783824,0.620983,1e-06,-0.783827,0.62098,1e-06,-0.783827,0.62098,1e-06,-0.783827,0.62098,1e-06,-0.783826,0.62098,1e-06,-0.783826,0.62098,1e-06,-0.783826,0.62098,1e-06,-0.783826,0.620981,1e-06,-0.783826,0.620981,1e-06,-0.783826,0.620981,1e-06,-0.783825,0.620981,1e-06,-0.783825,0.620981,1e-06,-0.783825,0.620981,0,-0.783824,0.620983,0,-0.783824,0.620983,0,-0.783824,0.620983,6e-06,-0.783825,0.620983,6e-06,-0.783825,0.620983,6e-06,-0.783825,0.620983,-3e-06,-0.783824,0.620983,-3e-06,-0.783824,0.620983,-3e-06,-0.783824,0.620983,-1e-06,-0.783826,0.62098,-1e-06,-0.783826,0.62098,-1e-06,-0.783826,0.62098,-0,-0.783826,0.62098,-0,-0.783826,0.62098,-0,-0.783826,0.62098,-2e-06,-0.783822,0.620986,-2e-06,-0.783822,0.620986,-2e-06,-0.783822,0.620986,-1e-06,-0.783825,0.620981,-1e-06,-0.783825,0.620981,-1e-06,-0.783825,0.620981,-0,-0.783824,0.620983,-0,-0.783824,0.620983,-0,-0.783824,0.620983,1e-06,-0.783824,0.620983,1e-06,-0.783824,0.620983,1e-06,-0.783824,0.620983,0,-0.783823,0.620984,0,-0.783823,0.620984,0,-0.783823,0.620984,-1e-06,-0.783821,0.620987,-1e-06,-0.783821,0.620987,-1e-06,-0.783821,0.620987,0,-0.783826,0.620981,0,-0.783826,0.620981,0,-0.783826,0.620981,0,-0.783825,0.620982,0,-0.783825,0.620982,0,-0.783825,0.620982,-3e-06,-0.783832,0.620973,-3e-06,-0.783832,0.620973,-3e-06,-0.783832,0.620973,-4e-06,-0.783835,0.620969,-4e-06,-0.783835,0.620969,-4e-06,-0.783835,0.620969,1e-06,-0.783825,0.620982,1e-06,-0.783825,0.620982,1e-06,-0.783825,0.620982,0,-0.783835,0.620969,0,-0.783835,0.620969,0,-0.783835,0.620969,-0,-0.783819,0.620989,-0,-0.783819,0.620989,-0,-0.783819,0.620989,-0,-0.783815,0.620994,-0,-0.783815,0.620994,-0,-0.783815,0.620994,1e-06,-0.783855,0.620944,1e-06,-0.783855,0.620944,1e-06,-0.783855,0.620944,-4e-06,-0.783825,0.620982,-4e-06,-0.783825,0.620982,-4e-06,-0.783825,0.620982,0,-0.783824,0.620983,0,-0.783824,0.620983,0,-0.783824,0.620983,-1e-06,-0.783826,0.62098,-1e-06,-0.783826,0.62098,-1e-06,-0.783826,0.62098,-0,-0.783829,0.620977,-0,-0.783829,0.620977,-0,-0.783829,0.620977,0,-0.783827,0.62098,0,-0.783827,0.62098,0,-0.783827,0.62098,0,-0.783827,0.62098,1e-06,-0.783823,0.620984,1e-06,-0.783823,0.620984,1e-06,-0.783823,0.620984,3e-06,-0.783826,0.620981,3e-06,-0.783826,0.620981,3e-06,-0.783826,0.620981,2e-06,-0.78383,0.620976,2e-06,-0.78383,0.620976,2e-06,-0.78383,0.620976,-0,-0.783824,0.620983,-0,-0.783824,0.620983,-0,-0.783824,0.620983,-2e-06,-0.783825,0.620982,-2e-06,-0.783825,0.620982,-2e-06,-0.783825,0.620982,-0,-0.783828,0.620978,-0,-0.783828,0.620978,-0,-0.783828,0.620978,1e-06,-0.783823,0.620985,1e-06,-0.783823,0.620985,1e-06,-0.783823,0.620985,1e-06,-0.783822,0.620985,1e-06,-0.783822,0.620985,1e-06,-0.783822,0.620985,1e-06,-0.783824,0.620983,1e-06,-0.783824,0.620983,1e-06,-0.783824,0.620983,0,-0.783826,0.62098,0,-0.783826,0.62098,0,-0.783826,0.62098,0,-0.783823,0.620984,0,-0.783823,0.620984,0,-0.783823,0.620984,-1e-06,-0.783831,0.620974,-1e-06,-0.783831,0.620974,-1e-06,-0.783831,0.620974,-1e-06,-0.783826,0.620981,-1e-06,-0.783826,0.620981,-1e-06,-0.783826,0.620981,-2e-06,-0.783819,0.62099,-2e-06,-0.783819,0.62099,-2e-06,-0.783819,0.62099,1e-06,-0.783829,0.620976,1e-06,-0.783829,0.620976,1e-06,-0.783829,0.620976,-1e-06,-0.783826,0.620981,-1e-06,-0.783826,0.620981,1e-06,-0.783821,0.620987,1e-06,-0.783821,0.620987,1e-06,-0.783821,0.620987,-0,-0.783826,0.620981,-0,-0.783826,0.620981,-0,-0.783826,0.620981,-0,-0.783827,0.620979,-0,-0.783827,0.620979,-0,-0.783827,0.620979,1e-06,-0.783828,0.620978,1e-06,-0.783828,0.620978,1e-06,-0.783828,0.620978,1e-06,-0.783825,0.620982,1e-06,-0.783825,0.620982,1e-06,-0.783825,0.620982,1e-06,-0.783828,0.620978,1e-06,-0.783828,0.620978,1e-06,-0.783828,0.620978,-0,-0.783825,0.620982,-0,-0.783825,0.620982,-0,-0.783825,0.620982,1e-06,-0.783825,0.620982,1e-06,-0.783825,0.620982,1e-06,-0.783825,0.620982,0,-0.783797,0.621017,0,-0.783797,0.621017,0,-0.783797,0.621017,-4e-06,-0.783826,0.62098,-4e-06,-0.783826,0.62098,-4e-06,-0.783826,0.62098,-2e-06,-0.783822,0.620986,-2e-06,-0.783822,0.620986,-2e-06,-0.783822,0.620986,1e-06,-0.783824,0.620982,1e-06,-0.783824,0.620982,1e-06,-0.783824,0.620982,-4e-06,-0.783833,0.620972,-4e-06,-0.783833,0.620972,-4e-06,-0.783833,0.620972,-3e-06,-0.783825,0.620982,-3e-06,-0.783825,0.620982,-3e-06,-0.783825,0.620982,-3e-06,-0.783825,0.620982,-1e-06,-0.783821,0.620987,-1e-06,-0.783821,0.620987,-1e-06,-0.783821,0.620987,-2e-06,-0.783817,0.620991,-2e-06,-0.783817,0.620991,-2e-06,-0.783817,0.620991,-0,-0.783825,0.620982,-0,-0.783825,0.620982,-0,-0.783825,0.620982,-1e-06,-0.783825,0.620982,-1e-06,-0.783825,0.620982,-1e-06,-0.783825,0.620982,-0,-0.783827,0.620979,-0,-0.783827,0.620979,-0,-0.783827,0.620979,-1e-06,-0.783824,0.620984,-1e-06,-0.783824,0.620984,-1e-06,-0.783824,0.620984,1e-06,-0.78383,0.620975,1e-06,-0.78383,0.620975,1e-06,-0.78383,0.620975,-1e-06,-0.783831,0.620975,-1e-06,-0.783831,0.620975,-1e-06,-0.783831,0.620975,2e-06,-0.783824,0.620983,2e-06,-0.783824,0.620983,2e-06,-0.783824,0.620983,-3.2e-05,-0.783758,0.621067,-3.2e-05,-0.783758,0.621067,-3.2e-05,-0.783758,0.621067,-1e-06,-0.783826,0.620981,-1e-06,-0.783826,0.620981,-1e-06,-0.783826,0.620981,1e-06,-0.783819,0.620989,1e-06,-0.783819,0.620989,1e-06,-0.783819,0.620989,1e-06,-0.783817,0.620992,1e-06,-0.783817,0.620992,1e-06,-0.783817,0.620992,0,-0.783829,0.620976,0,-0.783829,0.620976,0,-0.783829,0.620976,-0,-0.783827,0.620979,-0,-0.783827,0.620979,-0,-0.783827,0.620979,1e-06,-0.783828,0.620977,1e-06,-0.783828,0.620977,1e-06,-0.783828,0.620977,-4e-06,-0.783821,0.620987,-4e-06,-0.783821,0.620987,-4e-06,-0.783821,0.620987,0,-0.783835,0.620969,0,-0.783835,0.620969,0,-0.783835,0.620969,1e-06,-0.783814,0.620996,1e-06,-0.783814,0.620996,1e-06,-0.783814,0.620996,0,-0.783822,0.620985,0,-0.783822,0.620985,0,-0.783822,0.620985,0,-0.783823,0.620984,0,-0.783823,0.620984,0,-0.783823,0.620984,-3e-06,-0.783833,0.620972,-3e-06,-0.783833,0.620972,-3e-06,-0.783833,0.620972,-4e-06,-0.783835,0.620969,-4e-06,-0.783835,0.620969,-4e-06,-0.783835,0.620969,3e-06,-0.783824,0.620983,3e-06,-0.783824,0.620983,3e-06,-0.783824,0.620983,-4e-06,-0.783822,0.620986,-4e-06,-0.783822,0.620986,-4e-06,-0.783822,0.620986,2e-06,-0.783826,0.62098,2e-06,-0.783826,0.62098,2e-06,-0.783826,0.62098,3e-06,-0.783825,0.620982,3e-06,-0.783825,0.620982,3e-06,-0.783825,0.620982,2e-06,-0.783826,0.62098,2e-06,-0.783826,0.62098,-2e-06,-0.783827,0.620979,-2e-06,-0.783827,0.620979,-2e-06,-0.783827,0.620979,-3e-06,-0.783821,0.620987,-3e-06,-0.783821,0.620987,-3e-06,-0.783821,0.620987,-2e-06,-0.783825,0.620981,-2e-06,-0.783825,0.620981,-2e-06,-0.783825,0.620981,2e-06,-0.783828,0.620978,2e-06,-0.783828,0.620978,2e-06,-0.783828,0.620978,9e-06,-0.783827,0.620979,9e-06,-0.783827,0.620979,9e-06,-0.783827,0.620979,1e-06,-0.783833,0.620971,1e-06,-0.783833,0.620971,1e-06,-0.783833,0.620971,-3.6e-05,-0.783816,0.620993,-3.6e-05,-0.783816,0.620993,-3.6e-05,-0.783816,0.620993,-0,-0.783823,0.620984,-0,-0.783823,0.620984,-0,-0.783823,0.620984,-2e-06,-0.78382,0.620988,-2e-06,-0.78382,0.620988,-2e-06,-0.78382,0.620988,0,-0.783826,0.62098,0,-0.783826,0.62098,0,-0.783826,0.62098,-0,-0.783826,0.620981,-0,-0.783826,0.620981,-0,-0.783826,0.620981,0,-0.783824,0.620983,0,-0.783824,0.620983,0,-0.783824,0.620983,7e-06,-0.783824,0.620983,7e-06,-0.783824,0.620983,7e-06,-0.783824,0.620983,4e-06,-0.783822,0.620985,4e-06,-0.783822,0.620985,4e-06,-0.783822,0.620985,1e-06,-0.783826,0.620981,1e-06,-0.783826,0.620981,1e-06,-0.783826,0.620981,1e-06,-0.783832,0.620973,1e-06,-0.783832,0.620973,1e-06,-0.783832,0.620973,-6e-06,-0.783824,0.620983,-6e-06,-0.783824,0.620983,-6e-06,-0.783824,0.620983,0,-0.783831,0.620974,0,-0.783831,0.620974,0,-0.783831,0.620974,-4e-06,-0.783828,0.620978,-4e-06,-0.783828,0.620978,-4e-06,-0.783828,0.620978,1e-06,-0.78381,0.621001,1e-06,-0.78381,0.621001,1e-06,-0.78381,0.621001,-1e-06,-0.783825,0.620982,-1e-06,-0.783825,0.620982,-1e-06,-0.783825,0.620982,1e-06,-0.783827,0.620979,1e-06,-0.783827,0.620979,1e-06,-0.783827,0.620979,4e-06,-0.783825,0.620982,4e-06,-0.783825,0.620982,4e-06,-0.783825,0.620982,1e-06,-0.783818,0.62099,1e-06,-0.783818,0.62099,1e-06,-0.783818,0.62099,2e-06,-0.783817,0.620992,2e-06,-0.783817,0.620992,2e-06,-0.783817,0.620992,4e-06,-0.783819,0.620989,4e-06,-0.783819,0.620989,4e-06,-0.783819,0.620989,1e-06,-0.783829,0.620976,1e-06,-0.783829,0.620976,1e-06,-0.783829,0.620976,-5e-06,-0.783824,0.620982,-5e-06,-0.783824,0.620982,-5e-06,-0.783824,0.620982,1e-06,-0.783825,0.620982,1e-06,-0.783825,0.620982,1e-06,-0.783825,0.620982,1e-06,-0.78382,0.620987,1e-06,-0.78382,0.620987,1e-06,-0.78382,0.620987,-1e-06,-0.783866,0.62093,-1e-06,-0.783866,0.62093,-1e-06,-0.783866,0.62093,2e-06,-0.783824,0.620983,2e-06,-0.783824,0.620983,2e-06,-0.783824,0.620983,1e-06,-0.783823,0.620984,1e-06,-0.783823,0.620984,1e-06,-0.783823,0.620984,4e-06,-0.783832,0.620973,4e-06,-0.783832,0.620973,4e-06,-0.783832,0.620973,5e-06,-0.783831,0.620975,5e-06,-0.783831,0.620975,5e-06,-0.783831,0.620975,-1e-06,-0.783828,0.620978,-1e-06,-0.783828,0.620978,-1e-06,-0.783828,0.620978,3e-06,-0.783826,0.62098,3e-06,-0.783826,0.62098,3e-06,-0.783826,0.62098,-2e-06,-0.783827,0.62098,-2e-06,-0.783827,0.62098,-2e-06,-0.783827,0.62098,3e-06,-0.783826,0.62098,-1e-06,-0.783821,0.620986,-1e-06,-0.783821,0.620986,-1e-06,-0.783821,0.620986,1e-06,-0.783825,0.620982,1e-06,-0.783825,0.620982,1e-06,-0.783825,0.620982,1e-06,-0.783829,0.620977,1e-06,-0.783829,0.620977,1e-06,-0.783829,0.620977,1e-06,-0.783828,0.620978,1e-06,-0.783828,0.620978,1e-06,-0.783828,0.620978,0,-0.783823,0.620985,0,-0.783823,0.620985,0,-0.783823,0.620985,-0,-0.783826,0.620981,-0,-0.783826,0.620981,-0,-0.783826,0.620981,0,-0.783828,0.620978,0,-0.783828,0.620978,0,-0.783828,0.620978,0,-0.783832,0.620972,0,-0.783832,0.620972,0,-0.783832,0.620972,3e-06,-0.783825,0.620982,3e-06,-0.783825,0.620982,3e-06,-0.783825,0.620982,2e-06,-0.783825,0.620981,2e-06,-0.783825,0.620981,2e-06,-0.783825,0.620981,2e-06,-0.783825,0.620982,2e-06,-0.783825,0.620982,2e-06,-0.783825,0.620982,-4e-06,-0.783829,0.620976,-4e-06,-0.783829,0.620976,-4e-06,-0.783829,0.620976,0,-0.783817,0.620991,0,-0.783817,0.620991,0,-0.783817,0.620991,-3e-06,-0.783826,0.620981,-3e-06,-0.783826,0.620981,-3e-06,-0.783826,0.620981,-2e-06,-0.783828,0.620978,-2e-06,-0.783828,0.620978,-2e-06,-0.783828,0.620978,0,-0.783826,0.62098,0,-0.783826,0.62098,0,-0.783826,0.62098,2e-06,-0.783826,0.620981,2e-06,-0.783826,0.620981,2e-06,-0.783826,0.620981,0,-0.783822,0.620985,0,-0.783822,0.620985,0,-0.783822,0.620985,6e-06,-0.783841,0.620962,6e-06,-0.783841,0.620962,6e-06,-0.783841,0.620962,-1e-06,-0.783825,0.620982,-1e-06,-0.783825,0.620982,-1e-06,-0.783825,0.620982,-1.7e-05,-0.783863,0.620933,-1.7e-05,-0.783863,0.620933,-1.7e-05,-0.783863,0.620933,0,-0.783823,0.620984,0,-0.783823,0.620984,0,-0.783823,0.620984,1e-06,-0.783824,0.620983,1e-06,-0.783824,0.620983,1e-06,-0.783824,0.620983,0,-0.783824,0.620983,0,-0.783824,0.620983,0,-0.783824,0.620983,2e-06,-0.78383,0.620975,2e-06,-0.78383,0.620975,2e-06,-0.78383,0.620975,2e-06,-0.783821,0.620987,2e-06,-0.783821,0.620987,2e-06,-0.783821,0.620987,5e-06,-0.783822,0.620985,5e-06,-0.783822,0.620985,5e-06,-0.783822,0.620985,-3e-06,-0.783825,0.620981,-3e-06,-0.783825,0.620981,-3e-06,-0.783825,0.620981,-4e-06,-0.783824,0.620983,-4e-06,-0.783824,0.620983,-4e-06,-0.783824,0.620983,5e-06,-0.783821,0.620987,5e-06,-0.783821,0.620987,5e-06,-0.783821,0.620987,-3e-06,-0.783823,0.620984,-3e-06,-0.783823,0.620984,-3e-06,-0.783823,0.620984,-4e-06,-0.783826,0.620981,-4e-06,-0.783826,0.620981,-4e-06,-0.783826,0.620981,1e-06,-0.783825,0.620981,1e-06,-0.783825,0.620981,1e-06,-0.783825,0.620981,-8e-06,-0.783825,0.620981,-8e-06,-0.783825,0.620981,-8e-06,-0.783825,0.620981,-4e-06,-0.783827,0.620979,-4e-06,-0.783827,0.620979,-4e-06,-0.783827,0.620979,3e-06,-0.783827,0.62098,3e-06,-0.783827,0.62098,3e-06,-0.783827,0.62098,-2e-06,-0.783827,0.620979,-2e-06,-0.783827,0.620979,-2e-06,-0.783827,0.620979,-2e-06,-0.783825,0.620982,-2e-06,-0.783825,0.620982,-2e-06,-0.783825,0.620982,-2e-06,-0.783825,0.620982,-1e-06,-0.783827,0.62098,-1e-06,-0.783827,0.62098,-1e-06,-0.783827,0.62098,2e-06,-0.783822,0.620985,2e-06,-0.783822,0.620985,2e-06,-0.783822,0.620985,-4e-06,-0.783824,0.620983,-4e-06,-0.783824,0.620983,-4e-06,-0.783824,0.620983,-0,-0.783829,0.620977,-0,-0.783829,0.620977,-0,-0.783829,0.620977,-2e-06,-0.783826,0.620981,-2e-06,-0.783826,0.620981,-2e-06,-0.783826,0.620981,4e-06,-0.783827,0.620979,4e-06,-0.783827,0.620979,4e-06,-0.783827,0.620979,4e-06,-0.783823,0.620984,4e-06,-0.783823,0.620984,4e-06,-0.783823,0.620984,0,-0.783826,0.620981,0,-0.783826,0.620981,0,-0.783826,0.620981,-1e-06,-0.783824,0.620983,-1e-06,-0.783824,0.620983,-1e-06,-0.783824,0.620983,-2e-06,-0.783827,0.620979,-2e-06,-0.783827,0.620979,-2e-06,-0.783827,0.620979,6e-06,-0.783829,0.620977,6e-06,-0.783829,0.620977,6e-06,-0.783829,0.620977,-2e-06,-0.783825,0.620982,-2e-06,-0.783825,0.620982,-2e-06,-0.783825,0.620982,-1e-06,-0.783827,0.620979,-1e-06,-0.783827,0.620979,-1e-06,-0.783827,0.620979,2e-06,-0.783824,0.620983,2e-06,-0.783824,0.620983,2e-06,-0.783824,0.620983,2e-06,-0.783824,0.620983,-0,-0.783826,0.62098,-0,-0.783826,0.62098,-0,-0.783826,0.62098,-0,-0.783818,0.620991,-0,-0.783818,0.620991,-0,-0.783818,0.620991,1e-06,-0.783826,0.620981,1e-06,-0.783826,0.620981,1e-06,-0.783826,0.620981,1e-06,-0.783823,0.620984,1e-06,-0.783823,0.620984,1e-06,-0.783823,0.620984,3e-06,-0.783866,0.62093,3e-06,-0.783866,0.62093,3e-06,-0.783866,0.62093,3e-06,-0.783858,0.62094,3e-06,-0.783858,0.62094,3e-06,-0.783858,0.62094,-1e-06,-0.783828,0.620978,-1e-06,-0.783828,0.620978,-1e-06,-0.783828,0.620978,7e-06,-0.783765,0.621057,7e-06,-0.783765,0.621057,7e-06,-0.783765,0.621057,1e-06,-0.783821,0.620987,1e-06,-0.783821,0.620987,1e-06,-0.783821,0.620987,2e-06,-0.783822,0.620986,2e-06,-0.783822,0.620986,2e-06,-0.783822,0.620986,2e-06,-0.783824,0.620983,2e-06,-0.783824,0.620983,2e-06,-0.783824,0.620983,-1e-06,-0.783823,0.620984,-1e-06,-0.783823,0.620984,-1e-06,-0.783823,0.620984,-0,-0.783828,0.620979,-0,-0.783828,0.620979,-0,-0.783828,0.620979,1e-06,-0.783826,0.62098,1e-06,-0.783826,0.62098,1e-06,-0.783826,0.62098,-0,-0.783825,0.620982,-0,-0.783825,0.620982,-0,-0.783825,0.620982,0,-0.783822,0.620986,0,-0.783822,0.620986,0,-0.783822,0.620986,-0,-0.783828,0.620978,-0,-0.783828,0.620978,-0,-0.783828,0.620978,-0,-0.783828,0.620978,2e-06,-0.783825,0.620982,2e-06,-0.783825,0.620982,2e-06,-0.783825,0.620982,1e-06,-0.783824,0.620983,1e-06,-0.783824,0.620983,1e-06,-0.783824,0.620983,-2e-06,-0.783827,0.620979,-2e-06,-0.783827,0.620979,-2e-06,-0.783827,0.620979,1e-06,-0.783824,0.620983,-2e-06,-0.783828,0.620979,-2e-06,-0.783828,0.620979,-2e-06,-0.783828,0.620979,-2e-06,-0.783825,0.620982,-2e-06,-0.783825,0.620982,-2e-06,-0.783825,0.620982,2e-06,-0.783826,0.620981,2e-06,-0.783826,0.620981,2e-06,-0.783826,0.620981,-3e-06,-0.783826,0.62098,-3e-06,-0.783826,0.62098,-3e-06,-0.783826,0.62098,-2e-06,-0.783826,0.620981,-2e-06,-0.783826,0.620981,-2e-06,-0.783826,0.620981,-1e-06,-0.783827,0.620979,-1e-06,-0.783827,0.620979,-1e-06,-0.783827,0.620979,-1e-06,-0.783825,0.620982,-1e-06,-0.783825,0.620982,-1e-06,-0.783825,0.620982,2e-06,-0.783827,0.620979,2e-06,-0.783827,0.620979,2e-06,-0.783827,0.620979,-2e-06,-0.783826,0.620981,-2e-06,-0.783826,0.620981,2e-06,-0.783827,0.620979,2e-06,-0.783827,0.620979,2e-06,-0.783827,0.620979,3e-06,-0.783827,0.62098,3e-06,-0.783827,0.62098,3e-06,-0.783827,0.62098,-2e-06,-0.783822,0.620985,-2e-06,-0.783822,0.620985,-2e-06,-0.783822,0.620985,2e-06,-0.783824,0.620983,2e-06,-0.783824,0.620983,2e-06,-0.783824,0.620983,-1e-06,-0.783828,0.620978,-1e-06,-0.783828,0.620978,-1e-06,-0.783828,0.620978,0,-0.783826,0.62098,0,-0.783826,0.62098,0,-0.783826,0.62098,0,-0.78382,0.620988,0,-0.78382,0.620988,0,-0.78382,0.620988,2e-06,-0.783826,0.620981,2e-06,-0.783826,0.620981,2e-06,-0.783826,0.620981,0,-0.783826,0.62098,2e-06,-0.783828,0.620978,2e-06,-0.783828,0.620978,2e-06,-0.783828,0.620978,2e-06,-0.783826,0.620981,1e-06,-0.78383,0.620976,1e-06,-0.78383,0.620976,1e-06,-0.78383,0.620976,3e-06,-0.78381,0.621001,3e-06,-0.78381,0.621001,3e-06,-0.78381,0.621001,1e-06,-0.783829,0.620977,1e-06,-0.783829,0.620977,1e-06,-0.783829,0.620977,0,-0.783825,0.620982,0,-0.783825,0.620982,0,-0.783825,0.620982,1e-06,-0.783825,0.620981,1e-06,-0.783825,0.620981,1e-06,-0.783825,0.620981,1e-06,-0.783826,0.620981,1e-06,-0.783826,0.620981,1e-06,-0.783826,0.620981,-0,-0.783819,0.62099,-0,-0.783819,0.62099,-0,-0.783819,0.62099,0,-0.78383,0.620975,0,-0.78383,0.620975,0,-0.78383,0.620975,1e-06,-0.783823,0.620984,1e-06,-0.783823,0.620984,1e-06,-0.783823,0.620984,1e-06,-0.783826,0.620981,1e-06,-0.783826,0.620981,1e-06,-0.783826,0.620981,1e-06,-0.783831,0.620974,1e-06,-0.783831,0.620974,1e-06,-0.783831,0.620974,-2e-06,-0.783837,0.620967,-2e-06,-0.783837,0.620967,-2e-06,-0.783837,0.620967,-1e-06,-0.783816,0.620993,-1e-06,-0.783816,0.620993,-1e-06,-0.783816,0.620993,3e-06,-0.783822,0.620985,3e-06,-0.783822,0.620985,3e-06,-0.783822,0.620985,-1e-06,-0.783824,0.620983,-1e-06,-0.783824,0.620983,-1e-06,-0.783824,0.620983,1e-06,-0.783827,0.62098,1e-06,-0.783827,0.62098,1e-06,-0.783827,0.62098,-0,-0.783824,0.620983,-0,-0.783824,0.620983,-0,-0.783824,0.620983,1e-06,-0.783826,0.620981,1e-06,-0.783826,0.620981,1e-06,-0.783826,0.620981,0,-0.783826,0.620981,0,-0.783826,0.620981,0,-0.783826,0.620981,0,-0.783827,0.620979,0,-0.783827,0.620979,0,-0.783827,0.620979,-4e-06,-0.783823,0.620985,-4e-06,-0.783823,0.620985,-4e-06,-0.783823,0.620985,7e-06,-0.783822,0.620986,7e-06,-0.783822,0.620986,7e-06,-0.783822,0.620986,-0,-0.78383,0.620975,-0,-0.78383,0.620975,-0,-0.78383,0.620975,2e-06,-0.783848,0.620953,2e-06,-0.783848,0.620953,2e-06,-0.783848,0.620953,-0,-0.783825,0.620981,-0,-0.783825,0.620981,-0,-0.783825,0.620981,0,-0.783824,0.620983,0,-0.783824,0.620983,0,-0.783824,0.620983,-0,-0.783825,0.620982,-0,-0.783825,0.620982,-0,-0.783825,0.620982,-2e-06,-0.783823,0.620984,-2e-06,-0.783823,0.620984,-2e-06,-0.783823,0.620984,-1e-06,-0.783824,0.620983,-1e-06,-0.783824,0.620983,-1e-06,-0.783824,0.620983,-1e-06,-0.783823,0.620984,-1e-06,-0.783823,0.620984,-1e-06,-0.783823,0.620984,2e-06,-0.783825,0.620981,2e-06,-0.783825,0.620981,2e-06,-0.783825,0.620981,-4e-06,-0.78383,0.620976,-4e-06,-0.78383,0.620976,-4e-06,-0.78383,0.620976,3e-06,-0.783819,0.620989,3e-06,-0.783819,0.620989,3e-06,-0.783819,0.620989,-3e-06,-0.783825,0.620982,-3e-06,-0.783825,0.620982,-3e-06,-0.783825,0.620982,2e-06,-0.783826,0.62098,2e-06,-0.783826,0.62098,2e-06,-0.783826,0.62098,3e-06,-0.783826,0.62098,3e-06,-0.783826,0.62098,3e-06,-0.783826,0.62098,0,-0.783827,0.620979,0,-0.783827,0.620979,0,-0.783827,0.620979,1e-06,-0.78383,0.620976,1e-06,-0.78383,0.620976,1e-06,-0.78383,0.620976,-1e-06,-0.783825,0.620982,-1e-06,-0.783825,0.620982,-1e-06,-0.783825,0.620982,1.2e-05,-0.783801,0.621013,1.2e-05,-0.783801,0.621013,1.2e-05,-0.783801,0.621013,0,-0.783823,0.620984,0,-0.783823,0.620984,0,-0.783823,0.620984,1e-06,-0.783825,0.620982,1e-06,-0.783825,0.620982,1e-06,-0.783825,0.620982,0,-0.783824,0.620983,0,-0.783824,0.620983,0,-0.783824,0.620983,2e-06,-0.78383,0.620975,2e-06,-0.78383,0.620975,2e-06,-0.78383,0.620975,-0,-0.783816,0.620994,-0,-0.783816,0.620994,-0,-0.783816,0.620994,0,-0.783827,0.62098,0,-0.783827,0.62098,0,-0.783827,0.62098,1e-06,-0.783824,0.620983,1e-06,-0.783824,0.620983,1e-06,-0.783824,0.620983,1e-06,-0.783831,0.620974,1e-06,-0.783831,0.620974,1e-06,-0.783831,0.620974,-0,-0.783826,0.620981,-0,-0.783826,0.620981,-0,-0.783826,0.620981,2e-06,-0.783827,0.620979,2e-06,-0.783827,0.620979,2e-06,-0.783827,0.620979,-0,-0.783824,0.620983,-0,-0.783824,0.620983,-0,-0.783824,0.620983,2e-06,-0.783828,0.620978,2e-06,-0.783828,0.620978,2e-06,-0.783828,0.620978,-0,-0.783819,0.62099,-0,-0.783819,0.62099,-0,-0.783819,0.62099,-0,-0.783826,0.62098,-0,-0.783826,0.62098,-0,-0.783826,0.62098,-3e-06,-0.783826,0.620981,-3e-06,-0.783826,0.620981,-3e-06,-0.783826,0.620981,-2e-06,-0.783825,0.620981,-2e-06,-0.783825,0.620981,-2e-06,-0.783825,0.620981,-4e-06,-0.783828,0.620977,-4e-06,-0.783828,0.620977,-4e-06,-0.783828,0.620977,-0,-0.783826,0.620981,-0,-0.783826,0.620981,-0,-0.783826,0.620981,2e-06,-0.783827,0.620979,2e-06,-0.783827,0.620979,-5e-06,-0.783826,0.620981,-5e-06,-0.783826,0.620981,-5e-06,-0.783826,0.620981,1e-06,-0.783828,0.620978,1e-06,-0.783828,0.620978,1e-06,-0.783828,0.620978,-4e-06,-0.783819,0.620989,-4e-06,-0.783819,0.620989,-4e-06,-0.783819,0.620989,-7e-06,-0.783828,0.620978,-7e-06,-0.783828,0.620978,-7e-06,-0.783828,0.620978,-7e-06,-0.783828,0.620978,3e-06,-0.783825,0.620982,3e-06,-0.783825,0.620982,3e-06,-0.783825,0.620982,-4e-06,-0.783825,0.620982,-4e-06,-0.783825,0.620982,-4e-06,-0.783825,0.620982,-2e-06,-0.783828,0.620979,-2e-06,-0.783828,0.620979,-2e-06,-0.783828,0.620979,-2e-06,-0.783827,0.620979,-2e-06,-0.783827,0.620979,-2e-06,-0.783827,0.620979,-4e-06,-0.783826,0.62098,-4e-06,-0.783826,0.62098,-4e-06,-0.783826,0.62098,1e-06,-0.783825,0.620982,1e-06,-0.783825,0.620982,1e-06,-0.783825,0.620982,-2e-06,-0.783826,0.620981,-2e-06,-0.783826,0.620981,-2e-06,-0.783826,0.620981,-0,-0.783824,0.620983,-0,-0.783824,0.620983,-0,-0.783824,0.620983,-2e-06,-0.783826,0.62098,-2e-06,-0.783826,0.62098,-2e-06,-0.783826,0.62098,1e-06,-0.783826,0.620981,1e-06,-0.783826,0.620981,1e-06,-0.783826,0.620981,-2e-06,-0.783825,0.620981,-2e-06,-0.783825,0.620981,-2e-06,-0.783825,0.620981,-3e-06,-0.783826,0.620981,-3e-06,-0.783826,0.620981,-3e-06,-0.783826,0.620981,3e-06,-0.78383,0.620975,3e-06,-0.78383,0.620975,3e-06,-0.78383,0.620975,-2e-06,-0.783827,0.62098,-2e-06,-0.783827,0.62098,-2e-06,-0.783827,0.62098,-2e-06,-0.783825,0.620981,-2e-06,-0.783825,0.620981,-2e-06,-0.783825,0.620981,5e-06,-0.783827,0.620979,5e-06,-0.783827,0.620979,5e-06,-0.783827,0.620979,5e-06,-0.783827,0.620979,-3e-06,-0.783826,0.620981,-3e-06,-0.783826,0.620981,4e-06,-0.78383,0.620976,4e-06,-0.78383,0.620976,4e-06,-0.78383,0.620976,5e-06,-0.78383,0.620975,5e-06,-0.78383,0.620975,5e-06,-0.78383,0.620975,-1e-06,-0.783823,0.620984,-1e-06,-0.783823,0.620984,-1e-06,-0.783823,0.620984,-1e-06,-0.783822,0.620985,-1e-06,-0.783822,0.620985,-1e-06,-0.783822,0.620985,2e-06,-0.78382,0.620988,2e-06,-0.78382,0.620988,2e-06,-0.78382,0.620988,1.3e-05,-0.783826,0.62098,1.3e-05,-0.783826,0.62098,1.3e-05,-0.783826,0.62098,-2e-06,-0.78381,0.621001,-2e-06,-0.78381,0.621001,-2e-06,-0.78381,0.621001,0,-0.783825,0.620982,0,-0.783825,0.620982,0,-0.783825,0.620982,0,-0.783827,0.620979,0,-0.783827,0.620979,0,-0.783827,0.620979,0,-0.783827,0.620979,-0,-0.783826,0.620981,-0,-0.783826,0.620981,-0,-0.783826,0.620981,0,-0.783826,0.620981,1.6e-05,-0.783803,0.621009,1.6e-05,-0.783803,0.621009,1.6e-05,-0.783803,0.621009,-0,-0.78382,0.620988,-0,-0.78382,0.620988,-0,-0.78382,0.620988,1e-06,-0.783826,0.62098,1e-06,-0.783826,0.62098,1e-06,-0.783826,0.62098,3e-06,-0.783828,0.620978,3e-06,-0.783828,0.620978,3e-06,-0.783828,0.620978,4e-06,-0.783826,0.62098,4e-06,-0.783826,0.62098,4e-06,-0.783826,0.62098,-1e-06,-0.783825,0.620981,-1e-06,-0.783825,0.620981,-1e-06,-0.783825,0.620981,3e-06,-0.783824,0.620983,3e-06,-0.783824,0.620983,3e-06,-0.783824,0.620983,-1e-06,-0.783827,0.620979,-1e-06,-0.783827,0.620979,-1e-06,-0.783827,0.620979,0,-0.783826,0.620981,0,-0.783826,0.620981,0,-0.783826,0.620981,1e-06,-0.783825,0.620981,1e-06,-0.783825,0.620981,1e-06,-0.783825,0.620981,-3e-06,-0.783825,0.620982,-3e-06,-0.783825,0.620982,-3e-06,-0.783825,0.620982,2e-06,-0.783827,0.620979,2e-06,-0.783827,0.620979,2e-06,-0.783827,0.620979,2e-06,-0.783826,0.620981,2e-06,-0.783826,0.620981,2e-06,-0.783826,0.620981,-3e-06,-0.783824,0.620983,-3e-06,-0.783824,0.620983,-3e-06,-0.783824,0.620983,-1e-06,-0.783827,0.62098,-1e-06,-0.783827,0.62098,-1e-06,-0.783827,0.62098,2e-06,-0.783827,0.62098,2e-06,-0.783827,0.62098,2e-06,-0.783827,0.62098,1e-06,-0.783825,0.620982,1e-06,-0.783825,0.620982,1e-06,-0.783825,0.620982,-1e-06,-0.783828,0.620978,-1e-06,-0.783828,0.620978,-1e-06,-0.783828,0.620978,0,-0.783823,0.620984,0,-0.783823,0.620984,0,-0.783823,0.620984,-1e-06,-0.783827,0.620979,-1e-06,-0.783827,0.620979,-1e-06,-0.783827,0.620979,-0,-0.78383,0.620976,-0,-0.78383,0.620976,-0,-0.78383,0.620976,-3e-06,-0.783824,0.620982,-3e-06,-0.783824,0.620982,-3e-06,-0.783824,0.620982,-1e-06,-0.783821,0.620987,-1e-06,-0.783821,0.620987,-1e-06,-0.783821,0.620987,1e-06,-0.783827,0.62098,1e-06,-0.783827,0.62098,1e-06,-0.783827,0.62098,-3e-06,-0.783822,0.620986,-3e-06,-0.783822,0.620986,-3e-06,-0.783822,0.620986,4e-06,-0.783827,0.62098,4e-06,-0.783827,0.62098,4e-06,-0.783827,0.62098,-1.2e-05,-0.78382,0.620989,-1.2e-05,-0.78382,0.620989,-1.2e-05,-0.78382,0.620989,5e-06,-0.783825,0.620981,5e-06,-0.783825,0.620981,5e-06,-0.783825,0.620981,-2e-06,-0.783823,0.620985,-2e-06,-0.783823,0.620985,-2e-06,-0.783823,0.620985,-1e-06,-0.78383,0.620975,-1e-06,-0.78383,0.620975,-1e-06,-0.78383,0.620975,0,-0.783827,0.620979,0,-0.783827,0.620979,0,-0.783827,0.620979,-1e-06,-0.783828,0.620978,-1e-06,-0.783828,0.620978,-1e-06,-0.783828,0.620978,2e-06,-0.783825,0.620982,2e-06,-0.783825,0.620982,2e-06,-0.783825,0.620982,-3e-06,-0.783824,0.620983,-3e-06,-0.783824,0.620983,-3e-06,-0.783824,0.620983,-2e-06,-0.783822,0.620986,-2e-06,-0.783822,0.620986,-2e-06,-0.783822,0.620986,3e-06,-0.783826,0.62098,3e-06,-0.783826,0.62098,3e-06,-0.783826,0.62098,-0,-0.783816,0.620993,-0,-0.783816,0.620993,-0,-0.783816,0.620993,-2e-06,-0.783828,0.620977,-2e-06,-0.783828,0.620977,-2e-06,-0.783828,0.620977,-1e-06,-0.783815,0.620995,-1e-06,-0.783815,0.620995,-1e-06,-0.783815,0.620995,-9e-06,-0.783837,0.620967,-9e-06,-0.783837,0.620967,-9e-06,-0.783837,0.620967,-2e-06,-0.783822,0.620986,-2e-06,-0.783822,0.620986,-2e-06,-0.783822,0.620986,0,-0.783819,0.620989,0,-0.783819,0.620989,0,-0.783819,0.620989,-2e-06,-0.783826,0.62098,-2e-06,-0.783826,0.62098,-2e-06,-0.783826,0.62098,-1e-06,-0.783827,0.620979,-1e-06,-0.783827,0.620979,-1e-06,-0.783827,0.620979,-0,-0.783828,0.620978,-0,-0.783828,0.620978,-0,-0.783828,0.620978,-0,-0.783824,0.620982,-0,-0.783824,0.620982,-0,-0.783824,0.620982,3e-06,-0.783818,0.620991,3e-06,-0.783818,0.620991,3e-06,-0.783818,0.620991,-2e-06,-0.783804,0.621008,-2e-06,-0.783804,0.621008,-2e-06,-0.783804,0.621008,0,-0.783823,0.620985,0,-0.783823,0.620985,0,-0.783823,0.620985,0,-0.783823,0.620985,0,-0.783827,0.62098,0,-0.783827,0.62098,0,-0.783827,0.62098,1e-06,-0.783827,0.620979,1e-06,-0.783827,0.620979,1e-06,-0.783827,0.620979,-0,-0.783831,0.620974,-0,-0.783831,0.620974,-0,-0.783831,0.620974,8e-06,-0.783851,0.620949,8e-06,-0.783851,0.620949,8e-06,-0.783851,0.620949,-0,-0.783825,0.620982,-0,-0.783825,0.620982,-0,-0.783825,0.620982,0,-0.783825,0.620981,0,-0.783825,0.620981,0,-0.783825,0.620981,1e-06,-0.783825,0.620981,1e-06,-0.783825,0.620981,1e-06,-0.783825,0.620981,1e-06,-0.783825,0.620982,1e-06,-0.783825,0.620982,1e-06,-0.783825,0.620982,-1e-06,-0.783828,0.620978,-1e-06,-0.783828,0.620978,-1e-06,-0.783828,0.620978,-0,-0.783827,0.620979,-0,-0.783827,0.620979,-0,-0.783827,0.620979,-2e-06,-0.783825,0.620982,-2e-06,-0.783825,0.620982,-2e-06,-0.783825,0.620982,-1e-06,-0.783824,0.620983,-1e-06,-0.783824,0.620983,-1e-06,-0.783824,0.620983,-0,-0.783822,0.620986,-0,-0.783822,0.620986,-0,-0.783822,0.620986,-2e-06,-0.783824,0.620983,-2e-06,-0.783824,0.620983,-2e-06,-0.783824,0.620983,-0,-0.783826,0.620981,-0,-0.783826,0.620981,-0,-0.783826,0.620981,1e-06,-0.783826,0.62098,1e-06,-0.783826,0.62098,1e-06,-0.783826,0.62098,0,-0.783825,0.620982,0,-0.783825,0.620982,0,-0.783825,0.620982,1e-06,-0.783821,0.620987,1e-06,-0.783821,0.620987,1e-06,-0.783821,0.620987,1e-06,-0.783824,0.620983,1e-06,-0.783824,0.620983,1e-06,-0.783824,0.620983,1e-06,-0.783826,0.620981,1e-06,-0.783826,0.620981,1e-06,-0.783826,0.620981,0,-0.783829,0.620977,0,-0.783829,0.620977,0,-0.783829,0.620977,0,-0.783825,0.620982,0,-0.783825,0.620982,0,-0.783825,0.620982,-0,-0.783823,0.620984,-0,-0.783823,0.620984,-0,-0.783823,0.620984,1e-06,-0.783825,0.620982,1e-06,-0.783825,0.620982,1e-06,-0.783825,0.620982,-1e-06,-0.783826,0.620981,-1e-06,-0.783826,0.620981,-1e-06,-0.783826,0.620981,-4e-06,-0.783832,0.620973,-4e-06,-0.783832,0.620973,-4e-06,-0.783832,0.620973,-2e-06,-0.783829,0.620976,-2e-06,-0.783829,0.620976,-2e-06,-0.783829,0.620976,-2e-06,-0.78382,0.620989,-2e-06,-0.78382,0.620989,-2e-06,-0.78382,0.620989,-1e-06,-0.783825,0.620982,-1e-06,-0.783825,0.620982,-1e-06,-0.783825,0.620982,0,-0.783826,0.620981,0,-0.783826,0.620981,0,-0.783826,0.620981,-3e-06,-0.783825,0.620982,-3e-06,-0.783825,0.620982,-3e-06,-0.783825,0.620982,-0,-0.783826,0.620981,-0,-0.783826,0.620981,-0,-0.783826,0.620981,-1e-06,-0.783827,0.62098,-1e-06,-0.783827,0.62098,-1e-06,-0.783827,0.62098,0,-0.783825,0.620982,0,-0.783825,0.620982,0,-0.783825,0.620982,-1e-06,-0.783825,0.620982,-1e-06,-0.783825,0.620982,-2e-06,-0.783833,0.620972,-2e-06,-0.783833,0.620972,-2e-06,-0.783833,0.620972,-1e-06,-0.783826,0.620981,-1e-06,-0.783826,0.620981,-1e-06,-0.783826,0.620981,-0,-0.783826,0.620981,-0,-0.783826,0.620981,-0,-0.783826,0.620981,-5e-06,-0.783805,0.621007,-5e-06,-0.783805,0.621007,-5e-06,-0.783805,0.621007,-0,-0.783828,0.620978,-0,-0.783828,0.620978,-0,-0.783828,0.620978,0,-0.783827,0.62098,0,-0.783827,0.62098,0,-0.783827,0.62098,-0,-0.783825,0.620982,-0,-0.783825,0.620982,-0,-0.783825,0.620982,0,-0.783822,0.620985,0,-0.783822,0.620985,0,-0.783822,0.620985,0,-0.783836,0.620968,0,-0.783836,0.620968,0,-0.783836,0.620968,2e-06,-0.783818,0.62099,2e-06,-0.783818,0.62099,2e-06,-0.783818,0.62099,2e-06,-0.783818,0.62099,-1e-06,-0.783827,0.620979,-1e-06,-0.783827,0.620979,-1e-06,-0.783827,0.620979,-0,-0.783828,0.620978,-0,-0.783828,0.620978,-0,-0.783828,0.620978,3e-06,-0.78382,0.620989,3e-06,-0.78382,0.620989,3e-06,-0.78382,0.620989,4e-06,-0.783832,0.620973,4e-06,-0.783832,0.620973,4e-06,-0.783832,0.620973,-1e-06,-0.783844,0.620958,-1e-06,-0.783844,0.620958,-1e-06,-0.783844,0.620958,-1e-06,-0.783828,0.620979,-1e-06,-0.783828,0.620979,-1e-06,-0.783828,0.620979,-2e-06,-0.783833,0.620971,-2e-06,-0.783833,0.620971,-2e-06,-0.783833,0.620971,-1e-06,-0.783833,0.620971,-1e-06,-0.783833,0.620971,-1e-06,-0.783833,0.620971,-1e-06,-0.783837,0.620967,-1e-06,-0.783837,0.620967,-1e-06,-0.783837,0.620967,-5e-06,-0.783831,0.620974,-5e-06,-0.783831,0.620974,-5e-06,-0.783831,0.620974,1e-06,-0.783807,0.621004,1e-06,-0.783807,0.621004,1e-06,-0.783807,0.621004,-3e-06,-0.783827,0.620979,-3e-06,-0.783827,0.620979,-3e-06,-0.783827,0.620979,1e-06,-0.78383,0.620975,1e-06,-0.78383,0.620975,1e-06,-0.78383,0.620975,-1e-05,-0.783821,0.620987,-1e-05,-0.783821,0.620987,-1e-05,-0.783821,0.620987,-4e-06,-0.783821,0.620987,-4e-06,-0.783821,0.620987,-4e-06,-0.783821,0.620987,-4e-06,-0.78382,0.620988,-4e-06,-0.78382,0.620988,-4e-06,-0.78382,0.620988,4e-06,-0.783829,0.620976,4e-06,-0.783829,0.620976,4e-06,-0.783829,0.620976,2e-06,-0.783821,0.620986,2e-06,-0.783821,0.620986,2e-06,-0.783821,0.620986,7e-06,-0.783823,0.620985,7e-06,-0.783823,0.620985,7e-06,-0.783823,0.620985,-1e-06,-0.783809,0.621002,-1e-06,-0.783809,0.621002,-1e-06,-0.783809,0.621002,1e-06,-0.783836,0.620969,1e-06,-0.783836,0.620969,1e-06,-0.783836,0.620969,1e-06,-0.783822,0.620986,1e-06,-0.783822,0.620986,1e-06,-0.783822,0.620986,-1e-06,-0.783832,0.620972,-1e-06,-0.783832,0.620972,-1e-06,-0.783832,0.620972,-1e-06,-0.783839,0.620964,-1e-06,-0.783839,0.620964,-1e-06,-0.783839,0.620964,1e-06,-0.783814,0.620995,1e-06,-0.783814,0.620995,1e-06,-0.783814,0.620995,-5e-06,-0.783827,0.620979,-5e-06,-0.783827,0.620979,-5e-06,-0.783827,0.620979,-7e-06,-0.783826,0.620981,-7e-06,-0.783826,0.620981,-7e-06,-0.783826,0.620981,-7e-06,-0.783827,0.62098,-7e-06,-0.783827,0.62098,-7e-06,-0.783827,0.62098,-4e-06,-0.783828,0.620978,-4e-06,-0.783828,0.620978,-4e-06,-0.783828,0.620978,-1.7e-05,-0.78384,0.620963,-1.7e-05,-0.78384,0.620963,-1.7e-05,-0.78384,0.620963,0,-0.783821,0.620987,0,-0.783821,0.620987,0,-0.783821,0.620987,-1.3e-05,-0.783827,0.620979,-1.3e-05,-0.783827,0.620979,-1.3e-05,-0.783827,0.620979,8e-06,-0.783823,0.620985,8e-06,-0.783823,0.620985,8e-06,-0.783823,0.620985,-1e-06,-0.78382,0.620989,-1e-06,-0.78382,0.620989,-1e-06,-0.78382,0.620989,2e-06,-0.783826,0.62098,2e-06,-0.783826,0.62098,2e-06,-0.783826,0.62098,9e-06,-0.783811,0.621,9e-06,-0.783811,0.621,9e-06,-0.783811,0.621,1e-06,-0.783828,0.620978,1e-06,-0.783828,0.620978,1e-06,-0.783828,0.620978,3.4e-05,-0.783757,0.621067,3.4e-05,-0.783757,0.621067,3.4e-05,-0.783757,0.621067,1e-06,-0.783831,0.620974,1e-06,-0.783831,0.620974,1e-06,-0.783831,0.620974,-2e-06,-0.783833,0.620972,-2e-06,-0.783833,0.620972,-2e-06,-0.783833,0.620972,2e-06,-0.783839,0.620964,2e-06,-0.783839,0.620964,2e-06,-0.783839,0.620964,-5e-06,-0.783816,0.620993,-5e-06,-0.783816,0.620993,-5e-06,-0.783816,0.620993,-6e-06,-0.783863,0.620934,-6e-06,-0.783863,0.620934,-6e-06,-0.783863,0.620934,-0,-0.783814,0.620996,-0,-0.783814,0.620996,-0,-0.783814,0.620996,-0,-0.78382,0.620988,-0,-0.78382,0.620988,-0,-0.78382,0.620988,-0,-0.783821,0.620987,-0,-0.783821,0.620987,-0,-0.783821,0.620987,-0,-0.783822,0.620986,-0,-0.783822,0.620986,-0,-0.783822,0.620986,-2e-06,-0.783811,0.620999,-2e-06,-0.783811,0.620999,-2e-06,-0.783811,0.620999,-2e-06,-0.783828,0.620978,-2e-06,-0.783828,0.620978,-2e-06,-0.783828,0.620978,-3e-06,-0.783905,0.620881,-3e-06,-0.783905,0.620881,-3e-06,-0.783905,0.620881,3e-06,-0.783821,0.620987,3e-06,-0.783821,0.620987,3e-06,-0.783821,0.620987,-9e-06,-0.783798,0.621015,-9e-06,-0.783798,0.621015,-9e-06,-0.783798,0.621015,-2.2e-05,-0.783883,0.620908,-2.2e-05,-0.783883,0.620908,-2.2e-05,-0.783883,0.620908,-0,-0.783824,0.620983,-0,-0.783824,0.620983,-0,-0.783824,0.620983,-1e-06,-0.783826,0.620981,-1e-06,-0.783826,0.620981,-1e-06,-0.783826,0.620981,-3e-06,-0.783823,0.620984,-3e-06,-0.783823,0.620984,-3e-06,-0.783823,0.620984,2e-06,-0.783826,0.620981,2e-06,-0.783826,0.620981,2e-06,-0.783826,0.620981,-5e-06,-0.783828,0.620978,-5e-06,-0.783828,0.620978,-5e-06,-0.783828,0.620978,1.3e-05,-0.783833,0.620971,1.3e-05,-0.783833,0.620971,1.3e-05,-0.783833,0.620971,7e-06,-0.783819,0.62099,7e-06,-0.783819,0.62099,7e-06,-0.783819,0.62099,8e-06,-0.783823,0.620984,8e-06,-0.783823,0.620984,8e-06,-0.783823,0.620984,-4e-06,-0.78383,0.620976,-4e-06,-0.78383,0.620976,-4e-06,-0.78383,0.620976,2.8e-05,-0.783848,0.620952,2.8e-05,-0.783848,0.620952,2.8e-05,-0.783848,0.620952,-4e-06,-0.78383,0.620976,-4e-06,-0.783822,0.620985,-4e-06,-0.783822,0.620985,-4e-06,-0.783822,0.620985,-1e-06,-0.783826,0.62098,-1e-06,-0.783826,0.62098,-1e-06,-0.783826,0.62098,-2e-06,-0.783821,0.620987,-2e-06,-0.783821,0.620987,-2e-06,-0.783821,0.620987,-2e-06,-0.783824,0.620983,-2e-06,-0.783824,0.620983,-2e-06,-0.783824,0.620983,4e-06,-0.783827,0.62098,4e-06,-0.783827,0.62098,4e-06,-0.783827,0.62098,-2e-06,-0.783824,0.620983,-2e-06,-0.783829,0.620977,-2e-06,-0.783829,0.620977,-2e-06,-0.783829,0.620977,9e-06,-0.783828,0.620978,9e-06,-0.783828,0.620978,9e-06,-0.783828,0.620978,9e-06,-0.783828,0.620978,-4e-06,-0.783826,0.62098,-4e-06,-0.783826,0.62098,-4e-06,-0.783826,0.62098,-9e-06,-0.783818,0.62099,-9e-06,-0.783818,0.62099,-9e-06,-0.783818,0.62099,3e-06,-0.783822,0.620985,3e-06,-0.783822,0.620985,3e-06,-0.783822,0.620985,1e-06,-0.783835,0.620969,1e-06,-0.783835,0.620969,1e-06,-0.783835,0.620969,0,-0.783821,0.620987,0,-0.783821,0.620987,0,-0.783821,0.620987,1.2e-05,-0.783815,0.620995,1.2e-05,-0.783815,0.620995,1.2e-05,-0.783815,0.620995,4e-06,-0.783835,0.620969,4e-06,-0.783835,0.620969,4e-06,-0.783835,0.620969,2e-06,-0.783822,0.620985,2e-06,-0.783822,0.620985,2e-06,-0.783822,0.620985,8e-06,-0.783824,0.620983,8e-06,-0.783824,0.620983,8e-06,-0.783824,0.620983,4e-06,-0.783829,0.620977,4e-06,-0.783829,0.620977,4e-06,-0.783829,0.620977,2e-06,-0.78382,0.620988,2e-06,-0.78382,0.620988,2e-06,-0.78382,0.620988,1e-06,-0.783826,0.620981,1e-06,-0.783826,0.620981,1e-06,-0.783826,0.620981,1e-06,-0.783824,0.620983,1e-06,-0.783824,0.620983,1e-06,-0.783824,0.620983,4e-06,-0.783827,0.620979,4e-06,-0.783827,0.620979,4e-06,-0.783827,0.620979,-1.5e-05,-0.783817,0.620992,-1.5e-05,-0.783817,0.620992,-1.5e-05,-0.783817,0.620992,3e-06,-0.78383,0.620976,3e-06,-0.78383,0.620976,3e-06,-0.78383,0.620976,-1e-06,-0.783818,0.620991,-1e-06,-0.783818,0.620991,-1e-06,-0.783818,0.620991,-0,-0.783825,0.620982,-0,-0.783825,0.620982,-0,-0.783825,0.620982,-5e-06,-0.783828,0.620978,-5e-06,-0.783828,0.620978,-5e-06,-0.783828,0.620978,4e-06,-0.783812,0.620998,4e-06,-0.783812,0.620998,4e-06,-0.783812,0.620998,4e-06,-0.783843,0.620959,4e-06,-0.783843,0.620959,4e-06,-0.783843,0.620959,-2e-06,-0.78383,0.620975,-2e-06,-0.78383,0.620975,-2e-06,-0.78383,0.620975,6e-06,-0.783819,0.620989,6e-06,-0.783819,0.620989,6e-06,-0.783819,0.620989,2e-06,-0.783824,0.620983,2e-06,-0.783824,0.620983,2e-06,-0.783824,0.620983,-2e-06,-0.783823,0.620985,-2e-06,-0.783823,0.620985,-2e-06,-0.783823,0.620985,3e-06,-0.783817,0.620992,3e-06,-0.783817,0.620992,3e-06,-0.783817,0.620992,0,-0.783825,0.620982,0,-0.783825,0.620982,0,-0.783825,0.620982,-3e-06,-0.783827,0.620979,-3e-06,-0.783827,0.620979,-3e-06,-0.783827,0.620979,-2e-06,-0.783821,0.620986,-2e-06,-0.783821,0.620986,-2e-06,-0.783821,0.620986,-1e-05,-0.783826,0.62098,-1e-05,-0.783826,0.62098,-1e-05,-0.783826,0.62098,-3e-06,-0.783827,0.620979,-1.1e-05,-0.783825,0.620982,-1.1e-05,-0.783825,0.620982,-1.1e-05,-0.783825,0.620982,-1.2e-05,-0.783826,0.62098,-1.2e-05,-0.783826,0.62098,-1.2e-05,-0.783826,0.62098,1e-06,-0.783834,0.620971,1e-06,-0.783834,0.620971,1e-06,-0.783834,0.620971,1e-06,-0.783824,0.620983,1e-06,-0.783824,0.620983,1e-06,-0.783824,0.620983,6e-06,-0.783828,0.620979,6e-06,-0.783828,0.620979,6e-06,-0.783828,0.620979,3e-06,-0.783823,0.620985,3e-06,-0.783823,0.620985,3e-06,-0.783823,0.620985,0,-0.783826,0.62098,0,-0.783826,0.62098,0,-0.783826,0.62098,0,-0.783827,0.620979,0,-0.783827,0.620979,0,-0.783827,0.620979,2e-06,-0.783823,0.620984,2e-06,-0.783823,0.620984,2e-06,-0.783823,0.620984,0,-0.78382,0.620988,0,-0.78382,0.620988,0,-0.78382,0.620988,3e-06,-0.783828,0.620978,3e-06,-0.783828,0.620978,3e-06,-0.783828,0.620978,1e-06,-0.783831,0.620974,1e-06,-0.783831,0.620974,1e-06,-0.783831,0.620974,0,-0.783827,0.620979,0,-0.783827,0.620979,-5e-06,-0.783821,0.620987,-5e-06,-0.783821,0.620987,-5e-06,-0.783821,0.620987,-3e-06,-0.783822,0.620985,-3e-06,-0.783822,0.620985,-3e-06,-0.783822,0.620985,-5.8e-05,-0.783795,0.62102,-5.8e-05,-0.783795,0.62102,-5.8e-05,-0.783795,0.62102,-4e-06,-0.783825,0.620981,-4e-06,-0.783825,0.620981,-4e-06,-0.783825,0.620981,-3e-06,-0.783826,0.620981,-3e-06,-0.783826,0.620981,-3e-06,-0.783826,0.620981,-3e-06,-0.783826,0.62098,-3e-06,-0.783826,0.62098,-3e-06,-0.783826,0.62098,-8e-06,-0.783827,0.62098,-8e-06,-0.783827,0.62098,-8e-06,-0.783827,0.62098,-3e-06,-0.783827,0.620979,-3e-06,-0.783827,0.620979,-3e-06,-0.783827,0.620979,-5e-06,-0.783824,0.620984,-5e-06,-0.783824,0.620984,-5e-06,-0.783824,0.620984,1e-06,-0.783835,0.620969,1e-06,-0.783835,0.620969,1e-06,-0.783835,0.620969,7e-06,-0.783823,0.620985,7e-06,-0.783823,0.620985,7e-06,-0.783823,0.620985,-4e-06,-0.783825,0.620982,-4e-06,-0.783825,0.620982,-4e-06,-0.783825,0.620982,6e-06,-0.78383,0.620975,6e-06,-0.78383,0.620975,6e-06,-0.78383,0.620975,-3e-06,-0.783825,0.620982,-3e-06,-0.783825,0.620982,-3e-06,-0.783825,0.620982,-0,-0.783806,0.621006,-0,-0.783806,0.621006,-0,-0.783806,0.621006,-3e-06,-0.783825,0.620981,-3e-06,-0.783825,0.620981,-3e-06,-0.783825,0.620981,-1.9e-05,-0.78386,0.620938,-1.9e-05,-0.78386,0.620938,-1.9e-05,-0.78386,0.620938,6e-06,-0.783823,0.620984,6e-06,-0.783823,0.620984,6e-06,-0.783823,0.620984,-3e-06,-0.783825,0.620982,-3e-06,-0.783825,0.620982,-3e-06,-0.783816,0.620993,-3e-06,-0.783816,0.620993,-3e-06,-0.783816,0.620993,2e-06,-0.783829,0.620977,2e-06,-0.783829,0.620977,2e-06,-0.783829,0.620977,1e-06,-0.783843,0.620959,1e-06,-0.783843,0.620959,1e-06,-0.783843,0.620959,8e-06,-0.783824,0.620983,8e-06,-0.783824,0.620983,8e-06,-0.783824,0.620983,5e-06,-0.783837,0.620966,5e-06,-0.783837,0.620966,5e-06,-0.783837,0.620966,-1e-06,-0.783815,0.620994,-1e-06,-0.783815,0.620994,-1e-06,-0.783815,0.620994,-2e-06,-0.783828,0.620979,-2e-06,-0.783828,0.620979,-2e-06,-0.783828,0.620979,-0,-0.783845,0.620956,-0,-0.783845,0.620956,-0,-0.783845,0.620956,0,-0.783825,0.620982,0,-0.783825,0.620982,0,-0.783825,0.620982,-4e-06,-0.783826,0.62098,-4e-06,-0.783826,0.62098,-4e-06,-0.783826,0.62098,2e-06,-0.783821,0.620987,2e-06,-0.783821,0.620987,2e-06,-0.783821,0.620987,-3e-06,-0.783827,0.620979,-3e-06,-0.783827,0.620979,-3e-06,-0.783827,0.620979,1e-06,-0.78382,0.620988,1e-06,-0.78382,0.620988,1e-06,-0.78382,0.620988,-1e-06,-0.783822,0.620985,-1e-06,-0.783822,0.620985,-1e-06,-0.783822,0.620985,2e-06,-0.783829,0.620976,2e-06,-0.783829,0.620976,2e-06,-0.783829,0.620976,6e-06,-0.783819,0.620989,6e-06,-0.783819,0.620989,6e-06,-0.783819,0.620989,-2e-06,-0.783825,0.620982,-2e-06,-0.783825,0.620982,-2e-06,-0.783825,0.620982,1.4e-05,-0.783835,0.62097,1.4e-05,-0.783835,0.62097,1.4e-05,-0.783835,0.62097,6e-06,-0.783825,0.620982,6e-06,-0.783825,0.620982,6e-06,-0.783825,0.620982,-2e-06,-0.783828,0.620978,-2e-06,-0.783828,0.620978,-2e-06,-0.783828,0.620978,2e-06,-0.783848,0.620952,2e-06,-0.783848,0.620952,2e-06,-0.783848,0.620952,-0,-0.783824,0.620983,-0,-0.783824,0.620983,-0,-0.783824,0.620983,0,-0.783823,0.620984,0,-0.783823,0.620984,0,-0.783823,0.620984,-1e-06,-0.783815,0.620995,-1e-06,-0.783815,0.620995,-1e-06,-0.783815,0.620995,6e-06,-0.783827,0.620979,6e-06,-0.783827,0.620979,6e-06,-0.783827,0.620979,-2e-06,-0.783831,0.620974,-2e-06,-0.783831,0.620974,-2e-06,-0.783831,0.620974,-0,-0.783833,0.620972,-0,-0.783833,0.620972,-0,-0.783833,0.620972,-2e-06,-0.78383,0.620976,-2e-06,-0.78383,0.620976,-2e-06,-0.78383,0.620976,-3e-06,-0.783825,0.620981,-3e-06,-0.783825,0.620981,-3e-06,-0.783825,0.620981,-0,-0.783822,0.620985,-0,-0.783822,0.620985,-0,-0.783822,0.620985,4e-06,-0.783827,0.620979,4e-06,-0.783827,0.620979,4e-06,-0.783827,0.620979,1e-06,-0.783823,0.620984,1e-06,-0.783823,0.620984,1e-06,-0.783823,0.620984,6e-06,-0.783825,0.620982,6e-06,-0.783825,0.620982,6e-06,-0.783825,0.620982,-1e-06,-0.783821,0.620987,-1e-06,-0.783821,0.620987,-1e-06,-0.783821,0.620987,-1e-06,-0.783821,0.620987,-4e-06,-0.78382,0.620988,-4e-06,-0.78382,0.620988,-4e-06,-0.78382,0.620988,-2e-06,-0.783825,0.620982,-2e-06,-0.783825,0.620982,-2e-06,-0.783825,0.620982,-1e-06,-0.783831,0.620975,-1e-06,-0.783831,0.620975,-1e-06,-0.783831,0.620975,-2e-06,-0.783851,0.620949,-2e-06,-0.783851,0.620949,-2e-06,-0.783851,0.620949,4e-06,-0.783809,0.621002,4e-06,-0.783809,0.621002,4e-06,-0.783809,0.621002,5e-06,-0.78382,0.620988,5e-06,-0.78382,0.620988,5e-06,-0.78382,0.620988,-4e-06,-0.783829,0.620977,-4e-06,-0.783829,0.620977,-4e-06,-0.783829,0.620977,1.1e-05,-0.783834,0.62097,1.1e-05,-0.783834,0.62097,1.1e-05,-0.783834,0.62097,-4e-06,-0.783827,0.620979,-4e-06,-0.783827,0.620979,-4e-06,-0.783827,0.620979,-0,-0.78383,0.620976,-0,-0.78383,0.620976,-0,-0.78383,0.620976,1e-06,-0.783825,0.620982,1e-06,-0.783825,0.620982,1e-06,-0.783825,0.620982,1e-06,-0.783824,0.620984,1e-06,-0.783824,0.620984,1e-06,-0.783824,0.620984,-0,-0.783822,0.620985,-0,-0.783822,0.620985,-0,-0.783822,0.620985,6e-06,-0.783829,0.620977,6e-06,-0.783829,0.620977,6e-06,-0.783829,0.620977,-1.3e-05,-0.783838,0.620966,-1.3e-05,-0.783838,0.620966,-1.3e-05,-0.783838,0.620966,6e-06,-0.783817,0.620991,6e-06,-0.783817,0.620991,6e-06,-0.783817,0.620991,-4e-06,-0.783824,0.620983,-4e-06,-0.783824,0.620983,-4e-06,-0.783824,0.620983,7e-06,-0.783828,0.620978,7e-06,-0.783828,0.620978,7e-06,-0.783828,0.620978,6e-06,-0.783828,0.620978,6e-06,-0.783828,0.620978,6e-06,-0.783828,0.620978,9e-06,-0.783825,0.620982,9e-06,-0.783825,0.620982,9e-06,-0.783825,0.620982,9e-06,-0.783825,0.620981,9e-06,-0.783825,0.620981,9e-06,-0.783825,0.620981,6e-06,-0.783827,0.62098,6e-06,-0.783827,0.62098,6e-06,-0.783827,0.62098,-5e-06,-0.783824,0.620982,-5e-06,-0.783824,0.620982,-5e-06,-0.783824,0.620982,-2e-06,-0.783825,0.620981,-2e-06,-0.783825,0.620981,-2e-06,-0.783825,0.620981,-6e-06,-0.783827,0.62098,-6e-06,-0.783827,0.62098,-6e-06,-0.783827,0.62098,-8e-06,-0.783826,0.620981,-8e-06,-0.783826,0.620981,-8e-06,-0.783826,0.620981,-3e-06,-0.783823,0.620984,-3e-06,-0.783823,0.620984,-3e-06,-0.783823,0.620984,-4e-06,-0.783824,0.620984,-4e-06,-0.783824,0.620984,-4e-06,-0.783824,0.620984,-0,-0.783827,0.620979,-0,-0.783827,0.620979,-0,-0.783827,0.620979,7e-06,-0.783826,0.62098,7e-06,-0.783826,0.62098,7e-06,-0.783826,0.62098,1.2e-05,-0.783822,0.620986,1.2e-05,-0.783822,0.620986,1.2e-05,-0.783822,0.620986,7e-06,-0.783826,0.620981,7e-06,-0.783826,0.620981,7e-06,-0.783826,0.620981,9e-06,-0.783826,0.62098,9e-06,-0.783826,0.62098,9e-06,-0.783826,0.62098,-3e-06,-0.783828,0.620977,-3e-06,-0.783828,0.620977,-3e-06,-0.783828,0.620977,1e-05,-0.783818,0.620991,1e-05,-0.783818,0.620991,1e-05,-0.783818,0.620991,2e-06,-0.78383,0.620976,2e-06,-0.78383,0.620976,2e-06,-0.78383,0.620976,-8e-06,-0.783814,0.620996,-8e-06,-0.783814,0.620996,-8e-06,-0.783814,0.620996,-2e-06,-0.783823,0.620984,-2e-06,-0.783823,0.620984,-2e-06,-0.783823,0.620984,1e-06,-0.783829,0.620977,1e-06,-0.783829,0.620977,1e-06,-0.783829,0.620977,2e-06,-0.783811,0.621,2e-06,-0.783811,0.621,2e-06,-0.783811,0.621,3e-06,-0.783802,0.621011,3e-06,-0.783802,0.621011,3e-06,-0.783802,0.621011,2e-06,-0.783817,0.620992,2e-06,-0.783817,0.620992,2e-06,-0.783817,0.620992,-1.7e-05,-0.783771,0.621051,-1.7e-05,-0.783771,0.621051,-1.7e-05,-0.783771,0.621051,-1e-06,-0.783843,0.620959,-1e-06,-0.783843,0.620959,-1e-06,-0.783843,0.620959,-2e-06,-0.783817,0.620992,-2e-06,-0.783817,0.620992,-2e-06,-0.783817,0.620992,-3e-06,-0.783823,0.620984,-3e-06,-0.783823,0.620984,-3e-06,-0.783823,0.620984,1e-06,-0.783839,0.620964,1e-06,-0.783839,0.620964,1e-06,-0.783839,0.620964,2e-06,-0.783829,0.620977,2e-06,-0.783829,0.620977,2e-06,-0.783829,0.620977,3e-06,-0.783817,0.620992,3e-06,-0.783817,0.620992,3e-06,-0.783817,0.620992,2e-06,-0.783827,0.620979,2e-06,-0.783827,0.620979,2e-06,-0.783827,0.620979,-1e-06,-0.783822,0.620985,-1e-06,-0.783822,0.620985,-1e-06,-0.783822,0.620985,1e-06,-0.783833,0.620972,1e-06,-0.783833,0.620972,1e-06,-0.783833,0.620972,6e-06,-0.783828,0.620978,6e-06,-0.783828,0.620978,6e-06,-0.783828,0.620978,-4e-06,-0.78383,0.620975,-4e-06,-0.78383,0.620975,-4e-06,-0.78383,0.620975,2e-06,-0.783822,0.620985,2e-06,-0.783822,0.620985,2e-06,-0.783822,0.620985,-8e-06,-0.783826,0.62098,-8e-06,-0.783826,0.62098,-8e-06,-0.783826,0.62098,1e-06,-0.783824,0.620983,1e-06,-0.783824,0.620983,1e-06,-0.783824,0.620983,4e-06,-0.783828,0.620978,4e-06,-0.783828,0.620978,4e-06,-0.783828,0.620978,5e-06,-0.783818,0.62099,5e-06,-0.783818,0.62099,5e-06,-0.783818,0.62099,-1e-06,-0.783793,0.621022,-1e-06,-0.783793,0.621022,-1e-06,-0.783793,0.621022,0,-0.783842,0.620961,0,-0.783842,0.620961,0,-0.783842,0.620961,0,-0.783829,0.620977,0,-0.783829,0.620977,0,-0.783829,0.620977,-1e-06,-0.783836,0.620968,-1e-06,-0.783836,0.620968,-1e-06,-0.783836,0.620968,-1e-06,-0.7838,0.621013,-1e-06,-0.7838,0.621013,-1e-06,-0.7838,0.621013,-2e-06,-0.783814,0.620995,-2e-06,-0.783814,0.620995,-2e-06,-0.783814,0.620995,4e-06,-0.783823,0.620984,4e-06,-0.783823,0.620984,4e-06,-0.783823,0.620984,5e-06,-0.783826,0.62098,5e-06,-0.783826,0.62098,5e-06,-0.783826,0.62098,2e-06,-0.783829,0.620977,2e-06,-0.783829,0.620977,2e-06,-0.783829,0.620977,-3e-06,-0.783824,0.620983,-3e-06,-0.783824,0.620983,-3e-06,-0.783824,0.620983,-8e-06,-0.783828,0.620978,-8e-06,-0.783828,0.620978,-8e-06,-0.783828,0.620978,-4e-06,-0.783809,0.621002,-4e-06,-0.783809,0.621002,-4e-06,-0.783809,0.621002,-8e-06,-0.783826,0.62098,-8e-06,-0.783826,0.62098,-8e-06,-0.783826,0.62098,-7e-06,-0.783822,0.620986,-7e-06,-0.783822,0.620986,-7e-06,-0.783822,0.620986,-1e-06,-0.783828,0.620979,-1e-06,-0.783828,0.620979,-1e-06,-0.783828,0.620979,-6e-06,-0.783822,0.620986,-6e-06,-0.783822,0.620986,-6e-06,-0.783822,0.620986,-1e-06,-0.783823,0.620985,-1e-06,-0.783823,0.620985,-1e-06,-0.783823,0.620985,-7e-06,-0.783818,0.620991,-7e-06,-0.783818,0.620991,-7e-06,-0.783818,0.620991,-0,-0.783832,0.620974,-0,-0.783832,0.620974,-0,-0.783832,0.620974,-3.4e-05,-0.7839,0.620887,-3.4e-05,-0.7839,0.620887,-3.4e-05,-0.7839,0.620887,2e-06,-0.783828,0.620977,2e-06,-0.783828,0.620977,2e-06,-0.783828,0.620977,-0,-0.783825,0.620982,-0,-0.783825,0.620982,-0,-0.783825,0.620982,2e-06,-0.783828,0.620978,2e-06,-0.783828,0.620978,2e-06,-0.783828,0.620978,-0,-0.783815,0.620995,-0,-0.783815,0.620995,-0,-0.783815,0.620995,-6e-06,-0.783825,0.620981,-6e-06,-0.783825,0.620981,-6e-06,-0.783825,0.620981,-5e-06,-0.783809,0.621002,-5e-06,-0.783809,0.621002,-5e-06,-0.783809,0.621002,-0,-0.783818,0.62099,-0,-0.783818,0.62099,-0,-0.783818,0.62099,-2e-06,-0.783836,0.620967,-2e-06,-0.783836,0.620967,-2e-06,-0.783836,0.620967,-5e-06,-0.783833,0.620972,-5e-06,-0.783833,0.620972,-5e-06,-0.783833,0.620972,-5e-06,-0.78383,0.620975,-5e-06,-0.78383,0.620975,-5e-06,-0.78383,0.620975,3e-06,-0.783825,0.620982,3e-06,-0.783825,0.620982,3e-06,-0.783825,0.620982,2e-06,-0.783825,0.620982,2e-06,-0.783825,0.620982,2e-06,-0.783825,0.620982,-4e-06,-0.783824,0.620983,-4e-06,-0.783824,0.620983,-4e-06,-0.783824,0.620983,3e-06,-0.783823,0.620984,3e-06,-0.783823,0.620984,3e-06,-0.783823,0.620984,1.1e-05,-0.783825,0.620982,1.1e-05,-0.783825,0.620982,1.1e-05,-0.783825,0.620982,-3e-06,-0.783827,0.620979,-3e-06,-0.783827,0.620979,-3e-06,-0.783827,0.620979,-3e-06,-0.783827,0.620979,-2e-06,-0.783827,0.620979,-2e-06,-0.783827,0.620979,-2e-06,-0.783827,0.620979,-2e-06,-0.783818,0.62099,-2e-06,-0.783818,0.62099,-2e-06,-0.783818,0.62099,7e-06,-0.783826,0.620981,7e-06,-0.783826,0.620981,7e-06,-0.783826,0.620981,-0,-0.783819,0.620989,-0,-0.783819,0.620989,-0,-0.783819,0.620989,8e-06,-0.783859,0.620939,8e-06,-0.783859,0.620939,8e-06,-0.783859,0.620939,5e-06,-0.783825,0.620982,5e-06,-0.783825,0.620982,5e-06,-0.783825,0.620982,3e-06,-0.783825,0.620982,3e-06,-0.783825,0.620982,3e-06,-0.783825,0.620982,4e-06,-0.783825,0.620982,4e-06,-0.783825,0.620982,4e-06,-0.783825,0.620982,-3.8e-05,-0.783843,0.620959,-3.8e-05,-0.783843,0.620959,-3.8e-05,-0.783843,0.620959,-1e-06,-0.783831,0.620974,-1e-06,-0.783831,0.620974,-1e-06,-0.783831,0.620974,-9e-06,-0.783824,0.620983,-9e-06,-0.783824,0.620983,-9e-06,-0.783824,0.620983,-1.2e-05,-0.783821,0.620987,-1.2e-05,-0.783821,0.620987,-1.2e-05,-0.783821,0.620987,-5e-06,-0.783828,0.620978,-5e-06,-0.783828,0.620978,-5e-06,-0.783828,0.620978,2e-06,-0.783818,0.62099,2e-06,-0.783818,0.62099,2e-06,-0.783818,0.62099,-1.3e-05,-0.783821,0.620986,-1.3e-05,-0.783821,0.620986,-1.3e-05,-0.783821,0.620986,-5e-06,-0.783828,0.620978,-5e-06,-0.783828,0.620978,-5e-06,-0.783828,0.620978,5e-06,-0.783816,0.620993,5e-06,-0.783816,0.620993,5e-06,-0.783816,0.620993,2e-06,-0.783833,0.620972,2e-06,-0.783833,0.620972,2e-06,-0.783833,0.620972,-0,-0.783817,0.620992,-0,-0.783817,0.620992,-0,-0.783817,0.620992,5e-06,-0.783825,0.620982,5e-06,-0.783825,0.620982,5e-06,-0.783825,0.620982,1e-06,-0.783836,0.620968,1e-06,-0.783836,0.620968,1e-06,-0.783836,0.620968,1e-06,-0.783833,0.620972,1e-06,-0.783833,0.620972,1e-06,-0.783833,0.620972,0,-0.783824,0.620983,0,-0.783824,0.620983,0,-0.783824,0.620983,1e-06,-0.783818,0.620991,1e-06,-0.783818,0.620991,1e-06,-0.783818,0.620991,-2e-06,-0.783828,0.620979,-2e-06,-0.783828,0.620979,-2e-06,-0.783828,0.620979,1e-06,-0.783849,0.620952,1e-06,-0.783849,0.620952,1e-06,-0.783849,0.620952,-1e-06,-0.783775,0.621045,-1e-06,-0.783775,0.621045,-1e-06,-0.783775,0.621045,4e-06,-0.783826,0.620981,4e-06,-0.783826,0.620981,4e-06,-0.783826,0.620981,1e-06,-0.783824,0.620983,1e-06,-0.783824,0.620983,1e-06,-0.783824,0.620983,4e-06,-0.783816,0.620993,4e-06,-0.783816,0.620993,4e-06,-0.783816,0.620993,3e-06,-0.783831,0.620974,3e-06,-0.783831,0.620974,3e-06,-0.783831,0.620974,-9e-06,-0.783808,0.621003,-9e-06,-0.783808,0.621003,-9e-06,-0.783808,0.621003,-6e-06,-0.783831,0.620974,-6e-06,-0.783831,0.620974,-6e-06,-0.783831,0.620974,8e-06,-0.783822,0.620986,8e-06,-0.783822,0.620986,8e-06,-0.783822,0.620986,1e-05,-0.783827,0.620979,1e-05,-0.783827,0.620979,1e-05,-0.783827,0.620979,7e-06,-0.783828,0.620978,7e-06,-0.783828,0.620978,7e-06,-0.783828,0.620978,4e-06,-0.783826,0.620981,4e-06,-0.783826,0.620981,4e-06,-0.783826,0.620981,-1e-06,-0.783828,0.620979,-1e-06,-0.783828,0.620979,-1e-06,-0.783828,0.620979,-2e-06,-0.783826,0.620981,-2e-06,-0.783826,0.620981,-2e-06,-0.783826,0.620981,-3.3e-05,-0.783826,0.62098,-3.3e-05,-0.783826,0.62098,-3.3e-05,-0.783826,0.62098,1e-05,-0.783826,0.62098,1e-05,-0.783826,0.62098,1e-05,-0.783826,0.62098,-0,-0.783819,0.62099,-0,-0.783819,0.62099,-0,-0.783819,0.62099,4e-06,-0.783821,0.620987,4e-06,-0.783821,0.620987,4e-06,-0.783821,0.620987,7e-06,-0.783834,0.62097,7e-06,-0.783834,0.62097,7e-06,-0.783834,0.62097,3e-06,-0.783823,0.620984,3e-06,-0.783823,0.620984,3e-06,-0.783823,0.620984,4e-06,-0.783822,0.620986,4e-06,-0.783822,0.620986,4e-06,-0.783822,0.620986,2e-06,-0.783823,0.620984,2e-06,-0.783823,0.620984,2e-06,-0.783823,0.620984,1e-06,-0.78383,0.620976,1e-06,-0.78383,0.620976,1e-06,-0.78383,0.620976,0,-0.783828,0.620977,0,-0.783828,0.620977,0,-0.783828,0.620977,1e-06,-0.78383,0.620976,1e-06,-0.78383,0.620976,1e-06,-0.783827,0.620979,1e-06,-0.783827,0.620979,1e-06,-0.783827,0.620979,-0,-0.783829,0.620977,-0,-0.783829,0.620977,-0,-0.783829,0.620977,-0,-0.78383,0.620975,-0,-0.78383,0.620975,-0,-0.78383,0.620975,0,-0.783833,0.620972,0,-0.783833,0.620972,0,-0.783833,0.620972,2e-06,-0.783827,0.62098,2e-06,-0.783827,0.62098,2e-06,-0.783827,0.62098,1e-06,-0.783824,0.620983,1e-06,-0.783824,0.620983,1e-06,-0.783824,0.620983,-5e-06,-0.783857,0.620941,-5e-06,-0.783857,0.620941,-5e-06,-0.783857,0.620941,1e-06,-0.783817,0.620991,1e-06,-0.783817,0.620991,1e-06,-0.783817,0.620991,5e-06,-0.783825,0.620981,5e-06,-0.783825,0.620981,5e-06,-0.783825,0.620981,1e-06,-0.783827,0.620979,1e-06,-0.783827,0.620979,1e-06,-0.783827,0.620979,6e-06,-0.783822,0.620985,6e-06,-0.783822,0.620985,6e-06,-0.783822,0.620985,2e-06,-0.783826,0.62098,2e-06,-0.783826,0.62098,2e-06,-0.783826,0.62098,6e-06,-0.783832,0.620973,6e-06,-0.783832,0.620973,6e-06,-0.783832,0.620973,-2e-06,-0.783827,0.62098,-2e-06,-0.783827,0.62098,-2e-06,-0.783827,0.62098,1e-06,-0.783825,0.620981,1e-06,-0.783825,0.620981,1e-06,-0.783825,0.620981,-1e-06,-0.783826,0.620981,-1e-06,-0.783826,0.620981,-1e-06,-0.783826,0.620981,-2e-06,-0.783824,0.620983,-2e-06,-0.783824,0.620983,-2e-06,-0.783824,0.620983,1e-06,-0.783823,0.620984,1e-06,-0.783823,0.620984,1e-06,-0.783823,0.620984,2e-06,-0.783832,0.620973,2e-06,-0.783832,0.620973,2e-06,-0.783832,0.620973,3e-06,-0.783825,0.620982,3e-06,-0.783825,0.620982,3e-06,-0.783825,0.620982,-4e-06,-0.783823,0.620984,-4e-06,-0.783823,0.620984,-4e-06,-0.783823,0.620984,1.5e-05,-0.783827,0.620979,1.5e-05,-0.783827,0.620979,1.5e-05,-0.783827,0.620979,-2e-06,-0.783816,0.620993,-2e-06,-0.783816,0.620993,-2e-06,-0.783816,0.620993,-8.7e-05,-0.783802,0.621011,-8.7e-05,-0.783802,0.621011,-8.7e-05,-0.783802,0.621011,-2e-06,-0.78382,0.620989,-2e-06,-0.78382,0.620989,-2e-06,-0.78382,0.620989,-5e-06,-0.783814,0.620995,-5e-06,-0.783814,0.620995,-5e-06,-0.783814,0.620995,-0,-0.783826,0.620981,-0,-0.783826,0.620981,-0,-0.783826,0.620981,5e-06,-0.783833,0.620972,5e-06,-0.783833,0.620972,5e-06,-0.783833,0.620972,5e-06,-0.783823,0.620984,5e-06,-0.783823,0.620984,5e-06,-0.783823,0.620984,1.2e-05,-0.783823,0.620984,1.2e-05,-0.783823,0.620984,1.2e-05,-0.783823,0.620984,9e-06,-0.78382,0.620989,9e-06,-0.78382,0.620989,9e-06,-0.78382,0.620989,6e-06,-0.783827,0.620979,6e-06,-0.783827,0.620979,6e-06,-0.783827,0.620979,5e-06,-0.783826,0.620981,5e-06,-0.783826,0.620981,5e-06,-0.783826,0.620981,1e-06,-0.783839,0.620964,1e-06,-0.783839,0.620964,1e-06,-0.783839,0.620964,-5e-06,-0.783829,0.620976,-5e-06,-0.783829,0.620976,-5e-06,-0.783829,0.620976,4e-06,-0.783825,0.620982,4e-06,-0.783825,0.620982,4e-06,-0.783825,0.620982,-1e-06,-0.783798,0.621016,-1e-06,-0.783798,0.621016,-1e-06,-0.783798,0.621016,-0,-0.783825,0.620982,-0,-0.783825,0.620982,-0,-0.783825,0.620982,-3e-06,-0.78383,0.620976,-3e-06,-0.78383,0.620976,-3e-06,-0.78383,0.620976,1e-06,-0.783824,0.620984,1e-06,-0.783824,0.620984,1e-06,-0.783824,0.620984,4e-06,-0.78384,0.620963,4e-06,-0.78384,0.620963,4e-06,-0.78384,0.620963,-4e-06,-0.783808,0.621003,-4e-06,-0.783808,0.621003,-4e-06,-0.783808,0.621003,-7e-06,-0.783821,0.620986,-7e-06,-0.783821,0.620986,-7e-06,-0.783821,0.620986,1.5e-05,-0.783839,0.620964,1.5e-05,-0.783839,0.620964,1.5e-05,-0.783839,0.620964,1.5e-05,-0.783838,0.620966,1.5e-05,-0.783838,0.620966,1.5e-05,-0.783838,0.620966,4e-06,-0.78383,0.620975,4e-06,-0.78383,0.620975,4e-06,-0.78383,0.620975,-2e-06,-0.783813,0.620997,-2e-06,-0.783813,0.620997,-2e-06,-0.783813,0.620997,-0,-0.78383,0.620976,-0,-0.78383,0.620976,-0,-0.78383,0.620976,-5e-06,-0.783828,0.620978,-5e-06,-0.783828,0.620978,-5e-06,-0.783828,0.620978,6e-06,-0.783808,0.621003,6e-06,-0.783808,0.621003,6e-06,-0.783808,0.621003,7e-06,-0.783824,0.620983,7e-06,-0.783824,0.620983,7e-06,-0.783824,0.620983,6e-06,-0.783821,0.620987,6e-06,-0.783821,0.620987,6e-06,-0.783821,0.620987,-5e-06,-0.783835,0.62097,-5e-06,-0.783835,0.62097,-5e-06,-0.783835,0.62097,1e-06,-0.783828,0.620978,1e-06,-0.783828,0.620978,1e-06,-0.783828,0.620978,3e-06,-0.783827,0.62098,3e-06,-0.783827,0.62098,3e-06,-0.783827,0.62098,-0,-0.783828,0.620978,-0,-0.783828,0.620978,-0,-0.783828,0.620978,8e-06,-0.783817,0.620991,8e-06,-0.783817,0.620991,8e-06,-0.783817,0.620991,1.1e-05,-0.783821,0.620987,1.1e-05,-0.783821,0.620987,1.1e-05,-0.783821,0.620987,3e-06,-0.783827,0.62098,1e-06,-0.783827,0.620979,1e-06,-0.783827,0.620979,1e-06,-0.783827,0.620979,1.4e-05,-0.783819,0.62099,1.4e-05,-0.783819,0.62099,1.4e-05,-0.783819,0.62099,-1e-06,-0.783826,0.620981,-1e-06,-0.783826,0.620981,-1e-06,-0.783826,0.620981,-0,-0.783825,0.620981,-0,-0.783825,0.620981,-0,-0.783825,0.620981,1.1e-05,-0.783833,0.620972,1.1e-05,-0.783833,0.620972,1.1e-05,-0.783833,0.620972,-2e-06,-0.783826,0.620981,-2e-06,-0.783826,0.620981,-2e-06,-0.783826,0.620981,8e-06,-0.783826,0.620981,8e-06,-0.783826,0.620981,8e-06,-0.783826,0.620981,-1e-06,-0.783837,0.620967,-1e-06,-0.783837,0.620967,-1e-06,-0.783837,0.620967,1e-06,-0.78383,0.620975,1e-06,-0.78383,0.620975,1e-06,-0.78383,0.620975,1e-06,-0.783821,0.620987,1e-06,-0.783821,0.620987,1e-06,-0.783821,0.620987,1e-06,-0.783821,0.620987,-2e-06,-0.783824,0.620983,-2e-06,-0.783824,0.620983,-2e-06,-0.783824,0.620983,-1e-06,-0.783824,0.620983,-1e-06,-0.783824,0.620983,-1e-06,-0.783824,0.620983,1e-06,-0.78382,0.620988,1e-06,-0.78382,0.620988,1e-06,-0.78382,0.620988,4e-06,-0.783831,0.620974,4e-06,-0.783831,0.620974,4e-06,-0.783831,0.620974,-3e-06,-0.783821,0.620987,-3e-06,-0.783821,0.620987,-3e-06,-0.783821,0.620987,1e-06,-0.783824,0.620983,1e-06,-0.783824,0.620983,1e-06,-0.783824,0.620983,2.6e-05,-0.783838,0.620966,2.6e-05,-0.783838,0.620966,2.6e-05,-0.783838,0.620966,1e-06,-0.783824,0.620983,0,-0.783824,0.620983,0,-0.783824,0.620983,0,-0.783824,0.620983,0,-0.783821,0.620987,0,-0.783821,0.620987,0,-0.783821,0.620987,1.2e-05,-0.783825,0.620982,1.2e-05,-0.783825,0.620982,1.2e-05,-0.783825,0.620982,-2e-06,-0.783826,0.620981,-2e-06,-0.783826,0.620981,-2e-06,-0.783826,0.620981,2e-06,-0.783834,0.62097,2e-06,-0.783834,0.62097,2e-06,-0.783834,0.62097,2e-06,-0.783833,0.620972,2e-06,-0.783833,0.620972,2e-06,-0.783833,0.620972,8e-06,-0.783821,0.620987,8e-06,-0.783821,0.620987,8e-06,-0.783821,0.620987,-3e-06,-0.783826,0.620981,-3e-06,-0.783826,0.620981,-3e-06,-0.783826,0.620981,1e-06,-0.783825,0.620982,1e-06,-0.783825,0.620982,1e-06,-0.783825,0.620982,7e-06,-0.783835,0.620969,7e-06,-0.783835,0.620969,7e-06,-0.783835,0.620969,-1e-06,-0.783806,0.621006,-1e-06,-0.783806,0.621006,-1e-06,-0.783806,0.621006,-1.9e-05,-0.783857,0.620942,-1.9e-05,-0.783857,0.620942,-1.9e-05,-0.783857,0.620942,0,-0.783828,0.620978,0,-0.783828,0.620978,0,-0.783828,0.620978,-0,-0.783829,0.620977,-0,-0.783829,0.620977,-0,-0.783829,0.620977,6e-06,-0.783821,0.620987,6e-06,-0.783821,0.620987,6e-06,-0.783821,0.620987,1e-06,-0.783817,0.620992,1e-06,-0.783817,0.620992,1e-06,-0.783817,0.620992,1e-06,-0.783818,0.62099,1e-06,-0.783818,0.62099,1e-06,-0.783818,0.62099,-3e-06,-0.783858,0.620941,-3e-06,-0.783858,0.620941,-3e-06,-0.783858,0.620941,9e-06,-0.783827,0.620979,9e-06,-0.783827,0.620979,9e-06,-0.783827,0.620979,-1e-06,-0.783835,0.620969,-1e-06,-0.783835,0.620969,-1e-06,-0.783835,0.620969,1e-06,-0.783817,0.620992,1e-06,-0.783817,0.620992,1e-06,-0.783817,0.620992,1e-06,-0.783821,0.620987,1e-06,-0.783821,0.620987,1e-06,-0.783821,0.620987,-0,-0.78385,0.62095,-0,-0.78385,0.62095,-0,-0.78385,0.62095,1e-06,-0.783845,0.620957,1e-06,-0.783845,0.620957,1e-06,-0.783845,0.620957,0,-0.783903,0.620883,0,-0.783903,0.620883,0,-0.783903,0.620883,-2e-06,-0.783804,0.621008,-2e-06,-0.783804,0.621008,-2e-06,-0.783804,0.621008,0,-0.783827,0.620979,0,-0.783827,0.620979,0,-0.783827,0.620979,1e-06,-0.783822,0.620985,1e-06,-0.783822,0.620985,1e-06,-0.783822,0.620985,-3e-06,-0.783832,0.620973,-3e-06,-0.783832,0.620973,-3e-06,-0.783832,0.620973,-2e-06,-0.783823,0.620985,-2e-06,-0.783823,0.620985,-2e-06,-0.783823,0.620985,4e-06,-0.783835,0.620969,4e-06,-0.783835,0.620969,4e-06,-0.783835,0.620969,3e-06,-0.78382,0.620989,3e-06,-0.78382,0.620989,3e-06,-0.78382,0.620989,1e-06,-0.783821,0.620987,1e-06,-0.783821,0.620987,1e-06,-0.783821,0.620987,4e-06,-0.783828,0.620978,4e-06,-0.783828,0.620978,4e-06,-0.783828,0.620978,-1e-06,-0.783831,0.620975,-1e-06,-0.783831,0.620975,-1e-06,-0.783831,0.620975,-5e-06,-0.783826,0.62098,-5e-06,-0.783826,0.62098,-5e-06,-0.783826,0.62098,6e-06,-0.783822,0.620985,6e-06,-0.783822,0.620985,6e-06,-0.783822,0.620985,6e-06,-0.783822,0.620986,6e-06,-0.783822,0.620986,6e-06,-0.783822,0.620986,7e-06,-0.783826,0.62098,7e-06,-0.783826,0.62098,7e-06,-0.783826,0.62098,2e-06,-0.783826,0.62098,2e-06,-0.783826,0.62098,2e-06,-0.783826,0.62098,4e-06,-0.783825,0.620982,4e-06,-0.783825,0.620982,4e-06,-0.783825,0.620982,3e-06,-0.783824,0.620983,3e-06,-0.783824,0.620983,3e-06,-0.783824,0.620983,3e-06,-0.783824,0.620983,3e-06,-0.783824,0.620983,3e-06,-0.783824,0.620983,3e-06,-0.783823,0.620984,3e-06,-0.783823,0.620984,3e-06,-0.783823,0.620984,3e-06,-0.783821,0.620986,3e-06,-0.783821,0.620986,3e-06,-0.783821,0.620986,2e-06,-0.783823,0.620984,2e-06,-0.783823,0.620984,2e-06,-0.783823,0.620984,-1e-06,-0.783834,0.62097,-1e-06,-0.783834,0.62097,-1e-06,-0.783834,0.62097,-0,-0.783835,0.620969,-0,-0.783835,0.620969,-0,-0.783835,0.620969,-0,-0.783835,0.620969,-1e-06,-0.783824,0.620983,-1e-06,-0.783824,0.620983,-1e-06,-0.783824,0.620983,4e-06,-0.783812,0.620998,4e-06,-0.783812,0.620998,4e-06,-0.783812,0.620998,3e-06,-0.783825,0.620982,3e-06,-0.783825,0.620982,3e-06,-0.783825,0.620982,4e-06,-0.783839,0.620964,4e-06,-0.783839,0.620964,4e-06,-0.783839,0.620964,-0,-0.783825,0.620982,-0,-0.783825,0.620982,-0,-0.783825,0.620982,0,-0.783842,0.62096,0,-0.783842,0.62096,0,-0.783842,0.62096,1e-06,-0.783838,0.620966,1e-06,-0.783838,0.620966,1e-06,-0.783838,0.620966,2e-06,-0.783833,0.620971,2e-06,-0.783833,0.620971,2e-06,-0.783833,0.620971,1e-06,-0.783834,0.62097,1e-06,-0.783834,0.62097,1e-06,-0.783834,0.62097,9e-06,-0.783832,0.620973,9e-06,-0.783832,0.620973,9e-06,-0.783832,0.620973,-1e-06,-0.783828,0.620977,-1e-06,-0.783828,0.620977,-1e-06,-0.783828,0.620977,6e-06,-0.7838,0.621014,6e-06,-0.7838,0.621014,6e-06,-0.7838,0.621014,7e-06,-0.78382,0.620988,7e-06,-0.78382,0.620988,7e-06,-0.78382,0.620988,5e-06,-0.783816,0.620993,5e-06,-0.783816,0.620993,5e-06,-0.783816,0.620993,-6e-06,-0.783836,0.620968,-6e-06,-0.783836,0.620968,-6e-06,-0.783836,0.620968,-1e-06,-0.783832,0.620973,-1e-06,-0.783832,0.620973,-1e-06,-0.783832,0.620973,-7e-06,-0.783826,0.620981,-7e-06,-0.783826,0.620981,-7e-06,-0.783826,0.620981,3e-06,-0.78383,0.620976,3e-06,-0.78383,0.620976,3e-06,-0.78383,0.620976,-2e-06,-0.783821,0.620987,-2e-06,-0.783821,0.620987,-2e-06,-0.783821,0.620987,-2e-06,-0.783828,0.620978,-2e-06,-0.783828,0.620978,-2e-06,-0.783828,0.620978,-2e-06,-0.783823,0.620984,-2e-06,-0.783823,0.620984,-2e-06,-0.783823,0.620984,-0,-0.783826,0.62098,-0,-0.783826,0.62098,-0,-0.783826,0.62098,-0,-0.783816,0.620993,-0,-0.783816,0.620993,-0,-0.783816,0.620993,2e-06,-0.783825,0.620981,2e-06,-0.783825,0.620981,2e-06,-0.783825,0.620981,-4e-06,-0.783846,0.620955,-4e-06,-0.783846,0.620955,-4e-06,-0.783846,0.620955,4e-06,-0.783803,0.62101,4e-06,-0.783803,0.62101,4e-06,-0.783803,0.62101,4e-06,-0.783828,0.620979,4e-06,-0.783828,0.620979,4e-06,-0.783828,0.620979,-5e-06,-0.783822,0.620985,-5e-06,-0.783822,0.620985,-5e-06,-0.783822,0.620985,-5e-06,-0.783829,0.620976,-5e-06,-0.783829,0.620976,-5e-06,-0.783829,0.620976,-2e-06,-0.783824,0.620983,-2e-06,-0.783824,0.620983,-2e-06,-0.783824,0.620983,-1e-06,-0.783824,0.620984,-1e-06,-0.783824,0.620984,-1e-06,-0.783824,0.620984,-1e-06,-0.783822,0.620985,-1e-06,-0.783822,0.620985,-1e-06,-0.783822,0.620985,1e-06,-0.783829,0.620977,1e-06,-0.783829,0.620977,1e-06,-0.783829,0.620977,1e-06,-0.784089,0.620648,1e-06,-0.784089,0.620648,1e-06,-0.784089,0.620648,8e-06,-0.783832,0.620973,8e-06,-0.783832,0.620973,8e-06,-0.783832,0.620973,-4e-06,-0.783821,0.620987,-4e-06,-0.783821,0.620987,-4e-06,-0.783821,0.620987,0,-0.783825,0.620982,0,-0.783825,0.620982,0,-0.783825,0.620982,2e-06,-0.783826,0.620981,2e-06,-0.783826,0.620981,2e-06,-0.783826,0.620981,-2e-06,-0.783826,0.62098,-2e-06,-0.783826,0.62098,-2e-06,-0.783826,0.62098,5e-06,-0.783811,0.620999,5e-06,-0.783811,0.620999,5e-06,-0.783811,0.620999,1e-05,-0.783827,0.620979,1e-05,-0.783827,0.620979,1e-05,-0.783827,0.620979,4e-06,-0.783833,0.620972,4e-06,-0.783833,0.620972,4e-06,-0.783833,0.620972,7e-06,-0.783825,0.620982,7e-06,-0.783825,0.620982,7e-06,-0.783825,0.620982,3e-06,-0.783836,0.620968,3e-06,-0.783836,0.620968,3e-06,-0.783836,0.620968,7e-06,-0.783799,0.621015,7e-06,-0.783799,0.621015,7e-06,-0.783799,0.621015,-0,-0.783824,0.620984,-0,-0.783824,0.620984,-0,-0.783824,0.620984,-4e-06,-0.783808,0.621004,-4e-06,-0.783808,0.621004,-4e-06,-0.783808,0.621004,1e-06,-0.783821,0.620987,1e-06,-0.783821,0.620987,1e-06,-0.783821,0.620987,-0,-0.783824,0.620983,-0,-0.783824,0.620983,-0,-0.783824,0.620983,-0,-0.783824,0.620983,-1e-06,-0.78384,0.620963,-1e-06,-0.78384,0.620963,-1e-06,-0.78384,0.620963,-3e-06,-0.783825,0.620982,-3e-06,-0.783825,0.620982,-3e-06,-0.783825,0.620982,-1e-06,-0.783803,0.621009,-1e-06,-0.783803,0.621009,-1e-06,-0.783803,0.621009,-0,-0.783867,0.620929,-0,-0.783867,0.620929,-0,-0.783867,0.620929,-4e-06,-0.7838,0.621013,-4e-06,-0.7838,0.621013,-4e-06,-0.7838,0.621013,0,-0.78382,0.620988,0,-0.78382,0.620988,0,-0.78382,0.620988,1e-06,-0.783822,0.620985,1e-06,-0.783822,0.620985,1e-06,-0.783822,0.620985,-0,-0.783837,0.620967,-0,-0.783837,0.620967,-0,-0.783837,0.620967,-0,-0.783826,0.620981,-0,-0.783826,0.620981,-0,-0.783826,0.620981,8e-06,-0.783844,0.620958,8e-06,-0.783844,0.620958,8e-06,-0.783844,0.620958,-2e-06,-0.783826,0.62098,-2e-06,-0.783826,0.62098,-2e-06,-0.783826,0.62098,-2e-06,-0.783826,0.62098,6e-06,-0.783828,0.620978,6e-06,-0.783828,0.620978,6e-06,-0.783828,0.620978,1e-06,-0.783831,0.620974,1e-06,-0.783831,0.620974,1e-06,-0.783831,0.620974,-2e-06,-0.783829,0.620976,-2e-06,-0.783829,0.620976,-2e-06,-0.783829,0.620976,-1e-06,-0.783824,0.620983,-1e-06,-0.783824,0.620983,-1e-06,-0.783824,0.620983,-1e-06,-0.783824,0.620983,2e-06,-0.783827,0.620979,2e-06,-0.783827,0.620979,2e-06,-0.783827,0.620979,-1e-06,-0.783824,0.620983,-4e-06,-0.783828,0.620978,-4e-06,-0.783828,0.620978,-4e-06,-0.783828,0.620978,-5e-06,-0.783827,0.620979,-5e-06,-0.783827,0.620979,-5e-06,-0.783827,0.620979,2e-06,-0.783826,0.620981,2e-06,-0.783826,0.620981,2e-06,-0.783826,0.620981,8e-06,-0.783823,0.620984,8e-06,-0.783823,0.620984,8e-06,-0.783823,0.620984,-4e-06,-0.783826,0.62098,-4e-06,-0.783826,0.62098,-4e-06,-0.783826,0.62098,-5e-06,-0.783825,0.620981,-5e-06,-0.783825,0.620981,-5e-06,-0.783825,0.620981,8e-06,-0.783824,0.620983,8e-06,-0.783824,0.620983,8e-06,-0.783824,0.620983,3e-06,-0.783826,0.62098,3e-06,-0.783826,0.62098,3e-06,-0.783826,0.62098,-4e-06,-0.783824,0.620983,-4e-06,-0.783824,0.620983,-4e-06,-0.783824,0.620983,-1e-06,-0.783826,0.620981,-1e-06,-0.783826,0.620981,-1e-06,-0.783826,0.620981,-1e-06,-0.783826,0.62098,-1e-06,-0.783826,0.62098,-1e-06,-0.783826,0.62098,4e-06,-0.783828,0.620978,4e-06,-0.783828,0.620978,4e-06,-0.783828,0.620978,0,-0.783832,0.620973,0,-0.783832,0.620973,0,-0.783832,0.620973,-1e-06,-0.783827,0.620979,-1e-06,-0.783827,0.620979,-1e-06,-0.783827,0.620979,-1e-06,-0.783826,0.62098,-1e-06,-0.783826,0.62098,1e-06,-0.783824,0.620983,1e-06,-0.783824,0.620983,1e-06,-0.783824,0.620983,2e-06,-0.783822,0.620986,2e-06,-0.783822,0.620986,2e-06,-0.783822,0.620986,-8e-06,-0.783823,0.620984,-8e-06,-0.783823,0.620984,-8e-06,-0.783823,0.620984,-2e-06,-0.783812,0.620999,-2e-06,-0.783812,0.620999,-2e-06,-0.783812,0.620999,0,-0.78382,0.620989,0,-0.78382,0.620989,0,-0.78382,0.620989,1e-06,-0.783782,0.621036,1e-06,-0.783782,0.621036,1e-06,-0.783782,0.621036,-2e-06,-0.783827,0.620979,-2e-06,-0.783827,0.620979,-2e-06,-0.783827,0.620979,-2e-06,-0.783831,0.620975,-2e-06,-0.783831,0.620975,-2e-06,-0.783831,0.620975,2e-06,-0.783861,0.620936,2e-06,-0.783861,0.620936,2e-06,-0.783861,0.620936,0,-0.783824,0.620983,0,-0.783824,0.620983,0,-0.783824,0.620983,-0,-0.783828,0.620978,-0,-0.783828,0.620978,-0,-0.783828,0.620978,-0,-0.783829,0.620977,-0,-0.783829,0.620977,-0,-0.783829,0.620977,-0,-0.783833,0.620971,-0,-0.783833,0.620971,-0,-0.783833,0.620971,-1e-06,-0.783835,0.620969,-1e-06,-0.783835,0.620969,-1e-06,-0.783835,0.620969,0,-0.783909,0.620876,0,-0.783909,0.620876,0,-0.783909,0.620876,-3e-06,-0.783779,0.62104,-3e-06,-0.783779,0.62104,-3e-06,-0.783779,0.62104,2e-06,-0.783827,0.620979,2e-06,-0.783827,0.620979,2e-06,-0.783827,0.620979,1e-06,-0.783826,0.62098,1e-06,-0.783826,0.62098,1e-06,-0.783826,0.62098,2e-06,-0.783824,0.620983,2e-06,-0.783824,0.620983,2e-06,-0.783824,0.620983,1e-06,-0.783828,0.620978,1e-06,-0.783828,0.620978,1e-06,-0.783828,0.620978,-9e-06,-0.783808,0.621003,-9e-06,-0.783808,0.621003,-9e-06,-0.783808,0.621003,-7e-06,-0.783826,0.620981,-7e-06,-0.783826,0.620981,-7e-06,-0.783826,0.620981,0,-0.783821,0.620987,0,-0.783821,0.620987,0,-0.783821,0.620987,2e-06,-0.783827,0.620979,2e-06,-0.783827,0.620979,2e-06,-0.783827,0.620979,-1e-06,-0.783828,0.620978,-1e-06,-0.783828,0.620978,-1e-06,-0.783828,0.620978,-6e-06,-0.783824,0.620983,-6e-06,-0.783824,0.620983,-6e-06,-0.783824,0.620983,-6e-06,-0.783824,0.620982,-6e-06,-0.783824,0.620982,-6e-06,-0.783824,0.620982,-3.3e-05,-0.783824,0.620983,-3.3e-05,-0.783824,0.620983,-3.3e-05,-0.783824,0.620983,-4e-06,-0.783824,0.620983,-4e-06,-0.783824,0.620983,-4e-06,-0.783824,0.620983,0,-0.783829,0.620976,0,-0.783829,0.620976,0,-0.783829,0.620976,2e-06,-0.783824,0.620984,2e-06,-0.783824,0.620984,2e-06,-0.783824,0.620984,-2e-06,-0.783822,0.620986,-2e-06,-0.783822,0.620986,-2e-06,-0.783822,0.620986,-2e-06,-0.783819,0.620989,-2e-06,-0.783819,0.620989,-2e-06,-0.783819,0.620989,1e-06,-0.783828,0.620978,1e-06,-0.783828,0.620978,1e-06,-0.783828,0.620978,-2e-06,-0.783827,0.620979,-2e-06,-0.783827,0.620979,-2e-06,-0.783827,0.620979,3e-06,-0.783827,0.62098,3e-06,-0.783827,0.62098,3e-06,-0.783827,0.62098,-3e-06,-0.783832,0.620973,-3e-06,-0.783832,0.620973,-3e-06,-0.783832,0.620973,1e-06,-0.78384,0.620963,1e-06,-0.78384,0.620963,1e-06,-0.78384,0.620963,1e-06,-0.783837,0.620966,1e-06,-0.783837,0.620966,1e-06,-0.783837,0.620966,0,-0.783822,0.620985,0,-0.783822,0.620985,0,-0.783822,0.620985,1e-06,-0.78382,0.620988,1e-06,-0.78382,0.620988,1e-06,-0.78382,0.620988,-0,-0.78384,0.620963,-0,-0.78384,0.620963,-0,-0.78384,0.620963,4e-06,-0.783807,0.621005,4e-06,-0.783807,0.621005,4e-06,-0.783807,0.621005,-1e-06,-0.783828,0.620979,-1e-06,-0.783828,0.620979,-1e-06,-0.783828,0.620979,6e-06,-0.783835,0.62097,6e-06,-0.783835,0.62097,6e-06,-0.783835,0.62097,-4e-06,-0.783828,0.620978,-4e-06,-0.783828,0.620978,-4e-06,-0.783828,0.620978,5e-06,-0.78382,0.620988,5e-06,-0.78382,0.620988,5e-06,-0.78382,0.620988,-5e-06,-0.783849,0.620952,-5e-06,-0.783849,0.620952,-5e-06,-0.783849,0.620952,2e-06,-0.783822,0.620985,2e-06,-0.783822,0.620985,2e-06,-0.783822,0.620985,5e-06,-0.78382,0.620988,3e-06,-0.783831,0.620974,3e-06,-0.783831,0.620974,3e-06,-0.783831,0.620974,-3e-06,-0.78383,0.620975,-3e-06,-0.78383,0.620975,-3e-06,-0.78383,0.620975,6e-06,-0.78385,0.62095,6e-06,-0.78385,0.62095,6e-06,-0.78385,0.62095,-1e-06,-0.783822,0.620986,-1e-06,-0.783822,0.620986,-1e-06,-0.783822,0.620986,-3e-06,-0.783819,0.62099,-3e-06,-0.783819,0.62099,-3e-06,-0.783819,0.62099,5e-06,-0.783824,0.620983,5e-06,-0.783824,0.620983,5e-06,-0.783824,0.620983,3e-06,-0.783828,0.620978,3e-06,-0.783828,0.620978,3e-06,-0.783828,0.620978,-1e-06,-0.783829,0.620977,-1e-06,-0.783829,0.620977,-1e-06,-0.783829,0.620977,2e-06,-0.783826,0.62098,2e-06,-0.783826,0.62098,2e-06,-0.783826,0.62098,3e-06,-0.783826,0.620981,3e-06,-0.783826,0.620981,3e-06,-0.783826,0.620981,3e-06,-0.783827,0.620979,3e-06,-0.783827,0.620979,3e-06,-0.783827,0.620979,7e-06,-0.783822,0.620986,7e-06,-0.783822,0.620986,7e-06,-0.783822,0.620986,3e-06,-0.783826,0.62098,3e-06,-0.783826,0.62098,3e-06,-0.783826,0.62098,7e-06,-0.783822,0.620986,3e-06,-0.783826,0.620981,3e-06,-0.783826,0.620981,3e-06,-0.783826,0.620981,-6e-06,-0.783824,0.620982,-6e-06,-0.783824,0.620982,-6e-06,-0.783824,0.620982,4e-06,-0.783827,0.62098,4e-06,-0.783827,0.62098,4e-06,-0.783827,0.62098,-5e-06,-0.783833,0.620971,-5e-06,-0.783833,0.620971,-5e-06,-0.783833,0.620971,2e-06,-0.783828,0.620979,2e-06,-0.783828,0.620979,2e-06,-0.783828,0.620979,4e-06,-0.783831,0.620974,4e-06,-0.783831,0.620974,4e-06,-0.783831,0.620974,1e-06,-0.783819,0.62099,1e-06,-0.783819,0.62099,1e-06,-0.783819,0.62099,0,-0.783828,0.620978,0,-0.783828,0.620978,0,-0.783828,0.620978,-8e-06,-0.783828,0.620978,-8e-06,-0.783828,0.620978,-8e-06,-0.783828,0.620978,5e-06,-0.783824,0.620983,5e-06,-0.783824,0.620983,5e-06,-0.783824,0.620983,-4e-06,-0.783832,0.620973,-4e-06,-0.783832,0.620973,-4e-06,-0.783832,0.620973,1e-05,-0.784043,0.620706,1e-05,-0.784043,0.620706,1e-05,-0.784043,0.620706,-4e-06,-0.783828,0.620977,-4e-06,-0.783828,0.620977,-4e-06,-0.783828,0.620977,0,-0.783824,0.620983,0,-0.783824,0.620983,0,-0.783824,0.620983,1e-06,-0.783823,0.620984,1e-06,-0.783823,0.620984,1e-06,-0.783823,0.620984,1e-05,-0.783817,0.620992,1e-05,-0.783817,0.620992,1e-05,-0.783817,0.620992,1e-06,-0.78383,0.620976,1e-06,-0.78383,0.620976,1e-06,-0.78383,0.620976,0,-0.783813,0.620997,0,-0.783813,0.620997,0,-0.783813,0.620997,2e-06,-0.783822,0.620986,2e-06,-0.783822,0.620986,2e-06,-0.783822,0.620986,-3e-06,-0.783841,0.620961,-3e-06,-0.783841,0.620961,-3e-06,-0.783841,0.620961,-1e-06,-0.783841,0.620962,-1e-06,-0.783841,0.620962,-1e-06,-0.783841,0.620962,-4e-06,-0.783824,0.620983,-4e-06,-0.783824,0.620983,-4e-06,-0.783824,0.620983,2e-06,-0.783828,0.620978,2e-06,-0.783828,0.620978,2e-06,-0.783828,0.620978,-3e-06,-0.783821,0.620987,-3e-06,-0.783821,0.620987,-3e-06,-0.783821,0.620987,2e-06,-0.783827,0.620979,2e-06,-0.783827,0.620979,2e-06,-0.783827,0.620979,3e-06,-0.783824,0.620983,3e-06,-0.783824,0.620983,3e-06,-0.783824,0.620983,2e-06,-0.783839,0.620964,2e-06,-0.783839,0.620964,2e-06,-0.783839,0.620964,-1e-06,-0.783818,0.620991,-1e-06,-0.783818,0.620991,-1e-06,-0.783818,0.620991,-2e-06,-0.783819,0.620989,-2e-06,-0.783819,0.620989,-2e-06,-0.783819,0.620989,4e-06,-0.783826,0.62098,4e-06,-0.783826,0.62098,4e-06,-0.783826,0.62098,-4e-06,-0.783823,0.620984,-4e-06,-0.783823,0.620984,-4e-06,-0.783823,0.620984,-9e-06,-0.783836,0.620967,-9e-06,-0.783836,0.620967,-9e-06,-0.783836,0.620967,-5e-06,-0.783829,0.620976,-5e-06,-0.783829,0.620976,-5e-06,-0.783829,0.620976,-4e-06,-0.783823,0.620985,-4e-06,-0.783823,0.620985,-4e-06,-0.783823,0.620985,3e-06,-0.783826,0.620981,3e-06,-0.783826,0.620981,3e-06,-0.783826,0.620981,3e-06,-0.783827,0.620979,3e-06,-0.783827,0.620979,3e-06,-0.783827,0.620979,-0,-0.783826,0.62098,-0,-0.783826,0.62098,-0,-0.783826,0.62098,-8e-06,-0.783824,0.620982,-8e-06,-0.783824,0.620982,-8e-06,-0.783824,0.620982,-7e-06,-0.783822,0.620985,-7e-06,-0.783822,0.620985,-7e-06,-0.783822,0.620985,7e-06,-0.783832,0.620973,7e-06,-0.783832,0.620973,7e-06,-0.783832,0.620973,1e-06,-0.783824,0.620983,1e-06,-0.783824,0.620983,1e-06,-0.783824,0.620983,3e-06,-0.783827,0.62098,3e-06,-0.783827,0.62098,3e-06,-0.783827,0.62098,-0,-0.783823,0.620985,-0,-0.783823,0.620985,-0,-0.783823,0.620985,3e-06,-0.783826,0.620981,3e-06,-0.783826,0.620981,3e-06,-0.783826,0.620981,-2e-06,-0.783827,0.620979,-2e-06,-0.783827,0.620979,-2e-06,-0.783827,0.620979,3e-06,-0.783827,0.620979,3e-06,-0.783827,0.620979,3e-06,-0.783827,0.620979,-3e-06,-0.78382,0.620988,-3e-06,-0.78382,0.620988,-3e-06,-0.78382,0.620988,-7e-06,-0.783815,0.620994,-7e-06,-0.783815,0.620994,-7e-06,-0.783815,0.620994,-6e-06,-0.783836,0.620967,-6e-06,-0.783836,0.620967,-6e-06,-0.783836,0.620967,7e-06,-0.783891,0.620899,7e-06,-0.783891,0.620899,7e-06,-0.783891,0.620899,-5e-06,-0.783783,0.621035,-5e-06,-0.783783,0.621035,-5e-06,-0.783783,0.621035,-2e-06,-0.783827,0.62098,-2e-06,-0.783827,0.62098,-2e-06,-0.783827,0.62098,1e-06,-0.783816,0.620994,1e-06,-0.783816,0.620994,1e-06,-0.783816,0.620994,-2e-06,-0.783822,0.620985,-2e-06,-0.783822,0.620985,-2e-06,-0.783822,0.620985,-2e-06,-0.783825,0.620982,-2e-06,-0.783825,0.620982,-2e-06,-0.783825,0.620982,-3e-06,-0.783807,0.621005,-3e-06,-0.783807,0.621005,-3e-06,-0.783807,0.621005,2e-06,-0.783824,0.620983,2e-06,-0.783824,0.620983,2e-06,-0.783824,0.620983,-2e-06,-0.783846,0.620955,-2e-06,-0.783846,0.620955,-2e-06,-0.783846,0.620955,5e-06,-0.783825,0.620982,5e-06,-0.783825,0.620982,5e-06,-0.783825,0.620982,-2e-06,-0.783833,0.620972,-2e-06,-0.783833,0.620972,-2e-06,-0.783833,0.620972,5e-06,-0.783798,0.621016,5e-06,-0.783798,0.621016,5e-06,-0.783798,0.621016,2e-06,-0.783828,0.620978,2e-06,-0.783828,0.620978,2e-06,-0.783828,0.620978,-1e-06,-0.783839,0.620964,-1e-06,-0.783839,0.620964,-1e-06,-0.783839,0.620964,1e-06,-0.783834,0.62097,1e-06,-0.783834,0.62097,1e-06,-0.783834,0.62097,-3e-06,-0.783828,0.620979,-3e-06,-0.783828,0.620979,-3e-06,-0.783828,0.620979,-1e-05,-0.783821,0.620986,-1e-05,-0.783821,0.620986,-1e-05,-0.783821,0.620986,-4e-06,-0.783831,0.620975,-4e-06,-0.783831,0.620975,-4e-06,-0.783831,0.620975,-1.2e-05,-0.783814,0.620996,-1.2e-05,-0.783814,0.620996,-1.2e-05,-0.783814,0.620996,8e-06,-0.783823,0.620984,8e-06,-0.783823,0.620984,8e-06,-0.783823,0.620984,4e-06,-0.783828,0.620977,4e-06,-0.783828,0.620977,4e-06,-0.783828,0.620977,-1.4e-05,-0.783839,0.620964,-1.4e-05,-0.783839,0.620964,-1.4e-05,-0.783839,0.620964,1.1e-05,-0.783825,0.620982,1.1e-05,-0.783825,0.620982,1.1e-05,-0.783825,0.620982,4e-06,-0.783823,0.620984,4e-06,-0.783823,0.620984,4e-06,-0.783823,0.620984,1e-05,-0.783826,0.620981,1e-05,-0.783826,0.620981,1e-05,-0.783826,0.620981,0,-0.783824,0.620983,0,-0.783824,0.620983,0,-0.783824,0.620983,-5e-06,-0.783822,0.620985,-5e-06,-0.783822,0.620985,-5e-06,-0.783822,0.620985,7e-06,-0.783825,0.620982,7e-06,-0.783825,0.620982,7e-06,-0.783825,0.620982,-3e-06,-0.783825,0.620982,-3e-06,-0.783825,0.620982,-3e-06,-0.783825,0.620982,8e-06,-0.783829,0.620977,8e-06,-0.783829,0.620977,8e-06,-0.783829,0.620977,-2e-06,-0.783828,0.620979,-2e-06,-0.783828,0.620979,-2e-06,-0.783828,0.620979,1e-05,-0.783831,0.620975,1e-05,-0.783831,0.620975,1e-05,-0.783831,0.620975,1.2e-05,-0.783827,0.620979,1.2e-05,-0.783827,0.620979,1.2e-05,-0.783827,0.620979,5e-06,-0.783831,0.620974,5e-06,-0.783831,0.620974,5e-06,-0.783831,0.620974,-3e-06,-0.783826,0.62098,-3e-06,-0.783826,0.62098,-3e-06,-0.783826,0.62098,-3e-06,-0.783827,0.620979,-3e-06,-0.783827,0.620979,-3e-06,-0.783827,0.620979,5e-06,-0.783831,0.620974,2e-06,-0.783822,0.620986,2e-06,-0.783822,0.620986,2e-06,-0.783822,0.620986,-0,-0.783825,0.620981,-0,-0.783825,0.620981,-0,-0.783825,0.620981,-2e-06,-0.78383,0.620976,-2e-06,-0.78383,0.620976,-2e-06,-0.78383,0.620976,-2e-06,-0.783829,0.620977,-2e-06,-0.783829,0.620977,-2e-06,-0.783829,0.620977,-1e-06,-0.783832,0.620974,-1e-06,-0.783832,0.620974,-1e-06,-0.783832,0.620974,0,-0.783812,0.620999,0,-0.783812,0.620999,0,-0.783812,0.620999,2e-06,-0.783844,0.620958,2e-06,-0.783844,0.620958,2e-06,-0.783844,0.620958,-4e-06,-0.783815,0.620994,-4e-06,-0.783815,0.620994,-4e-06,-0.783815,0.620994,1e-06,-0.783826,0.620981,1e-06,-0.783826,0.620981,1e-06,-0.783826,0.620981,0,-0.783835,0.620969,0,-0.783835,0.620969,0,-0.783835,0.620969,-4e-06,-0.783824,0.620983,-4e-06,-0.783824,0.620983,-4e-06,-0.783824,0.620983,-9e-06,-0.783815,0.620994,-9e-06,-0.783815,0.620994,-9e-06,-0.783815,0.620994,-1e-06,-0.783821,0.620987,-1e-06,-0.783821,0.620987,-1e-06,-0.783821,0.620987,2e-06,-0.783822,0.620986,2e-06,-0.783822,0.620986,2e-06,-0.783822,0.620986,-7e-06,-0.78383,0.620976,-7e-06,-0.78383,0.620976,-7e-06,-0.78383,0.620976,2e-06,-0.783825,0.620982,2e-06,-0.783825,0.620982,2e-06,-0.783825,0.620982,3e-06,-0.783827,0.620979,3e-06,-0.783827,0.620979,3e-06,-0.783827,0.620979,0,-0.783819,0.620989,0,-0.783819,0.620989,0,-0.783819,0.620989,-4e-06,-0.783825,0.620982,-4e-06,-0.783825,0.620982,-4e-06,-0.783825,0.620982,4e-06,-0.783827,0.62098,4e-06,-0.783827,0.62098,4e-06,-0.783827,0.62098,-0,-0.78383,0.620976,-0,-0.78383,0.620976,-0,-0.78383,0.620976,4e-06,-0.783829,0.620977,4e-06,-0.783829,0.620977,4e-06,-0.783829,0.620977,4e-06,-0.783823,0.620984,4e-06,-0.783823,0.620984,4e-06,-0.783823,0.620984,1e-06,-0.783822,0.620985,1e-06,-0.783822,0.620985,1e-06,-0.783822,0.620985,-5e-06,-0.783825,0.620982,-5e-06,-0.783825,0.620982,-5e-06,-0.783825,0.620982,3e-06,-0.783825,0.620981,3e-06,-0.783825,0.620981,3e-06,-0.783825,0.620981,-5e-06,-0.783825,0.620981,-5e-06,-0.783825,0.620981,-5e-06,-0.783825,0.620981,3e-06,-0.783823,0.620984,3e-06,-0.783823,0.620984,3e-06,-0.783823,0.620984,-0,-0.783828,0.620978,-0,-0.783828,0.620978,-0,-0.783828,0.620978,-2e-06,-0.783827,0.620979,-2e-06,-0.783827,0.620979,-2e-06,-0.783827,0.620979,2e-06,-0.783834,0.620971,2e-06,-0.783834,0.620971,2e-06,-0.783834,0.620971,-3e-06,-0.783823,0.620985,-3e-06,-0.783823,0.620985,-3e-06,-0.783823,0.620985,-1e-06,-0.783826,0.62098,-1e-06,-0.783826,0.62098,-1e-06,-0.783826,0.62098,9e-06,-0.783816,0.620993,9e-06,-0.783816,0.620993,9e-06,-0.783816,0.620993,-9e-06,-0.783837,0.620967,-9e-06,-0.783837,0.620967,-9e-06,-0.783837,0.620967,-9e-06,-0.783839,0.620964,-9e-06,-0.783839,0.620964,-9e-06,-0.783839,0.620964,-0,-0.783825,0.620982,-0,-0.783825,0.620982,-0,-0.783825,0.620982,6e-06,-0.783829,0.620976,6e-06,-0.783829,0.620976,6e-06,-0.783829,0.620976,4e-06,-0.78383,0.620976,4e-06,-0.78383,0.620976,4e-06,-0.78383,0.620976,-0,-0.783837,0.620967,-0,-0.783837,0.620967,-0,-0.783837,0.620967,-1e-06,-0.783814,0.620995,-1e-06,-0.783814,0.620995,-1e-06,-0.783814,0.620995,-2e-06,-0.783861,0.620937,-2e-06,-0.783861,0.620937,-2e-06,-0.783861,0.620937,-0,-0.78382,0.620988,-0,-0.78382,0.620988,-0,-0.78382,0.620988,-0,-0.783821,0.620987,-0,-0.783821,0.620987,-0,-0.783821,0.620987,5e-06,-0.783859,0.620939,5e-06,-0.783859,0.620939,5e-06,-0.783859,0.620939,0,-0.78383,0.620975,0,-0.78383,0.620975,0,-0.78383,0.620975,0,-0.783836,0.620968,0,-0.783836,0.620968,0,-0.783836,0.620968,1e-06,-0.783823,0.620984,1e-06,-0.783823,0.620984,1e-06,-0.783823,0.620984,-0,-0.783811,0.620999,-0,-0.783811,0.620999,-0,-0.783811,0.620999,1e-06,-0.783849,0.620951,1e-06,-0.783849,0.620951,1e-06,-0.783849,0.620951,-0,-0.783814,0.620996,-0,-0.783814,0.620996,-0,-0.783814,0.620996,-0,-0.783813,0.620997,-0,-0.783813,0.620997,-0,-0.783813,0.620997,1e-06,-0.783819,0.620989,1e-06,-0.783819,0.620989,1e-06,-0.783819,0.620989,-1e-06,-0.78384,0.620963,-1e-06,-0.78384,0.620963,-1e-06,-0.78384,0.620963,1e-06,-0.783826,0.620981,1e-06,-0.783826,0.620981,1e-06,-0.783826,0.620981,-5e-06,-0.783849,0.620951,-5e-06,-0.783849,0.620951,-5e-06,-0.783849,0.620951,-1e-06,-0.783832,0.620973,-1e-06,-0.783832,0.620973,-1e-06,-0.783832,0.620973,1e-06,-0.783823,0.620984,1e-06,-0.783823,0.620984,1e-06,-0.783823,0.620984,2e-06,-0.783826,0.62098,2e-06,-0.783826,0.62098,2e-06,-0.783826,0.62098,2e-06,-0.783826,0.620981,2e-06,-0.783826,0.620981,2e-06,-0.783826,0.620981,2e-06,-0.783826,0.620981,3e-06,-0.783825,0.620981,3e-06,-0.783825,0.620981,3e-06,-0.783825,0.620981,3e-06,-0.783828,0.620978,3e-06,-0.783828,0.620978,3e-06,-0.783828,0.620978,7e-06,-0.783826,0.620981,7e-06,-0.783826,0.620981,7e-06,-0.783826,0.620981,5e-06,-0.783824,0.620983,5e-06,-0.783824,0.620983,5e-06,-0.783824,0.620983,1e-06,-0.783826,0.620981,1e-06,-0.783826,0.620981,1e-06,-0.783826,0.620981,-1e-06,-0.783822,0.620985,-1e-06,-0.783822,0.620985,-1e-06,-0.783822,0.620985,2e-06,-0.783829,0.620976,2e-06,-0.783829,0.620976,2e-06,-0.783829,0.620976,2e-06,-0.783827,0.620979,2e-06,-0.783827,0.620979,2e-06,-0.783827,0.620979,3e-06,-0.783829,0.620977,3e-06,-0.783829,0.620977,3e-06,-0.783829,0.620977,3e-06,-0.783826,0.620981,3e-06,-0.783826,0.620981,3e-06,-0.783826,0.620981,1e-06,-0.783822,0.620985,1e-06,-0.783822,0.620985,1e-06,-0.783822,0.620985,2e-06,-0.783825,0.620982,2e-06,-0.783825,0.620982,2e-06,-0.783825,0.620982,2e-06,-0.783825,0.620982,-1e-06,-0.783828,0.620978,-1e-06,-0.783828,0.620978,-1e-06,-0.783828,0.620978,-4e-06,-0.78382,0.620988,-4e-06,-0.78382,0.620988,-4e-06,-0.78382,0.620988,1e-06,-0.783832,0.620973,1e-06,-0.783832,0.620973,1e-06,-0.783832,0.620973,2e-06,-0.78383,0.620975,2e-06,-0.78383,0.620975,2e-06,-0.78383,0.620975,-4e-06,-0.78382,0.620988,-4e-06,-0.783812,0.620999,-4e-06,-0.783812,0.620999,-4e-06,-0.783812,0.620999,-1e-06,-0.783783,0.621035,-1e-06,-0.783783,0.621035,-1e-06,-0.783783,0.621035,-1e-06,-0.78388,0.620912,-1e-06,-0.78388,0.620912,-1e-06,-0.78388,0.620912,-1e-06,-0.78384,0.620963,-1e-06,-0.78384,0.620963,-1e-06,-0.78384,0.620963,1e-06,-0.783814,0.620995,1e-06,-0.783814,0.620995,1e-06,-0.783814,0.620995,1e-06,-0.783821,0.620986,1e-06,-0.783821,0.620986,1e-06,-0.783821,0.620986,-0,-0.783835,0.620969,-0,-0.783835,0.620969,-0,-0.783835,0.620969,-0,-0.783826,0.620981,-0,-0.783826,0.620981,-0,-0.783826,0.620981,-0,-0.783826,0.62098,-0,-0.783826,0.62098,-0,-0.783826,0.62098,-0,-0.78383,0.620976,-0,-0.78383,0.620976,-0,-0.78383,0.620976,4e-06,-0.783826,0.62098,4e-06,-0.783826,0.62098,4e-06,-0.783826,0.62098,3e-06,-0.783823,0.620984,3e-06,-0.783823,0.620984,3e-06,-0.783823,0.620984,2e-06,-0.783826,0.62098,2e-06,-0.783826,0.62098,2e-06,-0.783826,0.62098,0,-0.783825,0.620982,0,-0.783825,0.620982,0,-0.783825,0.620982,1e-06,-0.783825,0.620982,1e-06,-0.783825,0.620982,1e-06,-0.783825,0.620982,4e-06,-0.783827,0.620979,4e-06,-0.783827,0.620979,4e-06,-0.783827,0.620979,1e-06,-0.783827,0.620979,1e-06,-0.783827,0.620979,1e-06,-0.783827,0.620979,1e-06,-0.783828,0.620978,1e-06,-0.783828,0.620978,1e-06,-0.783828,0.620978,-0,-0.783817,0.620992,-0,-0.783817,0.620992,-0,-0.783817,0.620992,-2e-06,-0.783813,0.620997,-2e-06,-0.783813,0.620997,-2e-06,-0.783813,0.620997,-6e-06,-0.783822,0.620986,-6e-06,-0.783822,0.620986,-6e-06,-0.783822,0.620986,3e-06,-0.783825,0.620982,3e-06,-0.783825,0.620982,3e-06,-0.783825,0.620982,5e-06,-0.78383,0.620975,5e-06,-0.78383,0.620975,5e-06,-0.78383,0.620975,2e-06,-0.783825,0.620982,2e-06,-0.783825,0.620982,2e-06,-0.783825,0.620982,4e-06,-0.783828,0.620978,4e-06,-0.783828,0.620978,4e-06,-0.783828,0.620978,5e-06,-0.783828,0.620978,5e-06,-0.783828,0.620978,5e-06,-0.783828,0.620978,-2e-06,-0.783827,0.620979,-2e-06,-0.783827,0.620979,-2e-06,-0.783827,0.620979,7e-06,-0.783826,0.62098,7e-06,-0.783826,0.62098,7e-06,-0.783826,0.62098,-2.5e-05,-0.783823,0.620984,-2.5e-05,-0.783823,0.620984,-2.5e-05,-0.783823,0.620984,2e-06,-0.783825,0.620981,2e-06,-0.783825,0.620981,2e-06,-0.783825,0.620981,1e-06,-0.783823,0.620984,1e-06,-0.783823,0.620984,1e-06,-0.783823,0.620984,5.1e-05,-0.783832,0.620972,5.1e-05,-0.783832,0.620972,5.1e-05,-0.783832,0.620972,1.5e-05,-0.783831,0.620975,1.5e-05,-0.783831,0.620975,1.5e-05,-0.783831,0.620975,7e-06,-0.783828,0.620978,7e-06,-0.783828,0.620978,7e-06,-0.783828,0.620978,-8e-06,-0.783844,0.620957,-8e-06,-0.783844,0.620957,-8e-06,-0.783844,0.620957,-0,-0.783805,0.621007,-0,-0.783805,0.621007,-0,-0.783805,0.621007,7e-06,-0.78382,0.620988,7e-06,-0.78382,0.620988,7e-06,-0.78382,0.620988,-1.5e-05,-0.783841,0.620961,-1.5e-05,-0.783841,0.620961,-1.5e-05,-0.783841,0.620961,-4e-06,-0.783827,0.62098,-4e-06,-0.783827,0.62098,-4e-06,-0.783827,0.62098,-8e-06,-0.783826,0.620981,-8e-06,-0.783826,0.620981,-8e-06,-0.783826,0.620981,-1e-06,-0.783825,0.620982,-1e-06,-0.783825,0.620982,-1e-06,-0.783825,0.620982,-8e-06,-0.783826,0.620981,-1e-06,-0.783829,0.620977,-1e-06,-0.783829,0.620977,-1e-06,-0.783829,0.620977,-1e-06,-0.783829,0.620977,1e-06,-0.783827,0.620979,1e-06,-0.783827,0.620979,1e-06,-0.783827,0.620979,1e-06,-0.783796,0.621019,1e-06,-0.783796,0.621019,1e-06,-0.783796,0.621019,-4e-06,-0.783841,0.620962,-4e-06,-0.783841,0.620962,-4e-06,-0.783841,0.620962,1e-06,-0.783835,0.620969,1e-06,-0.783835,0.620969,1e-06,-0.783835,0.620969,0,-0.783813,0.620997,0,-0.783813,0.620997,0,-0.783813,0.620997,1e-06,-0.783819,0.620989,1e-06,-0.783819,0.620989,1e-06,-0.783819,0.620989,-3e-06,-0.783841,0.620961,-3e-06,-0.783841,0.620961,-3e-06,-0.783841,0.620961,-3e-06,-0.783844,0.620958,-3e-06,-0.783844,0.620958,-3e-06,-0.783844,0.620958,-5e-06,-0.783827,0.620979,-5e-06,-0.783827,0.620979,-5e-06,-0.783827,0.620979,3e-06,-0.783825,0.620982,3e-06,-0.783825,0.620982,3e-06,-0.783825,0.620982,3e-06,-0.783824,0.620983,3e-06,-0.783824,0.620983,3e-06,-0.783824,0.620983,-7e-06,-0.783826,0.620981,-7e-06,-0.783826,0.620981,-7e-06,-0.783826,0.620981,-0,-0.783801,0.621013,-0,-0.783801,0.621013,-0,-0.783801,0.621013,-2e-06,-0.78383,0.620976,-2e-06,-0.78383,0.620976,-2e-06,-0.78383,0.620976,-1e-06,-0.78383,0.620975,-1e-06,-0.78383,0.620975,-1e-06,-0.78383,0.620975,-3e-06,-0.783822,0.620986,-3e-06,-0.783822,0.620986,-3e-06,-0.783822,0.620986,-2e-06,-0.783829,0.620977,-2e-06,-0.783829,0.620977,-2e-06,-0.783829,0.620977,-8e-06,-0.783827,0.620979,-8e-06,-0.783827,0.620979,-8e-06,-0.783827,0.620979,6e-06,-0.783822,0.620985,6e-06,-0.783822,0.620985,6e-06,-0.783822,0.620985,-8e-06,-0.783828,0.620978,-8e-06,-0.783828,0.620978,-8e-06,-0.783828,0.620978,7e-06,-0.783823,0.620984,7e-06,-0.783823,0.620984,7e-06,-0.783823,0.620984,0,-0.783828,0.620978,0,-0.783828,0.620978,0,-0.783828,0.620978,-6e-06,-0.783826,0.620981,-6e-06,-0.783826,0.620981,-6e-06,-0.783826,0.620981,-7e-06,-0.783834,0.62097,-7e-06,-0.783834,0.62097,-7e-06,-0.783834,0.62097,-1e-06,-0.783824,0.620983,-1e-06,-0.783824,0.620983,-1e-06,-0.783824,0.620983,-4e-06,-0.783822,0.620985,-4e-06,-0.783822,0.620985,-4e-06,-0.783822,0.620985,-6e-06,-0.783827,0.62098,-6e-06,-0.783827,0.62098,-6e-06,-0.783827,0.62098,-1e-06,-0.783835,0.62097,-1e-06,-0.783835,0.62097,-1e-06,-0.783835,0.62097,2e-06,-0.78383,0.620976,2e-06,-0.78383,0.620976,2e-06,-0.78383,0.620976,5e-06,-0.783821,0.620986,5e-06,-0.783821,0.620986,5e-06,-0.783821,0.620986,4e-06,-0.783847,0.620954,4e-06,-0.783847,0.620954,4e-06,-0.783847,0.620954,2e-06,-0.783829,0.620977,2e-06,-0.783829,0.620977,2e-06,-0.783829,0.620977,1e-06,-0.783817,0.620992,1e-06,-0.783817,0.620992,1e-06,-0.783817,0.620992,-1e-06,-0.783815,0.620994,-1e-06,-0.783815,0.620994,-1e-06,-0.783815,0.620994,-5e-06,-0.783813,0.620997,-5e-06,-0.783813,0.620997,-5e-06,-0.783813,0.620997,-6e-06,-0.78384,0.620963,-6e-06,-0.78384,0.620963,-6e-06,-0.78384,0.620963,7e-06,-0.783891,0.620899,7e-06,-0.783891,0.620899,7e-06,-0.783891,0.620899,-4e-06,-0.783796,0.621019,-4e-06,-0.783796,0.621019,-4e-06,-0.783796,0.621019,-2e-06,-0.783825,0.620982,-2e-06,-0.783825,0.620982,-2e-06,-0.783825,0.620982,1e-06,-0.783815,0.620994,1e-06,-0.783815,0.620994,1e-06,-0.783815,0.620994,-1.5e-05,-0.783849,0.620952,-1.5e-05,-0.783849,0.620952,-1.5e-05,-0.783849,0.620952,-2e-06,-0.783803,0.621009,-2e-06,-0.783803,0.621009,-2e-06,-0.783803,0.621009,5e-06,-0.783837,0.620966,5e-06,-0.783837,0.620966,5e-06,-0.783837,0.620966,-1e-06,-0.783826,0.62098,-1e-06,-0.783826,0.62098,-1e-06,-0.783826,0.62098,-4e-06,-0.783826,0.620981,-4e-06,-0.783826,0.620981,-4e-06,-0.783826,0.620981,-5e-06,-0.783824,0.620983,-5e-06,-0.783824,0.620983,-5e-06,-0.783824,0.620983,0,-0.783817,0.620992,0,-0.783817,0.620992,0,-0.783817,0.620992,2e-06,-0.783836,0.620967,2e-06,-0.783836,0.620967,2e-06,-0.783836,0.620967,0,-0.783843,0.62096,0,-0.783843,0.62096,0,-0.783843,0.62096,-0,-0.783848,0.620953,-0,-0.783848,0.620953,-0,-0.783848,0.620953,8e-06,-0.783832,0.620973,8e-06,-0.783832,0.620973,8e-06,-0.783832,0.620973,4e-06,-0.783823,0.620984,4e-06,-0.783823,0.620984,4e-06,-0.783823,0.620984,3e-06,-0.783826,0.62098,3e-06,-0.783826,0.62098,3e-06,-0.783826,0.62098,8e-06,-0.783838,0.620965,8e-06,-0.783838,0.620965,8e-06,-0.783838,0.620965,1e-06,-0.783818,0.620991,1e-06,-0.783818,0.620991,1e-06,-0.783818,0.620991,4e-06,-0.783827,0.62098,4e-06,-0.783827,0.62098,4e-06,-0.783827,0.62098,5e-06,-0.783824,0.620983,5e-06,-0.783824,0.620983,5e-06,-0.783824,0.620983,-2e-06,-0.783825,0.620982,-2e-06,-0.783825,0.620982,-2e-06,-0.783825,0.620982,-9e-06,-0.783826,0.620981,-9e-06,-0.783826,0.620981,-9e-06,-0.783826,0.620981,3e-06,-0.783831,0.620974,3e-06,-0.783831,0.620974,3e-06,-0.783831,0.620974,0,-0.783839,0.620964,0,-0.783839,0.620964,0,-0.783839,0.620964,0,-0.783826,0.620981,0,-0.783826,0.620981,0,-0.783826,0.620981,-1e-06,-0.783821,0.620987,-1e-06,-0.783821,0.620987,-1e-06,-0.783821,0.620987,0,-0.783801,0.621011,0,-0.783801,0.621011,0,-0.783801,0.621011,-4e-06,-0.783822,0.620986,-4e-06,-0.783822,0.620986,-4e-06,-0.783822,0.620986,1e-06,-0.783815,0.620994,1e-06,-0.783815,0.620994,1e-06,-0.783815,0.620994,1e-06,-0.783797,0.621016,1e-06,-0.783797,0.621016,1e-06,-0.783797,0.621016,1e-06,-0.783847,0.620954,1e-06,-0.783847,0.620954,1e-06,-0.783847,0.620954,-1e-06,-0.783833,0.620971,-1e-06,-0.783833,0.620971,-1e-06,-0.783833,0.620971,-1e-06,-0.783801,0.621012,-1e-06,-0.783801,0.621012,-1e-06,-0.783801,0.621012,-2e-06,-0.783828,0.620977,-2e-06,-0.783828,0.620977,-2e-06,-0.783828,0.620977,0,-0.783812,0.620998,0,-0.783812,0.620998,0,-0.783812,0.620998,-7e-06,-0.78382,0.620989,-7e-06,-0.78382,0.620989,-7e-06,-0.78382,0.620989,1e-06,-0.783828,0.620978,1e-06,-0.783828,0.620978,1e-06,-0.783828,0.620978,-3e-06,-0.783825,0.620981,-3e-06,-0.783825,0.620981,-3e-06,-0.783825,0.620981,-5e-06,-0.783823,0.620985,-5e-06,-0.783823,0.620985,-5e-06,-0.783823,0.620985,-5e-06,-0.783829,0.620977,-5e-06,-0.783829,0.620977,-5e-06,-0.783829,0.620977,-7e-06,-0.783801,0.621012,-7e-06,-0.783801,0.621012,-7e-06,-0.783801,0.621012,-6e-06,-0.783832,0.620973,-6e-06,-0.783832,0.620973,-6e-06,-0.783832,0.620973,2e-06,-0.783823,0.620984,2e-06,-0.783823,0.620984,2e-06,-0.783823,0.620984,-3e-06,-0.783825,0.620982,-3e-06,-0.783825,0.620982,-3e-06,-0.783825,0.620982,-1e-06,-0.783827,0.62098,-1e-06,-0.783827,0.62098,-1e-06,-0.783827,0.62098,1e-06,-0.783822,0.620986,1e-06,-0.783822,0.620986,1e-06,-0.783822,0.620986,-1e-06,-0.783826,0.620981,-1e-06,-0.783826,0.620981,-1e-06,-0.783826,0.620981,-2e-06,-0.783826,0.620981,-2e-06,-0.783826,0.620981,-2e-06,-0.783826,0.620981,-5e-06,-0.783827,0.62098,-5e-06,-0.783827,0.62098,-5e-06,-0.783827,0.62098,-1e-06,-0.783827,0.620979,-1e-06,-0.783827,0.620979,-1e-06,-0.783827,0.620979,-4e-06,-0.783829,0.620977,-4e-06,-0.783829,0.620977,-4e-06,-0.783829,0.620977,7e-06,-0.783824,0.620983,7e-06,-0.783824,0.620983,7e-06,-0.783824,0.620983,7e-06,-0.783824,0.620983,4e-06,-0.783824,0.620984,4e-06,-0.783824,0.620984,4e-06,-0.783824,0.620984,-1e-06,-0.783826,0.62098,-1e-06,-0.783826,0.62098,-1e-06,-0.783826,0.62098,-2e-06,-0.783829,0.620977,-2e-06,-0.783829,0.620977,-2e-06,-0.783829,0.620977,-4e-06,-0.783826,0.620981,-4e-06,-0.783826,0.620981,-4e-06,-0.783826,0.620981,-2e-06,-0.783833,0.620972,-2e-06,-0.783833,0.620972,-2e-06,-0.783833,0.620972,-3e-06,-0.783825,0.620982,-3e-06,-0.783825,0.620982,-3e-06,-0.783825,0.620982,-3e-06,-0.783831,0.620974,-3e-06,-0.783831,0.620974,-3e-06,-0.783831,0.620974,7e-06,-0.783815,0.620995,7e-06,-0.783815,0.620995,7e-06,-0.783815,0.620995,-0,-0.783828,0.620977,-0,-0.783828,0.620977,-0,-0.783828,0.620977,3e-06,-0.783822,0.620985,3e-06,-0.783822,0.620985,3e-06,-0.783822,0.620985,3e-06,-0.783833,0.620972,3e-06,-0.783833,0.620972,3e-06,-0.783833,0.620972,-2e-06,-0.783809,0.621002,-2e-06,-0.783809,0.621002,-2e-06,-0.783809,0.621002,2.4e-05,-0.783853,0.620947,2.4e-05,-0.783853,0.620947,2.4e-05,-0.783853,0.620947,-2e-06,-0.783824,0.620983,-2e-06,-0.783824,0.620983,-2e-06,-0.783824,0.620983,6e-06,-0.783844,0.620958,6e-06,-0.783844,0.620958,6e-06,-0.783844,0.620958,-4e-06,-0.783817,0.620992,-4e-06,-0.783817,0.620992,-4e-06,-0.783817,0.620992,-2e-06,-0.783827,0.620979,-2e-06,-0.783827,0.620979,-2e-06,-0.783827,0.620979,1e-06,-0.78379,0.621027,1e-06,-0.78379,0.621027,1e-06,-0.78379,0.621027,-1e-06,-0.783843,0.62096,-1e-06,-0.783843,0.62096,-1e-06,-0.783843,0.62096,-1e-06,-0.783821,0.620987,-1e-06,-0.783821,0.620987,-1e-06,-0.783821,0.620987,1e-06,-0.783832,0.620973,1e-06,-0.783832,0.620973,1e-06,-0.783832,0.620973}; -const GLfloat gameover_colors[] = {0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0.937,0.957,1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0}; -const GLushort gameover_indices[] = {0,1,2,0,3,1,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,187,193,188,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,204,203,210,211,212,213,214,215,216,214,213,217,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,256,257,258,259,260,261,262,263,264,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284,285,286,287,288,289,290,291,292,293,294,295,296,297,298,299,300,301,302,303,304,305,306,298,307,299,308,309,310,311,312,313,314,315,316,317,318,319,320,321,322,323,324,325,326,327,328,329,330,331,332,333,334,335,336,337,338,339,340,341,342,343,344,345,330,346,347,348,349,350,351,352,353,354,355,356,357,358,359,360,361,362,363,364,365,366,367,368,369,370,371,372,373,374,375,376,377,378,379,380,381,382,383,384,385,386,387,388,389,390,391,392,393,394,395,396,397,398,399,400,401,385,402,403,404,405,406,407,408,409,410,411,412,413,414,415,416,417,418,419,420,421,422,423,424,425,426,427,428,429,430,431,432,433,434,435,436,437,438,439,440,441,442,443,444,445,446,447,448,449,450,451,452,453,454,455,456,457,458,459,460,461,462,463,464,465,466,467,468,469,470,471,472,473,474,475,476,477,478,479,480,481,482,483,484,485,486,487,488,489,490,491,492,493,494,495,496,497,498,499,500,501,502,503,504,502,501,505,506,507,508,509,510,511,512,513,514,515,516,517,518,519,520,521,522,523,524,525,526,527,528,529,530,531,532,533,534,535,536,537,538,539,540,541,542,543,544,545,546,547,548,549,550,551,552,553,554,555,556,557,558,559,560,561,562,563,564,565,566,567,568,569,570,571,572,573,574,575,576,577,578,579,580,581,582,583,584,585,586,587,588,589,590,591,592,593,594,595,596,597,598,599,600,601,602,603,604,605,606,607,608,609,610,611,612,613,614,615,616,617,618,619,620,621,622,623,624,625,626,627,628,629,630,631,632,633,634,635,636,637,638,639,640,641,642,643,644,645,646,647,648,649,650,651,652,653,654,655,656,657,658,659,660,661,662,663,664,665,666,667,668,669,670,671,672,673,674,675,676,677,678,679,680,681,682,683,684,685,686,687,688,689,690,691,692,693,694,695,696,697,698,699,700,701,702,703,704,705,706,707,708,709,710,711,712,713,714,715,716,717,718,719,720,721,722,723,724,725,726,727,728,729,730,731,732,733,734,735,736,737,738,739,740,741,742,743,744,745,746,747,748,749,750,751,752,753,754,755,756,757,758,759,760,761,762,763,764,765,766,767,768,769,770,771,772,773,774,775,776,777,778,779,780,781,782,783,784,785,786,787,788,789,790,788,787,791,792,793,794,795,796,797,798,799,800,801,802,803,804,805,806,807,808,809,810,811,812,813,814,815,816,817,818,819,820,821,822,823,824,825,826,827,828,829,830,831,832,833,834,835,836,837,838,839,840,841,842,843,844,845,846,847,848,849,850,851,852,853,854,855,856,857,858,859,860,861,862,863,864,865,866,867,868,869,870,871,872,873,874,875,876,877,878,879,880,881,882,883,884,885,886,887,888,889,890,891,892,893,894,895,896,897,898,899,900,901,902,903,904,905,906,907,908,909,910,911,912,913,914,915,916,917,918,919,920,921,922,923,924,925,926,927,928,929,930,931,932,933,934,935,936,937,932,938,939,940,941,942,943,944,945,946,947,948,949,950,951,952,953,954,955,956,957,958,959,960,961,962,963,964,965,966,967,968,969,970,971,972,973,974,975,976,977,978,979,980,981,982,983,984,985,986,987,988,989,990,991,992,993,994,995,996,997,998,999,1000,1001,1002,1003,1004,1005,1006,1007,1008,1009,1010,1011,1012,1013,1014,1015,1016,1017,1018,1019,1020,1021,1022,1023,1024,1025,1026,1027,1028,1029,1030,1031,1032,1033,1034,1035,1036,1037,1038,1039,1040,1041,1042,1043,1044,1045,1046,1047,1048,1049,1050,1051,1052,1053,1054,1055,1056,1057,1058,1059,1060,1061,1062,1063,1064,1065,1066,1067,1068,1069,1070,1071,1072,1073,1074,1075,1076,1077,1078,1079,1080,1081,1082,1083,1084,1085,1086,1087,1088,1089,1090,1091,1092,1093,1094,1095,1096,1097,1098,1099,1100,1101,1102,1103,1104,1105,1106,1107,1108,1109,1110,1111,1112,1113,1102,1114,1103,1115,1116,1117,1118,1119,1120,1121,1122,1123,1124,1125,1126,1127,1128,1129,1130,1131,1132,1133,1134,1135,1136,1137,1138,1139,1140,1141,1142,1143,1144,1142,1145,1143,1146,1147,1148,1149,1150,1151,1152,1153,1154,1155,1156,1157,1158,1159,1160,1161,1162,1163,1164,1165,1166,1167,1162,1161,1168,1169,1170,1171,1172,1173,1174,1175,1176,1177,1178,1179,1180,1181,1182,1183,1184,1185,1186,1187,1188,1189,1190,1191,1192,1193,1194,1195,1196,1197,1198,1199,1200,1201,1202,1203,1204,1205,1206,1207,1208,1209,1210,1211,1212,1213,1214,1215,1216,1217,1218,1219,1220,1221,1222,1223,1224,1225,1226,1227,1228,1229,1230,1231,1232,1233,1234,1235,1236,1237,1238,1239,1240,1241,1242,1243,1244,1245,1246,1247,1248,1249,1250,1251,1252,1253,1254,1255,1256,1257,1258,1259,1260,1261,1262,1263,1264,1265,1266,1267,1268,1269,1270,1271,1272,1273,1274,1275,1276,1277,1278,1279,1280,1281,1282,1283,1284,1285,1286,1287,1288,1289,1290,1291,1292,1293,1294,1295,1296,1297,1298,1299,1300,1301,1302,1303,1304,1305,1306,1307,1308,1309,1310,1311,1309,1312,1310,1313,1314,1315,1316,1317,1318,1319,1320,1321,1322,1323,1324,1325,1326,1327,1328,1329,1330,1331,1332,1333,1334,1335,1336,1337,1338,1339,1340,1341,1342,1343,1344,1345,1346,1347,1348,1349,1350,1351,1352,1353,1354,1355,1356,1357,1358,1359,1360,1361,1362,1363,1364,1365,1366,1367,1368,1369,1370,1371,1372,1373,1374,1375,1376,1377,1378,1379,1380,1381,1382,1383,1384,1385,1386,1387,1388,1389,1390,1391,1392,1393,1394,1395,1396,1397,1398,1399,1400,1401,1402,1403,1404,1405,1406,1407,1408,1409,1410,1411,1412,1413,1414,1415,1416,1417,1418,1419,1420,1421,1422,1423,1424,1425,1426,1427,1428,1429,1430,1431,1432,1433,1434,1435,1436,1437,1438,1439,1440,1441,1442,1443,1444,1445,1446,1447,1448,1449,1450,1451,1452,1453,1454,1455,1456,1457,1458,1459,1457,1460,1458,1461,1462,1463,1464,1465,1466,1467,1468,1469,1470,1471,1472,1473,1474,1475,1476,1477,1478,1479,1480,1481,1482,1483,1484,1485,1486,1487,1488,1489,1490,1491,1492,1493,1491,1494,1492,1495,1496,1497,1498,1499,1500,1501,1502,1503,1504,1505,1506,1507,1505,1504,1508,1509,1510,1507,1511,1505,1512,1513,1514,1515,1516,1517,1518,1519,1520,1521,1522,1523,1524,1525,1526,1527,1528,1529,1530,1531,1532,1533,1534,1535,1536,1537,1538,1539,1540,1541,1542,1543,1544,1545,1546,1547,1548,1549,1550,1551,1552,1553,1554,1555,1543,1556,1557,1558,1559,1560,1561,1562,1563,1564,1565,1566,1567,1568,1569,1570,1571,1572,1573,1574,1575,1576,1577,1578,1579,1580,1581,1582,1583,1584,1585,1586,1587,1588,1589,1590,1591,1592,1593,1594,1595,1596,1597,1598,1599,1600,1601,1602,1603,1604,1605,1606,1607,1608,1609,1610,1611,1612,1613,1614,1615,1616,1617,1618,1619,1620,1621,1622,1623,1624,1625,1626,1627,1628,1629,1630,1631,1632,1633,1634,1635,1636,1637,1638,1639,1640,1641,1642,1643,1644,1645,1646,1647,1648,1649,1650,1651,1652,1653,1654,1655,1656,1657,1658,1659,1660,1661,1662,1663,1664,1665,1666,1667,1668,1669,1670,1671,1672,1673,1674,1675,1676,1677,1678,1679,1680,1681,1682,1683,1684,1685,1686,1687,1688,1689,1690,1691,1692,1693,1694,1695,1696,1697,1698,1699,1700,1701,1702,1694,1703,1695,1704,1705,1706,1707,1708,1709,1710,1711,1712,1713,1714,1715,1716,1717,1718,1719,1720,1721,1722,1723,1724,1725,1726,1727,1728,1729,1730,1731,1732,1733,1734,1735,1736,1737,1738,1739,1740,1741,1742,1737,1743,1738,1744,1745,1746,1747,1748,1749,1750,1751,1752,1753,1754,1755,1756,1757,1758,1759,1760,1761,1762,1763,1764,1765,1766,1767,1768,1769,1770,1771,1772,1773,1774,1775,1776,1777,1778,1779,1780,1781,1782,1783,1784,1785,1786,1787,1788,1789,1790,1791,1792,1793,1794,1795,1796,1797,1798,1799,1800,1801,1802,1803,1804,1805,1806,1807,1808,1809,1810,1811,1812,1813,1814,1815,1816,1817,1818,1819,1820,1821,1822,1823,1824,1825,1826,1827,1828,1829,1830,1831,1832,1833,1834,1835,1836,1837,1838,1839,1840,1841,1842,1843,1844,1845,1846,1847,1848,1849,1850,1851,1852,1853,1854,1855,1856,1857,1858,1859,1860,1861,1862,1863,1864,1865,1866,1867,1868,1869,1870,1871,1872,1873,1874,1875,1876,1877,1878,1879,1880,1881,1882,1883,1884,1885,1886,1887,1888,1889,1890,1891,1892,1893,1894,1895,1896,1897,1898,1899,1900,1901,1902,1903,1904,1905,1906,1907,1908,1909,1910,1911,1912,1913,1914,1915,1916,1917,1918,1919,1920,1921,1922,1923,1924,1925,1926,1927,1928,1929,1930,1931,1932,1933,1934,1935,1936,1937,1938,1939,1940,1941,1942,1943,1944,1945,1946,1947,1948,1949,1950,1951,1952,1953,1954,1955,1956,1957,1958,1959,1960,1961,1962,1963,1964,1965,1966,1967,1968,1969,1970,1971,1972,1973,1974,1975,1976,1977,1978,1979,1980,1981,1982,1983,1984,1985,1986,1987,1988,1989,1990,1991,1992,1993,1994,1995,1996,1997,1998,1999,1991,1990,2000,2001,2002,2003,2004,2005,2006,2007,2008,2009,2010,2011,2012,2013,2014,2015,2016,2017,2018,2019,2020,2021,2022,2023,2024,2025,2026,2027,2028,2029,2030,2031,2032,2033,2034,2035,2036,2037,2038,2039,2040,2041,2042,2043,2044,2045,2046,2047,2048,2049,2050,2051,2052,2053,2054,2055,2056,2057,2058,2059,2060,2061,2062,2063,2064,2065,2066,2067,2068,2069,2070,2071,2072,2073,2074,2075,2076,2077,2072,2078,2073,2079,2080,2081,2082,2083,2084,2085,2086,2087,2088,2089,2090,2091,2092,2093,2094,2095,2096,2097,2098,2099,2100,2101,2102,2103,2104,2105,2106,2107,2108,2109,2110,2111,2112,2113,2114,2115,2116,2117,2118,2119,2120,2121,2122,2123,2124,2125,2126,2127,2128,2129,2130,2131,2132,2133,2134,2135,2136,2137,2138,2139,2140,2141,2142,2143,2144,2145,2146,2147,2148,2149,2150,2151,2152,2153,2154,2155,2156,2157,2158,2159,2160,2161,2162,2163,2164,2165,2166,2167,2168,2169,2170,2171,2172,2173,2174,2175,2176,2177,2175,2178,2176,2179,2180,2181,2182,2183,2184,2185,2186,2187,2188,2189,2190,2191,2192,2193,2194,2195,2196,2197,2198,2199,2200,2201,2202,2203,2204,2205,2206,2207,2208,2209,2210,2211,2212,2213,2214,2215,2213,2212,2216,2217,2218,2219,2220,2221,2222,2223,2224,2225,2226,2227,2228,2220,2219,2229,2230,2231,2232,2233,2234,2235,2236,2237,2238,2239,2240,2241,2242,2243,2244,2245,2246,2247,2248,2249,2250,2251,2252,2253,2254,2255,2256,2257,2258,2259,2260,2261,2262,2263,2264,2265,2266,2267,2268,2269,2270,2271,2272,2273,2274,2275,2276,2277,2278,2279,2280,2281,2282,2283,2284,2285,2286,2287,2288,2289,2290,2291,2292,2293,2294,2295,2296,2297,2298,2299,2300,2301,2302,2303,2304,2305,2306,2307,2308,2309,2310,2311,2312,2313,2314,2315,2316,2317,2318,2319,2320,2321,2322,2323,2324,2325,2326,2327,2328,2329,2330,2331,2332,2333,2334,2335,2336,2337,2338,2339,2340,2341,2342,2343,2344,2345,2346,2347,2348,2349,2350,2351,2352,2347,2346,2353,2354,2355,2356,2354,2353,2357,2358,2359,2360,2361,2362,2363,2364,2365,2366,2367,2368,2369,2370,2371,2372,2373,2374,2375,2376,2377,2378,2379,2380,2381,2382,2383,2384,2385,2386,2387,2388,2389,2390,2391,2392,2393,2394,2395,2396,2397,2398,2399,2400,2401,2402,2403,2404,2405,2406,2407,2408,2409,2410,2411,2412,2413,2414,2415,2416,2417,2418,2419,2420,2421,2422,2423,2424,2425,2426,2427,2428,2429,2430,2431,2432,2433,2434,2435,2436,2437,2438,2439,2440,2441,2442,2443,2444,2445,2446,2447,2448,2449,2450,2451,2452,2453,2454,2455,2456,2457,2458,2459,2460,2461,2462,2463,2464,2465,2466,2467,2468,2469,2470,2471,2472,2473,2474,2475,2476,2477,2478,2479,2480,2481,2482,2483,2484,2485,2486,2487,2488,2489,2490,2491,2492,2493,2494,2495,2496,2497,2498,2499,2500,2501,2502,2503,2504,2505,2506,2507,2508,2509,2510,2511,2512,2513,2514,2515,2516,2517,2518,2519,2520,2521,2522,2523,2524,2525,2526,2527,2528,2529,2530,2531,2532,2533,2534,2535,2536,2537,2538,2539,2540,2541,2542,2543,2544,2545,2546,2547,2548,2549,2550,2551,2552,2553,2554,2555,2556,2557,2558,2559,2560,2561,2562,2563,2564,2565,2566,2567,2568,2569,2570,2571,2572,2573,2574,2575,2576,2577,2578,2579,2580,2581,2582,2583,2584,2585,2586,2587,2588,2589,2590,2591,2592,2593,2594,2595,2596,2597,2598,2599,2600,2601,2602,2603,2604,2605,2606,2607,2608,2609,2610,2611,2612,2613,2614,2615,2616,2617,2618,2619,2620,2621,2622,2623,2624,2622,2621,2625,2626,2627,2628,2629,2630,2631,2632,2633,2634,2635,2636,2637,2638,2639,2640,2641,2642,2643,2644,2645,2646,2647,2648,2649,2650,2651,2652,2653,2654,2655,2656,2657,2658,2659,2660,2661,2662,2663,2664,2665,2666,2667,2668,2669,2670,2671,2672,2673,2674,2675,2676,2677,2678,2679,2680,2681,2682,2683,2684,2685,2686,2687,2688,2689,2690,2691,2692,2693,2694,2695,2696,2697,2698,2699,2700,2701,2702,2703,2704,2705,2706,2707,2708,2709,2710,2711,2712,2713,2714,2715,2716,2717,2712,2718,2713,2719,2720,2721,2722,2718,2712,2723,2720,2719,2724,2725,2726,2727,2728,2729,2730,2731,2732,2733,2734,2735,2736,2737,2738,2739,2740,2741,2742,2743,2744,2745,2746,2747,2748,2749,2750,2751,2752,2753,2754,2755,2756,2757,2758,2759,2760,2761,2762,2763,2764,2765,2766,2767,2768,2769,2770,2771,2772,2773,2774,2775,2776,2777,2778,2779,2780,2781,2782,2783,2784,2785,2786,2787,2788,2789,2790,2791,2792,2793,2794,2795,2796,2797,2798,2799,2800,2801,2802,2803,2804,2805,2806,2807,2808,2809,2810,2811,2812,2813,2814,2815,2816,2817,2818,2819,2820,2821,2822,2823,2824,2825,2826,2827,2828,2829,2830,2831,2832,2833,2834,2835,2836,2837,2838,2839,2840,2841,2842,2843,2844,2845,2846,2847,2848,2849,2850,2851,2852,2853,2854,2855,2856,2857,2858,2859,2860,2861,2862,2863,2864,2865,2866,2867,2868,2869,2870,2871,2872,2873,2874,2875,2876,2877,2878,2879,2880,2881,2882,2883,2884,2885,2886,2887,2888,2889,2890,2891,2892,2893,2894,2895,2896,2897,2898,2899,2900,2901,2902,2903,2904,2905,2906,2907,2908,2909,2910,2911,2912,2913,2914,2915,2916,2917,2918,2919,2920,2921,2922,2923,2924,2925,2926,2927,2928,2929,2930,2931,2932,2933,2934,2935,2936,2937,2938,2939,2940,2941,2942,2943,2944,2945,2946,2947,2948,2949,2950,2951,2952,2953,2954,2955,2956,2957,2958,2959,2960,2961,2962,2963,2964,2965,2966,2967,2968,2969,2970,2971,2972,2973,2974,2975,2976,2977,2978,2979,2980,2981,2982,2983,2984,2985,2986,2987,2988,2989,2990,2991,2992,2993,2994,2995,2996,2997,2998,2999,3000,3001,3002,3003,3004,3005,3003,3006,3004,3007,3008,3009,3010,3011,3012,3013,3014,3015,3016,3017,3018,3019,3014,3013,3020,3021,3022,3023,3024,3025,3026,3027,3028,3029,3030,3031,3032,3033,3034,3035,3036,3037,3038,3039,3040,3041,3042,3043,3044,3045,3046,3047,3048,3049,3050,3051,3052,3053,3048,3047,3054,3055,3056,3057,3058,3059,3060,3061,3062,3063,3064,3065,3066,3067,3068,3069,3070,3071,3072,3073,3074,3075,3076,3077,3078,3079,3080,3081,3082,3083,3084,3085,3073,3086,3087,3088,3089,3090,3091,3092,3093,3094,3095,3096,3097,3098,3099,3100,3101,3102,3103,3104,3105,3106,3107,3108,3109,3110,3111,3112,3113,3114,3115,3116,3117,3118,3119,3120,3121,3122,3123,3124,3125,3123,3122,3126,3127,3128,3129,3130,3131,3129,3132,3130,3133,3132,3129,3134,3135,3136,3137,3138,3139,3140,3138,3137,3141,3142,3143,3144,3145,3146,3147,3148,3149,3147,3150,3148,3151,3152,3153,3154,3150,3147,3155,3156,3157,3158,3159,3160,3161,3162,3163,3164,3165,3166,3167,3168,3169,3170,3171,3172,3173,3174,3175,3176,3177,3178,3179,3180,3181,3182,3183,3184,3185,3186,3187,3188,3189,3190,3191,3192,3193,3194,3195,3196,3197,3198,3199,3200,3201,3202,3203,3204,3205,3206,3207,3208,3209,3210,3211,3212,3213,3214,3215,3216,3217,3218,3219,3220,3221,3222,3223,3224,3225,3226,3227,3228,3229,3230,3231,3232,3233,3234,3235,3236,3237,3238,3239,3240,3241,3242,3243,3244,3245,3246,3247,3248,3249,3250,3251,3252,3253,3254,3255,3256,3257,3258,3259,3260,3261,3262,3263,3264,3265,3266,3267,3268,3269,3270,3271,3272,3273,3274,3275,3276,3277,3278,3279,3280,3281,3276,3275,3282,3283,3284,3285,3286,3287,3288,3289,3290,3291,3292,3293,3294,3295,3296,3297,3298,3299,3300,3301,3302,3303,3304,3305,3306,3307,3308,3309,3310,3311,3312,3313,3314,3315,3316,3317,3318,3319,3320,3321,3322,3323,3324,3325,3326,3327,3328,3329,3330,3331,3332,3333,3334,3335,3336,3337,3338,3339,3340,3341,3342,3343,3344,3336,3345,3337,3342,3346,3343,3347,3348,3349,3350,3351,3352,3353,3354,3355,3356,3357,3358,3359,3360,3361,3362,3363,3364,3365,3366,3367,3368,3369,3370,3371,3372,3373,3374,3375,3376,3377,3378,3379,3380,3381,3382,3383,3384,3385,3386,3387,3388,3389,3390,3391,3392,3393,3394,3395,3396,3397,3398,3399,3400,3401,3402,3403,3404,3405,3406,3407,3408,3409,3410,3411,3412,3413,3414,3415,3416,3417,3418,3419,3414,3413,3420,3421,3422,3423,3424,3425,3426,3427,3428,3429,3430,3431,3432,3433,3434,3435,3436,3437,3438,3439,3440,3441,3442,3443,3444,3445,3446,3447,3448,3449,3450,3451,3452,3453,3454,3455,3456,3457,3458,3459,3460,3461,3462,3463,3464,3465,3466,3467,3468,3469,3470,3471,3472,3473,3474,3475,3476,3477,3478,3479,3480,3481,3482,3483,3484,3485,3486,3484,3483,3487,3488,3489,3490,3491,3492,3493,3494,3495,3496,3497,3498,3499,3500,3501,3502,3503,3504,3505,3506,3507,3508,3509,3510,3511,3512,3513,3514,3515,3516,3517,3518,3519,3520,3521,3522,3523,3524,3525,3526,3527,3528,3529,3530,3531,3532,3533,3534,3535,3536,3537,3538,3536,3535,3539,3540,3541,3542,3543,3544,3545,3546,3547,3548,3549,3550,3551,3552,3553,3554,3555,3556,3557,3558,3559,3560,3561,3562,3563,3564,3565,3566,3567,3568,3569,3570,3571,3572,3573,3574,3575,3576,3577,3578,3579,3580,3581,3579,3578,3582,3583,3584,3585,3586,3587,3588,3589,3590,3591,3592,3593,3594,3595,3596,3597,3598,3599,3600,3601,3602,3603,3604,3605,3606,3607,3608,3609,3610,3611,3612,3613,3614,3615,3616,3617,3618,3619,3620,3621,3622,3623,3624,3625,3626,3627,3628,3629,3630,3631,3632,3633,3634,3635,3636,3637,3638,3639,3640,3641,3642,3643,3644,3645,3646,3647,3648,3643,3642,3649,3650,3651,3652,3653,3654,3655,3656,3657,3658,3659,3660,3658,3661,3659,3662,3663,3664,3665,3666,3667,3668,3669,3670,3671,3672,3673,3674,3675,3676,3677,3678,3679,3680,3681,3682,3683,3684,3685,3686,3687,3688,3689,3690,3691,3692,3693,3694,3695,3696,3697,3698,3699,3700,3701,3702,3703,3704,3705,3706,3707,3708,3709,3710,3711,3712,3713,3714,3715,3716,3717,3718,3719,3720,3721,3722,3723,3724,3725,3726,3727,3728,3729,3730,3731,3732,3733,3734,3735,3736,3737,3738,3739,3740,3741,3742,3743,3738,3737,3743,3744,3738,3745,3746,3747,3748,3749,3750,3751,3752,3753,3754,3755,3756,3757,3758,3759,3760,3761,3762,3763,3764,3765,3766,3767,3768,3769,3770,3771,3772,3773,3774,3775,3776,3777,3778,3779,3780,3781,3782,3783,3784,3785,3786,3787,3788,3789,3790,3791,3792,3793,3794,3795,3796,3797,3798,3799,3800,3801,3802,3803,3804,3805,3806,3807,3808,3809,3810,3811,3812,3813,3814,3815,3816,3817,3818,3819,3820,3821,3822,3823,3824,3825,3826,3827,3828,3829,3830,3831,3832,3833,3834,3835,3836,3837,3838,3839,3840,3841,3842,3843,3844,3845,3846,3847,3848,3849,3850,3842,3841,3847,3851,3848,3852,3853,3854,3855,3851,3847,3856,3857,3858,3859,3860,3861,3862,3863,3864,3865,3866,3867,3868,3869,3870,3871,3872,3873,3874,3875,3869,3876,3877,3878,3879,3880,3881,3882,3883,3884,3885,3886,3887,3888,3889,3890,3891,3892,3893,3894,3895,3896,3897,3898,3899,3900,3901,3902,3903,3904,3905,3906,3907,3908,3909,3910,3911,3912,3913,3914,3915,3916,3917,3918,3919,3920,3921,3922,3923,3924,3925,3926,3927,3928,3929,3930,3931,3932,3933,3934,3935,3936,3937,3938,3939,3940,3941,3942,3943,3944,3945,3946,3947,3948,3949,3950,3951,3952,3953,3954,3955,3956,3957,3958,3959,3960,3961,3962,3963,3964,3965,3966,3967,3968,3969,3970,3971,3972,3973,3974,3975,3976,3977,3978,3979,3980,3981,3982,3983,3984,3985,3986,3987,3988,3989,3990,3991,3992,3993,3994,3995,3996,3997,3998,3999,4000,4001,4002,4003,4004,4005,4006,4007,4008,4009,4010,4011,4012,4013,4011,4014,4012,4015,4016,4017,4018,4019,4020,4021,4022,4023,4024,4025,4026,4027,4028,4029,4030,4031,4032,4033,4034,4035,4036,4037,4038,4039,4040,4041,4042,4043,4033,4044,4045,4046,4047,4048,4049,4050,4051,4052,4053,4054,4055,4056,4057,4058,4059,4060,4061,4062,4063,4064,4065,4066,4067,4068,4069,4070,4071,4072,4073,4074,4075,4076,4077,4078,4079,4080,4081,4082,4083,4084,4085,4086,4087,4088,4089,4090,4091,4092,4093,4094,4092,4095,4093,4096,4097,4098,4099,4100,4101,4102,4103,4104,4105,4106,4107,4108,4109,4110,4111,4112,4113,4114,4115,4116,4117,4118,4119,4120,4121,4122,4123,4124,4125,4126,4127,4118,4128,4121,4120,4129,4130,4131,4132,4133,4134,4135,4136,4137,4138,4139,4140,4141,4136,4135,4142,4143,4144,4145,4146,4147,4148,4149,4150,4151,4152,4153,4154,4155,4156,4157,4158,4159,4160,4161,4162,4163,4164,4165,4166,4167,4168,4169,4170,4171,4172,4173,4174,4175,4176,4177,4178,4179,4180,4181,4182,4183,4184,4185,4186,4187,4188,4189,4190,4191,4192,4193,4194,4195,4196,4197,4198,4199,4200,4201,4202,4203,4204,4205,4206,4207,4208,4209,4210,4211,4212,4213,4214,4215,4216,4217,4218,4219,4220,4221,4222,4223,4224,4225,4226,4227,4228,4229,4230,4231,4232,4233,4234,4235,4236,4237,4238,4239,4240,4241,4242,4243,4244,4245,4246,4247,4248,4249,4250,4251,4252,4253,4254,4255,4256,4257,4258,4259,4260,4261,4262,4263,4264,4265,4266,4267,4268,4269,4270,4271,4272,4273,4274,4275,4276,4277,4278,4279,4280,4281,4282,4283,4284,4285,4286,4287,4288,4289,4290,4291,4292,4293,4294,4295,4296,4297,4298,4299,4300,4301,4302,4303,4304,4305,4306,4307,4308,4309,4310,4311,4312,4313,4314,4315,4316,4317,4318,4319,4320,4321,4322,4323,4324,4325,4326,4327,4328,4329,4330,4331,4332,4333,4328,4334,4329,4335,4336,4337,4338,4339,4340,4341,4342,4343,4344,4345,4346,4347,4348,4349,4350,4351,4352,4353,4354,4355,4356,4357,4358,4359,4360,4361,4362,4363,4364,4365,4366,4367,4368,4369,4370,4371,4372,4373,4374,4375,4356,4376,4377,4378,4379,4380,4381,4382,4383,4384,4385,4386,4387,4388,4389,4390,4391,4392,4393,4394,4395,4396,4397,4398,4399,4400,4401,4402,4403,4401,4400,4404,4405,4406,4404,4407,4405,4408,4409,4410,4411,4412,4413,4414,4415,4416,4417,4418,4419,4420,4421,4422,4423,4424,4425,4426,4427,4428,4429,4430,4431,4432,4433,4434,4435,4436,4437,4438,4439,4440,4441,4442,4443,4444,4445,4446,4447,4448,4449,4450,4451,4452,4453,4454,4455,4456,4457,4458,4459,4460,4461,4462,4463,4464,4465,4466,4467,4468,4469,4470,4471,4472,4473,4474,4475,4476,4477,4478,4479,4480,4481,4482,4483,4484,4485,4486,4487,4488,4489,4490,4491,4492,4493,4494,4495,4496,4497,4498,4499,4500,4501,4502,4503,4504,4505,4506,4507,4508,4509,4510,4511,4512,4513,4514,4515,4516,4517,4518,4519,4520,4521,4522,4523,4524,4525,4526,4527,4528,4529,4530,4531,4532,4533,4534,4535,4536,4537,4538,4539,4540,4541,4542,4543,4544,4545,4546,4547,4548,4549,4550,4551,4552,4553,4554,4555,4556,4557,4558,4559,4560,4561,4562,4563,4564,4565,4566,4567,4568,4569,4570,4571,4572,4573,4574,4575,4576,4577,4578,4579,4580,4581,4582,4583,4584,4585,4586,4587,4588,4589,4590,4591,4592,4593,4594,4595,4596,4597,4598,4599,4600,4601,4602,4603,4604,4605,4606,4607,4608,4609,4610,4611,4612,4613,4614,4615,4604,4603,4616,4617,4618,4619,4620,4621,4622,4623,4624,4625,4626,4627,4628,4629,4630,4631,4632,4633,4634,4635,4636,4637,4638,4639,4640,4641,4642,4643,4644,4645,4646,4647,4648,4649,4650,4651,4652,4653,4654,4655,4656,4657,4658,4659,4640,4660,4661,4662,4663,4664,4665,4666,4667,4668,4669,4670,4671,4672,4673,4674,4675,4676,4677,4678,4679,4680,4681,4682,4683,4684,4685,4686,4687,4688,4689,4690,4691,4692,4693,4694,4695,4696,4697,4698,4699,4700,4701,4702,4703,4704,4705,4706,4707,4708,4709,4710,4711,4712,4713,4714,4715,4716,4717,4718,4719,4720,4721,4722,4723,4718,4717,4724,4725,4726,4727,4728,4729,4730,4731,4732,4733,4734,4735,4736,4737,4738,4739,4740,4741,4739,4742,4740,4743,4744,4745,4746,4747,4748,4749,4750,4751,4752,4753,4754,4755,4756,4757,4758,4759,4760,4761,4762,4763,4764,4765,4766,4767,4768,4769,4770,4771,4772,4773,4774,4775,4776,4777,4778,4779,4780,4781,4782,4783,4784,4785,4786,4787,4788,4789,4790,4791,4792,4793,4794,4795,4796,4797,4798,4799,4800,4801,4802,4803,4804,4805,4806,4807,4808,4809,4810,4811,4812,4813,4814,4815,4816,4817,4818,4819,4820,4821,4822,4823,4824,4825,4816,4826,4825,4824,4827,4828,4829,4830,4831,4832,4833,4834,4835,4836,4837,4838,4839,4840,4841,4842,4843,4844,4845,4846,4847,4848,4849,4850,4851,4852,4853,4854,4855,4856,4857,4858,4859,4860,4861,4862,4863,4864,4865,4866,4867,4868,4869,4870,4871,4872,4873,4874,4875,4876,4877,4878,4879,4880,4881,4882,4883,4884,4885,4886,4887,4888,4889,4890,4891,4892,4893,4894,4895,4896,4897,4898,4899,4900,4901,4902,4903,4904,4905,4906,4907,4908,4909,4910,4911,4912,4913,4914,4915,4916,4917,4918,4919,4920,4921,4922,4923,4924,4925,4926,4927,4928,4929,4930,4931,4932,4933,4934,4935,4936,4937,4938,4939,4940,4941,4942,4943,4944,4945,4946,4947,4948,4949,4950,4951,4952,4953,4954,4955,4956,4957,4958,4959,4960,4961,4962,4963,4964,4965,4966,4967,4968,4969,4970,4971,4972,4973,4974,4969,4968,4975,4976,4977,4978,4979,4980,4981,4982,4983,4984,4985,4986,4987,4988,4989,4990,4991,4992,4993,4994,4995,4996,4997,4998,4999,5000,5001,5002,5003,5004,5005,5006,5007,5008,5009,5010,5011,5012,5013,5014,5015,5016,5017,5018,5019,5020,5021,5022,5023,5024,5025,5026,5027,5028,5029,5030,5031,5032,5033,5034,5035,5036,5037,5038,5039,5040,5041,5042,5043,5044,5045,5046,5047,5048,5049,5050,5051,5052,5053,5054,5055,5056,5057,5058,5059,5060,5061,5062,5057,5056,5063,5064,5065,5066,5067,5068,5069,5070,5071,5072,5073,5074,5075,5076,5077,5078,5079,5080,5081,5082,5083,5084,5085,5073,5086,5087,5088,5089,5090,5091,5092,5093,5094,5095,5096,5097,5098,5099,5100,5101,5102,5103,5104,5105,5106,5107,5108,5109,5110,5111,5112,5113,5114,5115,5116,5117,5118,5119,5120,5121,5122,5123,5124,5125,5123,5122,5126,5127,5128,5129,5130,5131,5129,5132,5130,5133,5134,5135,5133,5136,5134,5137,5138,5139,5140,5141,5142,5143,5144,5145,5146,5147,5148,5149,5150,5151,5152,5153,5154,5155,5156,5157,5158,5159,5160,5161,5162,5163,5164,5165,5166,5167,5168,5169,5170,5171,5172,5173,5174,5175,5176,5177,5178,5179,5180,5181,5182,5183,5184,5185,5186,5187,5188,5189,5190,5191,5192,5193,5194,5195,5196,5197,5198,5199,5200,5201,5202,5203,5204,5205,5206,5207,5208,5209,5210,5211,5212,5213,5214,5215,5216,5217,5218,5219,5220,5221,5222,5223,5224,5225,5226,5227,5228,5229,5230,5231,5232,5233,5234,5235,5236,5237,5238,5239,5240,5241,5242,5243,5244,5245,5246,5247,5248,5249,5250,5251,5252,5253,5254,5255,5256,5257,5258,5259,5260,5261,5262,5263,5264,5265,5266,5267,5268,5269,5270,5271,5272,5273,5274,5275,5276,5277,5278,5279,5280,5281,5282,5283,5284,5285,5286,5287,5288,5289,5290,5291,5292,5293,5294,5295,5296,5297,5298,5299,5300,5301,5302,5303,5304,5305,5306,5307,5308,5309,5310,5311,5312,5313,5314,5315,5316,5317,5318,5319,5320,5321,5322,5323,5324,5325,5326,5327,5328,5329,5330,5331,5332,5333,5334,5335,5336,5337,5338,5339,5340,5341,5342,5343,5344,5345,5346,5347,5348,5349,5350,5351,5352,5353,5354,5355,5356,5357,5358,5359,5360,5361,5362,5363,5364,5365,5366,5367,5368,5369,5359,5370,5371,5372,5373,5374,5375,5376,5377,5378,5379,5380,5381,5382,5383,5384,5385,5386,5387,5388,5389,5390,5391,5392,5393,5394,5395,5396,5397,5398,5399,5400,5401,5402,5403,5404,5405,5406,5407,5408,5409,5410,5411,5412,5413,5414,5415,5416,5417,5418,5419,5420,5421,5422,5423,5424,5425,5426,5427,5428,5429,5430,5431,5432,5433,5434,5435,5436,5437,5438,5439,5440,5441,5442,5443,5444,5445,5446,5447,5448,5449,5450,5451,5452,5453,5454,5455,5456,5457,5458,5459,5460,5461,5462,5463,5464,5465,5466,5467,5468,5469,5470,5471,5472,5473,5474,5475,5476,5477,5478,5479,5480,5481,5482,5483,5484,5485,5486,5487,5488,5489,5490,5491,5492,5493,5494,5495,5496,5497,5498,5499,5497,5496,5500,5501,5502,5503,5504,5505,5506,5507,5508,5509,5510,5511,5512,5513,5514,5515,5516,5517,5518,5519,5520,5521,5522,5523,5524,5525,5526,5527,5528,5529,5530,5531,5532,5533,5534,5535,5536,5537,5538,5539,5540,5541,5542,5543,5544,5545,5546,5547,5548,5549,5550,5551,5552,5553,5554,5555,5556,5557,5558,5559,5560,5561,5562,5563,5564,5565,5566,5567,5568,5569,5570,5571,5572,5573,5574,5575,5576,5577,5578,5579,5580,5581,5582,5583,5584,5585,5586,5587,5585,5584,5588,5589,5590,5591,5592,5593,5594,5595,5596,5597,5598,5599,5600,5601,5602,5603,5604,5605,5606,5607,5608,5609,5610,5611,5612,5613,5614,5615,5616,5617,5618,5619,5620,5621,5622,5623,5624,5625,5626,5627,5628,5629,5630,5631,5632,5633,5634,5625,5635,5636,5637,5638,5639,5640,5641,5642,5643,5644,5645,5646,5647,5648,5649,5650,5651,5652,5653,5654,5655,5656,5657,5658,5659,5660,5661,5662,5663,5664,5665,5666,5667,5668,5669,5670,5671,5672,5673,5674,5675,5676,5674,5677,5675,5678,5679,5680,5681,5682,5683,5684,5685,5686,5687,5688,5689,5690,5691,5692,5693,5694,5695,5696,5697,5698,5699,5700,5701,5702,5703,5704,5705,5706,5707,5708,5709,5710,5711,5712,5713,5714,5715,5716,5717,5718,5719,5720,5721,5722,5723,5724,5725,5726,5727,5728,5729,5730,5731,5732,5733,5734,5735,5736,5737,5738,5739,5740,5741,5742,5743,5744,5745,5746,5747,5748,5749,5750,5751,5752,5753,5754,5755,5756,5757,5758,5759,5754,5753,5759,5760,5754,5761,5762,5763,5764,5765,5766,5767,5768,5769,5770,5771,5772,5773,5774,5775,5776,5777,5778,5779,5780,5781,5782,5783,5784,5785,5786,5787,5788,5789,5790,5791,5792,5793,5794,5795,5796,5797,5798,5799,5800,5801,5802,5803,5804,5805,5806,5807,5808,5809,5810,5811,5812,5813,5814,5815,5816,5817,5818,5819,5820,5821,5822,5823,5824,5825,5826,5827,5828,5829,5830,5831,5832,5833,5834,5835,5836,5837,5838,5839,5840,5841,5842,5843,5844,5845,5846,5847,5848,5849,5850,5851,5852,5853,5854,5855,5856,5857,5858,5859,5860,5861,5862,5863,5864,5865,5866,5867,5868,5869,5870,5871,5872,5873,5874,5875,5870,5869,5876,5877,5878,5879,5880,5881,5882,5883,5884,5885,5886,5887,5888,5889,5890,5891,5892,5893,5894,5895,5896,5897,5898,5899,5900,5901,5902,5903,5904,5905,5906,5907,5908,5909,5910,5911,5912,5913,5914,5915,5916,5917,5918,5919,5920,5921,5922,5923,5924,5925,5926,5927,5928,5929,5930,5931,5932,5933,5934,5935,5936,5937,5938,5939,5940,5941,5942,5943,5944,5945,5946,5947,5948,5949,5950,5951,5952,5953,5954,5955,5956,5957,5958,5959,5960,5961,5962,5963,5964,5965,5966,5967,5968,5969,5970,5971,5972,5973,5974,5975,5976,5977,5978,5979,5980,5981,5982,5983,5984,5985,5986,5987,5988,5989,5987,5990,5988,5991,5992,5993,5994,5995,5996,5997,5998,5999,6000,6001,6002,6003,6004,6005,6006,6007,6008,6009,6010,6011,6012,6013,6014,6015,6016,6017,6018,6019,6020,6021,6022,6023,6024,6025,6026,6027,6028,6029,6030,6031,6032,6030,6033,6031,6034,6035,6036,6037,6038,6039,6040,6041,6042,6043,6044,6045,6046,6047,6048,6049,6050,6051,6052,6053,6054,6055,6056,6057,6058,6059,6060,6061,6062,6063,6064,6065,6066,6067,6068,6069,6070,6071,6072,6073,6074,6075,6076,6077,6078,6079,6080,6081,6082,6083,6084,6082,6085,6083,6086,6087,6088,6089,6090,6091,6092,6093,6094,6089,6095,6090,6096,6097,6098,6099,6100,6101,6102,6103,6104,6105,6106,6107,6108,6109,6110,6111,6112,6113,6114,6115,6116,6117,6118,6119,6120,6121,6108,6122,6123,6124,6125,6126,6127,6128,6129,6130,6131,6132,6133,6134,6135,6136,6137,6138,6139,6140,6141,6142,6143,6144,6145,6146,6138,6137,6147,6148,6149,6150,6144,6143,6151,6152,6153,6154,6155,6156,6157,6158,6159,6160,6161,6162,6163,6164,6165,6166,6167,6168,6169,6170,6171,6172,6173,6174,6175,6176,6177,6178,6179,6180,6181,6182,6183,6184,6185,6186,6187,6188,6189,6190,6191,6192,6193,6194,6195,6196,6197,6198,6199,6200,6201,6202,6203,6204,6205,6206,6207,6208,6209,6210,6211,6212,6213,6214,6215,6216,6217,6218,6219,6220,6221,6222,6223,6224,6225,6226,6227,6228,6229,6230,6231,6232,6233,6234,6235,6236,6237,6238,6239,6240,6241,6242,6243,6244,6245,6246,6247,6248,6249,6250,6251,6252,6253,6254,6255,6256,6257,6258,6259,6260,6261,6262,6263,6264,6265,6266,6267,6268,6269,6270,6271,6272,6273,6274,6275,6276,6277,6278,6279,6280,6281,6282,6283,6284,6285,6286,6287,6288,6289,6290,6291,6292,6293,6294,6295,6296,6297,6298,6299,6300,6301,6302,6303,6304,6305,6306,6307,6308,6309,6310,6311,6312,6313,6314,6315,6316,6317,6318,6319,6320,6321,6322,6323,6324,6298,6325,6326,6327,6328,6329,6330,6331,6332,6333,6334,6335,6336,6337,6338,6336,6339,6337,6340,6341,6342,6343,6344,6345,6346,6347,6348,6349,6350,6351,6352,6353,6354,6355,6356,6357,6358,6359,6360,6361,6362,6363,6364,6365,6366,6367,6368,6369,6370,6371,6372,6373,6374,6375,6376,6377,6378,6379,6380,6381,6382,6383,6384,6385,6386,6387,6385,6388,6386,6389,6390,6373,6391,6392,6393,6394,6395,6396,6397,6398,6399,6400,6401,6402,6403,6404,6405,6406,6407,6408,6409,6410,6411,6412,6413,6414,6415,6416,6417,6418,6416,6415,6419,6420,6421,6419,6422,6420,6423,6424,6425,6426,6427,6428,6429,6430,6431,6432,6433,6434,6435,6436,6437,6438,6439,6440,6441,6442,6443,6444,6445,6446,6447,6448,6449,6450,6451,6452,6453,6454,6455,6456,6457,6458,6459,6460,6461,6462,6463,6464,6465,6466,6467,6468,6469,6470,6471,6472,6473,6474,6475,6476,6477,6478,6479,6480,6481,6482,6483,6484,6485,6486,6487,6488,6489,6490,6491,6492,6493,6494,6495,6496,6497,6498,6499,6500,6501,6502,6503,6504,6505,6506,6507,6508,6509,6510,6511,6512,6513,6514,6515,6516,6517,6518,6519,6520,6521,6522,6523,6524,6525,6526,6527,6528,6529,6530,6531,6532,6533,6534,6535,6536,6537,6538,6539,6540,6541,6542,6543,6544,6545,6546,6547,6548,6549,6550,6551,6552,6553,6554,6555,6556,6557,6558,6559,6560,6561,6562,6563,6564,6565,6566,6567,6568,6569,6570,6568,6567,6571,6572,6573,6574,6575,6576,6577,6578,6579,6580,6581,6582,6583,6584,6585,6586,6587,6588,6589,6590,6591,6592,6593,6594,6595,6596,6597,6598,6599,6600,6601,6602,6603,6604,6605,6606,6607,6608,6609,6610,6611,6612,6613,6614,6615,6616,6617,6618,6619,6620,6621,6622,6623,6624,6625,6626,6627,6628,6629,6630,6631,6632,6633,6634,6635,6636,6637,6638,6639,6640,6641,6642,6643,6644,6645,6646,6647,6648,6649,6650,6651,6652,6653,6654,6655,6656,6657,6658,6659,6660,6661,6662,6663,6664,6665,6666,6667,6668,6669,6670,6671,6672,6673,6674,6655,6675,6676,6677,6678,6679,6680,6681,6682,6683,6684,6685,6686,6687,6688,6689,6690,6691,6692,6693,6694,6695,6696,6697,6698,6699,6700,6701,6702,6703,6704,6702,6705,6703,6706,6707,6708,6709,6710,6711,6712,6713,6714,6715,6716,6717,6718,6719,6720,6721,6722,6723,6724,6725,6726,6727,6728,6729,6730,6731,6732,6733,6734,6735,6736,6737,6738,6739,6740,6741,6742,6743,6744,6745,6746,6747,6748,6749,6750,6751,6752,6753,6754,6755,6756,6757,6758,6759,6760,6761,6762,6763,6764,6765,6766,6767,6768,6769,6770,6771,6772,6773,6774,6775,6776,6777,6778,6779,6780,6781,6782,6783,6784,6785,6786,6787,6788,6789,6790,6791,6792,6793,6794,6795,6796,6797,6798,6799,6800,6801,6802,6803,6804,6805,6806,6807,6808,6809,6810,6811,6812,6813,6814,6815,6816,6817,6818,6819,6820,6821,6822,6823,6824,6825,6826,6827,6828,6829,6830,6831,6832,6833,6834,6835,6836,6837,6838,6839,6840,6841,6842,6843,6844,6845,6846,6847,6848,6849,6850,6851,6852,6853,6854,6855,6856,6857,6858,6859,6860,6861,6862,6863,6864,6865,6866,6867,6868,6869,6870,6871,6872,6873,6874,6875,6876,6877,6878,6879,6880,6881,6882,6883,6884,6885,6886,6887,6888,6889,6890,6891,6892,6893,6894,6889,6895,6890,6896,6897,6898,6899,6900,6901,6902,6903,6904,6905,6906,6907,6908,6909,6910,6911,6906,6905,6912,6913,6914,6915,6916,6917,6918,6916,6915,6919,6920,6921,6922,6923,6924,6925,6926,6927,6928,6929,6930,6931,6932,6933,6934,6935,6936,6937,6938,6939,6940,6941,6942,6943,6944,6945,6946,6947,6948,6949,6950,6951,6952,6953,6954,6955,6956,6957,6958,6959,6960,6961,6962,6963,6964,6965,6966,6967,6968,6969,6970,6971,6972,6973,6974,6975,6976,6977,6978,6979,6980,6981,6982,6983,6984,6985,6986,6987,6988,6989,6990,6991,6992,6993,6994,6995,6996,6997,6998,6999,7000,7001,7002,7003,7004,7005,7006,7007,7008,7000,7009,7001,7010,7011,7012,7013,7014,7015,7016,7017,7018,7019,7020,7021,7022,7023,7024,7025,7026,7027,7028,7029,7030,7031,7032,7033,7034,7035,7036,7037,7038,7039,7040,7041,7042,7043,7044,7045,7046,7047,7032,7048,7049,7050,7051,7052,7053,7054,7055,7056,7057,7058,7059,7060,7061,7062,7063,7064,7065,7066,7067,7068,7069,7070,7071,7072,7073,7074,7075,7076,7077,7078,7079,7080,7081,7082,7083,7084,7085,7086,7087,7088,7089,7090,7091,7092,7093,7094,7095,7096,7097,7098,7099,7100,7101,7102,7103,7087,7104,7105,7106,7107,7108,7109,7110,7111,7112,7113,7114,7115,7116,7117,7118,7119,7120,7121,7122,7123,7124,7125,7126,7127,7128,7129,7130,7131,7132,7133,7134,7135,7136,7137,7138,7139,7140,7141,7142,7143,7144,7145,7146,7147,7148,7149,7150,7151,7152,7153,7154,7155,7156,7157,7158,7159,7160,7161,7162,7163,7164,7165,7166,7167,7168,7169,7170,7171,7172,7173,7174,7175,7176,7177,7178,7179,7180,7181,7182,7183,7184,7185,7186,7187,7188,7189,7190,7191,7192,7193,7194,7195,7196,7197,7198,7199,7200,7201,7202,7203,7204,7205,7206,7204,7203,7207,7208,7209,7210,7211,7212,7213,7214,7215,7216,7217,7218,7219,7220,7221,7222,7223,7224,7225,7226,7227,7228,7229,7230,7231,7232,7233,7234,7235,7236,7237,7238,7239,7240,7241,7242,7243,7244,7245,7246,7247,7248,7249,7250,7251,7252,7253,7254,7255,7256,7257,7258,7259,7260,7261,7262,7263,7264,7265,7266,7267,7268,7269,7270,7271,7272,7273,7274,7275,7276,7277,7278,7279,7280,7281,7282,7283,7284,7285,7286,7287,7288,7289,7290,7291,7292,7293,7294,7295,7296,7297,7298,7299,7300,7301,7302,7303,7304,7305,7306,7307,7308,7309,7310,7311,7312,7313,7314,7315,7316,7317,7318,7319,7320,7321,7322,7323,7324,7325,7326,7327,7328,7329,7330,7331,7332,7333,7334,7335,7336,7337,7338,7339,7340,7341,7342,7343,7344,7345,7346,7347,7348,7349,7350,7351,7352,7353,7354,7355,7356,7357,7358,7359,7360,7361,7362,7363,7364,7365,7366,7367,7368,7369,7370,7371,7372,7373,7374,7375,7376,7377,7378,7379,7380,7381,7382,7383,7384,7385,7386,7387,7388,7389,7390,7391,7392,7393,7394,7395,7396,7397,7398,7399,7400,7401,7402,7403,7404,7405,7406,7407,7408,7409,7410,7411,7412,7413,7414,7415,7416,7417,7418,7419,7420,7421,7422,7423,7424,7425,7426,7427,7428,7429,7430,7431,7432,7433,7434,7435,7436,7437,7438,7439,7440,7441,7442,7443,7444,7445,7446,7447,7448,7449,7450,7451,7452,7453,7454,7455,7456,7457,7458,7459,7460,7461,7462,7463,7464,7465,7466,7467,7468,7469,7470,7471,7472,7473,7474,7475,7476,7477,7478,7479,7480,7481,7482,7483,7484,7485,7486,7487,7488,7489,7490,7491,7492,7490,7489,7493,7494,7495,7496,7497,7498,7499,7500,7501,7502,7503,7504,7505,7506,7507,7508,7509,7510,7511,7512,7513,7514,7515,7516,7517,7518,7519,7520,7521,7522,7523,7524,7525,7526,7527,7528,7529,7530,7531,7532,7533,7534,7535,7536,7537,7538,7539,7540,7541,7542,7543,7544,7545,7546,7547,7548,7549,7550,7551,7552,7553,7554,7555,7556,7557,7558,7559,7560,7561,7562,7563,7564,7565,7566,7567,7568,7569,7570,7571,7572,7573,7574,7575,7576,7577,7578,7579,7580,7581,7582,7583,7584,7585,7586,7587,7588,7589,7590,7591,7592,7593,7594,7595,7596,7597,7598,7599,7600,7601,7602,7603,7604,7605,7606,7607,7608,7609,7610,7611,7612,7613,7614,7615,7616,7617,7618,7619,7620,7621,7622,7623,7624,7625,7626,7627,7628,7629,7630,7631,7632,7633,7634,7635,7636,7637,7638,7639,7634,7640,7641,7642,7643,7644,7645,7646,7647,7648,7649,7650,7651,7652,7653,7654,7655,7656,7657,7658,7659,7660,7661,7662,7663,7664,7665,7666,7667,7668,7669,7670,7671,7672,7673,7674,7675,7676,7677,7678,7679,7680,7681,7682,7683,7684,7685,7686,7687,7688,7689,7690,7691,7692,7693,7694,7695,7696,7697,7698,7699,7700,7701,7702,7703,7704,7705,7706,7707,7708,7709,7710,7711,7712,7713,7714,7715,7716,7717,7718,7719,7720,7721,7722,7723,7724,7725,7726,7727,7728,7729,7730,7731,7732,7733,7734,7735,7736,7737,7738,7739,7740,7741,7742,7743,7744,7745,7746,7747,7748,7749,7750,7751,7752,7753,7754,7755,7756,7757,7758,7759,7760,7761,7762,7763,7764,7765,7766,7767,7768,7769,7770,7771,7772,7773,7774,7775,7776,7777,7778,7779,7780,7781,7782,7783,7784,7785,7786,7787,7788,7789,7790,7791,7792,7793,7794,7795,7796,7797,7798,7799,7800,7801,7802,7803,7804,7805,7806,7807,7808,7809,7810,7811,7812,7813,7814,7815,7804,7816,7805,7817,7818,7819,7820,7821,7822,7823,7824,7825,7826,7827,7828,7829,7830,7831,7832,7833,7834,7835,7836,7837,7838,7839,7840,7841,7842,7843,7844,7845,7846,7844,7847,7845,7848,7849,7850,7851,7852,7853,7854,7855,7856,7857,7858,7859,7860,7861,7862,7863,7864,7865,7866,7867,7868,7869,7864,7863,7870,7871,7872,7873,7874,7875,7876,7877,7878,7879,7880,7881,7882,7883,7884,7885,7886,7887,7888,7889,7890,7891,7892,7893,7894,7895,7896,7897,7898,7899,7900,7901,7902,7903,7904,7905,7906,7907,7908,7909,7910,7911,7912,7913,7914,7915,7916,7917,7918,7919,7920,7921,7922,7923,7924,7925,7926,7927,7928,7929,7930,7931,7932,7933,7934,7935,7936,7937,7938,7939,7940,7941,7942,7943,7944,7945,7946,7947,7948,7949,7950,7951,7952,7953,7954,7955,7956,7957,7958,7959,7960,7961,7962,7963,7964,7965,7966,7967,7968,7969,7970,7971,7972,7973,7974,7975,7976,7977,7978,7979,7980,7981,7982,7983,7984,7985,7986,7987,7988,7989,7990,7991,7992,7993,7994,7995,7996,7997,7998,7999,8000,8001,8002,8003,8004,8005,8006,8007,8008,8009,8010,8011,8012,8013,8011,8014,8012,8015,8016,8017,8018,8019,8020,8021,8022,8023,8024,8025,8026,8027,8028,8029,8030,8031,8032,8033,8034,8035,8036,8037,8038,8039,8040,8041,8042,8043,8044,8045,8046,8047,8048,8049,8050,8051,8052,8053,8054,8055,8056,8057,8058,8059,8060,8061,8062,8063,8064,8065,8066,8067,8068,8069,8070,8071,8072,8073,8074,8075,8076,8077,8078,8079,8080,8081,8082,8083,8084,8085,8086,8087,8088,8089,8090,8091,8092,8093,8094,8095,8096,8097,8098,8099,8100,8101,8102,8103,8104,8105,8106,8107,8108,8109,8110,8111,8112,8113,8114,8115,8116,8117,8118,8119,8120,8121,8122,8123,8124,8125,8126,8127,8128,8129,8130,8131,8132,8133,8134,8135,8136,8137,8138,8139,8140,8141,8142,8143,8144,8145,8146,8147,8148,8149,8150,8151,8152,8153,8154,8155,8156,8157,8158,8159,8160,8161,8159,8162,8160,8163,8164,8165,8166,8167,8168,8169,8170,8171,8172,8173,8174,8175,8176,8177,8178,8179,8180,8181,8182,8183,8184,8185,8186,8187,8188,8189,8190,8191,8192,8193,8194,8195,8193,8196,8194,8197,8198,8199,8200,8201,8202,8203,8204,8205,8206,8207,8208,8209,8207,8206,8210,8211,8212,8209,8213,8207,8214,8215,8216,8217,8218,8219,8220,8221,8222,8223,8224,8225,8226,8227,8228,8229,8230,8231,8232,8233,8234,8235,8236,8237,8238,8239,8240,8241,8242,8243,8244,8245,8246,8247,8248,8249,8250,8251,8252,8253,8254,8255,8256,8257,8245,8258,8259,8260,8261,8262,8263,8264,8265,8266,8267,8268,8269,8270,8271,8272,8273,8274,8275,8276,8277,8278,8279,8280,8281,8282,8283,8284,8285,8286,8287,8288,8289,8290,8291,8292,8293,8294,8295,8296,8297,8298,8299,8300,8301,8302,8303,8304,8305,8306,8307,8308,8309,8310,8311,8312,8313,8314,8315,8316,8317,8318,8319,8320,8321,8322,8323,8324,8325,8326,8327,8328,8329,8330,8331,8332,8333,8334,8335,8336,8337,8338,8339,8340,8341,8342,8343,8344,8345,8346,8347,8348,8349,8350,8351,8352,8353,8354,8355,8356,8357,8358,8359,8360,8361,8362,8363,8364,8365,8366,8367,8368,8369,8370,8371,8372,8373,8374,8375,8376,8377,8378,8379,8380,8381,8382,8383,8384,8385,8386,8387,8388,8389,8390,8391,8392,8393,8394,8395,8396,8397,8398,8399,8400,8401,8402,8403,8404,8396,8405,8397,8406,8407,8408,8409,8410,8411,8412,8413,8414,8415,8416,8417,8418,8419,8420,8421,8422,8423,8424,8425,8426,8427,8428,8429,8430,8431,8432,8433,8434,8435,8436,8437,8438,8439,8440,8441,8442,8443,8444,8439,8445,8440,8446,8447,8448,8449,8450,8451,8452,8453,8454,8455,8456,8457,8458,8459,8460,8461,8462,8463,8464,8465,8466,8467,8468,8469,8470,8471,8472,8473,8474,8475,8476,8477,8478,8479,8480,8481,8482,8483,8484,8485,8486,8487,8488,8489,8490,8491,8492,8493,8494,8495,8496,8497,8498,8499,8500,8501,8502,8503,8504,8505,8506,8507,8508,8509,8510,8511,8512,8513,8514,8515,8516,8517,8518,8519,8520,8521,8522,8523,8524,8525,8526,8527,8528,8529,8530,8531,8532,8533,8534,8535,8536,8537,8538,8539,8540,8541,8542,8543,8544,8545,8546,8547,8548,8549,8550,8551,8552,8553,8554,8555,8556,8557,8558,8559,8560,8561,8562,8563,8564,8565,8566,8567,8568,8569,8570,8571,8572,8573,8574,8575,8576,8577,8578,8579,8580,8581,8582,8583,8584,8585,8586,8587,8588,8589,8590,8591,8592,8593,8594,8595,8596,8597,8598,8599,8600,8601,8602,8603,8604,8605,8606,8607,8608,8609,8610,8611,8612,8613,8614,8615,8616,8617,8618,8619,8620,8621,8622,8623,8624,8625,8626,8627,8628,8629,8630,8631,8632,8633,8634,8635,8636,8637,8638,8639,8640,8641,8642,8643,8644,8645,8646,8647,8648,8649,8650,8651,8652,8653,8654,8655,8656,8657,8658,8659,8660,8661,8662,8663,8664,8665,8666,8667,8668,8669,8670,8671,8672,8673,8674,8675,8676,8677,8678,8679,8680,8681,8682,8683,8684,8685,8686,8687,8688,8689,8690,8691,8692,8693,8694,8695,8696,8697,8698,8699,8700,8701,8693,8692,8702,8703,8704,8705,8706,8707,8708,8709,8710,8711,8712,8713,8714,8715,8716,8717,8718,8719,8720,8721,8722,8723,8724,8725,8726,8727,8728,8729,8730,8731,8732,8733,8734,8735,8736,8737,8738,8739,8740,8741,8742,8743,8744,8745,8746,8747,8748,8749,8750,8751,8752,8753,8754,8755,8756,8757,8758,8759,8760,8761,8762,8763,8764,8765,8766,8767,8768,8769,8770,8771,8772,8773,8774,8775,8776,8777,8778,8779,8780,8781,8782,8783,8784,8785,8786,8787,8788,8789,8790,8791,8792,8793,8794,8795,8796,8797,8798,8799,8800,8801,8802,8803,8804,8805,8806,8807,8808,8809,8810,8811,8812,8813,8814,8815,8816,8817,8818,8819,8820,8821,8822,8823,8824,8825,8826,8827,8828,8829,8830,8831,8832,8833,8834,8835,8836,8837,8838,8839,8840,8841,8842,8843,8844,8845,8846,8847,8848,8849,8850,8851,8852,8853,8854,8855,8856,8857,8858,8859,8860,8861,8862,8863,8864,8865,8866,8867,8868,8869,8870,8871,8872,8873,8874,8875,8876,8877,8878,8879,8880,8881,8879,8882,8880,8883,8884,8885,8886,8887,8888,8889,8890,8891,8892,8893,8894,8895,8896,8897,8898,8899,8900,8901,8902,8903,8904,8905,8906,8907,8908,8909,8910,8911,8912,8913,8914,8915,8916,8917,8918,8919,8917,8916,8920,8921,8922,8923,8924,8925,8926,8927,8928,8929,8930,8931,8932,8924,8923,8933,8934,8935,8936,8937,8938,8939,8940,8941,8942,8943,8944,8945,8946,8947,8948,8949,8950,8951,8952,8953,8954,8955,8956,8957,8958,8959,8960,8961,8962,8963,8964,8965,8966,8967,8968,8969,8970,8971,8972,8973,8974,8975,8976,8977,8978,8979,8980,8981,8982,8983,8984,8985,8986,8987,8988,8989,8990,8991,8992,8993,8994,8995,8996,8997,8998,8999,9000,9001,9002,9003,9004,9005,9006,9007,9008,9009,9010,9011,9012,9013,9014,9015,9016,9017,9018,9019,9020,9021,9022,9023,9024,9025,9026,9027,9028,9029,9030,9031,9032,9033,9034,9035,9036,9037,9038,9039,9040,9041,9042,9043,9044,9045,9046,9047,9048,9049,9050,9051,9052,9053,9054,9055,9056,9051,9050,9057,9058,9059,9060,9058,9057,9061,9062,9063,9064,9065,9066,9067,9068,9069,9070,9071,9072,9073,9074,9075,9076,9077,9078,9079,9080,9081,9082,9083,9084,9085,9086,9087,9088,9089,9090,9091,9092,9093,9094,9095,9096,9097,9098,9099,9100,9101,9102,9103,9104,9105,9106,9107,9108,9109,9110,9111,9112,9113,9114,9115,9116,9117,9118,9119,9120,9121,9122,9123,9124,9125,9126,9127,9128,9129,9130,9131,9132,9133,9134,9135,9136,9137,9138,9139,9140,9141,9142,9143,9144,9145,9146,9147,9148,9149,9150,9151,9152,9153,9154,9155,9156,9157,9158,9159,9160,9161,9162,9163,9164,9165,9166,9167,9168,9169,9170,9171,9172,9173,9174,9175,9176,9177,9178,9179,9180,9181,9182,9183,9184,9185,9186,9187,9188,9189,9190,9191,9192,9193,9194,9195,9196,9197,9198,9199,9200,9201,9202,9203,9204,9205,9206,9207,9208,9209,9210,9211,9212,9213,9214,9215,9216,9217,9218,9219,9220,9221,9222,9223,9224,9225,9226,9227,9228,9229,9230,9231,9232,9233,9234,9235,9236,9237,9238,9239,9240,9241,9242,9243,9244,9245,9246,9247,9248,9249,9250,9251,9252,9253,9254,9255,9256,9257,9258,9259,9260,9261,9262,9263,9264,9265,9266,9267,9268,9269,9270,9271,9272,9273,9274,9275,9276,9277,9278,9279,9280,9281,9282,9283,9284,9285,9286,9287,9288,9289,9290,9291,9292,9293,9294,9295,9296,9297,9298,9299,9300,9301,9302,9303,9304,9305,9306,9307,9308,9309,9310,9311,9312,9313,9314,9315,9316,9317,9318,9319,9320,9321,9322,9323,9324,9325,9326,9327,9328,9326,9325,9329,9330,9331,9332,9333,9334,9335,9336,9337,9338,9339,9340,9341,9342,9343,9344,9345,9346,9347,9348,9349,9350,9351,9352,9353,9354,9355,9356,9357,9358,9359,9360,9361,9362,9363,9364,9365,9366,9367,9368,9369,9370,9371,9372,9373,9374,9375,9376,9377,9378,9379,9380,9381,9382,9383,9384,9385,9386,9387,9388,9389,9390,9391}; -const GLsizeiptr gameover_numind = 9630; -const GLsizeiptr gameover_numvert = 9392; +/* + Fonts used in the End Game Screen from top to bottom order. + + Fontasy Penguin: + license: Freeware, Non-Commercial + link: https://www.fontspace.com/fontasy-penguin-font-f4848 + By FontasyLand: https://www.fontspace.com/fontasyland + + Plastic Love: + license: Freeware, commercial use requires donation + link: https://www.fontspace.com/plastic-love-font-f49676 + By Azkarizki: https://www.fontspace.com/azkarizki + + Allay Font: + license: Freeware, Non-Commercial + link: https://www.fontspace.com/allay-font-f66225 + By Abahrozi: https://twinletter.com/ +*/ + +const GLfloat gameover_vertices[] = {1.90818,-2.6978,1.57183,1.97957,-2.69931,1.56984,1.94893,-2.69677,1.57319,1.86966,-2.70314,1.56478,1.97957,-2.69931,1.56984,1.90818,-2.6978,1.57183,1.86966,-2.70314,1.56478,2.00995,-2.70433,1.56321,1.97957,-2.69931,1.56984,1.84349,-2.70995,1.5558,2.00995,-2.70433,1.56321,1.86966,-2.70314,1.56478,1.84349,-2.70995,1.5558,1.94334,-2.7097,1.55613,2.00995,-2.70433,1.56321,1.94334,-2.7097,1.55613,2.03862,-2.71224,1.55277,2.00995,-2.70433,1.56321,1.97002,-2.71072,1.55479,2.03862,-2.71224,1.55277,1.94334,-2.7097,1.55613,1.84349,-2.70995,1.5558,1.93694,-2.70999,1.55576,1.94334,-2.7097,1.55613,1.82712,-2.7158,1.54809,1.91814,-2.71038,1.55524,1.84349,-2.70995,1.5558,1.91814,-2.71038,1.55524,1.93694,-2.70999,1.55576,1.84349,-2.70995,1.5558,1.82712,-2.7158,1.54809,1.89231,-2.71239,1.55258,1.91814,-2.71038,1.55524,2.0025,-2.71568,1.54824,2.03862,-2.71224,1.55277,1.97002,-2.71072,1.55479,2.0025,-2.71568,1.54824,2.06549,-2.72243,1.53934,2.03862,-2.71224,1.55277,1.82712,-2.7158,1.54809,1.86408,-2.71761,1.54569,1.89231,-2.71239,1.55258,1.81218,-2.72273,1.53894,1.86408,-2.71761,1.54569,1.82712,-2.7158,1.54809,2.03285,-2.72432,1.53684,2.06549,-2.72243,1.53934,2.0025,-2.71568,1.54824,1.91692,-2.71926,1.54351,1.95809,-2.7195,1.54321,1.93967,-2.71862,1.54436,1.83201,-2.72928,1.53029,1.89139,-2.72238,1.5394,1.95809,-2.7195,1.54321,1.91692,-2.71926,1.54351,1.89139,-2.72238,1.5394,1.97351,-2.72153,1.54052,1.95809,-2.7195,1.54321,1.89139,-2.72238,1.5394,1.97652,-2.7237,1.53766,1.97351,-2.72153,1.54052,1.79892,-2.73074,1.52837,1.83201,-2.72928,1.53029,1.81218,-2.72273,1.53894,1.86738,-2.72793,1.53207,1.97652,-2.7237,1.53766,1.89139,-2.72238,1.5394,1.86738,-2.72793,1.53207,1.97699,-2.727,1.5333,1.97652,-2.7237,1.53766,2.03285,-2.72432,1.53684,2.09605,-2.73965,1.51661,2.06549,-2.72243,1.53934,1.99001,-2.72824,1.53167,2.00032,-2.72607,1.53453,1.99497,-2.72614,1.53444,1.86738,-2.72793,1.53207,1.91891,-2.72851,1.53131,1.97699,-2.727,1.5333,1.91891,-2.72851,1.53131,1.9436,-2.72797,1.53203,1.97699,-2.727,1.5333,1.99001,-2.72824,1.53167,2.00518,-2.72855,1.53126,2.00032,-2.72607,1.53453,2.05956,-2.73636,1.52096,2.09605,-2.73965,1.51661,2.03285,-2.72432,1.53684,1.96821,-2.72943,1.53009,1.97699,-2.727,1.5333,1.9436,-2.72797,1.53203,1.96821,-2.72943,1.53009,1.97247,-2.7297,1.52974,1.97699,-2.727,1.5333,1.86738,-2.72793,1.53207,1.89601,-2.73122,1.52774,1.91891,-2.72851,1.53131,1.79892,-2.73074,1.52837,1.8118,-2.74104,1.51477,1.83201,-2.72928,1.53029,1.96858,-2.72996,1.5294,1.97247,-2.7297,1.52974,1.96821,-2.72943,1.53009,1.84548,-2.7359,1.52156,1.89601,-2.73122,1.52774,1.86738,-2.72793,1.53207,1.99001,-2.72824,1.53167,2.0058,-2.73182,1.52695,2.00518,-2.72855,1.53126,1.98917,-2.73183,1.52693,2.0058,-2.73182,1.52695,1.99001,-2.72824,1.53167,1.78758,-2.73985,1.51635,1.8118,-2.74104,1.51477,1.79892,-2.73074,1.52837,1.84548,-2.7359,1.52156,1.87445,-2.73607,1.52134,1.89601,-2.73122,1.52774,1.98917,-2.73183,1.52693,2.00381,-2.73409,1.52394,2.0058,-2.73182,1.52695,1.99122,-2.7341,1.52394,2.00381,-2.73409,1.52394,1.98917,-2.73183,1.52693,1.99122,-2.7341,1.52394,1.99982,-2.73558,1.52198,2.00381,-2.73409,1.52394,1.99497,-2.73546,1.52214,1.99982,-2.73558,1.52198,1.99122,-2.7341,1.52394,1.84548,-2.7359,1.52156,1.85475,-2.74305,1.51213,1.87445,-2.73607,1.52134,1.82629,-2.74622,1.50794,1.85475,-2.74305,1.51213,1.84548,-2.7359,1.52156,2.08117,-2.75148,1.50101,2.09605,-2.73965,1.51661,2.05956,-2.73636,1.52096,1.7784,-2.75006,1.50288,1.8118,-2.74104,1.51477,1.78758,-2.73985,1.51635,1.7784,-2.75006,1.50288,1.79733,-2.75428,1.4973,1.8118,-2.74104,1.51477,2.11387,-2.75489,1.4965,1.82629,-2.74622,1.50794,1.8374,-2.75214,1.50013,1.85475,-2.74305,1.51213,1.81419,-2.75552,1.49567,1.8374,-2.75214,1.50013,1.82629,-2.74622,1.50794,1.77164,-2.76137,1.48796,1.79733,-2.75428,1.4973,1.7784,-2.75006,1.50288,1.77164,-2.76137,1.48796,1.7884,-2.76854,1.47849,1.79733,-2.75428,1.4973,1.81419,-2.75552,1.49567,1.82637,-2.76036,1.48928,1.8374,-2.75214,1.50013,2.12348,-2.76617,1.48162,1.80614,-2.76377,1.48479,1.82637,-2.76036,1.48928,1.81419,-2.75552,1.49567,2.0964,-2.76959,1.4771,1.80614,-2.76377,1.48479,1.81865,-2.76766,1.47965,1.82637,-2.76036,1.48928,1.76754,-2.77379,1.47157,1.7884,-2.76854,1.47849,1.77164,-2.76137,1.48796,1.91078,-2.76322,1.48552,1.94921,-2.76064,1.48891,1.92714,-2.76075,1.48877,1.91078,-2.76322,1.48552,1.96934,-2.76406,1.4844,1.94921,-2.76064,1.48891,1.90013,-2.76651,1.48117,1.96934,-2.76406,1.4844,1.91078,-2.76322,1.48552,1.90013,-2.76651,1.48117,1.9817,-2.76813,1.47903,1.96934,-2.76406,1.4844,1.80692,-2.76662,1.48103,1.81865,-2.76766,1.47965,1.80614,-2.76377,1.48479,2.0964,-2.76959,1.4771,2.13281,-2.78231,1.46032,2.12348,-2.76617,1.48162,1.89126,-2.77071,1.47563,1.9817,-2.76813,1.47903,1.81019,-2.76873,1.47824,1.81865,-2.76766,1.47965,1.80692,-2.76662,1.48103,1.81019,-2.76873,1.47824,1.81504,-2.76889,1.47802,1.81865,-2.76766,1.47965,1.76754,-2.77379,1.47157,1.78481,-2.78337,1.45892,1.7884,-2.76854,1.47849,1.89126,-2.77071,1.47563,1.99427,-2.77536,1.46949,1.9817,-2.76813,1.47903,1.88518,-2.7763,1.46825,1.99427,-2.77536,1.46949,1.89126,-2.77071,1.47563,1.76613,-2.79063,1.44935,1.78481,-2.78337,1.45892,1.76754,-2.77379,1.47157,2.10316,-2.78781,1.45307,2.13281,-2.78231,1.46032,2.0964,-2.76959,1.4771,1.8826,-2.78146,1.46144,1.99427,-2.77536,1.46949,1.88518,-2.7763,1.46825,1.8826,-2.78146,1.46144,1.951,-2.78072,1.46242,1.99427,-2.77536,1.46949,1.951,-2.78072,1.46242,1.96358,-2.78097,1.4621,1.99427,-2.77536,1.46949,1.96358,-2.78097,1.4621,2.00178,-2.78595,1.45552,1.99427,-2.77536,1.46949,1.8826,-2.78146,1.46144,1.93415,-2.78234,1.46028,1.951,-2.78072,1.46242,1.97384,-2.78297,1.45945,2.00178,-2.78595,1.45552,1.96358,-2.78097,1.4621,1.88233,-2.78827,1.45246,1.93415,-2.78234,1.46028,1.8826,-2.78146,1.46144,1.76613,-2.79063,1.44935,1.78634,-2.79832,1.4392,1.78481,-2.78337,1.45892,1.88233,-2.78827,1.45246,1.92353,-2.78496,1.45682,1.93415,-2.78234,1.46028,1.98031,-2.78697,1.45417,2.00178,-2.78595,1.45552,1.97384,-2.78297,1.45945,1.88233,-2.78827,1.45246,1.91678,-2.78851,1.45214,1.92353,-2.78496,1.45682,2.10366,-2.79999,1.43699,2.13281,-2.78231,1.46032,2.10316,-2.78781,1.45307,2.10366,-2.79999,1.43699,2.13737,-2.80156,1.43491,2.13281,-2.78231,1.46032,1.98118,-2.79482,1.44382,2.00178,-2.78595,1.45552,1.98031,-2.78697,1.45417,1.88233,-2.78827,1.45246,1.91529,-2.79356,1.44548,1.91678,-2.78851,1.45214,1.98118,-2.79482,1.44382,2.00229,-2.79588,1.44241,2.00178,-2.78595,1.45552,1.88554,-2.79534,1.44313,1.91529,-2.79356,1.44548,1.88233,-2.78827,1.45246,1.88554,-2.79534,1.44313,1.91733,-2.79817,1.4394,1.91529,-2.79356,1.44548,1.77118,-2.81179,1.42142,1.78634,-2.79832,1.4392,1.76613,-2.79063,1.44935,1.89179,-2.8024,1.43381,1.91733,-2.79817,1.4394,1.88554,-2.79534,1.44313,1.77118,-2.81179,1.42142,1.79279,-2.81293,1.41992,1.78634,-2.79832,1.4392,1.99999,-2.80479,1.43066,1.97716,-2.80502,1.43036,1.99999,-2.80479,1.43066,1.98118,-2.79482,1.44382,1.89179,-2.8024,1.43381,1.92202,-2.80244,1.43376,1.91733,-2.79817,1.4394,2.10054,-2.81093,1.42256,1.89179,-2.8024,1.43381,1.93249,-2.80785,1.42663,1.92202,-2.80244,1.43376,1.90163,-2.80975,1.42411,1.93249,-2.80785,1.42663,1.89179,-2.8024,1.43381,1.97213,-2.80915,1.42491,1.99999,-2.80479,1.43066,1.97716,-2.80502,1.43036,1.97213,-2.80915,1.42491,1.994,-2.81302,1.41979,1.99999,-2.80479,1.43066,2.10054,-2.81093,1.42256,2.13518,-2.8164,1.41535,2.13737,-2.80156,1.43491,1.90163,-2.80975,1.42411,1.94587,-2.8112,1.4222,1.93249,-2.80785,1.42663,1.96564,-2.81147,1.42185,1.994,-2.81302,1.41979,1.97213,-2.80915,1.42491,2.09435,-2.82081,1.40952,2.13518,-2.8164,1.41535,2.10054,-2.81093,1.42256,1.91597,-2.81685,1.41475,1.94587,-2.8112,1.4222,1.90163,-2.80975,1.42411,1.91597,-2.81685,1.41475,1.95621,-2.8124,1.42062,1.94587,-2.8112,1.4222,1.95621,-2.8124,1.42062,1.994,-2.81302,1.41979,1.96564,-2.81147,1.42185,1.91597,-2.81685,1.41475,1.994,-2.81302,1.41979,1.95621,-2.8124,1.42062,1.77118,-2.81179,1.42142,1.80397,-2.82674,1.40169,1.79279,-2.81293,1.41992,1.91597,-2.81685,1.41475,1.98445,-2.82162,1.40845,1.994,-2.81302,1.41979,1.78385,-2.83138,1.39557,1.80397,-2.82674,1.40169,1.77118,-2.81179,1.42142,2.09435,-2.82081,1.40952,2.13095,-2.82622,1.40239,2.13518,-2.8164,1.41535,1.93892,-2.82283,1.40685,1.98445,-2.82162,1.40845,1.91597,-2.81685,1.41475,2.08197,-2.83311,1.39329,1.93892,-2.82283,1.40685,1.95485,-2.82448,1.40468,1.98445,-2.82162,1.40845,1.93949,-2.83262,1.39393,1.98445,-2.82162,1.40845,1.95485,-2.82448,1.40468,1.93949,-2.83262,1.39393,1.96308,-2.8351,1.39066,1.98445,-2.82162,1.40845,1.78385,-2.83138,1.39557,1.81965,-2.83931,1.3851,1.80397,-2.82674,1.40169,2.08197,-2.83311,1.39329,2.12135,-2.83932,1.38509,2.13095,-2.82622,1.40239,1.8043,-2.84895,1.37238,1.81965,-2.83931,1.3851,1.78385,-2.83138,1.39557,1.91823,-2.84556,1.37687,1.96308,-2.8351,1.39066,1.93949,-2.83262,1.39393,2.05997,-2.84764,1.37411,2.12135,-2.83932,1.38509,2.08197,-2.83311,1.39329,1.8043,-2.84895,1.37238,1.83965,-2.85019,1.37076,1.81965,-2.83931,1.3851,1.91823,-2.84556,1.37687,1.92886,-2.85578,1.36338,1.96308,-2.8351,1.39066,2.05997,-2.84764,1.37411,2.10268,-2.8545,1.36506,2.12135,-2.83932,1.38509,1.8043,-2.84895,1.37238,1.86375,-2.85891,1.35925,1.83965,-2.85019,1.37076,1.90446,-2.85596,1.36313,1.92886,-2.85578,1.36338,1.91823,-2.84556,1.37687,1.82522,-2.86052,1.35712,1.86375,-2.85891,1.35925,1.8043,-2.84895,1.37238,2.01511,-2.87257,1.34123,2.10268,-2.8545,1.36506,2.05997,-2.84764,1.37411,1.89429,-2.86543,1.35064,1.92886,-2.85578,1.36338,1.90446,-2.85596,1.36313,1.82522,-2.86052,1.35712,1.89246,-2.86535,1.35075,1.86375,-2.85891,1.35925,2.01511,-2.87257,1.34123,2.08257,-2.86691,1.34868,2.10268,-2.8545,1.36506,1.84998,-2.87058,1.34384,1.89246,-2.86535,1.35075,1.82522,-2.86052,1.35712,1.89429,-2.86543,1.35064,1.91175,-2.86992,1.34471,1.92886,-2.85578,1.36338,1.84998,-2.87058,1.34384,1.89429,-2.86543,1.35064,1.89246,-2.86535,1.35075,1.84998,-2.87058,1.34384,1.91175,-2.86992,1.34471,1.89429,-2.86543,1.35064,1.84998,-2.87058,1.34384,1.90124,-2.88204,1.32873,1.91175,-2.86992,1.34471,2.01511,-2.87257,1.34123,2.04314,-2.88872,1.31992,2.08257,-2.86691,1.34868,1.88033,-2.87881,1.33298,1.90124,-2.88204,1.32873,1.84998,-2.87058,1.34384,1.99447,-2.88701,1.32217,2.04314,-2.88872,1.31992,2.01511,-2.87257,1.34123,1.87571,-2.88684,1.3224,1.90124,-2.88204,1.32873,1.88033,-2.87881,1.33298,1.87571,-2.88684,1.3224,1.89396,-2.89509,1.3115,1.90124,-2.88204,1.32873,1.98381,-2.89719,1.30873,2.04314,-2.88872,1.31992,1.99447,-2.88701,1.32217,1.8703,-2.90114,1.30352,1.89396,-2.89509,1.3115,1.87571,-2.88684,1.3224,1.98381,-2.89719,1.30873,2.02615,-2.90002,1.305,2.04314,-2.88872,1.31992,1.8703,-2.90114,1.30352,1.8899,-2.9095,1.29249,1.89396,-2.89509,1.3115,1.97569,-2.90978,1.29213,2.02615,-2.90002,1.305,1.98381,-2.89719,1.30873,1.97569,-2.90978,1.29213,2.01411,-2.91133,1.29008,2.02615,-2.90002,1.305,1.86789,-2.91411,1.28641,1.8899,-2.9095,1.29249,1.8703,-2.90114,1.30352,1.86789,-2.91411,1.28641,1.88906,-2.92179,1.27627,1.8899,-2.9095,1.29249,1.9722,-2.92219,1.27574,2.01411,-2.91133,1.29008,1.97569,-2.90978,1.29213,1.9722,-2.92219,1.27574,2.00534,-2.92764,1.26856,2.01411,-2.91133,1.29008,1.86755,-2.9225,1.27534,1.88906,-2.92179,1.27627,1.86789,-2.91411,1.28641,1.86755,-2.9225,1.27534,1.9722,-2.92219,1.27574,1.88906,-2.92179,1.27627,1.86755,-2.9225,1.27534,2.00534,-2.92764,1.26856,1.9722,-2.92219,1.27574,1.85053,-2.92906,1.26669,2.00534,-2.92764,1.26856,1.86755,-2.9225,1.27534,1.92837,-2.9285,1.26742,2.00534,-2.92764,1.26856,1.85053,-2.92906,1.26669,1.85053,-2.92906,1.26669,1.90377,-2.92876,1.26708,1.92837,-2.9285,1.26742,1.85053,-2.92906,1.26669,1.88305,-2.93214,1.26262,1.90377,-2.92876,1.26708,1.94777,-2.93171,1.26318,2.00534,-2.92764,1.26856,1.92837,-2.9285,1.26742,1.83599,-2.93797,1.25493,1.88305,-2.93214,1.26262,1.85053,-2.92906,1.26669,1.95969,-2.93548,1.25821,2.00534,-2.92764,1.26856,1.94777,-2.93171,1.26318,1.86354,-2.93895,1.25363,1.95969,-2.93548,1.25821,2.00253,-2.94285,1.24848,2.00534,-2.92764,1.26856,1.97003,-2.94063,1.25141,2.00253,-2.94285,1.24848,1.95969,-2.93548,1.25821,1.82687,-2.94672,1.24338,1.86354,-2.93895,1.25363,1.83599,-2.93797,1.25493,1.82687,-2.94672,1.24338,1.84845,-2.9493,1.23998,1.86354,-2.93895,1.25363,1.98066,-2.94935,1.2399,2.00253,-2.94285,1.24848,1.97003,-2.94063,1.25141,1.98066,-2.94935,1.2399,2.0091,-2.94921,1.24009,2.00253,-2.94285,1.24848,1.82072,-2.95639,1.23062,1.84845,-2.9493,1.23998,1.82687,-2.94672,1.24338,1.82072,-2.95639,1.23062,1.84008,-2.96244,1.22264,1.84845,-2.9493,1.23998,1.98066,-2.94935,1.2399,2.0163,-2.95876,1.22749,2.0091,-2.94921,1.24009,1.98616,-2.96002,1.22583,2.0163,-2.95876,1.22749,1.98066,-2.94935,1.2399,1.8176,-2.9666,1.21714,1.84008,-2.96244,1.22264,1.82072,-2.95639,1.23062,1.98636,-2.96948,1.21334,2.0163,-2.95876,1.22749,1.98616,-2.96002,1.22583,1.98636,-2.96948,1.21334,2.01965,-2.97132,1.21092,2.0163,-2.95876,1.22749,1.8176,-2.9666,1.21714,1.83895,-2.97677,1.20372,1.84008,-2.96244,1.22264,1.81755,-2.97699,1.20344,1.83895,-2.97677,1.20372,1.8176,-2.9666,1.21714,1.98261,-2.97872,1.20115,2.01965,-2.97132,1.21092,1.98636,-2.96948,1.21334,1.98261,-2.97872,1.20115,2.01651,-2.98698,1.19025,2.01965,-2.97132,1.21092,1.82195,-2.99016,1.18606,1.83895,-2.97677,1.20372,1.81755,-2.97699,1.20344,1.82195,-2.99016,1.18606,1.84562,-2.99038,1.18576,1.83895,-2.97677,1.20372,1.97531,-2.98739,1.18971,2.01651,-2.98698,1.19025,1.98261,-2.97872,1.20115,1.96489,-2.99514,1.17949,2.01651,-2.98698,1.19025,1.97531,-2.98739,1.18971,1.96489,-2.99514,1.17949,2.00667,-3.00072,1.17212,2.01651,-2.98698,1.19025,1.82195,-2.99016,1.18606,1.85601,-2.99881,1.17465,1.84562,-2.99038,1.18576,1.83345,-3.00333,1.16868,1.85601,-2.99881,1.17465,1.82195,-2.99016,1.18606,1.94966,-3.00249,1.16979,2.00667,-3.00072,1.17212,1.96489,-2.99514,1.17949,1.83345,-3.00333,1.16868,1.86562,-3.00353,1.16842,1.85601,-2.99881,1.17465,1.83345,-3.00333,1.16868,1.8775,-3.00712,1.16367,1.86562,-3.00353,1.16842,1.94966,-3.00249,1.16979,1.99127,-3.01248,1.15661,2.00667,-3.00072,1.17212,1.93361,-3.00725,1.1635,1.99127,-3.01248,1.15661,1.94966,-3.00249,1.16979,1.8508,-3.01519,1.15303,1.8775,-3.00712,1.16367,1.83345,-3.00333,1.16868,1.8508,-3.01519,1.15303,1.89177,-3.00939,1.16068,1.8775,-3.00712,1.16367,1.91938,-3.00958,1.16043,1.99127,-3.01248,1.15661,1.93361,-3.00725,1.1635,1.8508,-3.01519,1.15303,1.90312,-3.01023,1.15958,1.89177,-3.00939,1.16068,1.90312,-3.01023,1.15958,1.99127,-3.01248,1.15661,1.91938,-3.00958,1.16043,1.8508,-3.01519,1.15303,1.99127,-3.01248,1.15661,1.90312,-3.01023,1.15958,1.8508,-3.01519,1.15303,1.97152,-3.02175,1.14437,1.99127,-3.01248,1.15661,1.87282,-3.02409,1.14129,1.97152,-3.02175,1.14437,1.8508,-3.01519,1.15303,1.87282,-3.02409,1.14129,1.94867,-3.02805,1.13607,1.97152,-3.02175,1.14437,1.89237,-3.02877,1.13511,1.94867,-3.02805,1.13607,1.87282,-3.02409,1.14129,1.89237,-3.02877,1.13511,1.93045,-3.03039,1.13297,1.94867,-3.02805,1.13607,1.91306,-3.03089,1.13231,1.93045,-3.03039,1.13297,1.89237,-3.02877,1.13511,1.25058,-3.00736,1.16336,1.1868,-2.71296,1.55183,1.16263,-2.69917,1.57002,1.1868,-2.71296,1.55183,1.3533,-2.71296,1.55183,1.16263,-2.69917,1.57002,1.51779,-2.83015,1.39719,1.59029,-2.7235,1.53792,1.57485,-2.71134,1.55397,1.59029,-2.7235,1.53792,1.73128,-2.71134,1.55397,1.57485,-2.71134,1.55397,1.59029,-2.7235,1.53792,1.74404,-2.71783,1.54541,1.73128,-2.71134,1.55397,1.25058,-3.00736,1.16336,1.26736,-2.99519,1.17942,1.1868,-2.71296,1.55183,1.33517,-2.72391,1.53738,1.3533,-2.71296,1.55183,1.1868,-2.71296,1.55183,1.33517,-2.72391,1.53738,1.36606,-2.71945,1.54327,1.3533,-2.71296,1.55183,1.59029,-2.7235,1.53792,1.7051,-2.7235,1.53792,1.74404,-2.71783,1.54541,1.7051,-2.7235,1.53792,1.60842,-3.01466,1.15373,1.74404,-2.71783,1.54541,1.33517,-2.72391,1.53738,1.38418,-2.81839,1.41271,1.36606,-2.71945,1.54327,1.51779,-2.83015,1.39719,1.51846,-2.87111,1.34315,1.59029,-2.7235,1.53792,1.58022,-2.99601,1.17834,1.60842,-3.01466,1.15373,1.7051,-2.7235,1.53792,1.36135,-2.86421,1.35225,1.38418,-2.81839,1.41271,1.33517,-2.72391,1.53738,1.66801,-2.73224,1.52639,1.67685,-2.7304,1.52881,1.67081,-2.73083,1.52825,1.66801,-2.73224,1.52639,1.68147,-2.73363,1.52455,1.67685,-2.7304,1.52881,1.5824,-2.91017,1.2916,1.68147,-2.73363,1.52455,1.66801,-2.73224,1.52639,1.5824,-2.91017,1.2916,1.59583,-2.91225,1.28886,1.68147,-2.73363,1.52455,1.38418,-2.81839,1.41271,1.46475,-2.75797,1.49244,1.45199,-2.75148,1.501,1.38418,-2.81839,1.41271,1.44931,-2.77703,1.46729,1.46475,-2.75797,1.49244,1.44931,-2.77703,1.46729,1.51779,-2.83015,1.39719,1.46475,-2.75797,1.49244,1.38418,-2.81839,1.41271,1.36135,-2.86421,1.35225,1.44931,-2.77703,1.46729,1.51846,-2.87111,1.34315,1.51779,-2.83015,1.39719,1.44931,-2.77703,1.46729,1.34658,-2.99519,1.17942,1.44058,-2.93721,1.25593,1.44192,-2.89098,1.31693,1.44058,-2.93721,1.25593,1.48623,-2.99601,1.17834,1.44192,-2.89098,1.31693,1.58423,-2.91261,1.28838,1.59583,-2.91225,1.28886,1.5824,-2.91017,1.2916,1.58423,-2.91261,1.28838,1.59302,-2.91366,1.287,1.59583,-2.91225,1.28886,1.58744,-2.91411,1.2864,1.59302,-2.91366,1.287,1.58423,-2.91261,1.28838,1.57565,-2.92325,1.27435,1.58503,-2.92119,1.27706,1.58026,-2.92107,1.27722,1.57565,-2.92325,1.27435,1.58914,-2.92299,1.27469,1.58503,-2.92119,1.27706,1.57565,-2.92325,1.27435,1.59032,-2.92678,1.2697,1.58914,-2.92299,1.27469,1.57492,-2.92675,1.26973,1.59032,-2.92678,1.2697,1.57565,-2.92325,1.27435,1.57665,-2.92881,1.26701,1.59032,-2.92678,1.2697,1.57492,-2.92675,1.26973,1.57665,-2.92881,1.26701,1.58655,-2.92983,1.26567,1.59032,-2.92678,1.2697,1.58028,-2.93023,1.26514,1.58655,-2.92983,1.26567,1.57665,-2.92881,1.26701,1.34658,-2.99519,1.17942,1.37075,-3.01385,1.1548,1.44058,-2.93721,1.25593,1.47079,-3.00817,1.16229,1.48623,-2.99601,1.17834,1.44058,-2.93721,1.25593,1.25058,-3.00736,1.16336,1.34658,-2.99519,1.17942,1.26736,-2.99519,1.17942,1.25058,-3.00736,1.16336,1.37075,-3.01385,1.1548,1.34658,-2.99519,1.17942,1.58022,-2.99601,1.17834,1.47079,-3.00817,1.16229,1.60842,-3.01466,1.15373,1.58022,-2.99601,1.17834,1.26333,-3.01385,1.1548,1.37075,-3.01385,1.1548,1.25058,-3.00736,1.16336,1.48354,-3.01466,1.15373,1.60842,-3.01466,1.15373,1.47079,-3.00817,1.16229,0.7551,-3.00817,1.16229,0.783298,-2.71296,1.55183,0.763828,-2.70039,1.56842,0.783298,-2.71296,1.55183,1.1257,-2.71215,1.5529,0.763828,-2.70039,1.56842,0.783298,-2.71296,1.55183,1.13711,-2.71823,1.54488,1.1257,-2.71215,1.5529,0.7551,-3.00817,1.16229,0.775242,-2.99641,1.17781,0.783298,-2.71296,1.55183,1.10556,-2.7235,1.53792,1.13711,-2.71823,1.54488,0.783298,-2.71296,1.55183,1.10556,-2.7235,1.53792,1.13107,-2.81637,1.41539,1.13711,-2.71823,1.54488,1.10086,-2.7969,1.44107,1.13107,-2.81637,1.41539,1.10556,-2.7235,1.53792,0.798807,-2.75086,1.50182,0.808797,-2.74892,1.50437,0.802377,-2.74891,1.50439,0.798807,-2.75086,1.50182,0.81268,-2.75167,1.50075,0.808797,-2.74892,1.50437,0.792506,-2.92383,1.27358,0.81268,-2.75167,1.50075,0.798807,-2.75086,1.50182,0.792506,-2.92383,1.27358,0.805933,-2.92327,1.27432,0.81268,-2.75167,1.50075,0.898775,-2.83988,1.38435,0.931673,-2.80501,1.43037,0.900789,-2.78514,1.45659,0.931673,-2.80501,1.43037,1.10086,-2.7969,1.44107,0.900789,-2.78514,1.45659,0.931673,-2.80501,1.43037,1.13107,-2.81637,1.41539,1.10086,-2.7969,1.44107,0.898775,-2.83988,1.38435,0.931001,-2.82772,1.4004,0.931673,-2.80501,1.43037,1.03574,-2.82812,1.39987,0.898775,-2.83988,1.38435,1.04715,-2.83461,1.39131,1.03574,-2.82812,1.39987,0.898775,-2.83988,1.38435,1.01492,-2.83988,1.38435,1.04715,-2.83461,1.39131,1.04379,-2.9072,1.29553,1.01291,-2.88895,1.31961,1.04379,-2.9072,1.29553,1.01492,-2.83988,1.38435,0.894747,-2.94086,1.25112,0.927645,-2.90679,1.29606,0.896761,-2.88855,1.32014,0.927645,-2.90679,1.29606,1.01291,-2.88895,1.31961,0.896761,-2.88855,1.32014,0.927645,-2.90679,1.29606,1.04379,-2.9072,1.29553,1.01291,-2.88895,1.31961,0.894747,-2.94086,1.25112,0.926973,-2.92869,1.26717,0.927645,-2.90679,1.29606,0.792506,-2.92383,1.27358,0.803636,-2.92521,1.27176,0.805933,-2.92327,1.27432,0.796713,-2.92607,1.27063,0.803636,-2.92521,1.27176,0.792506,-2.92383,1.27358,0.796713,-2.92607,1.27063,0.800147,-2.92622,1.27042,0.803636,-2.92521,1.27176,0.926973,-2.92869,1.26717,1.11093,-2.93437,1.25968,1.09952,-2.92828,1.2677,0.894747,-2.94086,1.25112,1.11093,-2.93437,1.25968,0.926973,-2.92869,1.26717,0.79317,-2.93487,1.25902,0.802466,-2.93357,1.26073,0.796838,-2.93324,1.26116,0.894747,-2.94086,1.25112,1.07938,-2.94005,1.25219,1.11093,-2.93437,1.25968,1.07938,-2.94005,1.25219,1.10892,-3.01385,1.1548,1.11093,-2.93437,1.25968,0.79317,-2.93487,1.25902,0.806067,-2.93594,1.25761,0.802466,-2.93357,1.26073,0.791416,-2.93714,1.25602,0.806067,-2.93594,1.25761,0.79317,-2.93487,1.25902,0.791416,-2.93714,1.25602,0.80686,-2.93863,1.25406,0.806067,-2.93594,1.25761,0.792134,-2.9403,1.25185,0.80686,-2.93863,1.25406,0.791416,-2.93714,1.25602,0.792134,-2.9403,1.25185,0.804941,-2.94098,1.25095,0.80686,-2.93863,1.25406,1.07736,-2.9956,1.17888,1.10892,-3.01385,1.1548,1.07938,-2.94005,1.25219,0.796785,-2.94239,1.24909,0.804941,-2.94098,1.25095,0.792134,-2.9403,1.25185,0.796785,-2.94239,1.24909,0.801514,-2.94228,1.24924,0.804941,-2.94098,1.25095,0.775242,-2.99641,1.17781,1.10892,-3.01385,1.1548,1.07736,-2.9956,1.17888,0.7551,-3.00817,1.16229,1.10892,-3.01385,1.1548,0.775242,-2.99641,1.17781,0.766514,-3.01466,1.15373,1.10892,-3.01385,1.1548,0.7551,-3.00817,1.16229,0.565772,-2.71296,1.55183,0.711461,-2.71093,1.55451,0.70139,-2.70444,1.56307,0.565772,-2.71296,1.55183,0.683263,-2.71742,1.54595,0.711461,-2.71093,1.55451,0.683263,-2.71742,1.54595,0.74033,-3.01466,1.15373,0.711461,-2.71093,1.55451,0.33616,-3.00817,1.16229,0.393228,-2.7235,1.53792,0.3751,-2.71134,1.55397,0.393228,-2.7235,1.53792,0.485878,-2.71174,1.55344,0.3751,-2.71134,1.55397,0.393228,-2.7235,1.53792,0.495949,-2.71783,1.54541,0.485878,-2.71174,1.55344,0.567786,-2.7896,1.4507,0.585913,-2.7235,1.53792,0.565772,-2.71296,1.55183,0.585913,-2.7235,1.53792,0.683263,-2.71742,1.54595,0.565772,-2.71296,1.55183,0.709447,-2.99601,1.17834,0.74033,-3.01466,1.15373,0.683263,-2.71742,1.54595,0.393228,-2.7235,1.53792,0.475136,-2.7235,1.53792,0.495949,-2.71783,1.54541,0.475136,-2.7235,1.53792,0.567786,-2.7896,1.4507,0.495949,-2.71783,1.54541,0.33616,-3.00817,1.16229,0.357645,-2.99641,1.17781,0.393228,-2.7235,1.53792,0.588599,-2.83704,1.3881,0.567786,-2.7896,1.4507,0.475136,-2.7235,1.53792,0.567786,-2.7896,1.4507,0.588599,-2.83704,1.3881,0.585913,-2.7235,1.53792,0.400999,-2.81847,1.41261,0.410214,-2.81907,1.41181,0.406795,-2.81803,1.41319,0.3974,-2.82125,1.40894,0.410214,-2.81907,1.41181,0.400999,-2.81847,1.41261,0.3974,-2.82125,1.40894,0.41237,-2.821,1.40927,0.410214,-2.81907,1.41181,0.3974,-2.82125,1.40894,0.412634,-2.82347,1.40601,0.41237,-2.821,1.40927,0.398082,-2.82507,1.4039,0.412634,-2.82347,1.40601,0.3974,-2.82125,1.40894,0.398082,-2.82507,1.4039,0.410897,-2.82576,1.40299,0.412634,-2.82347,1.40601,0.402519,-2.82711,1.40121,0.410897,-2.82576,1.40299,0.398082,-2.82507,1.4039,0.402519,-2.82711,1.40121,0.407292,-2.82723,1.40105,0.410897,-2.82576,1.40299,0.399787,-2.834,1.39211,0.406998,-2.83419,1.39187,0.40427,-2.83338,1.39293,0.396488,-2.83603,1.38944,0.406998,-2.83419,1.39187,0.399787,-2.834,1.39211,0.396488,-2.83603,1.38944,0.410046,-2.83625,1.38914,0.406998,-2.83419,1.39187,0.375374,-2.98521,1.19258,0.410046,-2.83625,1.38914,0.396488,-2.83603,1.38944,0.375374,-2.98521,1.19258,0.389871,-2.97938,1.20028,0.410046,-2.83625,1.38914,0.494606,-2.99641,1.17781,0.53086,-2.91855,1.28055,0.505348,-2.85935,1.35867,0.53086,-2.91855,1.28055,0.616125,-2.99641,1.17781,0.505348,-2.85935,1.35867,0.523475,-3.01466,1.15373,0.603369,-3.00817,1.16229,0.616125,-2.99641,1.17781,0.53086,-2.91855,1.28055,0.375374,-2.98521,1.19258,0.420844,-2.9797,1.19987,0.389871,-2.97938,1.20028,0.375374,-2.98521,1.19258,0.424455,-2.98239,1.19631,0.420844,-2.9797,1.19987,0.375374,-2.98521,1.19258,0.424654,-2.98482,1.1931,0.424455,-2.98239,1.19631,0.375374,-2.98521,1.19258,0.420798,-2.98759,1.18945,0.424654,-2.98482,1.1931,0.379337,-2.98773,1.18927,0.420798,-2.98759,1.18945,0.375374,-2.98521,1.19258,0.616125,-2.99641,1.17781,0.33616,-3.00817,1.16229,0.494606,-2.99641,1.17781,0.357645,-2.99641,1.17781,0.523475,-3.01466,1.15373,0.603369,-3.00817,1.16229,0.74033,-3.01466,1.15373,0.616125,-2.99641,1.17781,0.346231,-3.01466,1.15373,0.523475,-3.01466,1.15373,0.33616,-3.00817,1.16229,0.61344,-3.01466,1.15373,0.74033,-3.01466,1.15373,0.603369,-3.00817,1.16229,-0.320447,-2.71215,1.5529,0.15556,-2.71134,1.55397,0.140118,-2.70485,1.56253,-0.320447,-2.71215,1.5529,0.120648,-2.71702,1.54648,0.15556,-2.71134,1.55397,0.120648,-2.71702,1.54648,0.160931,-2.81839,1.41271,0.15556,-2.71134,1.55397,-0.334546,-2.81717,1.41432,-0.30232,-2.72391,1.53738,-0.320447,-2.71215,1.5529,-0.30232,-2.72391,1.53738,0.120648,-2.71702,1.54648,-0.320447,-2.71215,1.5529,0.124676,-2.79812,1.43946,0.160931,-2.81839,1.41271,0.120648,-2.71702,1.54648,-0.334546,-2.81717,1.41432,-0.313062,-2.80298,1.43304,-0.30232,-2.72391,1.53738,-0.123879,-2.72992,1.52945,0.105669,-2.72913,1.53049,0.10204,-2.72661,1.53381,-0.123879,-2.72992,1.52945,0.091779,-2.73486,1.52294,0.105669,-2.72913,1.53049,0.091779,-2.73486,1.52294,0.106911,-2.76318,1.48556,0.105669,-2.72913,1.53049,-0.148011,-2.7302,1.52908,-0.138632,-2.73225,1.52638,-0.143238,-2.73008,1.52924,-0.152448,-2.73223,1.5264,-0.138632,-2.73225,1.52638,-0.148011,-2.7302,1.52908,-0.12717,-2.7325,1.52605,0.091779,-2.73486,1.52294,-0.123879,-2.72992,1.52945,-0.126222,-2.73628,1.52106,0.091779,-2.73486,1.52294,-0.12717,-2.7325,1.52605,-0.152448,-2.73223,1.5264,-0.137905,-2.73575,1.52175,-0.138632,-2.73225,1.52638,-0.15313,-2.73605,1.52136,-0.137905,-2.73575,1.52175,-0.152448,-2.73223,1.5264,-0.126222,-2.73628,1.52106,-0.12194,-2.73804,1.51874,0.091779,-2.73486,1.52294,0.093666,-2.76364,1.48496,0.106911,-2.76318,1.48556,0.091779,-2.73486,1.52294,-0.15313,-2.73605,1.52136,-0.139629,-2.73782,1.51903,-0.137905,-2.73575,1.52175,-0.149531,-2.73883,1.51769,-0.139629,-2.73782,1.51903,-0.15313,-2.73605,1.52136,-0.149531,-2.73883,1.51769,-0.143263,-2.73923,1.51716,-0.139629,-2.73782,1.51903,0.093666,-2.76364,1.48496,0.102868,-2.76554,1.48245,0.106911,-2.76318,1.48556,0.098058,-2.76551,1.48249,0.102868,-2.76554,1.48245,0.093666,-2.76364,1.48496,-0.313062,-2.80298,1.43304,-0.171401,-2.81028,1.42341,-0.151931,-2.78838,1.45231,-0.171401,-2.81028,1.42341,-0.152603,-2.99601,1.17834,-0.151931,-2.78838,1.45231,-0.016313,-2.99601,1.17834,0.011214,-2.80866,1.42555,-0.025041,-2.78838,1.45231,0.011214,-2.80866,1.42555,0.124676,-2.79812,1.43946,-0.025041,-2.78838,1.45231,0.011214,-2.80866,1.42555,0.160931,-2.81839,1.41271,0.124676,-2.79812,1.43946,-0.171401,-2.81028,1.42341,-0.016313,-2.99601,1.17834,0.019941,-3.01466,1.15373,0.011214,-2.80866,1.42555,-0.334546,-2.81717,1.41432,-0.319104,-2.82407,1.40522,-0.171401,-2.81028,1.42341,-0.172073,-3.00777,1.16283,-0.172073,-3.00777,1.16283,-0.016313,-2.99601,1.17834,-0.152603,-2.99601,1.17834,-0.172073,-3.00777,1.16283,-0.156631,-3.01466,1.15373,0.019941,-3.01466,1.15373,-0.172073,-3.00777,1.16283,-0.621716,-2.70389,1.5638,-0.552094,-2.70545,1.56174,-0.585498,-2.7037,1.56405,-0.657706,-2.70572,1.56139,-0.552094,-2.70545,1.56174,-0.621716,-2.70389,1.5638,-0.657706,-2.70572,1.56139,-0.523935,-2.70946,1.55645,-0.552094,-2.70545,1.56174,-0.696249,-2.70949,1.55641,-0.523935,-2.70946,1.55645,-0.657706,-2.70572,1.56139,-0.721931,-2.71337,1.5513,-0.523935,-2.70946,1.55645,-0.696249,-2.70949,1.55641,-0.721931,-2.71337,1.5513,-0.505071,-2.71411,1.55031,-0.523935,-2.70946,1.55645,-0.72126,-3.00777,1.16283,-0.703128,-2.72266,1.53903,-0.721931,-2.71337,1.5513,-0.703128,-2.72266,1.53903,-0.67449,-2.71926,1.54351,-0.721931,-2.71337,1.5513,-0.67449,-2.71926,1.54351,-0.630124,-2.71598,1.54785,-0.721931,-2.71337,1.5513,-0.630124,-2.71598,1.54785,-0.579968,-2.71555,1.54841,-0.721931,-2.71337,1.5513,-0.579968,-2.71555,1.54841,-0.505071,-2.71411,1.55031,-0.721931,-2.71337,1.5513,-0.579968,-2.71555,1.54841,-0.484432,-2.72122,1.54094,-0.505071,-2.71411,1.55031,-0.547422,-2.71823,1.54488,-0.484432,-2.72122,1.54094,-0.579968,-2.71555,1.54841,-0.526036,-2.72185,1.5401,-0.484432,-2.72122,1.54094,-0.547422,-2.71823,1.54488,-0.72126,-3.00777,1.16283,-0.702461,-2.9956,1.17888,-0.703128,-2.72266,1.53903,-0.505877,-2.72736,1.53283,-0.484432,-2.72122,1.54094,-0.526036,-2.72185,1.5401,-0.505877,-2.72736,1.53283,-0.463974,-2.7306,1.52855,-0.484432,-2.72122,1.54094,-0.614525,-2.72447,1.53664,-0.561482,-2.72643,1.53406,-0.582233,-2.72466,1.53639,-0.660284,-2.72854,1.53127,-0.561482,-2.72643,1.53406,-0.614525,-2.72447,1.53664,-0.660284,-2.72854,1.53127,-0.536523,-2.73068,1.52845,-0.561482,-2.72643,1.53406,-0.487144,-2.73507,1.52266,-0.463974,-2.7306,1.52855,-0.505877,-2.72736,1.53283,-0.665882,-2.73079,1.5283,-0.536523,-2.73068,1.52845,-0.660284,-2.72854,1.53127,-0.667026,-2.73376,1.52439,-0.614316,-2.733,1.52539,-0.665882,-2.73079,1.5283,-0.614316,-2.733,1.52539,-0.536523,-2.73068,1.52845,-0.665882,-2.73079,1.5283,-0.573903,-2.73362,1.52457,-0.536523,-2.73068,1.52845,-0.614316,-2.733,1.52539,-0.573903,-2.73362,1.52457,-0.513632,-2.73751,1.51944,-0.536523,-2.73068,1.52845,-0.487144,-2.73507,1.52266,-0.445991,-2.74162,1.51401,-0.463974,-2.7306,1.52855,-0.667026,-2.73376,1.52439,-0.659894,-2.73726,1.51977,-0.614316,-2.733,1.52539,-0.664852,-2.73648,1.52079,-0.659894,-2.73726,1.51977,-0.667026,-2.73376,1.52439,-0.546687,-2.73755,1.51938,-0.513632,-2.73751,1.51944,-0.573903,-2.73362,1.52457,-0.468314,-2.74653,1.50753,-0.445991,-2.74162,1.51401,-0.487144,-2.73507,1.52266,-0.529272,-2.74188,1.51366,-0.513632,-2.73751,1.51944,-0.546687,-2.73755,1.51938,-0.529272,-2.74188,1.51366,-0.496632,-2.74481,1.5098,-0.513632,-2.73751,1.51944,-0.512939,-2.74778,1.50589,-0.496632,-2.74481,1.5098,-0.529272,-2.74188,1.51366,-0.431174,-2.75412,1.49753,-0.512939,-2.74778,1.50589,-0.483425,-2.7526,1.49953,-0.496632,-2.74481,1.5098,-0.492855,-2.75831,1.492,-0.483425,-2.7526,1.49953,-0.512939,-2.74778,1.50589,-0.453288,-2.7619,1.48725,-0.431174,-2.75412,1.49753,-0.468314,-2.74653,1.50753,-0.492855,-2.75831,1.492,-0.482974,-2.75516,1.49614,-0.483425,-2.7526,1.49953,-0.492855,-2.75831,1.492,-0.485014,-2.75772,1.49276,-0.482974,-2.75516,1.49614,-0.453288,-2.7619,1.48725,-0.420203,-2.76793,1.4793,-0.431174,-2.75412,1.49753,-0.492855,-2.75831,1.492,-0.489383,-2.75886,1.49127,-0.485014,-2.75772,1.49276,-0.478353,-2.76186,1.48731,-0.469765,-2.76157,1.48769,-0.474391,-2.76077,1.48874,-0.481552,-2.76448,1.48385,-0.469765,-2.76157,1.48769,-0.478353,-2.76186,1.48731,-0.481552,-2.76448,1.48385,-0.467091,-2.76415,1.48428,-0.469765,-2.76157,1.48769,-0.481552,-2.76448,1.48385,-0.466956,-2.76688,1.48068,-0.467091,-2.76415,1.48428,-0.480977,-2.76769,1.47961,-0.466956,-2.76688,1.48068,-0.481552,-2.76448,1.48385,-0.445461,-2.77913,1.46452,-0.420203,-2.76793,1.4793,-0.453288,-2.7619,1.48725,-0.480977,-2.76769,1.47961,-0.469385,-2.76905,1.47782,-0.466956,-2.76688,1.48068,-0.478424,-2.7696,1.47709,-0.469385,-2.76905,1.47782,-0.480977,-2.76769,1.47961,-0.478424,-2.7696,1.47709,-0.473769,-2.77018,1.47632,-0.469385,-2.76905,1.47782,-0.445461,-2.77913,1.46452,-0.415097,-2.77899,1.46471,-0.420203,-2.76793,1.4793,-0.445461,-2.77913,1.46452,-0.412446,-2.79029,1.44978,-0.415097,-2.77899,1.46471,-0.611147,-2.78225,1.4604,-0.586095,-2.78135,1.46158,-0.598909,-2.78114,1.46187,-0.611147,-2.78225,1.4604,-0.576188,-2.78311,1.45927,-0.586095,-2.78135,1.46158,-0.605104,-2.82694,1.40144,-0.576188,-2.78311,1.45927,-0.611147,-2.78225,1.4604,-0.605104,-2.82694,1.40144,-0.568391,-2.78619,1.45521,-0.576188,-2.78311,1.45927,-0.44471,-2.79718,1.4407,-0.412446,-2.79029,1.44978,-0.445461,-2.77913,1.46452,-0.605104,-2.82694,1.40144,-0.562637,-2.79091,1.44897,-0.568391,-2.78619,1.45521,-0.605104,-2.82694,1.40144,-0.560075,-2.79659,1.44148,-0.562637,-2.79091,1.44897,-0.44471,-2.79718,1.4407,-0.412795,-2.8052,1.43011,-0.412446,-2.79029,1.44978,-0.605104,-2.82694,1.40144,-0.560798,-2.80282,1.43325,-0.560075,-2.79659,1.44148,-0.450428,-2.81539,1.41667,-0.412795,-2.8052,1.43011,-0.44471,-2.79718,1.4407,-0.605104,-2.82694,1.40144,-0.564882,-2.80921,1.42482,-0.560798,-2.80282,1.43325,-0.450428,-2.81539,1.41667,-0.416917,-2.81999,1.4106,-0.412795,-2.8052,1.43011,-0.605104,-2.82694,1.40144,-0.573456,-2.81607,1.41578,-0.564882,-2.80921,1.42482,-0.605104,-2.82694,1.40144,-0.584301,-2.82144,1.40868,-0.573456,-2.81607,1.41578,-0.461971,-2.83309,1.39332,-0.416917,-2.81999,1.4106,-0.450428,-2.81539,1.41667,-0.605104,-2.82694,1.40144,-0.594593,-2.82478,1.40428,-0.584301,-2.82144,1.40868,-0.461971,-2.83309,1.39332,-0.424427,-2.83444,1.39154,-0.416917,-2.81999,1.4106,-0.478074,-2.8492,1.37206,-0.478074,-2.8492,1.37206,-0.434939,-2.84829,1.37326,-0.424427,-2.83444,1.39154,-0.478074,-2.8492,1.37206,-0.44806,-2.8613,1.35609,-0.434939,-2.84829,1.37326,-0.496906,-2.86346,1.35324,-0.44806,-2.8613,1.35609,-0.478074,-2.8492,1.37206,-0.478623,-2.87863,1.33323,-0.44806,-2.8613,1.35609,-0.496906,-2.86346,1.35324,-0.478623,-2.87863,1.33323,-0.459423,-2.8703,1.34422,-0.44806,-2.8613,1.35609,-0.478623,-2.87863,1.33323,-0.430434,-2.89563,1.3108,-0.459423,-2.8703,1.34422,-0.455865,-2.89928,1.30598,-0.430434,-2.89563,1.3108,-0.478623,-2.87863,1.33323,-0.588998,-2.99601,1.17834,-0.57569,-2.90582,1.29735,-0.593027,-2.89584,1.31051,-0.434913,-2.92068,1.27775,-0.430434,-2.89563,1.3108,-0.455865,-2.89928,1.30598,-0.588998,-2.99601,1.17834,-0.556354,-2.92046,1.27803,-0.57569,-2.90582,1.29735,-0.434913,-2.92068,1.27775,-0.401147,-2.92587,1.27088,-0.430434,-2.89563,1.3108,-0.588998,-2.99601,1.17834,-0.559437,-2.94073,1.25128,-0.556354,-2.92046,1.27803,-0.559437,-2.94073,1.25128,-0.544604,-2.93241,1.26226,-0.556354,-2.92046,1.27803,-0.416157,-2.94279,1.24856,-0.401147,-2.92587,1.27088,-0.434913,-2.92068,1.27775,-0.383444,-2.94732,1.24259,-0.559437,-2.94073,1.25128,-0.534952,-2.94486,1.24583,-0.544604,-2.93241,1.26226,-0.588998,-2.99601,1.17834,-0.556101,-3.01466,1.15373,-0.559437,-2.94073,1.25128,-0.551583,-2.95126,1.23739,-0.534952,-2.94486,1.24583,-0.559437,-2.94073,1.25128,-0.399992,-2.96559,1.21848,-0.383444,-2.94732,1.24259,-0.416157,-2.94279,1.24856,-0.551583,-2.95126,1.23739,-0.5257,-2.96251,1.22254,-0.534952,-2.94486,1.24583,-0.399992,-2.96559,1.21848,-0.364473,-2.97527,1.20571,-0.383444,-2.94732,1.24259,-0.54449,-2.96443,1.22001,-0.5257,-2.96251,1.22254,-0.551583,-2.95126,1.23739,-0.54449,-2.96443,1.22001,-0.520423,-2.98107,1.19805,-0.5257,-2.96251,1.22254,-0.38394,-2.99477,1.17997,-0.364473,-2.97527,1.20571,-0.399992,-2.96559,1.21848,-0.539064,-2.98348,1.19487,-0.520423,-2.98107,1.19805,-0.54449,-2.96443,1.22001,-0.539064,-2.98348,1.19487,-0.519175,-2.9956,1.17888,-0.520423,-2.98107,1.19805,-0.38394,-2.99477,1.17997,-0.345922,-3.01344,1.15534,-0.364473,-2.97527,1.20571,-0.537759,-3.00785,1.16271,-0.519175,-2.9956,1.17888,-0.539064,-2.98348,1.19487,-0.519175,-2.9956,1.17888,-0.345922,-3.01344,1.15534,-0.38394,-2.99477,1.17997,-0.72126,-3.00777,1.16283,-0.588998,-2.99601,1.17834,-0.702461,-2.9956,1.17888,-0.537759,-3.00785,1.16271,-0.345922,-3.01344,1.15534,-0.519175,-2.9956,1.17888,-0.72126,-3.00777,1.16283,-0.556101,-3.01466,1.15373,-0.588998,-2.99601,1.17834,-0.708504,-3.01425,1.15427,-0.556101,-3.01466,1.15373,-0.72126,-3.00777,1.16283,-0.524546,-3.01425,1.15427,-0.345922,-3.01344,1.15534,-0.537759,-3.00785,1.16271,-1.05292,-2.71215,1.5529,-0.903875,-2.70769,1.55879,-0.91596,-2.70161,1.56681,-1.05292,-2.71215,1.5529,-0.929387,-2.71458,1.54969,-0.903875,-2.70769,1.55879,-0.929387,-2.71458,1.54969,-0.730659,-3.01385,1.1548,-0.903875,-2.70769,1.55879,-1.20532,-3.00858,1.16176,-1.03815,-2.7231,1.53845,-1.05292,-2.71215,1.5529,-1.03815,-2.7231,1.53845,-0.929387,-2.71458,1.54969,-1.05292,-2.71215,1.5529,-0.770271,-2.99601,1.17834,-0.730659,-3.01385,1.1548,-0.929387,-2.71458,1.54969,-1.20532,-3.00858,1.16176,-1.17847,-2.99682,1.17727,-1.03815,-2.7231,1.53845,-1.02841,-2.73056,1.52861,-0.96058,-2.72674,1.53364,-0.964513,-2.72573,1.53498,-1.02841,-2.73056,1.52861,-0.95817,-2.72967,1.52978,-0.96058,-2.72674,1.53364,-1.02841,-2.73056,1.52861,-0.959243,-2.73192,1.52682,-0.95817,-2.72967,1.52978,-1.0315,-2.73222,1.52642,-0.959243,-2.73192,1.52682,-1.02841,-2.73056,1.52861,-1.0315,-2.73222,1.52642,-0.962184,-2.73382,1.5243,-0.959243,-2.73192,1.52682,-1.06938,-2.80753,1.42704,-1.02002,-2.73851,1.51812,-1.0315,-2.73222,1.52642,-0.962184,-2.73382,1.5243,-1.06938,-2.80753,1.42704,-1.05669,-2.81046,1.42318,-1.02002,-2.73851,1.51812,-1.06822,-2.81065,1.42292,-1.05669,-2.81046,1.42318,-1.06938,-2.80753,1.42704,-1.06002,-2.81204,1.42109,-1.06351,-2.81233,1.42071,-1.06002,-2.81204,1.42109,-1.06822,-2.81065,1.42292,-0.983769,-2.87314,1.34047,-0.936772,-2.87314,1.34047,-0.967656,-2.81272,1.4202,-1.07034,-2.81483,1.41741,-1.06113,-2.81699,1.41456,-1.06557,-2.81495,1.41725,-1.07495,-2.817,1.41454,-1.06113,-2.81699,1.41456,-1.07034,-2.81483,1.41741,-1.07495,-2.817,1.41454,-1.06045,-2.82081,1.40953,-1.06113,-2.81699,1.41456,-1.07568,-2.8205,1.40992,-1.06045,-2.82081,1.40953,-1.07495,-2.817,1.41454,-1.07395,-2.82257,1.4072,-1.06045,-2.82081,1.40953,-1.07568,-2.8205,1.40992,-1.07395,-2.82257,1.4072,-1.06405,-2.82359,1.40586,-1.06045,-2.82081,1.40953,-1.07032,-2.82399,1.40533,-1.06405,-2.82359,1.40586,-1.07395,-2.82257,1.4072,-1.00928,-2.99682,1.17727,-0.956914,-2.92018,1.2784,-0.985783,-2.90233,1.30195,-0.956914,-2.92018,1.2784,-0.93543,-2.90233,1.30195,-0.985783,-2.90233,1.30195,-0.949529,-2.92018,1.2784,-0.949529,-2.92018,1.2784,-0.903875,-2.99601,1.17834,-0.93543,-2.90233,1.30195,-1.00928,-2.99682,1.17727,-0.980412,-3.01466,1.15373,-0.956914,-2.92018,1.2784,-0.919988,-3.00777,1.16283,-0.919988,-3.00777,1.16283,-0.770271,-2.99601,1.17834,-0.903875,-2.99601,1.17834,-0.919988,-3.00777,1.16283,-0.730659,-3.01385,1.1548,-0.770271,-2.99601,1.17834,-1.20532,-3.00858,1.16176,-1.00928,-2.99682,1.17727,-1.17847,-2.99682,1.17727,-0.980412,-3.01466,1.15373,-0.907903,-3.01385,1.1548,-0.730659,-3.01385,1.1548,-0.919988,-3.00777,1.16283,-1.19324,-3.01466,1.15373,-0.980412,-3.01466,1.15373,-1.20532,-3.00858,1.16176,-1.69274,-2.71215,1.5529,-1.21674,-2.71134,1.55397,-1.23218,-2.70485,1.56253,-1.69274,-2.71215,1.5529,-1.25165,-2.71702,1.54648,-1.21674,-2.71134,1.55397,-1.25165,-2.71702,1.54648,-1.21137,-2.81839,1.41271,-1.21674,-2.71134,1.55397,-1.70684,-2.81717,1.41432,-1.67462,-2.72391,1.53738,-1.69274,-2.71215,1.5529,-1.67462,-2.72391,1.53738,-1.25165,-2.71702,1.54648,-1.69274,-2.71215,1.5529,-1.24762,-2.79812,1.43946,-1.21137,-2.81839,1.41271,-1.25165,-2.71702,1.54648,-1.70684,-2.81717,1.41432,-1.68536,-2.80298,1.43304,-1.67462,-2.72391,1.53738,-1.49618,-2.72992,1.52945,-1.26663,-2.72913,1.53049,-1.27026,-2.72661,1.53381,-1.49618,-2.72992,1.52945,-1.28052,-2.73486,1.52294,-1.26663,-2.72913,1.53049,-1.28052,-2.73486,1.52294,-1.26539,-2.76318,1.48556,-1.26663,-2.72913,1.53049,-1.52186,-2.73049,1.5287,-1.51093,-2.73225,1.52638,-1.51553,-2.73008,1.52924,-1.49947,-2.7325,1.52605,-1.28052,-2.73486,1.52294,-1.49618,-2.72992,1.52945,-1.52523,-2.73317,1.52516,-1.51093,-2.73225,1.52638,-1.52186,-2.73049,1.5287,-1.49852,-2.73628,1.52106,-1.28052,-2.73486,1.52294,-1.49947,-2.7325,1.52605,-1.52523,-2.73317,1.52516,-1.5102,-2.73575,1.52175,-1.51093,-2.73225,1.52638,-1.52543,-2.73605,1.52136,-1.5102,-2.73575,1.52175,-1.52523,-2.73317,1.52516,-1.49852,-2.73628,1.52106,-1.49424,-2.73804,1.51874,-1.28052,-2.73486,1.52294,-1.27863,-2.76364,1.48496,-1.26539,-2.76318,1.48556,-1.28052,-2.73486,1.52294,-1.52543,-2.73605,1.52136,-1.51193,-2.73782,1.51903,-1.5102,-2.73575,1.52175,-1.52183,-2.73883,1.51769,-1.51193,-2.73782,1.51903,-1.52543,-2.73605,1.52136,-1.52183,-2.73883,1.51769,-1.51556,-2.73923,1.51716,-1.51193,-2.73782,1.51903,-1.27863,-2.76364,1.48496,-1.26943,-2.76554,1.48245,-1.26539,-2.76318,1.48556,-1.27424,-2.76551,1.48249,-1.26943,-2.76554,1.48245,-1.27863,-2.76364,1.48496,-1.68536,-2.80298,1.43304,-1.5437,-2.81028,1.42341,-1.52423,-2.78838,1.45231,-1.5437,-2.81028,1.42341,-1.5249,-2.99601,1.17834,-1.52423,-2.78838,1.45231,-1.38861,-2.99601,1.17834,-1.36108,-2.80866,1.42555,-1.39734,-2.78838,1.45231,-1.36108,-2.80866,1.42555,-1.24762,-2.79812,1.43946,-1.39734,-2.78838,1.45231,-1.36108,-2.80866,1.42555,-1.21137,-2.81839,1.41271,-1.24762,-2.79812,1.43946,-1.5437,-2.81028,1.42341,-1.38861,-2.99601,1.17834,-1.35236,-3.01466,1.15373,-1.36108,-2.80866,1.42555,-1.70684,-2.81717,1.41432,-1.6914,-2.82407,1.40522,-1.5437,-2.81028,1.42341,-1.54437,-3.00777,1.16283,-1.54437,-3.00777,1.16283,-1.38861,-2.99601,1.17834,-1.5249,-2.99601,1.17834,-1.54437,-3.00777,1.16283,-1.52893,-3.01466,1.15373,-1.35236,-3.01466,1.15373,-1.54437,-3.00777,1.16283,-1.97213,-2.7041,1.56352,-1.86999,-2.70093,1.5677,-1.92944,-2.70128,1.56724,-1.97213,-2.7041,1.56352,-1.80954,-2.70405,1.56359,-1.86999,-2.70093,1.5677,-2.01409,-2.71022,1.55545,-1.80954,-2.70405,1.56359,-1.97213,-2.7041,1.56352,-2.01409,-2.71022,1.55545,-1.74266,-2.71081,1.55467,-1.80954,-2.70405,1.56359,-2.01409,-2.71022,1.55545,-1.91421,-2.71251,1.55242,-1.74266,-2.71081,1.55467,-1.91421,-2.71251,1.55242,-1.85796,-2.71321,1.55151,-1.74266,-2.71081,1.55467,-1.85796,-2.71321,1.55151,-1.72967,-2.71985,1.54273,-1.74266,-2.71081,1.55467,-2.04161,-2.71732,1.54608,-1.91421,-2.71251,1.55242,-2.01409,-2.71022,1.55545,-2.04161,-2.71732,1.54608,-1.96404,-2.71527,1.54878,-1.91421,-2.71251,1.55242,-1.8118,-2.71582,1.54806,-1.72967,-2.71985,1.54273,-1.85796,-2.71321,1.55151,-2.04161,-2.71732,1.54608,-2.0022,-2.72042,1.54199,-1.96404,-2.71527,1.54878,-2.05904,-2.72368,1.53768,-2.0022,-2.72042,1.54199,-2.04161,-2.71732,1.54608,-1.76126,-2.72094,1.5413,-1.72967,-2.71985,1.54273,-1.8118,-2.71582,1.54806,-1.76126,-2.72094,1.5413,-1.71699,-2.82331,1.40622,-1.72967,-2.71985,1.54273,-1.75116,-2.79932,1.43788,-1.71699,-2.82331,1.40622,-1.76126,-2.72094,1.5413,-2.05904,-2.72368,1.53768,-2.02739,-2.72644,1.53404,-2.0022,-2.72042,1.54199,-2.07444,-2.73142,1.52748,-2.02739,-2.72644,1.53404,-2.05904,-2.72368,1.53768,-1.87356,-2.725,1.53594,-1.86366,-2.72399,1.53728,-1.86993,-2.72359,1.53781,-1.96458,-2.7261,1.53449,-1.89076,-2.72317,1.53836,-1.92286,-2.7236,1.53778,-1.96458,-2.7261,1.53449,-1.88773,-2.72567,1.53507,-1.89076,-2.72317,1.53836,-1.87356,-2.725,1.53594,-1.86006,-2.72677,1.53361,-1.86366,-2.72399,1.53728,-1.87529,-2.72707,1.53322,-1.86006,-2.72677,1.53361,-1.87356,-2.725,1.53594,-2.07444,-2.73142,1.52748,-2.04345,-2.7319,1.52684,-2.02739,-2.72644,1.53404,-1.96458,-2.7261,1.53449,-1.88737,-2.72848,1.53135,-1.88773,-2.72567,1.53507,-1.99977,-2.73119,1.52778,-1.88737,-2.72848,1.53135,-1.96458,-2.7261,1.53449,-1.87456,-2.73057,1.52859,-1.86006,-2.72677,1.53361,-1.87529,-2.72707,1.53322,-1.87456,-2.73057,1.52859,-1.86074,-2.73059,1.52857,-1.86006,-2.72677,1.53361,-1.99977,-2.73119,1.52778,-1.89047,-2.73089,1.52817,-1.88737,-2.72848,1.53135,-1.99977,-2.73119,1.52778,-1.9225,-2.73195,1.52678,-1.89047,-2.73089,1.52817,-2.0874,-2.74064,1.5153,-2.04345,-2.7319,1.52684,-2.07444,-2.73142,1.52748,-1.87456,-2.73057,1.52859,-1.86518,-2.73262,1.52589,-1.86074,-2.73059,1.52857,-1.86995,-2.73274,1.52573,-1.86518,-2.73262,1.52589,-1.87456,-2.73057,1.52859,-2.0874,-2.74064,1.5153,-2.05765,-2.73856,1.51805,-2.04345,-2.7319,1.52684,-1.99977,-2.73119,1.52778,-1.96099,-2.73431,1.52366,-1.9225,-2.73195,1.52678,-2.02282,-2.73717,1.51988,-1.96099,-2.73431,1.52366,-1.99977,-2.73119,1.52778,-2.02282,-2.73717,1.51988,-1.98913,-2.73817,1.51856,-1.96099,-2.73431,1.52366,-2.0874,-2.74064,1.5153,-2.06956,-2.74653,1.50753,-2.05765,-2.73856,1.51805,-2.03975,-2.74392,1.51098,-1.98913,-2.73817,1.51856,-2.02282,-2.73717,1.51988,-2.03975,-2.74392,1.51098,-2.00771,-2.74222,1.51322,-1.98913,-2.73817,1.51856,-2.09749,-2.75148,1.501,-2.06956,-2.74653,1.50753,-2.0874,-2.74064,1.5153,-2.03975,-2.74392,1.51098,-2.02354,-2.74735,1.50646,-2.00771,-2.74222,1.51322,-2.05383,-2.75254,1.4996,-2.02354,-2.74735,1.50646,-2.03975,-2.74392,1.51098,-2.09749,-2.75148,1.501,-2.07876,-2.75594,1.49512,-2.06956,-2.74653,1.50753,-2.05383,-2.75254,1.4996,-2.03684,-2.75393,1.49777,-2.02354,-2.74735,1.50646,-2.1043,-2.76405,1.48441,-2.07876,-2.75594,1.49512,-2.09749,-2.75148,1.501,-2.06436,-2.76321,1.48552,-2.03684,-2.75393,1.49777,-2.05383,-2.75254,1.4996,-2.06436,-2.76321,1.48552,-2.04734,-2.76222,1.48683,-2.03684,-2.75393,1.49777,-2.08483,-2.76689,1.48067,-2.10814,-2.77607,1.46855,-2.08483,-2.76689,1.48067,-2.1043,-2.76405,1.48441,-2.06436,-2.76321,1.48552,-2.05451,-2.77243,1.47336,-2.04734,-2.76222,1.48683,-2.0707,-2.77618,1.46842,-2.05451,-2.77243,1.47336,-2.06436,-2.76321,1.48552,-2.10814,-2.77607,1.46855,-2.08862,-2.77955,1.46397,-2.08483,-2.76689,1.48067,-2.05725,-2.78164,1.46121,-2.11022,-2.79144,1.44827,-2.08862,-2.77955,1.46397,-2.10814,-2.77607,1.46855,-2.07217,-2.79168,1.44796,-2.05725,-2.78164,1.46121,-2.0707,-2.77618,1.46842,-2.07217,-2.79168,1.44796,-2.05779,-2.79181,1.44779,-2.05725,-2.78164,1.46121,-2.11022,-2.79144,1.44827,-2.08934,-2.79442,1.44434,-2.08862,-2.77955,1.46397,-1.91116,-2.7864,1.45492,-1.86871,-2.78631,1.45504,-1.89473,-2.78545,1.45618,-1.91116,-2.7864,1.45492,-1.83877,-2.78865,1.45196,-1.86871,-2.78631,1.45504,-1.92357,-2.78952,1.4508,-1.83877,-2.78865,1.45196,-1.91116,-2.7864,1.45492,-1.92357,-2.78952,1.4508,-1.78772,-2.79439,1.44438,-1.83877,-2.78865,1.45196,-1.93204,-2.7944,1.44437,-1.78772,-2.79439,1.44438,-1.92357,-2.78952,1.4508,-2.10876,-2.80615,1.42886,-2.08934,-2.79442,1.44434,-2.11022,-2.79144,1.44827,-2.07217,-2.79168,1.44796,-2.05514,-2.80509,1.43026,-2.05779,-2.79181,1.44779,-2.0684,-2.80706,1.42766,-2.05514,-2.80509,1.43026,-2.07217,-2.79168,1.44796,-1.93502,-2.80047,1.43636,-1.78772,-2.79439,1.44438,-1.93204,-2.7944,1.44437,-1.93502,-2.80047,1.43636,-1.75116,-2.79932,1.43788,-1.78772,-2.79439,1.44438,-2.10876,-2.80615,1.42886,-2.08596,-2.80748,1.42711,-2.08934,-2.79442,1.44434,-1.93502,-2.80047,1.43636,-1.8432,-2.80793,1.42651,-1.75116,-2.79932,1.43788,-1.8432,-2.80793,1.42651,-1.79698,-2.81242,1.42059,-1.75116,-2.79932,1.43788,-1.79698,-2.81242,1.42059,-1.71699,-2.82331,1.40622,-1.75116,-2.79932,1.43788,-1.93276,-2.80683,1.42797,-1.87847,-2.80659,1.42828,-1.93502,-2.80047,1.43636,-1.87847,-2.80659,1.42828,-1.8432,-2.80793,1.42651,-1.93502,-2.80047,1.43636,-2.0684,-2.80706,1.42766,-2.05764,-2.80785,1.42662,-2.05514,-2.80509,1.43026,-1.93276,-2.80683,1.42797,-1.89301,-2.80693,1.42784,-1.87847,-2.80659,1.42828,-1.92733,-2.81361,1.41902,-1.89301,-2.80693,1.42784,-1.93276,-2.80683,1.42797,-1.92733,-2.81361,1.41902,-1.90009,-2.80889,1.42525,-1.89301,-2.80693,1.42784,-2.06303,-2.80877,1.42541,-2.05764,-2.80785,1.42662,-2.0684,-2.80706,1.42766,-1.92733,-2.81361,1.41902,-1.90167,-2.81091,1.42259,-1.90009,-2.80889,1.42525,-2.10343,-2.81995,1.41066,-2.08596,-2.80748,1.42711,-2.10876,-2.80615,1.42886,-2.10343,-2.81995,1.41066,-2.07907,-2.81888,1.41207,-2.08596,-2.80748,1.42711,-1.92733,-2.81361,1.41902,-1.90024,-2.81328,1.41946,-1.90167,-2.81091,1.42259,-1.92733,-2.81361,1.41902,-1.89217,-2.81816,1.41301,-1.90024,-2.81328,1.41946,-1.91501,-2.82186,1.40814,-1.89217,-2.81816,1.41301,-1.92733,-2.81361,1.41902,-2.10343,-2.81995,1.41066,-2.06922,-2.8288,1.39898,-2.07907,-2.81888,1.41207,-1.91501,-2.82186,1.40814,-1.87194,-2.82632,1.40225,-1.89217,-2.81816,1.41301,-2.0939,-2.83259,1.39397,-2.06922,-2.8288,1.39898,-2.10343,-2.81995,1.41066,-1.89676,-2.83062,1.39657,-1.87194,-2.82632,1.40225,-1.91501,-2.82186,1.40814,-1.89676,-2.83062,1.39657,-1.83455,-2.84125,1.38255,-1.87194,-2.82632,1.40225,-2.0939,-2.83259,1.39397,-2.05701,-2.83737,1.38766,-2.06922,-2.8288,1.39898,-2.07878,-2.84459,1.37814,-2.05701,-2.83737,1.38766,-2.0939,-2.83259,1.39397,-2.07878,-2.84459,1.37814,-2.04211,-2.84508,1.3775,-2.05701,-2.83737,1.38766,-1.8468,-2.85025,1.37067,-1.83455,-2.84125,1.38255,-1.89676,-2.83062,1.39657,-1.8468,-2.85025,1.37067,-1.8044,-2.85539,1.3639,-1.83455,-2.84125,1.38255,-2.07878,-2.84459,1.37814,-2.01801,-2.85413,1.36556,-2.04211,-2.84508,1.3775,-2.05309,-2.85768,1.36087,-2.01801,-2.85413,1.36556,-2.07878,-2.84459,1.37814,-1.82337,-2.86089,1.35664,-1.8044,-2.85539,1.3639,-1.8468,-2.85025,1.37067,-1.82337,-2.86089,1.35664,-1.78432,-2.86695,1.34864,-1.8044,-2.85539,1.3639,-2.05309,-2.85768,1.36087,-1.98041,-2.8663,1.3495,-2.01801,-2.85413,1.36556,-2.02684,-2.86729,1.34819,-1.98041,-2.8663,1.3495,-2.05309,-2.85768,1.36087,-1.80169,-2.87376,1.33964,-1.78432,-2.86695,1.34864,-1.82337,-2.86089,1.35664,-2.02684,-2.86729,1.34819,-1.95441,-2.87556,1.33728,-1.98041,-2.8663,1.3495,-1.80169,-2.87376,1.33964,-1.76677,-2.87989,1.33156,-1.78432,-2.86695,1.34864,-1.98244,-2.88106,1.33002,-1.78435,-2.88932,1.31912,-1.76677,-2.87989,1.33156,-1.80169,-2.87376,1.33964,-1.98244,-2.88106,1.33002,-1.93627,-2.88377,1.32644,-1.95441,-2.87556,1.33728,-1.96169,-2.88888,1.3197,-1.93627,-2.88377,1.32644,-1.98244,-2.88106,1.33002,-1.78435,-2.88932,1.31912,-1.75603,-2.89051,1.31755,-1.76677,-2.87989,1.33156,-1.96169,-2.88888,1.3197,-1.92578,-2.89072,1.31727,-1.93627,-2.88377,1.32644,-1.78435,-2.88932,1.31912,-1.74788,-2.90099,1.30372,-1.75603,-2.89051,1.31755,-1.94577,-2.89711,1.30883,-1.92578,-2.89072,1.31727,-1.96169,-2.88888,1.3197,-1.94577,-2.89711,1.30883,-1.91903,-2.89825,1.30733,-1.92578,-2.89072,1.31727,-1.77338,-2.9082,1.29421,-1.74788,-2.90099,1.30372,-1.78435,-2.88932,1.31912,-1.9394,-2.90289,1.30122,-1.91903,-2.89825,1.30733,-1.94577,-2.89711,1.30883,-1.9394,-2.90289,1.30122,-1.91691,-2.90563,1.2976,-1.91903,-2.89825,1.30733,-1.94024,-2.90726,1.29545,-1.91691,-2.90563,1.2976,-1.9394,-2.90289,1.30122,-1.74094,-2.91546,1.28463,-2.10161,-2.99966,1.17353,-2.0774,-2.91799,1.28129,-2.09691,-2.90479,1.2987,-2.0774,-2.91799,1.28129,-2.0566,-2.9074,1.29526,-2.09691,-2.90479,1.2987,-1.94024,-2.90726,1.29545,-1.91989,-2.91228,1.28882,-1.91691,-2.90563,1.2976,-1.95133,-2.91086,1.29069,-1.91989,-2.91228,1.28882,-1.94024,-2.90726,1.29545,-2.0774,-2.91799,1.28129,-2.00385,-2.91138,1.29002,-2.0566,-2.9074,1.29526,-1.97281,-2.91207,1.2891,-1.91989,-2.91228,1.28882,-1.95133,-2.91086,1.29069,-2.0774,-2.91799,1.28129,-1.97281,-2.91207,1.2891,-2.00385,-2.91138,1.29002,-2.0774,-2.91799,1.28129,-1.91989,-2.91228,1.28882,-1.97281,-2.91207,1.2891,-1.77079,-2.92525,1.27171,-1.74094,-2.91546,1.28463,-1.77338,-2.9082,1.29421,-2.0774,-2.91799,1.28129,-1.9261,-2.91658,1.28315,-1.91989,-2.91228,1.28882,-2.0774,-2.91799,1.28129,-1.93477,-2.9199,1.27877,-1.9261,-2.91658,1.28315,-2.10161,-2.99966,1.17353,-2.08079,-2.98885,1.18778,-2.0774,-2.91799,1.28129,-2.00978,-2.92313,1.27451,-1.93477,-2.9199,1.27877,-2.0774,-2.91799,1.28129,-1.77079,-2.92525,1.27171,-1.73846,-2.92783,1.26831,-1.74094,-2.91546,1.28463,-2.00978,-2.92313,1.27451,-1.9489,-2.92262,1.27517,-1.93477,-2.9199,1.27877,-2.00978,-2.92313,1.27451,-1.96587,-2.92378,1.27365,-1.9489,-2.92262,1.27517,-1.77197,-2.93802,1.25486,-1.73846,-2.92783,1.26831,-1.77079,-2.92525,1.27171,-1.77197,-2.93802,1.25486,-1.73855,-2.94293,1.24838,-1.73846,-2.92783,1.26831,-1.77565,-2.94874,1.24072,-1.73855,-2.94293,1.24838,-1.77197,-2.93802,1.25486,-1.77565,-2.94874,1.24072,-1.74385,-2.96054,1.22515,-1.73855,-2.94293,1.24838,-1.7821,-2.95804,1.22844,-1.74385,-2.96054,1.22515,-1.77565,-2.94874,1.24072,-1.79101,-2.96603,1.2179,-1.74385,-2.96054,1.22515,-1.7821,-2.95804,1.22844,-1.79101,-2.96603,1.2179,-1.75095,-2.97139,1.21083,-1.74385,-2.96054,1.22515,-1.80732,-2.97555,1.20534,-1.75095,-2.97139,1.21083,-1.79101,-2.96603,1.2179,-1.80732,-2.97555,1.20534,-1.76069,-2.98079,1.19843,-1.75095,-2.97139,1.21083,-1.83557,-2.98477,1.19316,-1.76069,-2.98079,1.19843,-1.80732,-2.97555,1.20534,-1.83557,-2.98477,1.19316,-1.77276,-2.98883,1.18782,-1.76069,-2.98079,1.19843,-1.86791,-2.99039,1.18575,-1.77276,-2.98883,1.18782,-1.83557,-2.98477,1.19316,-1.86791,-2.99039,1.18575,-1.78684,-2.99559,1.17889,-1.77276,-2.98883,1.18782,-2.10161,-2.99966,1.17353,-1.99639,-2.99248,1.18299,-2.08079,-2.98885,1.18778,-1.90163,-2.99309,1.1822,-1.78684,-2.99559,1.17889,-1.86791,-2.99039,1.18575,-2.10161,-2.99966,1.17353,-1.93904,-2.99361,1.18151,-1.99639,-2.99248,1.18299,-1.93904,-2.99361,1.18151,-1.78684,-2.99559,1.17889,-1.90163,-2.99309,1.1822,-2.10161,-2.99966,1.17353,-1.78684,-2.99559,1.17889,-1.93904,-2.99361,1.18151,-1.80988,-3.00342,1.16856,-1.78684,-2.99559,1.17889,-2.089,-3.00846,1.16191,-1.80988,-3.00342,1.16856,-2.10161,-2.99966,1.17353,-2.089,-3.00846,1.16191,-1.84608,-3.01048,1.15925,-1.80988,-3.00342,1.16856,-2.00923,-3.01276,1.15624,-1.84608,-3.01048,1.15925,-2.089,-3.00846,1.16191,-2.00923,-3.01276,1.15624,-1.88467,-3.014,1.1546,-1.84608,-3.01048,1.15925,-1.92577,-3.01471,1.15366,-1.88467,-3.014,1.1546,-2.00923,-3.01276,1.15624,1.7959,-2.27077,2.13531,2.06399,-2.27285,2.13257,2.02555,-2.27111,2.13486,1.77721,-2.27389,2.13119,2.06399,-2.27285,2.13257,1.7959,-2.27077,2.13531,1.77721,-2.27389,2.13119,2.10367,-2.28023,2.12282,2.06399,-2.27285,2.13257,1.76157,-2.27995,2.12319,2.10367,-2.28023,2.12282,1.77721,-2.27389,2.13119,1.75061,-2.28838,2.11207,2.10367,-2.28023,2.12282,1.76157,-2.27995,2.12319,1.75061,-2.28838,2.11207,2.13276,-2.29152,2.10792,2.10367,-2.28023,2.12282,1.74718,-2.2998,2.097,2.13276,-2.29152,2.10792,1.75061,-2.28838,2.11207,1.74718,-2.2998,2.097,2.16191,-2.31072,2.0826,2.13276,-2.29152,2.10792,1.74656,-2.57188,1.73799,1.7604,-2.48558,1.85187,1.74718,-2.2998,2.097,1.7604,-2.48558,1.85187,1.76519,-2.47419,1.86689,1.74718,-2.2998,2.097,1.8552,-2.32006,2.07027,1.8552,-2.32006,2.07027,2.16191,-2.31072,2.0826,1.74718,-2.2998,2.097,1.8552,-2.32006,2.07027,2.00019,-2.32064,2.0695,2.16191,-2.31072,2.0826,1.76519,-2.47419,1.86689,1.78003,-2.45607,1.89081,1.8552,-2.32006,2.07027,1.78003,-2.45607,1.89081,1.81158,-2.43676,1.91628,1.8552,-2.32006,2.07027,1.85464,-2.41151,1.9496,2.00019,-2.32064,2.0695,2.17922,-2.33485,2.05076,2.16191,-2.31072,2.0826,2.03397,-2.32535,2.06329,2.17922,-2.33485,2.05076,2.00019,-2.32064,2.0695,2.05183,-2.3319,2.05465,2.17922,-2.33485,2.05076,2.03397,-2.32535,2.06329,2.06827,-2.34589,2.03619,2.17922,-2.33485,2.05076,2.05183,-2.3319,2.05465,2.06827,-2.34589,2.03619,2.18418,-2.35528,2.0238,2.17922,-2.33485,2.05076,2.07413,-2.3634,2.01309,2.18418,-2.35528,2.0238,2.06827,-2.34589,2.03619,2.18218,-2.37716,1.99492,1.90362,-2.36722,2.00803,1.9401,-2.36881,2.00594,1.92729,-2.36687,2.0085,2.0689,-2.38335,1.98676,2.18218,-2.37716,1.99492,2.07413,-2.3634,2.01309,1.90362,-2.36722,2.00803,1.95314,-2.3763,1.99606,1.9401,-2.36881,2.00594,1.88344,-2.37812,1.99366,1.95314,-2.3763,1.99606,1.90362,-2.36722,2.00803,1.88344,-2.37812,1.99366,1.92567,-2.37866,1.99294,1.95314,-2.3763,1.99606,1.93223,-2.37973,1.99154,1.95314,-2.3763,1.99606,1.92567,-2.37866,1.99294,1.93223,-2.37973,1.99154,1.95669,-2.382,1.98853,1.95314,-2.3763,1.99606,1.88344,-2.37812,1.99366,1.91936,-2.38094,1.98994,1.92567,-2.37866,1.99294,1.88344,-2.37812,1.99366,1.92019,-2.38513,1.98441,1.91936,-2.38094,1.98994,1.8771,-2.38601,1.98325,1.92019,-2.38513,1.98441,1.88344,-2.37812,1.99366,2.0689,-2.38335,1.98676,2.1727,-2.39657,1.96931,2.18218,-2.37716,1.99492,1.93469,-2.38407,1.98581,1.95669,-2.382,1.98853,1.93223,-2.37973,1.99154,1.92905,-2.38738,1.98143,1.95669,-2.382,1.98853,1.93469,-2.38407,1.98581,1.92905,-2.38738,1.98143,1.95811,-2.38937,1.97882,1.95669,-2.382,1.98853,1.8771,-2.38601,1.98325,1.92905,-2.38738,1.98143,1.92019,-2.38513,1.98441,1.8771,-2.38601,1.98325,1.95811,-2.38937,1.97882,1.92905,-2.38738,1.98143,2.04666,-2.39869,1.96651,2.1727,-2.39657,1.96931,2.0689,-2.38335,1.98676,1.95381,-2.39301,1.97401,1.95811,-2.38937,1.97882,1.8771,-2.38601,1.98325,1.94295,-2.39298,1.97405,1.95381,-2.39301,1.97401,1.86659,-2.41208,1.94885,1.94295,-2.39298,1.97405,1.8771,-2.38601,1.98325,1.95381,-2.39301,1.97401,1.984,-2.40659,1.95609,1.95811,-2.38937,1.97882,1.86659,-2.41208,1.94885,1.93779,-2.40105,1.96341,1.94295,-2.39298,1.97405,2.04666,-2.39869,1.96651,2.15088,-2.41704,1.9423,2.1727,-2.39657,1.96931,1.99399,-2.40868,1.95333,2.15088,-2.41704,1.9423,2.04666,-2.39869,1.96651,1.9762,-2.40641,1.95633,1.984,-2.40659,1.95609,1.95381,-2.39301,1.97401,1.86659,-2.41208,1.94885,1.9762,-2.40641,1.95633,1.93779,-2.40105,1.96341,1.86659,-2.41208,1.94885,1.984,-2.40659,1.95609,1.9762,-2.40641,1.95633,1.86659,-2.41208,1.94885,1.96012,-2.40909,1.9528,1.984,-2.40659,1.95609,1.96012,-2.40909,1.9528,1.98401,-2.41063,1.95077,1.984,-2.40659,1.95609,1.86659,-2.41208,1.94885,1.9616,-2.41375,1.94664,1.96012,-2.40909,1.9528,1.96698,-2.41058,1.95083,1.98401,-2.41063,1.95077,1.96012,-2.40909,1.9528,1.99311,-2.41286,1.94782,1.98818,-2.41647,1.94305,2.15088,-2.41704,1.9423,1.99311,-2.41286,1.94782,1.81158,-2.43676,1.91628,1.84238,-2.42085,1.93728,1.85464,-2.41151,1.9496,1.86659,-2.41208,1.94885,1.92025,-2.41568,1.94409,1.9616,-2.41375,1.94664,1.86659,-2.41208,1.94885,1.90016,-2.41768,1.94145,1.92025,-2.41568,1.94409,1.93581,-2.41775,1.94137,1.9616,-2.41375,1.94664,1.92025,-2.41568,1.94409,1.9797,-2.41666,1.94281,2.15088,-2.41704,1.9423,1.98818,-2.41647,1.94305,1.95434,-2.42688,1.92932,1.9616,-2.41375,1.94664,1.93581,-2.41775,1.94137,1.86659,-2.41208,1.94885,1.88755,-2.42422,1.93283,1.90016,-2.41768,1.94145,1.82047,-2.43986,1.91219,1.88755,-2.42422,1.93283,1.95434,-2.42688,1.92932,1.98643,-2.43375,1.92025,1.9616,-2.41375,1.94664,1.9797,-2.41666,1.94281,2.10128,-2.4386,1.91386,2.15088,-2.41704,1.9423,1.82047,-2.43986,1.91219,1.87796,-2.434,1.91992,1.88755,-2.42422,1.93283,2.0059,-2.4416,1.9099,2.10128,-2.4386,1.91386,1.9797,-2.41666,1.94281,1.96322,-2.4433,1.90765,1.98643,-2.43375,1.92025,1.95434,-2.42688,1.92932,1.96322,-2.4433,1.90765,1.9958,-2.44512,1.90525,1.98643,-2.43375,1.92025,2.04739,-2.44894,1.90022,2.0059,-2.4416,1.9099,2.05762,-2.45242,1.89561,2.04739,-2.44894,1.90022,1.78852,-2.45877,1.88724,1.87796,-2.434,1.91992,1.82047,-2.43986,1.91219,2.02066,-2.49389,1.8409,2.05762,-2.45242,1.89561,2.0059,-2.4416,1.9099,1.84253,-2.45565,1.89135,1.87796,-2.434,1.91992,1.78852,-2.45877,1.88724,2.02066,-2.49389,1.8409,2.08781,-2.46519,1.87876,2.05762,-2.45242,1.89561,1.78852,-2.45877,1.88724,1.83071,-2.45714,1.88939,1.84253,-2.45565,1.89135,1.84893,-2.45692,1.88968,1.87796,-2.434,1.91992,1.84253,-2.45565,1.89135,1.84893,-2.45692,1.88968,1.86625,-2.46172,1.88335,1.87796,-2.434,1.91992,1.97162,-2.475,1.86582,1.9958,-2.44512,1.90525,1.96322,-2.4433,1.90765,1.78852,-2.45877,1.88724,1.80928,-2.46618,1.87746,1.83071,-2.45714,1.88939,1.85113,-2.46147,1.88367,1.85115,-2.46143,1.88373,1.84893,-2.45692,1.88968,1.85115,-2.46143,1.88373,1.86625,-2.46172,1.88335,1.84893,-2.45692,1.88968,1.85098,-2.46139,1.88378,1.85113,-2.46147,1.88367,1.85115,-2.46143,1.88373,1.85113,-2.46147,1.88367,1.85122,-2.46166,1.88343,1.85115,-2.46143,1.88373,1.85098,-2.46139,1.88378,1.85117,-2.46189,1.88312,1.85113,-2.46147,1.88367,1.7743,-2.47712,1.86302,1.80928,-2.46618,1.87746,1.78852,-2.45877,1.88724,1.81881,-2.46916,1.87353,1.83561,-2.47636,1.86402,1.84105,-2.46084,1.88451,1.7743,-2.47712,1.86302,1.7869,-2.48132,1.85749,1.80928,-2.46618,1.87746,1.78035,-2.49644,1.83754,1.83561,-2.47636,1.86402,1.81881,-2.46916,1.87353,1.97162,-2.475,1.86582,2.01466,-2.50518,1.82601,1.9958,-2.44512,1.90525,2.02066,-2.49389,1.8409,2.1426,-2.50812,1.82212,2.08781,-2.46519,1.87876,1.76981,-2.48739,1.84948,1.7869,-2.48132,1.85749,1.7743,-2.47712,1.86302,1.78035,-2.49644,1.83754,1.81319,-2.51677,1.81071,1.83561,-2.47636,1.86402,1.76981,-2.48739,1.84948,1.77469,-2.49169,1.8438,1.7869,-2.48132,1.85749,1.76406,-2.49428,1.84038,1.98052,-2.53389,1.78812,1.98881,-2.49192,1.8435,1.97162,-2.475,1.86582,1.98881,-2.49192,1.8435,2.01466,-2.50518,1.82601,1.97162,-2.475,1.86582,1.74656,-2.57188,1.73799,1.78035,-2.49644,1.83754,1.76406,-2.49428,1.84038,1.74656,-2.57188,1.73799,1.98052,-2.53389,1.78812,1.98879,-2.52206,1.80372,1.98881,-2.49192,1.8435,2.0156,-2.5325,1.78995,2.01466,-2.50518,1.82601,1.98881,-2.49192,1.8435,2.0156,-2.5325,1.78995,2.02798,-2.53631,1.78493,2.01466,-2.50518,1.82601,2.03863,-2.53415,1.78778,2.1426,-2.50812,1.82212,2.02066,-2.49389,1.8409,1.74656,-2.57188,1.73799,1.80833,-2.53519,1.7864,1.81319,-2.51677,1.81071,1.98052,-2.53389,1.78812,1.98971,-2.54843,1.76893,1.98879,-2.52206,1.80372,2.03863,-2.53415,1.78778,2.18771,-2.55862,1.75549,2.1426,-2.50812,1.82212,1.74656,-2.57188,1.73799,1.80875,-2.55134,1.76509,1.80833,-2.53519,1.7864,1.97935,-2.55074,1.76588,1.98971,-2.54843,1.76893,1.98052,-2.53389,1.78812,1.97441,-2.56149,1.75171,1.98971,-2.54843,1.76893,1.97935,-2.55074,1.76588,1.74656,-2.57188,1.73799,1.81583,-2.56087,1.75252,1.80875,-2.55134,1.76509,2.09119,-2.58595,1.71943,2.18771,-2.55862,1.75549,2.03863,-2.53415,1.78778,1.97441,-2.56149,1.75171,1.98169,-2.56743,1.74386,1.98971,-2.54843,1.76893,1.96266,-2.57053,1.73977,1.98169,-2.56743,1.74386,1.97441,-2.56149,1.75171,1.74656,-2.57188,1.73799,1.83018,-2.5709,1.73927,1.81583,-2.56087,1.75252,1.96266,-2.57053,1.73977,1.97334,-2.57373,1.73555,1.98169,-2.56743,1.74386,2.09119,-2.58595,1.71943,2.19361,-2.57634,1.73211,2.18771,-2.55862,1.75549,1.95037,-2.57122,1.73885,1.97334,-2.57373,1.73555,1.96266,-2.57053,1.73977,1.91942,-2.57699,1.73125,1.74656,-2.57188,1.73799,1.82025,-2.57833,1.72948,1.83018,-2.5709,1.73927,1.91942,-2.57699,1.73125,1.96154,-2.57722,1.73094,1.97334,-2.57373,1.73555,1.74656,-2.57188,1.73799,1.80663,-2.57941,1.72806,1.82025,-2.57833,1.72948,2.09119,-2.58595,1.71943,2.18805,-2.58904,1.71534,2.19361,-2.57634,1.73211,1.74656,-2.57188,1.73799,1.79898,-2.58366,1.72245,1.80663,-2.57941,1.72806,1.93033,-2.58257,1.72388,1.96668,-2.58383,1.72222,1.94829,-2.5779,1.73004,1.86759,-2.58352,1.72263,1.88488,-2.58143,1.72538,1.86842,-2.57852,1.72923,1.83647,-2.586,1.71935,1.86008,-2.57531,1.73346,1.84978,-2.57205,1.73777,1.75922,-2.59132,1.71234,1.79898,-2.58366,1.72245,1.74656,-2.57188,1.73799,1.86759,-2.58352,1.72263,1.92171,-2.58405,1.72193,1.88488,-2.58143,1.72538,1.83647,-2.586,1.71935,1.86062,-2.58652,1.71867,1.86008,-2.57531,1.73346,1.93895,-2.59463,1.70797,1.96668,-2.58383,1.72222,1.93033,-2.58257,1.72388,1.75922,-2.59132,1.71234,1.79868,-2.59323,1.70981,1.79898,-2.58366,1.72245,1.82175,-2.59004,1.71402,1.86062,-2.58652,1.71867,1.83647,-2.586,1.71935,1.93895,-2.59463,1.70797,1.98711,-2.59471,1.70786,1.96668,-2.58383,1.72222,1.86759,-2.58352,1.72263,1.93161,-2.59281,1.71037,1.92171,-2.58405,1.72193,1.88057,-2.59495,1.70755,1.93161,-2.59281,1.71037,1.86759,-2.58352,1.72263,1.82175,-2.59004,1.71402,1.8732,-2.59806,1.70344,1.86062,-2.58652,1.71867,1.83411,-2.59488,1.70764,1.8732,-2.59806,1.70344,1.82175,-2.59004,1.71402,2.11611,-2.59954,1.7015,2.18805,-2.58904,1.71534,2.09119,-2.58595,1.71943,2.11611,-2.59954,1.7015,2.16759,-2.59876,1.70252,2.18805,-2.58904,1.71534,1.77486,-2.59903,1.70216,1.79868,-2.59323,1.70981,1.75922,-2.59132,1.71234,1.93895,-2.59463,1.70797,1.97214,-2.59533,1.70705,1.98711,-2.59471,1.70786,1.93895,-2.59463,1.70797,1.96952,-2.59727,1.70449,1.97214,-2.59533,1.70705,1.77486,-2.59903,1.70216,1.81432,-2.60071,1.69995,1.79868,-2.59323,1.70981,1.94361,-2.5971,1.70471,1.96952,-2.59727,1.70449,1.93895,-2.59463,1.70797,1.94361,-2.5971,1.70471,1.96621,-2.59964,1.70135,1.96952,-2.59727,1.70449,1.88057,-2.59495,1.70755,1.93804,-2.60148,1.69893,1.93161,-2.59281,1.71037,1.88671,-2.60458,1.69484,1.93804,-2.60148,1.69893,1.88057,-2.59495,1.70755,1.83411,-2.59488,1.70764,1.86634,-2.60073,1.69991,1.8732,-2.59806,1.70344,1.86634,-2.60073,1.69991,1.87361,-2.60239,1.69772,1.8732,-2.59806,1.70344,1.79851,-2.60242,1.69769,1.81432,-2.60071,1.69995,1.77486,-2.59903,1.70216,2.14341,-2.60242,1.69769,1.83411,-2.59488,1.70764,1.84812,-2.60386,1.69579,1.86634,-2.60073,1.69991,1.88671,-2.60458,1.69484,1.945,-2.60252,1.69756,1.93804,-2.60148,1.69893,1.945,-2.60252,1.69756,1.9647,-2.60462,1.69479,1.95531,-2.60214,1.69806,1.88671,-2.60458,1.69484,1.9647,-2.60462,1.69479,1.945,-2.60252,1.69756,1.3336,-2.27784,2.12597,1.67458,-2.27542,2.12917,1.35145,-2.2751,2.12959,1.3336,-2.27784,2.12597,1.69381,-2.28164,2.12097,1.67458,-2.27542,2.12917,1.31572,-2.28459,2.11707,1.69381,-2.28164,2.12097,1.3336,-2.27784,2.12597,1.31572,-2.28459,2.11707,1.70637,-2.29369,2.10506,1.69381,-2.28164,2.12097,1.30477,-2.29294,2.10606,1.70637,-2.29369,2.10506,1.31572,-2.28459,2.11707,1.30123,-2.30449,2.09082,1.70637,-2.29369,2.10506,1.30477,-2.29294,2.10606,1.30123,-2.30449,2.09082,1.7064,-2.30672,2.08788,1.70637,-2.29369,2.10506,1.30039,-2.57364,1.73567,1.34473,-2.45837,1.88776,1.30123,-2.30449,2.09082,1.34473,-2.45837,1.88776,1.40934,-2.32565,2.0629,1.30123,-2.30449,2.09082,1.7064,-2.30672,2.08788,1.40934,-2.32565,2.0629,1.69698,-2.31826,2.07264,1.7064,-2.30672,2.08788,1.40934,-2.32565,2.0629,1.67402,-2.3252,2.06349,1.69698,-2.31826,2.07264,1.34473,-2.45837,1.88776,1.34785,-2.45304,1.8948,1.40934,-2.32565,2.0629,1.34785,-2.45304,1.8948,1.40934,-2.40584,1.95708,1.40934,-2.32565,2.0629,1.48325,-2.37712,1.99498,1.48719,-2.38448,1.98527,1.48951,-2.37862,1.993,1.48719,-2.38448,1.98527,1.49823,-2.38584,1.98347,1.49849,-2.38236,1.98806,1.47314,-2.38519,1.98433,1.48719,-2.38448,1.98527,1.48325,-2.37712,1.99498,1.47314,-2.38519,1.98433,1.49823,-2.38584,1.98347,1.48719,-2.38448,1.98527,1.46332,-2.39349,1.97337,1.48066,-2.38552,1.9839,1.47314,-2.38519,1.98433,1.48066,-2.38552,1.9839,1.49823,-2.38584,1.98347,1.47314,-2.38519,1.98433,1.48066,-2.38552,1.9839,1.49131,-2.38909,1.97919,1.49823,-2.38584,1.98347,1.48017,-2.39246,1.97474,1.49131,-2.38909,1.97919,1.48066,-2.38552,1.9839,1.46332,-2.39349,1.97337,1.47143,-2.39227,1.97498,1.48066,-2.38552,1.9839,1.49131,-2.38909,1.97919,1.49509,-2.39674,1.96908,1.49823,-2.38584,1.98347,1.49014,-2.39468,1.97181,1.49509,-2.39674,1.96908,1.49131,-2.38909,1.97919,1.46332,-2.39349,1.97337,1.48017,-2.39246,1.97474,1.47143,-2.39227,1.97498,1.46332,-2.39349,1.97337,1.49014,-2.39468,1.97181,1.48017,-2.39246,1.97474,1.44957,-2.39887,1.96628,1.49014,-2.39468,1.97181,1.46332,-2.39349,1.97337,1.44957,-2.39887,1.96628,1.49509,-2.39674,1.96908,1.49014,-2.39468,1.97181,1.44957,-2.39887,1.96628,1.50019,-2.39967,1.96522,1.49509,-2.39674,1.96908,1.44384,-2.40367,1.95994,1.50019,-2.39967,1.96522,1.44957,-2.39887,1.96628,1.44384,-2.40367,1.95994,1.4699,-2.40287,1.96099,1.50019,-2.39967,1.96522,1.47556,-2.40399,1.95953,1.50019,-2.39967,1.96522,1.4699,-2.40287,1.96099,1.44384,-2.40367,1.95994,1.46535,-2.40461,1.9587,1.4699,-2.40287,1.96099,1.47556,-2.40399,1.95953,1.51397,-2.41684,1.94256,1.50019,-2.39967,1.96522,1.34785,-2.45304,1.8948,1.43292,-2.40587,1.95705,1.40934,-2.40584,1.95708,1.47544,-2.40943,1.95235,1.51397,-2.41684,1.94256,1.47556,-2.40399,1.95953,1.44384,-2.40367,1.95994,1.46583,-2.40818,1.95399,1.46535,-2.40461,1.9587,1.51668,-2.40666,1.956,1.66009,-2.40774,1.95458,1.64346,-2.40627,1.95651,1.4416,-2.41482,1.94523,1.46583,-2.40818,1.95399,1.44384,-2.40367,1.95994,1.4416,-2.41482,1.94523,1.47544,-2.40943,1.95235,1.46583,-2.40818,1.95399,1.4416,-2.41482,1.94523,1.51397,-2.41684,1.94256,1.47544,-2.40943,1.95235,1.51668,-2.40666,1.956,1.67606,-2.41323,1.94733,1.66009,-2.40774,1.95458,1.52856,-2.41617,1.94345,1.67606,-2.41323,1.94733,1.51668,-2.40666,1.956,1.34785,-2.45304,1.8948,1.43271,-2.42065,1.93754,1.43292,-2.40587,1.95705,1.52856,-2.41617,1.94345,1.68596,-2.42598,1.93051,1.67606,-2.41323,1.94733,1.45274,-2.43647,1.91667,1.51397,-2.41684,1.94256,1.4416,-2.41482,1.94523,1.34785,-2.45304,1.8948,1.36327,-2.44875,1.90046,1.43271,-2.42065,1.93754,1.55983,-2.43125,1.92356,1.68596,-2.42598,1.93051,1.52856,-2.41617,1.94345,1.36327,-2.44875,1.90046,1.39828,-2.43729,1.91558,1.43271,-2.42065,1.93754,1.45274,-2.43647,1.91667,1.5173,-2.42712,1.92901,1.51397,-2.41684,1.94256,1.52339,-2.42819,1.92759,1.51397,-2.41684,1.94256,1.5173,-2.42712,1.92901,1.52339,-2.42819,1.92759,1.54863,-2.43304,1.92119,1.51397,-2.41684,1.94256,1.45274,-2.43647,1.91667,1.50824,-2.4305,1.92455,1.5173,-2.42712,1.92901,1.5426,-2.43589,1.91743,1.54863,-2.43304,1.92119,1.52339,-2.42819,1.92759,1.45274,-2.43647,1.91667,1.48406,-2.43415,1.91972,1.50824,-2.4305,1.92455,1.60025,-2.43393,1.92002,1.68596,-2.42598,1.93051,1.55983,-2.43125,1.92356,1.41988,-2.43636,1.91681,1.60025,-2.43393,1.92002,1.68288,-2.44128,1.91032,1.5426,-2.43589,1.91743,1.55497,-2.43772,1.91502,1.54863,-2.43304,1.92119,1.55325,-2.4495,1.89947,1.55497,-2.43772,1.91502,1.5426,-2.43589,1.91743,1.41988,-2.43636,1.91681,1.44319,-2.43968,1.91243,1.43271,-2.42065,1.93754,1.55325,-2.4495,1.89947,1.56605,-2.43736,1.91549,1.55497,-2.43772,1.91502,1.55325,-2.4495,1.89947,1.5932,-2.43862,1.91383,1.56605,-2.43736,1.91549,1.43911,-2.442,1.90937,1.44319,-2.43968,1.91243,1.41988,-2.43636,1.91681,1.45274,-2.43647,1.91667,1.48024,-2.44277,1.90835,1.48406,-2.43415,1.91972,1.45251,-2.44383,1.90696,1.48024,-2.44277,1.90835,1.45274,-2.43647,1.91667,1.63283,-2.44733,1.90233,1.68288,-2.44128,1.91032,1.60025,-2.43393,1.92002,1.45251,-2.44383,1.90696,1.48046,-2.46486,1.8792,1.48024,-2.44277,1.90835,1.39588,-2.44381,1.90698,1.4376,-2.44812,1.90129,1.41308,-2.44163,1.90985,1.63283,-2.44733,1.90233,1.67164,-2.44964,1.89928,1.68288,-2.44128,1.91032,1.4376,-2.44812,1.90129,1.48046,-2.46486,1.8792,1.45251,-2.44383,1.90696,1.39588,-2.44381,1.90698,1.48046,-2.46486,1.8792,1.4376,-2.44812,1.90129,1.65562,-2.45487,1.89238,1.58015,-2.45186,1.89635,1.5932,-2.43862,1.91383,1.55325,-2.4495,1.89947,1.58015,-2.45186,1.89635,1.59599,-2.45239,1.89565,1.5932,-2.43862,1.91383,1.59599,-2.45239,1.89565,1.64505,-2.4585,1.88759,1.5932,-2.43862,1.91383,1.55325,-2.4495,1.89947,1.56384,-2.4552,1.89195,1.58015,-2.45186,1.89635,1.36192,-2.4565,1.89024,1.48046,-2.46486,1.8792,1.39588,-2.44381,1.90698,1.63372,-2.46029,1.88523,1.64505,-2.4585,1.88759,1.59599,-2.45239,1.89565,1.35389,-2.45704,1.88952,1.48046,-2.46486,1.8792,1.36192,-2.4565,1.89024,1.41531,-2.46165,1.88344,1.48046,-2.46486,1.8792,1.35389,-2.45704,1.88952,1.55325,-2.4495,1.89947,1.58439,-2.48338,1.85477,1.56384,-2.4552,1.89195,1.36769,-2.46431,1.87993,1.41531,-2.46165,1.88344,1.35389,-2.45704,1.88952,1.35192,-2.46692,1.87649,1.57671,-2.48253,1.85588,1.58439,-2.48338,1.85477,1.55325,-2.4495,1.89947,1.43938,-2.46691,1.8765,1.48046,-2.46486,1.8792,1.42745,-2.46249,1.88233,1.36591,-2.46983,1.87264,1.41013,-2.55906,1.75491,1.40934,-2.46808,1.87496,1.36591,-2.46983,1.87264,1.44597,-2.47491,1.86595,1.48046,-2.46486,1.8792,1.43938,-2.46691,1.8765,1.30039,-2.57364,1.73567,1.41013,-2.55906,1.75491,1.36591,-2.46983,1.87264,1.44597,-2.47491,1.86595,1.46993,-2.48894,1.84743,1.48046,-2.46486,1.8792,1.44584,-2.48552,1.85194,1.46993,-2.48894,1.84743,1.44597,-2.47491,1.86595,1.57671,-2.48253,1.85588,1.58902,-2.49624,1.8378,1.58439,-2.48338,1.85477,1.58135,-2.49685,1.83699,1.58902,-2.49624,1.8378,1.57671,-2.48253,1.85588,1.42303,-2.52753,1.79651,1.46993,-2.48894,1.84743,1.44584,-2.48552,1.85194,1.58132,-2.51128,1.81795,1.58902,-2.49624,1.8378,1.58135,-2.49685,1.83699,1.58862,-2.51571,1.8121,1.42303,-2.52753,1.79651,1.44326,-2.5249,1.79997,1.46993,-2.48894,1.84743,1.57497,-2.52568,1.79895,1.58862,-2.51571,1.8121,1.58132,-2.51128,1.81795,1.57497,-2.52568,1.79895,1.5721,-2.53926,1.78103,1.58862,-2.51571,1.8121,1.42303,-2.52753,1.79651,1.43646,-2.54142,1.77817,1.44326,-2.5249,1.79997,1.5494,-2.55046,1.76625,1.5721,-2.53926,1.78103,1.57497,-2.52568,1.79895,1.41828,-2.55025,1.76654,1.43646,-2.54142,1.77817,1.42303,-2.52753,1.79651,1.56382,-2.54501,1.77345,1.5721,-2.53926,1.78103,1.5494,-2.55046,1.76625,1.56382,-2.54501,1.77345,1.58034,-2.56158,1.75158,1.5721,-2.53926,1.78103,1.5494,-2.55046,1.76625,1.55869,-2.54784,1.76971,1.56382,-2.54501,1.77345,1.41828,-2.55025,1.76654,1.43697,-2.55312,1.76274,1.43646,-2.54142,1.77817,1.5494,-2.55046,1.76625,1.5541,-2.55428,1.76121,1.55869,-2.54784,1.76971,1.58578,-2.54867,1.76861,1.70257,-2.55521,1.75998,1.68266,-2.54911,1.76803,1.42268,-2.56082,1.75259,1.43697,-2.55312,1.76274,1.41828,-2.55025,1.76654,1.5902,-2.5619,1.75115,1.70257,-2.55521,1.75998,1.58578,-2.54867,1.76861,1.57036,-2.56043,1.7531,1.58034,-2.56158,1.75158,1.56382,-2.54501,1.77345,1.42268,-2.56082,1.75259,1.44407,-2.56294,1.74978,1.43697,-2.55312,1.76274,1.5902,-2.5619,1.75115,1.71446,-2.56664,1.7449,1.70257,-2.55521,1.75998,1.56813,-2.57091,1.73927,1.58034,-2.56158,1.75158,1.57036,-2.56043,1.7531,1.43372,-2.57172,1.7382,1.44407,-2.56294,1.74978,1.42268,-2.56082,1.75259,1.43372,-2.57172,1.7382,1.45886,-2.57245,1.73724,1.44407,-2.56294,1.74978,1.30039,-2.57364,1.73567,1.4292,-2.57652,1.73186,1.41013,-2.55906,1.75491,1.56813,-2.57091,1.73927,1.57451,-2.57433,1.73475,1.58034,-2.56158,1.75158,1.58636,-2.57305,1.73645,1.71446,-2.56664,1.7449,1.5902,-2.5619,1.75115,1.58636,-2.57305,1.73645,1.71546,-2.58069,1.72636,1.71446,-2.56664,1.7449,1.43372,-2.57172,1.7382,1.4789,-2.57596,1.7326,1.45886,-2.57245,1.73724,1.4789,-2.57596,1.7326,1.5155,-2.57585,1.73276,1.50218,-2.57451,1.73452,1.44847,-2.57762,1.73042,1.4789,-2.57596,1.7326,1.43372,-2.57172,1.7382,1.55324,-2.5791,1.72846,1.57451,-2.57433,1.73475,1.56813,-2.57091,1.73927,1.44847,-2.57762,1.73042,1.5155,-2.57585,1.73276,1.4789,-2.57596,1.7326,1.58156,-2.5786,1.72912,1.71546,-2.58069,1.72636,1.58636,-2.57305,1.73645,1.55324,-2.5791,1.72846,1.56413,-2.58033,1.72684,1.57451,-2.57433,1.73475,1.44847,-2.57762,1.73042,1.53144,-2.57976,1.72759,1.5155,-2.57585,1.73276,1.44847,-2.57762,1.73042,1.45916,-2.57973,1.72764,1.53144,-2.57976,1.72759,1.30039,-2.57364,1.73567,1.41765,-2.58288,1.72347,1.4292,-2.57652,1.73186,1.31186,-2.58851,1.71604,1.43381,-2.58164,1.72511,1.45916,-2.57973,1.72764,1.44847,-2.57762,1.73042,1.50721,-2.58032,1.72685,1.56413,-2.58033,1.72684,1.55324,-2.5791,1.72846,1.47536,-2.58066,1.72641,1.53144,-2.57976,1.72759,1.45916,-2.57973,1.72764,1.47536,-2.58066,1.72641,1.50721,-2.58032,1.72685,1.53144,-2.57976,1.72759,1.47536,-2.58066,1.72641,1.48194,-2.5806,1.72648,1.50721,-2.58032,1.72685,1.5209,-2.58312,1.72316,1.56413,-2.58033,1.72684,1.50721,-2.58032,1.72685,1.43381,-2.58164,1.72511,1.44443,-2.58373,1.72235,1.45916,-2.57973,1.72764,1.5209,-2.58312,1.72316,1.56971,-2.58319,1.72306,1.56413,-2.58033,1.72684,1.47641,-2.58372,1.72236,1.48194,-2.5806,1.72648,1.47536,-2.58066,1.72641,1.59604,-2.58507,1.72058,1.71546,-2.58069,1.72636,1.58156,-2.5786,1.72912,1.4266,-2.58588,1.71951,1.44443,-2.58373,1.72235,1.43381,-2.58164,1.72511,1.5209,-2.58312,1.72316,1.55796,-2.58338,1.72282,1.56971,-2.58319,1.72306,1.5209,-2.58312,1.72316,1.55729,-2.58344,1.72273,1.55796,-2.58338,1.72282,1.55735,-2.58377,1.7223,1.56971,-2.58319,1.72306,1.55796,-2.58338,1.72282,1.47641,-2.58372,1.72236,1.49365,-2.5905,1.71342,1.48194,-2.5806,1.72648,1.5209,-2.58312,1.72316,1.55735,-2.58377,1.7223,1.55729,-2.58344,1.72273,1.31186,-2.58851,1.71604,1.41633,-2.58886,1.71558,1.41765,-2.58288,1.72347,1.5259,-2.58659,1.71858,1.55735,-2.58377,1.7223,1.5209,-2.58312,1.72316,1.55735,-2.58377,1.7223,1.58111,-2.58509,1.72056,1.56971,-2.58319,1.72306,1.5259,-2.58659,1.71858,1.53393,-2.58592,1.71947,1.55735,-2.58377,1.7223,1.5259,-2.58659,1.71858,1.53481,-2.59456,1.70806,1.53393,-2.58592,1.71947,1.59604,-2.58507,1.72058,1.70754,-2.5922,1.71117,1.71546,-2.58069,1.72636,1.56598,-2.58629,1.71897,1.58111,-2.58509,1.72056,1.55735,-2.58377,1.7223,1.4266,-2.58588,1.71951,1.43784,-2.58678,1.71832,1.44443,-2.58373,1.72235,1.56598,-2.58629,1.71897,1.58737,-2.58843,1.71614,1.58111,-2.58509,1.72056,1.4845,-2.59158,1.71199,1.49365,-2.5905,1.71342,1.47641,-2.58372,1.72236,1.57637,-2.58802,1.71669,1.58737,-2.58843,1.71614,1.56598,-2.58629,1.71897,1.4266,-2.58588,1.71951,1.45101,-2.58924,1.71508,1.43784,-2.58678,1.71832,1.50399,-2.59202,1.71141,1.50702,-2.58618,1.71912,1.50099,-2.58633,1.71891,1.50399,-2.59202,1.71141,1.51425,-2.58855,1.716,1.50702,-2.58618,1.71912,1.42715,-2.58958,1.71463,1.45101,-2.58924,1.71508,1.4266,-2.58588,1.71951,1.57465,-2.59091,1.71288,1.58737,-2.58843,1.71614,1.57637,-2.58802,1.71669,1.57465,-2.59091,1.71288,1.586,-2.59452,1.70811,1.58737,-2.58843,1.71614,1.59572,-2.59508,1.70737,1.70754,-2.5922,1.71117,1.59604,-2.58507,1.72058,1.42715,-2.58958,1.71463,1.45386,-2.59273,1.71048,1.45101,-2.58924,1.71508,1.56214,-2.59158,1.71199,1.57465,-2.59091,1.71288,1.56819,-2.59063,1.71325,1.56214,-2.59158,1.71199,1.586,-2.59452,1.70811,1.57465,-2.59091,1.71288,1.44636,-2.59302,1.7101,1.45386,-2.59273,1.71048,1.42715,-2.58958,1.71463,1.31186,-2.58851,1.71604,1.42087,-2.59473,1.70784,1.41633,-2.58886,1.71558,1.55571,-2.59565,1.70663,1.586,-2.59452,1.70811,1.56214,-2.59158,1.71199,1.448,-2.59456,1.70806,1.45386,-2.59273,1.71048,1.44636,-2.59302,1.7101,1.448,-2.59456,1.70806,1.46308,-2.59126,1.71242,1.45386,-2.59273,1.71048,1.448,-2.59456,1.70806,1.47175,-2.59125,1.71243,1.46308,-2.59126,1.71242,1.33151,-2.5981,1.70338,1.42087,-2.59473,1.70784,1.31186,-2.58851,1.71604,1.448,-2.59456,1.70806,1.48068,-2.59455,1.70808,1.47175,-2.59125,1.71243,1.52765,-2.59761,1.70404,1.53481,-2.59456,1.70806,1.5259,-2.58659,1.71858,1.4845,-2.59158,1.71199,1.49442,-2.59531,1.70707,1.49365,-2.5905,1.71342,1.4853,-2.59455,1.70808,1.49442,-2.59531,1.70707,1.4845,-2.59158,1.71199,1.53481,-2.59456,1.70806,1.54879,-2.59238,1.71093,1.54428,-2.59165,1.71191,1.448,-2.59456,1.70806,1.4853,-2.59455,1.70808,1.48068,-2.59455,1.70808,1.448,-2.59456,1.70806,1.49442,-2.59531,1.70707,1.4853,-2.59455,1.70808,1.52765,-2.59761,1.70404,1.54879,-2.59238,1.71093,1.53481,-2.59456,1.70806,1.50399,-2.59202,1.71141,1.51763,-2.60053,1.70018,1.51425,-2.58855,1.716,1.52765,-2.59761,1.70404,1.55571,-2.59565,1.70663,1.54879,-2.59238,1.71093,1.448,-2.59456,1.70806,1.46766,-2.59488,1.70764,1.49442,-2.59531,1.70707,1.47581,-2.59743,1.70427,1.49442,-2.59531,1.70707,1.46766,-2.59488,1.70764,1.55571,-2.59565,1.70663,1.56834,-2.59577,1.70647,1.586,-2.59452,1.70811,1.45083,-2.59672,1.70521,1.46766,-2.59488,1.70764,1.448,-2.59456,1.70806,1.59572,-2.59508,1.70737,1.68938,-2.59884,1.70241,1.70754,-2.5922,1.71117,1.50138,-2.60011,1.70073,1.51763,-2.60053,1.70018,1.50399,-2.59202,1.71141,1.52765,-2.59761,1.70404,1.56834,-2.59577,1.70647,1.55571,-2.59565,1.70663,1.47581,-2.59743,1.70427,1.49223,-2.59725,1.70451,1.49442,-2.59531,1.70707,1.45083,-2.59672,1.70521,1.45597,-2.59741,1.7043,1.46766,-2.59488,1.70764,1.54503,-2.59691,1.70496,1.56834,-2.59577,1.70647,1.52765,-2.59761,1.70404,1.54503,-2.59691,1.70496,1.55976,-2.5997,1.70128,1.56834,-2.59577,1.70647,1.52765,-2.59761,1.70404,1.53554,-2.5995,1.70154,1.54503,-2.59691,1.70496,1.47581,-2.59743,1.70427,1.48424,-2.5987,1.70259,1.49223,-2.59725,1.70451,1.33151,-2.5981,1.70338,1.44189,-2.60042,1.70033,1.42087,-2.59473,1.70784,1.53012,-2.59942,1.70166,1.53554,-2.5995,1.70154,1.52765,-2.59761,1.70404,1.58797,-2.6005,1.70022,1.68938,-2.59884,1.70241,1.59572,-2.59508,1.70737,1.35057,-2.60054,1.70017,1.44189,-2.60042,1.70033,1.33151,-2.5981,1.70338,1.55136,-2.60013,1.70071,1.55976,-2.5997,1.70128,1.54503,-2.59691,1.70496,1.55136,-2.60013,1.70071,1.55532,-2.60013,1.70071,1.55976,-2.5997,1.70128,1.55148,-2.60013,1.70071,1.55532,-2.60013,1.70071,1.55136,-2.60013,1.70071,1.55165,-2.60013,1.70071,1.55185,-2.60013,1.70071,1.55209,-2.60013,1.70071,1.55236,-2.60013,1.70071,1.55268,-2.60013,1.70071,1.55303,-2.60013,1.70071,1.55341,-2.60013,1.70071,1.55383,-2.60013,1.70071,1.55429,-2.60013,1.70071,1.55479,-2.60013,1.70071,1.58797,-2.6005,1.70022,1.67281,-2.60052,1.7002,1.68938,-2.59884,1.70241,1.18898,-2.26669,2.1407,1.23486,-2.26667,2.14072,1.20595,-2.2636,2.14477,0.812697,-2.26896,2.1377,0.858797,-2.26459,2.14347,0.830707,-2.26424,2.14392,0.812697,-2.26896,2.1377,0.874675,-2.26938,2.13715,0.858797,-2.26459,2.14347,1.17423,-2.27344,2.13179,1.23486,-2.26667,2.14072,1.18898,-2.26669,2.1407,0.798955,-2.27591,2.12853,0.874675,-2.26938,2.13715,0.812697,-2.26896,2.1377,0.798955,-2.27591,2.12853,0.886651,-2.27843,2.1252,0.874675,-2.26938,2.13715,1.17423,-2.27344,2.13179,1.2527,-2.27613,2.12823,1.23486,-2.26667,2.14072,1.26171,-2.28704,2.11384,1.16039,-2.28742,2.11334,1.26171,-2.28704,2.11384,1.17423,-2.27344,2.13179,0.789196,-2.28824,2.11226,0.886651,-2.27843,2.1252,0.798955,-2.27591,2.12853,0.789196,-2.28824,2.11226,0.899623,-2.29643,2.10145,0.886651,-2.27843,2.1252,1.16039,-2.28742,2.11334,1.26027,-2.30283,2.09301,1.26171,-2.28704,2.11384,0.79057,-2.30343,2.09222,0.899623,-2.29643,2.10145,0.789196,-2.28824,2.11226,0.948362,-2.56502,1.74704,0.899623,-2.29643,2.10145,0.79057,-2.30343,2.09222,1.16039,-2.28742,2.11334,1.24135,-2.3368,2.04818,1.26027,-2.30283,2.09301,1.18605,-2.42483,1.93203,1.11013,-2.37669,1.99554,1.12393,-2.38359,1.98644,1.16039,-2.28742,2.11334,1.12393,-2.38359,1.98644,1.18605,-2.42483,1.93203,1.16039,-2.28742,2.11334,1.06272,-2.37705,1.99507,1.09398,-2.3774,1.99461,1.07663,-2.37584,1.99667,1.06272,-2.37705,1.99507,1.10954,-2.38354,1.98651,1.09398,-2.3774,1.99461,1.04133,-2.38689,1.98209,1.10954,-2.38354,1.98651,1.06272,-2.37705,1.99507,0.948362,-2.56502,1.74704,1.01682,-2.507,1.82359,0.899623,-2.29643,2.10145,1.0756,-2.38578,1.98355,1.10954,-2.38354,1.98651,1.04133,-2.38689,1.98209,1.06569,-2.38617,1.98304,1.0756,-2.38578,1.98355,1.04133,-2.38689,1.98209,1.0756,-2.38578,1.98355,1.15687,-2.41493,1.94508,1.10954,-2.38354,1.98651,1.07937,-2.38933,1.97886,1.15687,-2.41493,1.94508,1.0756,-2.38578,1.98355,1.04133,-2.38689,1.98209,1.06394,-2.392,1.97535,1.06569,-2.38617,1.98304,1.0437,-2.38924,1.97899,1.06394,-2.392,1.97535,1.04133,-2.38689,1.98209,1.02272,-2.39153,1.97597,1.0437,-2.38924,1.97899,1.04133,-2.38689,1.98209,1.07686,-2.39323,1.97373,1.15687,-2.41493,1.94508,1.07937,-2.38933,1.97886,1.05465,-2.39545,1.97079,1.06394,-2.392,1.97535,1.0437,-2.38924,1.97899,1.02272,-2.39153,1.97597,1.02348,-2.39742,1.9682,1.0437,-2.38924,1.97899,1.01439,-2.3957,1.97047,1.02348,-2.39742,1.9682,1.02272,-2.39153,1.97597,1.05465,-2.39545,1.97079,1.07118,-2.39469,1.9718,1.06394,-2.392,1.97535,1.07118,-2.39469,1.9718,1.15687,-2.41493,1.94508,1.07686,-2.39323,1.97373,1.05465,-2.39545,1.97079,1.15687,-2.41493,1.94508,1.07118,-2.39469,1.9718,1.01373,-2.39809,1.96731,1.02348,-2.39742,1.9682,1.01439,-2.3957,1.97047,1.01373,-2.39809,1.96731,1.03641,-2.39806,1.96734,1.02348,-2.39742,1.9682,1.04935,-2.40107,1.96337,1.15687,-2.41493,1.94508,1.05465,-2.39545,1.97079,1.01575,-2.40071,1.96385,1.03641,-2.39806,1.96734,1.01373,-2.39809,1.96731,1.01575,-2.40071,1.96385,1.04935,-2.40107,1.96337,1.03641,-2.39806,1.96734,1.04847,-2.40542,1.95763,1.04935,-2.40107,1.96337,1.01575,-2.40071,1.96385,1.04847,-2.40542,1.95763,1.15687,-2.41493,1.94508,1.04935,-2.40107,1.96337,1.0619,-2.41547,1.94438,1.15687,-2.41493,1.94508,1.04847,-2.40542,1.95763,1.0619,-2.41547,1.94438,1.10294,-2.41818,1.9408,1.15687,-2.41493,1.94508,1.06485,-2.42125,1.93674,1.10294,-2.41818,1.9408,1.0619,-2.41547,1.94438,1.13391,-2.41952,1.93903,1.15687,-2.41493,1.94508,1.10294,-2.41818,1.9408,1.13391,-2.41952,1.93903,1.18459,-2.43191,1.92268,1.15687,-2.41493,1.94508,1.06485,-2.42125,1.93674,1.08238,-2.4253,1.9314,1.10294,-2.41818,1.9408,1.05809,-2.43016,1.92499,1.08238,-2.4253,1.9314,1.06485,-2.42125,1.93674,1.16227,-2.4353,1.91821,1.07096,-2.4406,1.91121,1.16227,-2.4353,1.91821,1.19638,-2.44334,1.9076,1.18459,-2.43191,1.92268,1.04181,-2.44553,1.90471,1.07096,-2.4406,1.91121,1.05809,-2.43016,1.92499,1.17301,-2.45489,1.89235,1.19638,-2.44334,1.9076,1.16227,-2.4353,1.91821,1.04181,-2.44553,1.90471,1.06926,-2.45842,1.88771,1.07096,-2.4406,1.91121,1.03533,-2.45652,1.89021,1.06926,-2.45842,1.88771,1.04181,-2.44553,1.90471,1.17301,-2.45489,1.89235,1.21135,-2.4669,1.87652,1.19638,-2.44334,1.9076,1.03533,-2.45652,1.89021,1.05598,-2.47326,1.86811,1.06926,-2.45842,1.88771,1.02907,-2.49811,1.83534,1.05598,-2.47326,1.86811,1.03533,-2.45652,1.89021,1.05598,-2.47326,1.86811,1.07342,-2.48369,1.85435,1.06926,-2.45842,1.88771,1.05929,-2.4869,1.85012,1.07342,-2.48369,1.85435,1.05598,-2.47326,1.86811,1.17301,-2.45489,1.89235,1.19863,-2.48241,1.85604,1.21135,-2.4669,1.87652,1.19863,-2.48241,1.85604,1.2304,-2.49342,1.84152,1.21135,-2.4669,1.87652,1.02907,-2.49811,1.83534,1.04571,-2.50148,1.83088,1.05598,-2.47326,1.86811,1.17301,-2.45489,1.89235,1.18937,-2.49829,1.83509,1.19863,-2.48241,1.85604,1.18937,-2.49829,1.83509,1.2022,-2.55128,1.76517,1.19863,-2.48241,1.85604,1.04241,-2.5529,1.76303,1.07342,-2.48369,1.85435,1.05929,-2.4869,1.85012,1.21935,-2.49526,1.83909,1.2304,-2.49342,1.84152,1.19863,-2.48241,1.85604,1.04241,-2.5529,1.76303,1.06859,-2.50553,1.82554,1.07342,-2.48369,1.85435,1.21935,-2.49526,1.83909,1.23819,-2.50956,1.82022,1.2304,-2.49342,1.84152,1.19094,-2.54601,1.77212,1.2022,-2.55128,1.76517,1.18937,-2.49829,1.83509,1.02907,-2.49811,1.83534,1.03669,-2.51554,1.81233,1.04571,-2.50148,1.83088,1.23408,-2.5229,1.80262,1.23819,-2.50956,1.82022,1.21935,-2.49526,1.83909,1.02547,-2.51442,1.81381,1.03669,-2.51554,1.81233,1.02907,-2.49811,1.83534,0.948362,-2.56502,1.74704,1.01464,-2.52354,1.80177,1.01682,-2.507,1.82359,1.23408,-2.5229,1.80262,1.23898,-2.5203,1.80605,1.23819,-2.50956,1.82022,1.02541,-2.52285,1.80269,1.03669,-2.51554,1.81233,1.02547,-2.51442,1.81381,1.04241,-2.5529,1.76303,1.05926,-2.52903,1.79454,1.06859,-2.50553,1.82554,0.948362,-2.56502,1.74704,1.02533,-2.52875,1.7949,1.01464,-2.52354,1.80177,0.948362,-2.56502,1.74704,1.03672,-2.52525,1.79952,1.02533,-2.52875,1.7949,1.04241,-2.5529,1.76303,1.05926,-2.55391,1.7617,1.05926,-2.52903,1.79454,0.948362,-2.56502,1.74704,1.03257,-2.54647,1.77152,1.03672,-2.52525,1.79952,1.18338,-2.56335,1.74924,1.2022,-2.55128,1.76517,1.19094,-2.54601,1.77212,0.948362,-2.56502,1.74704,1.03717,-2.56247,1.7504,1.03257,-2.54647,1.77152,1.05552,-2.56999,1.74049,1.05926,-2.55391,1.7617,1.04241,-2.5529,1.76303,1.05552,-2.56999,1.74049,1.06917,-2.56644,1.74517,1.05926,-2.55391,1.7617,1.18882,-2.57066,1.7396,0.948362,-2.56502,1.74704,1.0444,-2.5707,1.73955,1.03717,-2.56247,1.7504,1.17187,-2.57173,1.73818,1.18882,-2.57066,1.7396,1.18338,-2.56335,1.74924,1.05552,-2.56999,1.74049,1.0843,-2.57393,1.73529,1.06917,-2.56644,1.74517,0.96519,-2.58327,1.72296,1.0444,-2.5707,1.73955,0.948362,-2.56502,1.74704,1.04969,-2.57578,1.73284,1.06321,-2.57223,1.73752,1.05552,-2.56999,1.74049,1.06321,-2.57223,1.73752,1.0843,-2.57393,1.73529,1.05552,-2.56999,1.74049,1.04969,-2.57578,1.73284,1.05491,-2.57843,1.72935,1.06321,-2.57223,1.73752,1.15219,-2.57842,1.72936,1.18882,-2.57066,1.7396,1.17187,-2.57173,1.73818,1.07229,-2.57543,1.7333,1.0843,-2.57393,1.73529,1.06321,-2.57223,1.73752,1.15219,-2.57842,1.72936,1.17436,-2.57906,1.72852,1.18882,-2.57066,1.7396,1.07229,-2.57543,1.7333,1.10546,-2.57821,1.72963,1.0843,-2.57393,1.73529,1.06559,-2.58194,1.72471,1.07798,-2.57849,1.72926,1.07229,-2.57543,1.7333,1.07798,-2.57849,1.72926,1.10546,-2.57821,1.72963,1.07229,-2.57543,1.7333,1.07798,-2.57849,1.72926,1.15219,-2.57842,1.72936,1.10546,-2.57821,1.72963,1.06559,-2.58194,1.72471,1.07461,-2.57999,1.72729,1.07798,-2.57849,1.72926,1.09947,-2.58435,1.72154,1.15219,-2.57842,1.72936,1.07798,-2.57849,1.72926,1.09947,-2.58435,1.72154,1.17436,-2.57906,1.72852,1.15219,-2.57842,1.72936,0.96519,-2.58327,1.72296,1.01734,-2.58319,1.72307,1.0444,-2.5707,1.73955,1.09947,-2.58435,1.72154,1.16711,-2.58141,1.72542,1.17436,-2.57906,1.72852,1.16711,-2.58141,1.72542,1.19613,-2.58979,1.71436,1.17436,-2.57906,1.72852,1.02322,-2.5897,1.71447,1.05491,-2.57843,1.72935,1.04969,-2.57578,1.73284,1.06559,-2.58194,1.72471,1.07468,-2.58377,1.7223,1.07461,-2.57999,1.72729,1.09947,-2.58435,1.72154,1.14523,-2.58537,1.72019,1.16711,-2.58141,1.72542,1.13502,-2.58541,1.72013,1.14523,-2.58537,1.72019,1.09947,-2.58435,1.72154,1.09947,-2.58435,1.72154,1.12276,-2.5863,1.71896,1.13502,-2.58541,1.72013,0.96519,-2.58327,1.72296,1.01053,-2.58974,1.71442,1.01734,-2.58319,1.72307,1.13599,-2.59409,1.70868,1.14523,-2.58537,1.72019,1.13502,-2.58541,1.72013,1.02322,-2.5897,1.71447,1.02824,-2.59127,1.7124,1.05491,-2.57843,1.72935,1.18947,-2.59313,1.70995,1.19613,-2.58979,1.71436,1.16711,-2.58141,1.72542,1.07514,-2.59477,1.70778,1.07468,-2.58377,1.7223,1.06559,-2.58194,1.72471,0.98878,-2.59677,1.70515,1.01053,-2.58974,1.71442,0.96519,-2.58327,1.72296,1.07514,-2.59477,1.70778,1.08416,-2.59538,1.70697,1.07468,-2.58377,1.7223,1.02322,-2.5897,1.71447,1.02822,-2.59457,1.70805,1.02824,-2.59127,1.7124,1.13599,-2.59409,1.70868,1.14552,-2.59565,1.70662,1.14523,-2.58537,1.72019,1.02004,-2.59624,1.70585,1.02822,-2.59457,1.70805,1.02322,-2.5897,1.71447,0.98878,-2.59677,1.70515,1.01154,-2.59993,1.70098,1.01053,-2.58974,1.71442,1.18947,-2.59313,1.70995,1.19822,-2.59752,1.70416,1.19613,-2.58979,1.71436,1.1774,-2.59567,1.70659,1.19822,-2.59752,1.70416,1.18947,-2.59313,1.70995,1.02822,-2.59457,1.70805,1.04404,-2.59508,1.70738,1.03694,-2.59411,1.70866,1.02004,-2.59624,1.70585,1.04404,-2.59508,1.70738,1.02822,-2.59457,1.70805,1.07402,-2.59753,1.70415,1.08416,-2.59538,1.70697,1.07514,-2.59477,1.70778,1.07402,-2.59753,1.70415,1.08399,-2.59843,1.70295,1.08416,-2.59538,1.70697,1.17232,-2.59872,1.70257,1.19822,-2.59752,1.70416,1.1774,-2.59567,1.70659,1.13599,-2.59409,1.70868,1.1519,-2.59841,1.70298,1.14552,-2.59565,1.70662,1.1519,-2.59841,1.70298,1.17232,-2.59872,1.70257,1.16073,-2.59598,1.70619,1.05303,-2.60042,1.70033,1.06796,-2.59786,1.70371,1.06444,-2.59691,1.70496,1.06796,-2.59786,1.70371,1.08399,-2.59843,1.70295,1.07402,-2.59753,1.70415,1.1402,-2.60065,1.70003,1.1519,-2.59841,1.70298,1.13599,-2.59409,1.70868,1.05303,-2.60042,1.70033,1.08399,-2.59843,1.70295,1.06796,-2.59786,1.70371,1.03948,-2.59897,1.70224,1.04404,-2.59508,1.70738,1.02004,-2.59624,1.70585,1.1402,-2.60065,1.70003,1.17232,-2.59872,1.70257,1.1519,-2.59841,1.70298,1.18628,-2.59826,1.70317,1.19822,-2.59752,1.70416,1.17232,-2.59872,1.70257,1.03948,-2.59897,1.70224,1.05303,-2.60042,1.70033,1.04404,-2.59508,1.70738,1.1402,-2.60065,1.70003,1.18628,-2.59826,1.70317,1.17232,-2.59872,1.70257,1.04558,-2.60214,1.69805,1.05303,-2.60042,1.70033,1.03948,-2.59897,1.70224,1.05303,-2.60042,1.70033,1.0809,-2.60124,1.69925,1.08399,-2.59843,1.70295,1.04558,-2.60214,1.69805,1.0809,-2.60124,1.69925,1.05303,-2.60042,1.70033,1.16043,-2.60137,1.69908,1.18628,-2.59826,1.70317,1.1402,-2.60065,1.70003,1.16043,-2.60137,1.69908,1.17392,-2.6032,1.69665,1.18628,-2.59826,1.70317,1.04558,-2.60214,1.69805,1.06349,-2.60222,1.69796,1.0809,-2.60124,1.69925,1.14314,-2.60253,1.69755,1.16043,-2.60137,1.69908,1.1402,-2.60065,1.70003,1.14314,-2.60253,1.69755,1.14843,-2.60253,1.69755,1.16043,-2.60137,1.69908,1.14358,-2.60253,1.69755,1.14843,-2.60253,1.69755,1.14314,-2.60253,1.69755,1.14402,-2.60253,1.69755,1.14446,-2.60253,1.69755,1.1449,-2.60253,1.69755,1.14534,-2.60253,1.69755,1.14578,-2.60253,1.69755,1.14622,-2.60253,1.69755,1.14666,-2.60253,1.69755,1.14711,-2.60253,1.69755,1.14755,-2.60253,1.69755,1.14799,-2.60253,1.69755,1.04803,-2.60412,1.69544,1.06349,-2.60222,1.69796,1.04558,-2.60214,1.69805,1.04803,-2.60412,1.69544,1.05859,-2.60412,1.69544,1.06349,-2.60222,1.69796,1.04816,-2.60412,1.69544,1.05859,-2.60412,1.69544,1.04803,-2.60412,1.69544,1.04835,-2.60412,1.69544,1.0486,-2.60412,1.69544,1.04891,-2.60412,1.69544,1.04926,-2.60412,1.69544,1.04968,-2.60412,1.69544,1.05014,-2.60412,1.69544,1.05067,-2.60412,1.69544,1.05124,-2.60412,1.69544,1.05188,-2.60412,1.69544,1.05257,-2.60412,1.69544,1.05331,-2.60412,1.69544,1.05405,-2.60412,1.69544,1.05474,-2.60412,1.69544,1.05537,-2.60412,1.69544,1.05595,-2.60412,1.69544,1.05647,-2.60412,1.69544,1.05694,-2.60412,1.69544,1.05736,-2.60412,1.69544,1.05771,-2.60412,1.69544,1.05802,-2.60412,1.69544,1.05826,-2.60412,1.69544,1.05846,-2.60412,1.69544,0.434525,-2.26557,2.14217,0.593852,-2.27342,2.13182,0.519343,-2.26417,2.14402,0.364463,-2.27766,2.12622,0.593852,-2.27342,2.13182,0.434525,-2.26557,2.14217,0.364463,-2.27766,2.12622,0.640304,-2.28737,2.11341,0.593852,-2.27342,2.13182,0.320654,-2.29397,2.1047,0.640304,-2.28737,2.11341,0.364463,-2.27766,2.12622,0.320654,-2.29397,2.1047,0.679933,-2.30624,2.0885,0.640304,-2.28737,2.11341,0.289489,-2.31141,2.08168,0.679933,-2.30624,2.0885,0.320654,-2.29397,2.1047,0.289489,-2.31141,2.08168,0.569499,-2.31556,2.07621,0.679933,-2.30624,2.0885,0.478225,-2.31594,2.07571,0.547986,-2.31545,2.07636,0.289489,-2.31141,2.08168,0.547986,-2.31545,2.07636,0.569499,-2.31556,2.07621,0.289489,-2.31141,2.08168,0.499077,-2.3164,2.07511,0.547986,-2.31545,2.07636,0.478225,-2.31594,2.07571,0.575366,-2.31835,2.07253,0.679933,-2.30624,2.0885,0.569499,-2.31556,2.07621,0.289489,-2.31141,2.08168,0.440951,-2.31956,2.07093,0.478225,-2.31594,2.07571,0.529441,-2.3193,2.07127,0.547986,-2.31545,2.07636,0.499077,-2.3164,2.07511,0.575366,-2.31835,2.07253,0.711034,-2.33079,2.05612,0.679933,-2.30624,2.0885,0.260517,-2.33624,2.04893,0.440951,-2.31956,2.07093,0.576304,-2.32515,2.06355,0.711034,-2.33079,2.05612,0.575366,-2.31835,2.07253,0.548505,-2.32139,2.06851,0.566459,-2.32434,2.06462,0.566493,-2.32126,2.06869,0.260517,-2.33624,2.04893,0.40322,-2.33071,2.05622,0.440951,-2.31956,2.07093,0.522591,-2.32602,2.06241,0.566459,-2.32434,2.06462,0.548505,-2.32139,2.06851,0.571912,-2.32967,2.05759,0.711034,-2.33079,2.05612,0.576304,-2.32515,2.06355,0.507796,-2.33095,2.0559,0.566459,-2.32434,2.06462,0.522591,-2.32602,2.06241,0.507796,-2.33095,2.0559,0.52234,-2.33683,2.04815,0.566459,-2.32434,2.06462,0.571912,-2.32967,2.05759,0.733581,-2.35789,2.02035,0.711034,-2.33079,2.05612,0.260517,-2.33624,2.04893,0.378637,-2.34451,2.03801,0.40322,-2.33071,2.05622,0.507796,-2.33095,2.0559,0.516249,-2.34186,2.04151,0.52234,-2.33683,2.04815,0.610686,-2.35504,2.02412,0.733581,-2.35789,2.02035,0.571912,-2.32967,2.05759,0.454037,-2.36148,2.01562,0.516249,-2.34186,2.04151,0.507796,-2.33095,2.0559,0.237537,-2.36888,2.00585,0.378637,-2.34451,2.03801,0.260517,-2.33624,2.04893,0.237537,-2.36888,2.00585,0.361114,-2.35916,2.01867,0.378637,-2.34451,2.03801,0.454037,-2.36148,2.01562,0.495863,-2.37175,2.00206,0.516249,-2.34186,2.04151,0.237537,-2.36888,2.00585,0.348867,-2.36265,2.01407,0.361114,-2.35916,2.01867,0.627371,-2.37522,1.99749,0.733581,-2.35789,2.02035,0.610686,-2.35504,2.02412,0.357119,-2.36692,2.00844,0.396421,-2.36582,2.00989,0.371894,-2.36416,2.01209,0.237537,-2.36888,2.00585,0.337695,-2.37163,2.00222,0.348867,-2.36265,2.01407,0.435245,-2.36797,2.00705,0.495863,-2.37175,2.00206,0.454037,-2.36148,2.01562,0.357119,-2.36692,2.00844,0.417956,-2.37099,2.00307,0.396421,-2.36582,2.00989,0.346829,-2.37348,1.99978,0.417956,-2.37099,2.00307,0.357119,-2.36692,2.00844,0.417956,-2.37099,2.00307,0.495863,-2.37175,2.00206,0.435245,-2.36797,2.00705,0.346829,-2.37348,1.99978,0.495863,-2.37175,2.00206,0.417956,-2.37099,2.00307,0.750336,-2.40057,1.96403,0.346829,-2.37348,1.99978,0.501548,-2.37583,1.99669,0.495863,-2.37175,2.00206,0.367276,-2.37573,1.99681,0.501548,-2.37583,1.99669,0.346829,-2.37348,1.99978,0.372211,-2.37776,1.99414,0.501548,-2.37583,1.99669,0.367276,-2.37573,1.99681,0.346829,-2.37348,1.99978,0.361079,-2.37826,1.99347,0.367276,-2.37573,1.99681,0.371925,-2.38174,1.98889,0.501548,-2.37583,1.99669,0.372211,-2.37776,1.99414,0.237537,-2.36888,2.00585,0.327164,-2.38628,1.9829,0.337695,-2.37163,2.00222,0.346829,-2.37348,1.99978,0.361105,-2.38157,1.9891,0.361079,-2.37826,1.99347,0.371925,-2.38174,1.98889,0.537062,-2.38482,1.98482,0.501548,-2.37583,1.99669,0.343177,-2.38242,1.98799,0.361105,-2.38157,1.9891,0.346829,-2.37348,1.99978,0.639792,-2.40297,1.96087,0.750336,-2.40057,1.96403,0.627371,-2.37522,1.99749,0.343177,-2.38242,1.98799,0.371925,-2.38174,1.98889,0.361105,-2.38157,1.9891,0.343177,-2.38242,1.98799,0.537062,-2.38482,1.98482,0.371925,-2.38174,1.98889,0.351204,-2.38475,1.98491,0.537062,-2.38482,1.98482,0.343177,-2.38242,1.98799,0.224839,-2.41254,1.94824,0.327164,-2.38628,1.9829,0.237537,-2.36888,2.00585,0.335521,-2.38957,1.97855,0.351204,-2.38475,1.98491,0.343177,-2.38242,1.98799,0.335521,-2.38957,1.97855,0.345204,-2.38793,1.98071,0.351204,-2.38475,1.98491,0.351204,-2.38475,1.98491,0.453385,-2.38625,1.98293,0.537062,-2.38482,1.98482,0.363051,-2.39081,1.97692,0.453385,-2.38625,1.98293,0.351204,-2.38475,1.98491,0.499399,-2.38967,1.97841,0.537062,-2.38482,1.98482,0.453385,-2.38625,1.98293,0.499399,-2.38967,1.97841,0.565188,-2.39578,1.97035,0.537062,-2.38482,1.98482,0.363051,-2.39081,1.97692,0.408945,-2.39158,1.9759,0.453385,-2.38625,1.98293,0.339339,-2.39504,1.97133,0.351836,-2.39466,1.97183,0.357744,-2.38999,1.978,0.351836,-2.39466,1.97183,0.361233,-2.39595,1.97013,0.357744,-2.38999,1.978,0.534268,-2.39705,1.96868,0.565188,-2.39578,1.97035,0.499399,-2.38967,1.97841,0.322902,-2.39595,1.97013,0.335521,-2.38957,1.97855,0.339339,-2.39504,1.97133,0.345204,-2.38793,1.98071,0.361233,-2.39595,1.97013,0.408945,-2.39158,1.9759,0.363051,-2.39081,1.97692,0.331939,-2.39985,1.96499,0.339339,-2.39504,1.97133,0.335521,-2.38957,1.97855,0.339339,-2.39504,1.97133,0.337861,-2.39978,1.96508,0.351836,-2.39466,1.97183,0.400048,-2.3986,1.96663,0.331939,-2.39985,1.96499,0.337861,-2.39978,1.96508,0.339339,-2.39504,1.97133,0.352775,-2.39729,1.96836,0.361233,-2.39595,1.97013,0.351836,-2.39466,1.97183,0.352775,-2.39729,1.96836,0.400048,-2.3986,1.96663,0.361233,-2.39595,1.97013,0.353178,-2.40067,1.9639,0.365521,-2.39874,1.96645,0.352775,-2.39729,1.96836,0.365521,-2.39874,1.96645,0.400048,-2.3986,1.96663,0.352775,-2.39729,1.96836,0.372436,-2.39942,1.96556,0.400048,-2.3986,1.96663,0.365521,-2.39874,1.96645,0.224839,-2.41254,1.94824,0.323561,-2.40245,1.96155,0.322902,-2.39595,1.97013,0.372436,-2.39942,1.96556,0.397709,-2.40859,1.95345,0.400048,-2.3986,1.96663,0.376607,-2.40489,1.95834,0.397709,-2.40859,1.95345,0.372436,-2.39942,1.96556,0.561384,-2.40989,1.95174,0.565188,-2.39578,1.97035,0.534268,-2.39705,1.96868,0.224839,-2.41254,1.94824,0.328437,-2.4054,1.95766,0.323561,-2.40245,1.96155,0.561384,-2.40989,1.95174,0.583834,-2.41105,1.95021,0.565188,-2.39578,1.97035,0.224839,-2.41254,1.94824,0.338109,-2.40584,1.95708,0.328437,-2.4054,1.95766,0.372819,-2.41167,1.94939,0.397709,-2.40859,1.95345,0.376607,-2.40489,1.95834,0.224839,-2.41254,1.94824,0.33496,-2.42441,1.93259,0.338109,-2.40584,1.95708,0.372819,-2.41167,1.94939,0.405018,-2.42316,1.93423,0.397709,-2.40859,1.95345,0.561384,-2.40989,1.95174,0.593709,-2.42602,1.93045,0.583834,-2.41105,1.95021,0.350012,-2.42359,1.93366,0.405018,-2.42316,1.93423,0.372819,-2.41167,1.94939,0.574501,-2.42349,1.93379,0.593709,-2.42602,1.93045,0.561384,-2.40989,1.95174,0.752256,-2.45089,1.89763,0.641981,-2.4438,1.907,0.752256,-2.45089,1.89763,0.639792,-2.40297,1.96087,0.350012,-2.42359,1.93366,0.411367,-2.42829,1.92745,0.405018,-2.42316,1.93423,0.34116,-2.42964,1.92567,0.411367,-2.42829,1.92745,0.350012,-2.42359,1.93366,0.586247,-2.4446,1.90594,0.593709,-2.42602,1.93045,0.574501,-2.42349,1.93379,0.34116,-2.42964,1.92567,0.42969,-2.42944,1.92595,0.411367,-2.42829,1.92745,0.42969,-2.42944,1.92595,0.468551,-2.43144,1.9233,0.446019,-2.42888,1.92668,0.34116,-2.42964,1.92567,0.468551,-2.43144,1.9233,0.42969,-2.42944,1.92595,0.226708,-2.4621,1.88284,0.335126,-2.43548,1.91797,0.391674,-2.43216,1.92235,0.34116,-2.42964,1.92567,0.391674,-2.43216,1.92235,0.226708,-2.4621,1.88284,0.32221,-2.43874,1.91367,0.33496,-2.42441,1.93259,0.416153,-2.43271,1.92162,0.468551,-2.43144,1.9233,0.391674,-2.43216,1.92235,0.335126,-2.43548,1.91797,0.372588,-2.43427,1.91957,0.391674,-2.43216,1.92235,0.431193,-2.43245,1.92198,0.468551,-2.43144,1.9233,0.416153,-2.43271,1.92162,0.431193,-2.43245,1.92198,0.465391,-2.43379,1.92021,0.468551,-2.43144,1.9233,0.430472,-2.44084,1.9109,0.431193,-2.43245,1.92198,0.416153,-2.43271,1.92162,0.430472,-2.44084,1.9109,0.441128,-2.44097,1.91072,0.431193,-2.43245,1.92198,0.335126,-2.43548,1.91797,0.357058,-2.44077,1.91099,0.372588,-2.43427,1.91957,0.33199,-2.44045,1.91141,0.357058,-2.44077,1.91099,0.335126,-2.43548,1.91797,0.586247,-2.4446,1.90594,0.600462,-2.44667,1.9032,0.593709,-2.42602,1.93045,0.432617,-2.45742,1.88902,0.441128,-2.44097,1.91072,0.430472,-2.44084,1.9109,0.313546,-2.46221,1.88269,0.587992,-2.45763,1.88875,0.600462,-2.44667,1.9032,0.586247,-2.4446,1.90594,0.322572,-2.47059,1.87164,0.357058,-2.44077,1.91099,0.33199,-2.44045,1.91141,0.587992,-2.45763,1.88875,0.598652,-2.46448,1.8797,0.600462,-2.44667,1.9032,0.322572,-2.47059,1.87164,0.334238,-2.4649,1.87916,0.357058,-2.44077,1.91099,0.432617,-2.45742,1.88902,0.455715,-2.48147,1.85729,0.441128,-2.44097,1.91072,0.581957,-2.46482,1.87926,0.598652,-2.46448,1.8797,0.587992,-2.45763,1.88875,0.635984,-2.47008,1.87231,0.752256,-2.45089,1.89763,0.641981,-2.4438,1.907,0.635984,-2.47008,1.87231,0.739419,-2.49514,1.83925,0.752256,-2.45089,1.89763,0.226708,-2.4621,1.88284,0.3135,-2.47327,1.86811,0.313546,-2.46221,1.88269,0.443372,-2.48646,1.8507,0.455715,-2.48147,1.85729,0.432617,-2.45742,1.88902,0.581957,-2.46482,1.87926,0.59331,-2.46911,1.8736,0.598652,-2.46448,1.8797,0.598358,-2.47391,1.86726,0.598652,-2.46448,1.8797,0.59331,-2.46911,1.8736,0.550333,-2.47956,1.85981,0.598358,-2.47391,1.86726,0.610914,-2.47504,1.86577,0.598652,-2.46448,1.8797,0.550333,-2.47956,1.85981,0.585498,-2.47388,1.8673,0.59331,-2.46911,1.8736,0.63371,-2.4749,1.86596,0.739419,-2.49514,1.83925,0.635984,-2.47008,1.87231,0.322604,-2.47641,1.86396,0.357438,-2.50033,1.8324,0.340606,-2.46936,1.87327,0.226708,-2.4621,1.88284,0.322604,-2.47641,1.86396,0.3135,-2.47327,1.86811,0.226708,-2.4621,1.88284,0.357438,-2.50033,1.8324,0.322604,-2.47641,1.86396,0.550333,-2.47956,1.85981,0.578408,-2.47613,1.86433,0.585498,-2.47388,1.8673,0.578408,-2.47613,1.86433,0.592399,-2.48178,1.85688,0.585498,-2.47388,1.8673,0.598358,-2.47391,1.86726,0.628865,-2.48027,1.85886,0.610914,-2.47504,1.86577,0.243122,-2.50449,1.8269,0.357438,-2.50033,1.8324,0.226708,-2.4621,1.88284,0.641872,-2.47999,1.85923,0.739419,-2.49514,1.83925,0.63371,-2.4749,1.86596,0.619126,-2.48306,1.85519,0.628865,-2.48027,1.85886,0.598358,-2.47391,1.86726,0.586142,-2.48791,1.84879,0.619126,-2.48306,1.85519,0.632537,-2.48318,1.85503,0.628865,-2.48027,1.85886,0.642596,-2.48703,1.84995,0.739419,-2.49514,1.83925,0.641872,-2.47999,1.85923,0.550333,-2.47956,1.85981,0.525415,-2.49824,1.83515,0.578408,-2.47613,1.86433,0.62338,-2.4857,1.85171,0.632537,-2.48318,1.85503,0.619126,-2.48306,1.85519,0.517127,-2.49562,1.83862,0.525415,-2.49824,1.83515,0.550333,-2.47956,1.85981,0.62338,-2.4857,1.85171,0.631052,-2.48921,1.84707,0.632537,-2.48318,1.85503,0.443372,-2.48646,1.8507,0.470818,-2.49378,1.84105,0.455715,-2.48147,1.85729,0.586142,-2.48791,1.84879,0.592828,-2.49464,1.8399,0.592399,-2.48178,1.85688,0.612598,-2.49447,1.84013,0.631052,-2.48921,1.84707,0.62338,-2.4857,1.85171,0.640075,-2.49303,1.84203,0.459929,-2.4981,1.83535,0.612598,-2.49447,1.84013,0.618862,-2.49687,1.83696,0.631052,-2.48921,1.84707,0.581061,-2.50324,1.82856,0.592828,-2.49464,1.8399,0.586142,-2.48791,1.84879,0.627917,-2.50006,1.83276,0.739419,-2.49514,1.83925,0.640075,-2.49303,1.84203,0.459929,-2.4981,1.83535,0.492148,-2.49781,1.83573,0.470818,-2.49378,1.84105,0.492148,-2.49781,1.83573,0.525415,-2.49824,1.83515,0.517127,-2.49562,1.83862,0.459929,-2.4981,1.83535,0.525415,-2.49824,1.83515,0.492148,-2.49781,1.83573,0.612598,-2.49447,1.84013,0.617532,-2.49973,1.83319,0.618862,-2.49687,1.83696,0.581061,-2.50324,1.82856,0.588995,-2.50294,1.82896,0.592828,-2.49464,1.8399,0.610091,-2.49876,1.83447,0.617532,-2.49973,1.83319,0.612598,-2.49447,1.84013,0.602272,-2.49897,1.83419,0.617532,-2.49973,1.83319,0.610091,-2.49876,1.83447,0.459929,-2.4981,1.83535,0.468253,-2.5001,1.83271,0.525415,-2.49824,1.83515,0.438736,-2.50809,1.82216,0.468253,-2.5001,1.83271,0.459929,-2.4981,1.83535,0.471951,-2.5016,1.83073,0.525415,-2.49824,1.83515,0.468253,-2.5001,1.83271,0.625174,-2.50594,1.825,0.739419,-2.49514,1.83925,0.627917,-2.50006,1.83276,0.471951,-2.5016,1.83073,0.507126,-2.5028,1.82914,0.525415,-2.49824,1.83515,0.602272,-2.49897,1.83419,0.615411,-2.5031,1.82875,0.617532,-2.49973,1.83319,0.593575,-2.50319,1.82863,0.615411,-2.5031,1.82875,0.602272,-2.49897,1.83419,0.491549,-2.50364,1.82803,0.498619,-2.50293,1.82897,0.471951,-2.5016,1.83073,0.498619,-2.50293,1.82897,0.507126,-2.5028,1.82914,0.471951,-2.5016,1.83073,0.581061,-2.50324,1.82856,0.593575,-2.50319,1.82863,0.588995,-2.50294,1.82896,0.581061,-2.50324,1.82856,0.615411,-2.5031,1.82875,0.593575,-2.50319,1.82863,0.581061,-2.50324,1.82856,0.603253,-2.50426,1.82722,0.615411,-2.5031,1.82875,0.582764,-2.50848,1.82165,0.603253,-2.50426,1.82722,0.581061,-2.50324,1.82856,0.438736,-2.50809,1.82216,0.448229,-2.50984,1.81986,0.468253,-2.5001,1.83271,0.502258,-2.5076,1.82281,0.507126,-2.5028,1.82914,0.498619,-2.50293,1.82897,0.582764,-2.50848,1.82165,0.593008,-2.50928,1.8206,0.603253,-2.50426,1.82722,0.620219,-2.50853,1.82158,0.739419,-2.49514,1.83925,0.625174,-2.50594,1.825,0.502258,-2.5076,1.82281,0.511267,-2.51403,1.81433,0.507126,-2.5028,1.82914,0.500255,-2.51341,1.81515,0.511267,-2.51403,1.81433,0.502258,-2.5076,1.82281,0.610058,-2.50999,1.81966,0.739419,-2.49514,1.83925,0.620219,-2.50853,1.82158,0.610058,-2.50999,1.81966,0.712249,-2.53251,1.78994,0.438736,-2.50809,1.82216,0.450221,-2.51155,1.8176,0.448229,-2.50984,1.81986,0.450221,-2.51155,1.8176,0.465036,-2.51069,1.81873,0.459628,-2.50947,1.82034,0.438021,-2.51378,1.81466,0.450221,-2.51155,1.8176,0.438736,-2.50809,1.82216,0.438021,-2.51378,1.81466,0.465036,-2.51069,1.81873,0.450221,-2.51155,1.8176,0.438021,-2.51378,1.81466,0.473049,-2.51493,1.81313,0.465036,-2.51069,1.81873,0.582091,-2.52943,1.794,0.712249,-2.53251,1.78994,0.610058,-2.50999,1.81966,0.473049,-2.51493,1.81313,0.500255,-2.51341,1.81515,0.48679,-2.51193,1.81709,0.243122,-2.50449,1.8269,0.393121,-2.529,1.79457,0.357438,-2.50033,1.8324,0.473049,-2.51493,1.81313,0.511267,-2.51403,1.81433,0.500255,-2.51341,1.81515,0.473049,-2.51493,1.81313,0.506016,-2.5165,1.81106,0.511267,-2.51403,1.81433,0.443538,-2.51757,1.80965,0.459148,-2.51459,1.81358,0.438021,-2.51378,1.81466,0.459148,-2.51459,1.81358,0.473049,-2.51493,1.81313,0.438021,-2.51378,1.81466,0.459148,-2.51459,1.81358,0.506016,-2.5165,1.81106,0.473049,-2.51493,1.81313,0.459148,-2.51459,1.81358,0.488265,-2.51624,1.8114,0.506016,-2.5165,1.81106,0.46767,-2.51883,1.80799,0.488265,-2.51624,1.8114,0.459148,-2.51459,1.81358,0.488265,-2.51624,1.8114,0.499972,-2.51761,1.8096,0.506016,-2.5165,1.81106,0.46767,-2.51883,1.80799,0.474403,-2.52009,1.80632,0.488265,-2.51624,1.8114,0.265233,-2.53171,1.791,0.393121,-2.529,1.79457,0.243122,-2.50449,1.8269,0.265233,-2.53171,1.791,0.427281,-2.54164,1.77789,0.393121,-2.529,1.79457,0.296189,-2.5569,1.75775,0.427281,-2.54164,1.77789,0.265233,-2.53171,1.791,0.535929,-2.5444,1.77425,0.712249,-2.53251,1.78994,0.582091,-2.52943,1.794,0.296189,-2.5569,1.75775,0.45973,-2.54713,1.77065,0.427281,-2.54164,1.77789,0.535929,-2.5444,1.77425,0.674957,-2.5606,1.75287,0.712249,-2.53251,1.78994,0.496873,-2.54827,1.76914,0.674957,-2.5606,1.75287,0.535929,-2.5444,1.77425,0.296189,-2.5569,1.75775,0.496873,-2.54827,1.76914,0.45973,-2.54713,1.77065,0.296189,-2.5569,1.75775,0.674957,-2.5606,1.75287,0.496873,-2.54827,1.76914,0.342636,-2.57931,1.72818,0.674957,-2.5606,1.75287,0.296189,-2.5569,1.75775,0.342636,-2.57931,1.72818,0.641709,-2.57658,1.73178,0.674957,-2.5606,1.75287,0.342636,-2.57931,1.72818,0.595483,-2.59101,1.71274,0.641709,-2.57658,1.73178,0.382736,-2.59067,1.7132,0.595483,-2.59101,1.71274,0.342636,-2.57931,1.72818,0.436375,-2.59914,1.70202,0.595483,-2.59101,1.71274,0.382736,-2.59067,1.7132,0.521771,-2.60054,1.70016,-0.513263,-2.27784,2.12597,-0.172284,-2.27542,2.12917,-0.495417,-2.2751,2.12959,-0.513263,-2.27784,2.12597,-0.15186,-2.28222,2.1202,-0.172284,-2.27542,2.12917,-0.531149,-2.28459,2.11707,-0.15186,-2.28222,2.1202,-0.513263,-2.27784,2.12597,-0.542098,-2.29294,2.10606,-0.15186,-2.28222,2.1202,-0.531149,-2.28459,2.11707,-0.542098,-2.29294,2.10606,-0.140288,-2.2945,2.104,-0.15186,-2.28222,2.1202,-0.545636,-2.30448,2.09083,-0.140288,-2.2945,2.104,-0.542098,-2.29294,2.10606,-0.545636,-2.30448,2.09083,-0.140465,-2.30672,2.08787,-0.140288,-2.2945,2.104,-0.546475,-2.57364,1.73567,-0.502247,-2.4579,1.88838,-0.545636,-2.30448,2.09083,-0.502247,-2.4579,1.88838,-0.437526,-2.32565,2.0629,-0.545636,-2.30448,2.09083,-0.437526,-2.32565,2.0629,-0.140465,-2.30672,2.08787,-0.545636,-2.30448,2.09083,-0.437526,-2.32565,2.0629,-0.149889,-2.31826,2.07265,-0.140465,-2.30672,2.08787,-0.437526,-2.32565,2.0629,-0.172842,-2.3252,2.06349,-0.149889,-2.31826,2.07265,-0.502247,-2.4579,1.88838,-0.498653,-2.45289,1.89499,-0.437526,-2.32565,2.0629,-0.498653,-2.45289,1.89499,-0.437526,-2.40584,1.95708,-0.437526,-2.32565,2.0629,-0.363616,-2.37712,1.99498,-0.359688,-2.38448,1.98527,-0.357393,-2.37859,1.99305,-0.359688,-2.38448,1.98527,-0.348636,-2.38585,1.98346,-0.348379,-2.38236,1.98806,-0.373729,-2.38519,1.98433,-0.359688,-2.38448,1.98527,-0.363616,-2.37712,1.99498,-0.373729,-2.38519,1.98433,-0.348636,-2.38585,1.98346,-0.359688,-2.38448,1.98527,-0.383548,-2.39349,1.97337,-0.366417,-2.38571,1.98364,-0.373729,-2.38519,1.98433,-0.366417,-2.38571,1.98364,-0.348636,-2.38585,1.98346,-0.373729,-2.38519,1.98433,-0.366417,-2.38571,1.98364,-0.355548,-2.38906,1.97923,-0.348636,-2.38585,1.98346,-0.366417,-2.38571,1.98364,-0.364809,-2.39267,1.97445,-0.355548,-2.38906,1.97923,-0.383548,-2.39349,1.97337,-0.375436,-2.39227,1.97498,-0.366417,-2.38571,1.98364,-0.355548,-2.38906,1.97923,-0.351774,-2.3968,1.96901,-0.348636,-2.38585,1.98346,-0.366848,-2.39227,1.97498,-0.364809,-2.39267,1.97445,-0.366417,-2.38571,1.98364,-0.356721,-2.39468,1.97181,-0.351774,-2.3968,1.96901,-0.355548,-2.38906,1.97923,-0.383548,-2.39349,1.97337,-0.366848,-2.39227,1.97498,-0.375436,-2.39227,1.97498,-0.383548,-2.39349,1.97337,-0.364809,-2.39267,1.97445,-0.366848,-2.39227,1.97498,-0.383548,-2.39349,1.97337,-0.356721,-2.39468,1.97181,-0.364809,-2.39267,1.97445,-0.397301,-2.39887,1.96628,-0.356721,-2.39468,1.97181,-0.383548,-2.39349,1.97337,-0.397301,-2.39887,1.96628,-0.351774,-2.3968,1.96901,-0.356721,-2.39468,1.97181,-0.397301,-2.39887,1.96628,-0.347105,-2.39948,1.96548,-0.351774,-2.3968,1.96901,-0.403027,-2.40367,1.95994,-0.347105,-2.39948,1.96548,-0.397301,-2.39887,1.96628,-0.403027,-2.40367,1.95994,-0.376963,-2.40287,1.96099,-0.347105,-2.39948,1.96548,-0.371305,-2.40399,1.95953,-0.347105,-2.39948,1.96548,-0.376963,-2.40287,1.96099,-0.403027,-2.40367,1.95994,-0.38152,-2.40461,1.9587,-0.376963,-2.40287,1.96099,-0.498653,-2.45289,1.89499,-0.41395,-2.40587,1.95705,-0.437526,-2.40584,1.95708,-0.371422,-2.40943,1.95235,-0.347105,-2.39948,1.96548,-0.371305,-2.40399,1.95953,-0.403027,-2.40367,1.95994,-0.381035,-2.40818,1.95399,-0.38152,-2.40461,1.9587,-0.330186,-2.40666,1.956,-0.186775,-2.40774,1.95458,-0.203402,-2.40627,1.95651,-0.405109,-2.41643,1.94311,-0.381035,-2.40818,1.95399,-0.403027,-2.40367,1.95994,-0.371422,-2.40943,1.95235,-0.332261,-2.41715,1.94216,-0.347105,-2.39948,1.96548,-0.405109,-2.41643,1.94311,-0.371422,-2.40943,1.95235,-0.381035,-2.40818,1.95399,-0.405109,-2.41643,1.94311,-0.332261,-2.41715,1.94216,-0.371422,-2.40943,1.95235,-0.330186,-2.40666,1.956,-0.170809,-2.41323,1.94733,-0.186775,-2.40774,1.95458,-0.318309,-2.41617,1.94345,-0.170809,-2.41323,1.94733,-0.330186,-2.40666,1.956,-0.498653,-2.45289,1.89499,-0.414154,-2.42065,1.93754,-0.41395,-2.40587,1.95705,-0.318309,-2.41617,1.94345,-0.162675,-2.42231,1.93535,-0.170809,-2.41323,1.94733,-0.498653,-2.45289,1.89499,-0.483597,-2.44875,1.90046,-0.414154,-2.42065,1.93754,-0.287035,-2.43125,1.92356,-0.162675,-2.42231,1.93535,-0.318309,-2.41617,1.94345,-0.483597,-2.44875,1.90046,-0.448582,-2.43729,1.91558,-0.414154,-2.42065,1.93754,-0.405109,-2.41643,1.94311,-0.329563,-2.42712,1.92901,-0.332261,-2.41715,1.94216,-0.323477,-2.42819,1.92759,-0.332261,-2.41715,1.94216,-0.329563,-2.42712,1.92901,-0.287035,-2.43125,1.92356,-0.161578,-2.43394,1.92,-0.162675,-2.42231,1.93535,-0.323477,-2.42819,1.92759,-0.298235,-2.43298,1.92127,-0.332261,-2.41715,1.94216,-0.405109,-2.41643,1.94311,-0.338611,-2.43049,1.92455,-0.329563,-2.42712,1.92901,-0.304261,-2.43589,1.91743,-0.298235,-2.43298,1.92127,-0.323477,-2.42819,1.92759,-0.405109,-2.41643,1.94311,-0.362804,-2.43415,1.91972,-0.338611,-2.43049,1.92455,-0.246614,-2.43393,1.92002,-0.161578,-2.43394,1.92,-0.287035,-2.43125,1.92356,-0.392916,-2.44058,1.91124,-0.362804,-2.43415,1.91972,-0.405109,-2.41643,1.94311,-0.448582,-2.43729,1.91558,-0.426989,-2.43636,1.91681,-0.414154,-2.42065,1.93754,-0.304261,-2.43589,1.91743,-0.292073,-2.4377,1.91504,-0.298235,-2.43298,1.92127,-0.293618,-2.4495,1.89947,-0.292073,-2.4377,1.91504,-0.304261,-2.43589,1.91743,-0.426989,-2.43636,1.91681,-0.403677,-2.43968,1.91243,-0.414154,-2.42065,1.93754,-0.293618,-2.4495,1.89947,-0.28082,-2.43736,1.91549,-0.292073,-2.4377,1.91504,-0.293618,-2.4495,1.89947,-0.253668,-2.43862,1.91383,-0.28082,-2.43736,1.91549,-0.246614,-2.43393,1.92002,-0.165035,-2.44235,1.90891,-0.161578,-2.43394,1.92,-0.407756,-2.442,1.90937,-0.403677,-2.43968,1.91243,-0.426989,-2.43636,1.91681,-0.392916,-2.44058,1.91124,-0.366621,-2.44277,1.90835,-0.362804,-2.43415,1.91972,-0.214036,-2.44733,1.90233,-0.165035,-2.44235,1.90891,-0.246614,-2.43393,1.92002,-0.392916,-2.44058,1.91124,-0.366408,-2.46486,1.8792,-0.366621,-2.44277,1.90835,-0.397852,-2.44578,1.90437,-0.366408,-2.46486,1.8792,-0.392916,-2.44058,1.91124,-0.448273,-2.44288,1.90821,-0.411062,-2.44781,1.9017,-0.432541,-2.44192,1.90948,-0.214036,-2.44733,1.90233,-0.175227,-2.44964,1.89928,-0.165035,-2.44235,1.90891,-0.411062,-2.44781,1.9017,-0.366408,-2.46486,1.8792,-0.397852,-2.44578,1.90437,-0.448273,-2.44288,1.90821,-0.366408,-2.46486,1.8792,-0.411062,-2.44781,1.9017,-0.191246,-2.45487,1.89238,-0.175227,-2.44964,1.89928,-0.214036,-2.44733,1.90233,-0.266719,-2.45186,1.89635,-0.253668,-2.43862,1.91383,-0.293618,-2.4495,1.89947,-0.266719,-2.45186,1.89635,-0.250871,-2.45239,1.89565,-0.253668,-2.43862,1.91383,-0.250871,-2.45239,1.89565,-0.201821,-2.4585,1.88759,-0.253668,-2.43862,1.91383,-0.293618,-2.4495,1.89947,-0.283034,-2.4552,1.89195,-0.266719,-2.45186,1.89635,-0.484891,-2.45649,1.89025,-0.366408,-2.46486,1.8792,-0.448273,-2.44288,1.90821,-0.213145,-2.46029,1.88523,-0.201821,-2.4585,1.88759,-0.250871,-2.45239,1.89565,-0.492981,-2.45704,1.88952,-0.366408,-2.46486,1.8792,-0.484891,-2.45649,1.89025,-0.431499,-2.46165,1.88344,-0.366408,-2.46486,1.8792,-0.492981,-2.45704,1.88952,-0.479127,-2.46432,1.87991,-0.431499,-2.46165,1.88344,-0.492981,-2.45704,1.88952,-0.546475,-2.57364,1.73567,-0.494948,-2.46692,1.87649,-0.502247,-2.4579,1.88838,-0.271679,-2.48045,1.85863,-0.283034,-2.4552,1.89195,-0.293618,-2.4495,1.89947,-0.407488,-2.46691,1.8765,-0.366408,-2.46486,1.8792,-0.419414,-2.46249,1.88233,-0.48066,-2.46984,1.87263,-0.437155,-2.55779,1.75659,-0.437526,-2.46808,1.87496,-0.271679,-2.48045,1.85863,-0.262462,-2.4834,1.85474,-0.283034,-2.4552,1.89195,-0.546475,-2.57364,1.73567,-0.48066,-2.46984,1.87263,-0.494948,-2.46692,1.87649,-0.400891,-2.47491,1.86594,-0.366408,-2.46486,1.8792,-0.407488,-2.46691,1.8765,-0.546475,-2.57364,1.73567,-0.437155,-2.55779,1.75659,-0.48066,-2.46984,1.87263,-0.400891,-2.47491,1.86594,-0.376558,-2.48819,1.84842,-0.366408,-2.46486,1.8792,-0.401022,-2.48552,1.85194,-0.376558,-2.48819,1.84842,-0.400891,-2.47491,1.86594,-0.265972,-2.49353,1.84137,-0.262462,-2.4834,1.85474,-0.271679,-2.48045,1.85863,-0.265972,-2.49353,1.84137,-0.257847,-2.49624,1.8378,-0.262462,-2.4834,1.85474,-0.401022,-2.48552,1.85194,-0.403004,-2.52378,1.80146,-0.376558,-2.48819,1.84842,-0.423837,-2.52753,1.79651,-0.403004,-2.52378,1.80146,-0.401022,-2.48552,1.85194,-0.265546,-2.51128,1.81795,-0.257847,-2.49624,1.8378,-0.265972,-2.49353,1.84137,-0.265546,-2.51128,1.81795,-0.258248,-2.51571,1.8121,-0.257847,-2.49624,1.8378,-0.271898,-2.52568,1.79895,-0.258248,-2.51571,1.8121,-0.265546,-2.51128,1.81795,-0.271898,-2.52568,1.79895,-0.274857,-2.53942,1.78082,-0.258248,-2.51571,1.8121,-0.423837,-2.52753,1.79651,-0.410403,-2.54142,1.77817,-0.403004,-2.52378,1.80146,-0.297468,-2.55046,1.76625,-0.274857,-2.53942,1.78082,-0.271898,-2.52568,1.79895,-0.428582,-2.55025,1.76654,-0.410403,-2.54142,1.77817,-0.423837,-2.52753,1.79651,-0.283042,-2.54501,1.77345,-0.274857,-2.53942,1.78082,-0.297468,-2.55046,1.76625,-0.297468,-2.55046,1.76625,-0.288162,-2.54783,1.76972,-0.283042,-2.54501,1.77345,-0.428582,-2.55025,1.76654,-0.409896,-2.55312,1.76274,-0.410403,-2.54142,1.77817,-0.283042,-2.54501,1.77345,-0.266496,-2.56201,1.75101,-0.274857,-2.53942,1.78082,-0.261087,-2.54867,1.76861,-0.144296,-2.55521,1.75998,-0.164208,-2.54911,1.76803,-0.297468,-2.55046,1.76625,-0.292853,-2.55426,1.76123,-0.288162,-2.54783,1.76972,-0.424189,-2.56082,1.75259,-0.409896,-2.55312,1.76274,-0.428582,-2.55025,1.76654,-0.256839,-2.56073,1.7527,-0.144296,-2.55521,1.75998,-0.261087,-2.54867,1.76861,-0.276503,-2.56043,1.7531,-0.266496,-2.56201,1.75101,-0.283042,-2.54501,1.77345,-0.424189,-2.56082,1.75259,-0.402798,-2.56294,1.74978,-0.409896,-2.55312,1.76274,-0.256839,-2.56073,1.7527,-0.132409,-2.56664,1.7449,-0.144296,-2.55521,1.75998,-0.278734,-2.57091,1.73927,-0.266496,-2.56201,1.75101,-0.276503,-2.56043,1.7531,-0.546475,-2.57364,1.73567,-0.428668,-2.56816,1.74289,-0.437155,-2.55779,1.75659,-0.413146,-2.57172,1.7382,-0.402798,-2.56294,1.74978,-0.424189,-2.56082,1.75259,-0.413146,-2.57172,1.7382,-0.388003,-2.57245,1.73724,-0.402798,-2.56294,1.74978,-0.260163,-2.5726,1.73703,-0.132409,-2.56664,1.7449,-0.256839,-2.56073,1.7527,-0.278734,-2.57091,1.73927,-0.272688,-2.5746,1.7344,-0.266496,-2.56201,1.75101,-0.546475,-2.57364,1.73567,-0.417709,-2.57658,1.73179,-0.428668,-2.56816,1.74289,-0.260163,-2.5726,1.73703,-0.131403,-2.58069,1.72636,-0.132409,-2.56664,1.7449,-0.413146,-2.57172,1.7382,-0.368038,-2.57596,1.7326,-0.388003,-2.57245,1.73724,-0.398397,-2.57762,1.73042,-0.368038,-2.57596,1.7326,-0.413146,-2.57172,1.7382,-0.293629,-2.5791,1.72846,-0.272688,-2.5746,1.7344,-0.278734,-2.57091,1.73927,-0.368038,-2.57596,1.7326,-0.33314,-2.57551,1.7332,-0.345919,-2.57457,1.73444,-0.26573,-2.57899,1.7286,-0.131403,-2.58069,1.72636,-0.260163,-2.5726,1.73703,-0.398397,-2.57762,1.73042,-0.33314,-2.57551,1.7332,-0.368038,-2.57596,1.7326,-0.293629,-2.5791,1.72846,-0.282738,-2.58033,1.72684,-0.272688,-2.5746,1.7344,-0.398397,-2.57762,1.73042,-0.313192,-2.57998,1.7273,-0.33314,-2.57551,1.7332,-0.257317,-2.58087,1.72612,-0.131403,-2.58069,1.72636,-0.26573,-2.57899,1.7286,-0.398397,-2.57762,1.73042,-0.387702,-2.57973,1.72764,-0.313192,-2.57998,1.7273,-0.546475,-2.57364,1.73567,-0.429219,-2.58288,1.72347,-0.417709,-2.57658,1.73179,-0.535011,-2.58851,1.71605,-0.429219,-2.58288,1.72347,-0.546475,-2.57364,1.73567,-0.413054,-2.58164,1.72511,-0.387702,-2.57973,1.72764,-0.398397,-2.57762,1.73042,-0.339653,-2.58032,1.72685,-0.282738,-2.58033,1.72684,-0.293629,-2.5791,1.72846,-0.371652,-2.58065,1.72641,-0.313192,-2.57998,1.7273,-0.387702,-2.57973,1.72764,-0.371652,-2.58065,1.72641,-0.339653,-2.58032,1.72685,-0.313192,-2.57998,1.7273,-0.371652,-2.58065,1.72641,-0.364927,-2.5806,1.72648,-0.339653,-2.58032,1.72685,-0.325969,-2.58312,1.72316,-0.282738,-2.58033,1.72684,-0.339653,-2.58032,1.72685,-0.413054,-2.58164,1.72511,-0.402433,-2.58373,1.72235,-0.387702,-2.57973,1.72764,-0.325969,-2.58312,1.72316,-0.277161,-2.58319,1.72306,-0.282738,-2.58033,1.72684,-0.369378,-2.58495,1.72075,-0.364927,-2.5806,1.72648,-0.371652,-2.58065,1.72641,-0.420261,-2.58588,1.71951,-0.402433,-2.58373,1.72235,-0.413054,-2.58164,1.72511,-0.25117,-2.5853,1.72028,-0.131403,-2.58069,1.72636,-0.257317,-2.58087,1.72612,-0.325969,-2.58312,1.72316,-0.288905,-2.58338,1.72282,-0.277161,-2.58319,1.72306,-0.325969,-2.58312,1.72316,-0.289573,-2.58344,1.72273,-0.288905,-2.58338,1.72282,-0.289514,-2.58377,1.7223,-0.277161,-2.58319,1.72306,-0.288905,-2.58338,1.72282,-0.369378,-2.58495,1.72075,-0.353213,-2.5905,1.71342,-0.364927,-2.5806,1.72648,-0.325969,-2.58312,1.72316,-0.289514,-2.58377,1.7223,-0.289573,-2.58344,1.72273,-0.535011,-2.58851,1.71605,-0.430532,-2.58886,1.71558,-0.429219,-2.58288,1.72347,-0.320965,-2.58659,1.71858,-0.289514,-2.58377,1.7223,-0.325969,-2.58312,1.72316,-0.289514,-2.58377,1.7223,-0.265756,-2.58509,1.72056,-0.277161,-2.58319,1.72306,-0.320965,-2.58659,1.71858,-0.312938,-2.58592,1.71947,-0.289514,-2.58377,1.7223,-0.320965,-2.58659,1.71858,-0.312059,-2.59456,1.70806,-0.312938,-2.58592,1.71947,-0.25117,-2.5853,1.72028,-0.13933,-2.5922,1.71117,-0.131403,-2.58069,1.72636,-0.280883,-2.58629,1.71897,-0.265756,-2.58509,1.72056,-0.289514,-2.58377,1.7223,-0.420261,-2.58588,1.71951,-0.409025,-2.58678,1.71832,-0.402433,-2.58373,1.72235,-0.280883,-2.58629,1.71897,-0.259497,-2.58843,1.71614,-0.265756,-2.58509,1.72056,-0.270418,-2.58782,1.71695,-0.259497,-2.58843,1.71614,-0.280883,-2.58629,1.71897,-0.250032,-2.59301,1.7101,-0.13933,-2.5922,1.71117,-0.25117,-2.5853,1.72028,-0.420261,-2.58588,1.71951,-0.395856,-2.58924,1.71508,-0.409025,-2.58678,1.71832,-0.362576,-2.59141,1.71221,-0.353213,-2.5905,1.71342,-0.369378,-2.58495,1.72075,-0.269899,-2.58985,1.71427,-0.259497,-2.58843,1.71614,-0.270418,-2.58782,1.71695,-0.342878,-2.59203,1.71141,-0.339843,-2.58618,1.71912,-0.345879,-2.58633,1.71891,-0.342878,-2.59203,1.71141,-0.332619,-2.58855,1.716,-0.339843,-2.58618,1.71912,-0.419713,-2.58958,1.71463,-0.395856,-2.58924,1.71508,-0.420261,-2.58588,1.71951,-0.269899,-2.58985,1.71427,-0.260861,-2.59452,1.70811,-0.259497,-2.58843,1.71614,-0.274091,-2.59109,1.71264,-0.260861,-2.59452,1.70811,-0.269899,-2.58985,1.71427,-0.419713,-2.58958,1.71463,-0.393006,-2.59273,1.71048,-0.395856,-2.58924,1.71508,-0.281263,-2.59038,1.71358,-0.260861,-2.59452,1.70811,-0.274091,-2.59109,1.71264,-0.40051,-2.59302,1.7101,-0.393006,-2.59273,1.71048,-0.419713,-2.58958,1.71463,-0.535011,-2.58851,1.71605,-0.425992,-2.59473,1.70784,-0.430532,-2.58886,1.71558,-0.387985,-2.59295,1.71018,-0.366622,-2.59433,1.70837,-0.380862,-2.59064,1.71323,-0.291174,-2.59566,1.70661,-0.260861,-2.59452,1.70811,-0.281263,-2.59038,1.71358,-0.399709,-2.59377,1.70911,-0.393006,-2.59273,1.71048,-0.40051,-2.59302,1.7101,-0.399709,-2.59377,1.70911,-0.387985,-2.59295,1.71018,-0.393006,-2.59273,1.71048,-0.399709,-2.59377,1.70911,-0.366622,-2.59433,1.70837,-0.387985,-2.59295,1.71018,-0.51536,-2.5981,1.70338,-0.425992,-2.59473,1.70784,-0.535011,-2.58851,1.71605,-0.361543,-2.59455,1.70808,-0.353213,-2.5905,1.71342,-0.362576,-2.59141,1.71221,-0.319219,-2.59761,1.70404,-0.312059,-2.59456,1.70806,-0.320965,-2.58659,1.71858,-0.361543,-2.59455,1.70808,-0.352336,-2.59461,1.70799,-0.353213,-2.5905,1.71342,-0.312059,-2.59456,1.70806,-0.298069,-2.59236,1.71096,-0.302589,-2.59165,1.71191,-0.398625,-2.59476,1.7078,-0.366622,-2.59433,1.70837,-0.399709,-2.59377,1.70911,-0.312059,-2.59456,1.70806,-0.291174,-2.59566,1.70661,-0.298069,-2.59236,1.71096,-0.398625,-2.59476,1.7078,-0.361543,-2.59455,1.70808,-0.366622,-2.59433,1.70837,-0.398625,-2.59476,1.7078,-0.352336,-2.59461,1.70799,-0.361543,-2.59455,1.70808,-0.319219,-2.59761,1.70404,-0.291174,-2.59566,1.70661,-0.312059,-2.59456,1.70806,-0.342878,-2.59203,1.71141,-0.329234,-2.60053,1.70018,-0.332619,-2.58855,1.716,-0.398625,-2.59476,1.7078,-0.378504,-2.5948,1.70775,-0.352336,-2.59461,1.70799,-0.378504,-2.5948,1.70775,-0.3537,-2.59686,1.70502,-0.352336,-2.59461,1.70799,-0.396161,-2.59668,1.70526,-0.378504,-2.5948,1.70775,-0.398625,-2.59476,1.7078,-0.291174,-2.59566,1.70661,-0.278527,-2.59577,1.70647,-0.260861,-2.59452,1.70811,-0.250032,-2.59301,1.7101,-0.157489,-2.59884,1.70241,-0.13933,-2.5922,1.71117,-0.345487,-2.60011,1.70073,-0.329234,-2.60053,1.70018,-0.342878,-2.59203,1.71141,-0.319219,-2.59761,1.70404,-0.278527,-2.59577,1.70647,-0.291174,-2.59566,1.70661,-0.396161,-2.59668,1.70526,-0.390827,-2.59741,1.7043,-0.378504,-2.5948,1.70775,-0.366396,-2.5988,1.70247,-0.301881,-2.59689,1.70499,-0.278527,-2.59577,1.70647,-0.319219,-2.59761,1.70404,-0.258051,-2.60028,1.70052,-0.157489,-2.59884,1.70241,-0.250032,-2.59301,1.7101,-0.301881,-2.59689,1.70499,-0.287109,-2.5997,1.70128,-0.278527,-2.59577,1.70647,-0.319219,-2.59761,1.70404,-0.311485,-2.59958,1.70144,-0.301881,-2.59689,1.70499,-0.51536,-2.5981,1.70338,-0.404977,-2.60042,1.70033,-0.425992,-2.59473,1.70784,-0.316747,-2.59942,1.70166,-0.311485,-2.59958,1.70144,-0.319219,-2.59761,1.70404,-0.496298,-2.60054,1.70017,-0.404977,-2.60042,1.70033,-0.51536,-2.5981,1.70338,-0.29551,-2.60013,1.70071,-0.287109,-2.5997,1.70128,-0.301881,-2.59689,1.70499,-0.29551,-2.60013,1.70071,-0.291547,-2.60013,1.70071,-0.287109,-2.5997,1.70128,-0.295382,-2.60013,1.70071,-0.291547,-2.60013,1.70071,-0.29551,-2.60013,1.70071,-0.295216,-2.60013,1.70071,-0.295015,-2.60013,1.70071,-0.294776,-2.60013,1.70071,-0.294501,-2.60013,1.70071,-0.294189,-2.60013,1.70071,-0.29384,-2.60013,1.70071,-0.293455,-2.60013,1.70071,-0.293033,-2.60013,1.70071,-0.292574,-2.60013,1.70071,-0.292079,-2.60013,1.70071,-0.258051,-2.60028,1.70052,-0.174051,-2.60052,1.7002,-0.157489,-2.59884,1.70241,-0.706946,-2.26966,2.13677,-0.628228,-2.27143,2.13444,-0.654814,-2.26959,2.13686,-1.08233,-2.27292,2.13247,-0.993993,-2.26972,2.1367,-1.05737,-2.2694,2.13711,-0.741639,-2.27311,2.13222,-0.628228,-2.27143,2.13444,-0.706946,-2.26966,2.13677,-1.08233,-2.27292,2.13247,-0.956173,-2.27583,2.12863,-0.993993,-2.26972,2.1367,-0.741639,-2.27311,2.13222,-0.606204,-2.2786,2.12498,-0.628228,-2.27143,2.13444,-1.10299,-2.28143,2.12124,-0.956173,-2.27583,2.12863,-1.08233,-2.27292,2.13247,-0.753756,-2.27925,2.12412,-0.606204,-2.2786,2.12498,-0.741639,-2.27311,2.13222,-1.10299,-2.28143,2.12124,-0.937518,-2.29664,2.10117,-0.956173,-2.27583,2.12863,-0.753756,-2.27925,2.12412,-0.593095,-2.29196,2.10734,-0.606204,-2.2786,2.12498,-0.767948,-2.29919,2.09781,-0.593095,-2.29196,2.10734,-0.753756,-2.27925,2.12412,-1.11158,-2.29599,2.10203,-0.937518,-2.29664,2.10117,-1.10299,-2.28143,2.12124,-1.11058,-2.57824,1.72959,-1.01219,-2.33921,2.045,-1.11158,-2.29599,2.10203,-1.01219,-2.33921,2.045,-0.937518,-2.29664,2.10117,-1.11158,-2.29599,2.10203,-0.767948,-2.29919,2.09781,-0.692717,-2.34018,2.04373,-0.593095,-2.29196,2.10734,-0.592905,-2.57556,1.73313,-0.78877,-2.3466,2.03525,-1.11058,-2.57824,1.72959,-1.01871,-2.44127,1.91033,-1.01219,-2.33921,2.045,-1.01871,-2.44127,1.91033,-1.01201,-2.43547,1.91799,-1.01219,-2.33921,2.045,-0.980488,-2.41302,1.94761,-0.937518,-2.29664,2.10117,-1.01219,-2.33921,2.045,-0.691256,-2.57285,1.7367,-0.592905,-2.57556,1.73313,-0.692717,-2.34018,2.04373,-0.980488,-2.41302,1.94761,-0.934033,-2.38219,1.98829,-0.937518,-2.29664,2.10117,-0.934033,-2.38219,1.98829,-0.90613,-2.37188,2.00189,-0.937518,-2.29664,2.10117,-0.805679,-2.38714,1.98175,-0.917864,-2.38183,1.98876,-0.877297,-2.37792,1.99392,-0.898591,-2.37709,1.99502,-0.890387,-2.38732,1.98152,-0.877297,-2.37792,1.99392,-0.917864,-2.38183,1.98876,-0.890387,-2.38732,1.98152,-0.879948,-2.38717,1.98172,-0.877297,-2.37792,1.99392,-0.879948,-2.38717,1.98172,-0.854929,-2.38837,1.98014,-0.877297,-2.37792,1.99392,-0.878189,-2.39285,1.97423,-0.854929,-2.38837,1.98014,-0.879948,-2.38717,1.98172,-0.917864,-2.38183,1.98876,-0.892754,-2.39096,1.97671,-0.890387,-2.38732,1.98152,-0.878189,-2.39285,1.97423,-0.857883,-2.39046,1.97738,-0.854929,-2.38837,1.98014,-0.857883,-2.39046,1.97738,-0.841081,-2.39098,1.97669,-0.854929,-2.38837,1.98014,-0.960877,-2.40779,1.95451,-0.892754,-2.39096,1.97671,-0.917864,-2.38183,1.98876,-0.960877,-2.40779,1.95451,-0.890228,-2.39526,1.97105,-0.892754,-2.39096,1.97671,-0.83718,-2.39817,1.9672,-0.841081,-2.39098,1.97669,-0.857883,-2.39046,1.97738,-0.83718,-2.39817,1.9672,-0.827609,-2.39785,1.96762,-0.841081,-2.39098,1.97669,-0.884205,-2.39574,1.9704,-0.857883,-2.39046,1.97738,-0.878189,-2.39285,1.97423,-0.884205,-2.39574,1.9704,-0.868269,-2.39672,1.96912,-0.857883,-2.39046,1.97738,-0.960877,-2.40779,1.95451,-0.884205,-2.39574,1.9704,-0.890228,-2.39526,1.97105,-0.960877,-2.40779,1.95451,-0.868269,-2.39672,1.96912,-0.884205,-2.39574,1.9704,-0.863725,-2.4016,1.96268,-0.827609,-2.39785,1.96762,-0.83718,-2.39817,1.9672,-0.960877,-2.40779,1.95451,-0.863725,-2.4016,1.96268,-0.868269,-2.39672,1.96912,-0.863725,-2.4016,1.96268,-0.829839,-2.40184,1.96236,-0.827609,-2.39785,1.96762,-0.863725,-2.4016,1.96268,-0.837303,-2.40196,1.9622,-0.829839,-2.40184,1.96236,-0.960877,-2.40779,1.95451,-0.837303,-2.40196,1.9622,-0.863725,-2.4016,1.96268,-0.838927,-2.46153,1.88359,-0.692717,-2.34018,2.04373,-0.805679,-2.38714,1.98175,-0.960877,-2.40779,1.95451,-0.862927,-2.40669,1.95596,-0.837303,-2.40196,1.9622,-0.960877,-2.40779,1.95451,-0.866811,-2.41096,1.95032,-0.862927,-2.40669,1.95596,-0.874189,-2.41461,1.94551,-0.960877,-2.40779,1.95451,-0.878829,-2.42057,1.93765,-0.874189,-2.41461,1.94551,-0.960877,-2.40779,1.95451,-0.926217,-2.41895,1.93979,-0.878829,-2.42057,1.93765,-0.960877,-2.40779,1.95451,-0.94612,-2.42017,1.93817,-0.926217,-2.41895,1.93979,-0.911007,-2.42106,1.937,-0.878829,-2.42057,1.93765,-0.926217,-2.41895,1.93979,-0.911007,-2.42106,1.937,-0.876287,-2.42684,1.92937,-0.878829,-2.42057,1.93765,-0.960877,-2.40779,1.95451,-0.959376,-2.42571,1.93086,-0.94612,-2.42017,1.93817,-0.898775,-2.42682,1.9294,-0.876287,-2.42684,1.92937,-0.911007,-2.42106,1.937,-1.00522,-2.43808,1.91455,-0.838927,-2.46153,1.88359,-0.760068,-2.50222,1.8299,-1.00522,-2.43808,1.91455,-0.977499,-2.43794,1.91473,-0.959376,-2.42571,1.93086,-0.888023,-2.43783,1.91486,-0.876287,-2.42684,1.92937,-0.898775,-2.42682,1.9294,-0.888023,-2.43783,1.91486,-0.857739,-2.44427,1.90637,-0.876287,-2.42684,1.92937,-0.883063,-2.45505,1.89214,-0.857739,-2.44427,1.90637,-0.888023,-2.43783,1.91486,-1.00522,-2.43808,1.91455,-0.991791,-2.46724,1.87607,-0.977499,-2.43794,1.91473,-0.849505,-2.45759,1.88879,-0.829851,-2.52627,1.79817,-0.760068,-2.50222,1.8299,-0.838927,-2.46153,1.88359,-1.048,-2.4994,1.83362,-0.991791,-2.46724,1.87607,-1.00522,-2.43808,1.91455,-1.11058,-2.57824,1.72959,-1.06099,-2.50479,1.82652,-1.01871,-2.44127,1.91033,-0.883063,-2.45505,1.89214,-0.869677,-2.47411,1.86699,-0.849505,-2.45759,1.88879,-0.869677,-2.47411,1.86699,-0.843652,-2.49839,1.83496,-0.849505,-2.45759,1.88879,-0.887348,-2.48242,1.85603,-0.869677,-2.47411,1.86699,-0.883063,-2.45505,1.89214,-1.048,-2.4994,1.83362,-1.01188,-2.48379,1.85422,-0.991791,-2.46724,1.87607,-0.887348,-2.48242,1.85603,-0.872866,-2.48814,1.84848,-0.869677,-2.47411,1.86699,-1.01752,-2.53988,1.78022,-0.991791,-2.46724,1.87607,-1.01188,-2.48379,1.85422,-0.885371,-2.49119,1.84446,-0.872866,-2.48814,1.84848,-0.887348,-2.48242,1.85603,-0.8578,-2.50871,1.82134,-0.885371,-2.49119,1.84446,-0.855956,-2.54871,1.76856,-0.872866,-2.48814,1.84848,-1.048,-2.4994,1.83362,-1.03589,-2.49903,1.83411,-1.01188,-2.48379,1.85422,-1.01752,-2.53988,1.78022,-1.00295,-2.49959,1.83337,-0.991791,-2.46724,1.87607,-0.885371,-2.4984,1.83495,-0.855956,-2.54871,1.76856,-0.885371,-2.49119,1.84446,-1.01752,-2.53988,1.78022,-1.00453,-2.54882,1.76842,-1.00295,-2.49959,1.83337,-1.03231,-2.51077,1.81862,-1.02584,-2.5506,1.76606,-1.02342,-2.4988,1.83442,-0.8578,-2.50871,1.82134,-0.839227,-2.51424,1.81405,-0.843652,-2.49839,1.83496,-1.05269,-2.51276,1.816,-1.03589,-2.49903,1.83411,-1.048,-2.4994,1.83362,-1.05269,-2.51276,1.816,-1.048,-2.52411,1.80103,-1.03589,-2.49903,1.83411,-0.873326,-2.53063,1.79242,-0.855956,-2.54871,1.76856,-0.885371,-2.4984,1.83495,-0.8578,-2.50871,1.82134,-0.839751,-2.52409,1.80105,-0.839227,-2.51424,1.81405,-1.11058,-2.57824,1.72959,-1.06168,-2.52457,1.80042,-1.06099,-2.50479,1.82652,-1.0528,-2.52307,1.80239,-1.048,-2.52411,1.80103,-1.05269,-2.51276,1.816,-1.03811,-2.52736,1.79673,-1.02584,-2.5506,1.76606,-1.03231,-2.51077,1.81862,-0.83388,-2.52908,1.79447,-0.760068,-2.50222,1.8299,-0.829851,-2.52627,1.79817,-1.11058,-2.57824,1.72959,-1.05058,-2.53041,1.79271,-1.06168,-2.52457,1.80042,-0.83388,-2.52908,1.79447,-0.793659,-2.57778,1.73021,-0.842425,-2.52937,1.79408,-0.793659,-2.57778,1.73021,-0.83388,-2.52908,1.79447,-0.849944,-2.52664,1.79768,-0.793659,-2.57778,1.73021,-0.842425,-2.52937,1.79408,-1.05058,-2.53041,1.79271,-1.02584,-2.5506,1.76606,-1.03811,-2.52736,1.79673,-1.11058,-2.57824,1.72959,-1.02584,-2.5506,1.76606,-1.05058,-2.53041,1.79271,-0.846117,-2.5519,1.76436,-0.793659,-2.57778,1.73021,-0.849944,-2.52664,1.79768,-0.873642,-2.55579,1.75922,-0.855956,-2.54871,1.76856,-0.873326,-2.53063,1.79242,-1.01406,-2.55494,1.76034,-1.00453,-2.54882,1.76842,-1.01752,-2.53988,1.78022,-0.873642,-2.55579,1.75922,-0.859978,-2.55894,1.75506,-0.855956,-2.54871,1.76856,-1.01406,-2.55494,1.76034,-0.997334,-2.5638,1.74866,-1.00453,-2.54882,1.76842,-0.882653,-2.56687,1.7446,-0.859978,-2.55894,1.75506,-0.873642,-2.55579,1.75922,-0.858482,-2.57166,1.73827,-0.793659,-2.57778,1.73021,-0.846117,-2.5519,1.76436,-1.00399,-2.57144,1.73857,-0.997334,-2.5638,1.74866,-1.01406,-2.55494,1.76034,-1.11058,-2.57824,1.72959,-1.01658,-2.56939,1.74127,-1.02584,-2.5506,1.76606,-0.882653,-2.56687,1.7446,-0.870581,-2.57138,1.73864,-0.859978,-2.55894,1.75506,-1.00399,-2.57144,1.73857,-0.979048,-2.57619,1.7323,-0.997334,-2.5638,1.74866,-0.895189,-2.57347,1.73589,-0.870581,-2.57138,1.73864,-0.882653,-2.56687,1.7446,-1.11058,-2.57824,1.72959,-1.01264,-2.57313,1.73634,-1.01658,-2.56939,1.74127,-0.877624,-2.57343,1.73595,-0.870581,-2.57138,1.73864,-0.895189,-2.57347,1.73589,-0.98778,-2.58044,1.7267,-0.979048,-2.57619,1.7323,-1.00399,-2.57144,1.73857,-0.919981,-2.57944,1.72801,-0.919981,-2.57944,1.72801,-0.885857,-2.57691,1.73135,-0.877624,-2.57343,1.73595,-0.877624,-2.57343,1.73595,-0.859031,-2.57952,1.72791,-0.870581,-2.57138,1.73864,-1.11058,-2.57824,1.72959,-1.01592,-2.58154,1.72525,-1.01264,-2.57313,1.73634,-0.831429,-2.5849,1.7208,-0.793659,-2.57778,1.73021,-0.858482,-2.57166,1.73827,-0.680849,-2.59065,1.71322,-0.592905,-2.57556,1.73313,-0.691256,-2.57285,1.7367,-0.98778,-2.58044,1.7267,-0.961918,-2.57984,1.72748,-0.979048,-2.57619,1.7323,-0.919981,-2.57944,1.72801,-0.892495,-2.57966,1.72772,-0.885857,-2.57691,1.73135,-0.892495,-2.57966,1.72772,-0.879064,-2.58286,1.7235,-0.885857,-2.57691,1.73135,-0.888614,-2.5812,1.7257,-0.879064,-2.58286,1.7235,-0.892495,-2.57966,1.72772,-0.98778,-2.58044,1.7267,-0.919981,-2.57944,1.72801,-0.961918,-2.57984,1.72748,-0.98778,-2.58044,1.7267,-0.892495,-2.57966,1.72772,-0.919981,-2.57944,1.72801,-0.84207,-2.59278,1.7104,-0.859031,-2.57952,1.72791,-0.877624,-2.57343,1.73595,-1.00866,-2.58967,1.71451,-0.982178,-2.58258,1.72388,-0.98778,-2.58044,1.7267,-0.982178,-2.58258,1.72388,-0.892495,-2.57966,1.72772,-0.98778,-2.58044,1.7267,-0.982178,-2.58258,1.72388,-0.91241,-2.58515,1.72048,-0.892495,-2.57966,1.72772,-0.888125,-2.58455,1.72127,-0.879064,-2.58286,1.7235,-0.888614,-2.5812,1.7257,-0.680849,-2.59065,1.71322,-0.604115,-2.59027,1.71372,-0.592905,-2.57556,1.73313,-0.84207,-2.59278,1.7104,-0.836392,-2.59053,1.71338,-0.859031,-2.57952,1.72791,-0.958703,-2.58662,1.71853,-0.91241,-2.58515,1.72048,-0.982178,-2.58258,1.72388,-0.831429,-2.5849,1.7208,-0.807314,-2.59112,1.7126,-0.793659,-2.57778,1.73021,-1.11058,-2.57824,1.72959,-1.0252,-2.59123,1.71246,-1.01592,-2.58154,1.72525,-0.824232,-2.5917,1.71183,-0.807314,-2.59112,1.7126,-0.831429,-2.5849,1.7208,-0.958703,-2.58662,1.71853,-0.948695,-2.58691,1.71816,-0.91241,-2.58515,1.72048,-0.959248,-2.59654,1.70545,-0.948695,-2.58691,1.71816,-0.958703,-2.58662,1.71853,-1.09333,-2.59526,1.70713,-1.0252,-2.59123,1.71246,-1.11058,-2.57824,1.72959,-1.00866,-2.58967,1.71451,-1.00165,-2.5943,1.70841,-0.982178,-2.58258,1.72388,-0.888125,-2.58455,1.72127,-0.889547,-2.59629,1.70578,-0.879064,-2.58286,1.7235,-0.89866,-2.59683,1.70507,-0.889547,-2.59629,1.70578,-0.888125,-2.58455,1.72127,-0.842234,-2.59591,1.70627,-0.836392,-2.59053,1.71338,-0.84207,-2.59278,1.7104,-0.959248,-2.59654,1.70545,-0.952926,-2.60068,1.69999,-0.948695,-2.58691,1.71816,-0.680849,-2.59065,1.71322,-0.614308,-2.59652,1.70547,-0.604115,-2.59027,1.71372,-1.09333,-2.59526,1.70713,-1.03675,-2.59778,1.70381,-1.0252,-2.59123,1.71246,-1.01256,-2.5983,1.70312,-1.00165,-2.5943,1.70841,-1.00866,-2.58967,1.71451,-0.824232,-2.5917,1.71183,-0.824295,-2.59795,1.70359,-0.807314,-2.59112,1.7126,-0.842234,-2.59591,1.70627,-0.834507,-2.59757,1.7041,-0.836392,-2.59053,1.71338,-0.659764,-2.59973,1.70125,-0.614308,-2.59652,1.70547,-0.680849,-2.59065,1.71322,-1.01256,-2.5983,1.70312,-0.988263,-2.59854,1.70281,-1.00165,-2.5943,1.70841,-0.855594,-2.5948,1.70775,-0.834507,-2.59757,1.7041,-0.842234,-2.59591,1.70627,-0.965772,-2.59915,1.702,-0.952926,-2.60068,1.69999,-0.959248,-2.59654,1.70545,-1.07881,-2.59972,1.70125,-1.03675,-2.59778,1.70381,-0.983569,-2.59958,1.70144,-0.965772,-2.59915,1.702,-0.974553,-2.5972,1.70458,-0.89866,-2.59683,1.70507,-0.888013,-2.59894,1.70229,-0.889547,-2.59629,1.70578,-0.855594,-2.5948,1.70775,-0.839314,-2.59923,1.7019,-0.834507,-2.59757,1.7041,-0.895867,-2.60253,1.69754,-0.888013,-2.59894,1.70229,-0.89866,-2.59683,1.70507,-0.659764,-2.59973,1.70125,-0.633855,-2.60074,1.69991,-0.614308,-2.59652,1.70547,-0.983569,-2.59958,1.70144,-0.952926,-2.60068,1.69999,-0.965772,-2.59915,1.702,-0.895867,-2.60253,1.69754,-0.87973,-2.59826,1.70317,-0.888013,-2.59894,1.70229,-0.895867,-2.60253,1.69754,-0.866737,-2.60155,1.69884,-0.87973,-2.59826,1.70317,-0.855594,-2.5948,1.70775,-0.853339,-2.59957,1.70146,-0.839314,-2.59923,1.7019,-1.01256,-2.5983,1.70312,-0.985007,-2.59969,1.70129,-0.988263,-2.59854,1.70281,-0.866737,-2.60155,1.69884,-0.853339,-2.59957,1.70146,-0.855594,-2.5948,1.70775,-1.00823,-2.59974,1.70123,-0.985007,-2.59969,1.70129,-1.01256,-2.5983,1.70312,-0.985112,-2.59974,1.70123,-0.952926,-2.60068,1.69999,-0.983569,-2.59958,1.70144,-1.00823,-2.59974,1.70123,-0.985112,-2.59974,1.70123,-0.985007,-2.59969,1.70129,-1.00737,-2.59974,1.70123,-0.985112,-2.59974,1.70123,-1.00823,-2.59974,1.70123,-1.00654,-2.59974,1.70123,-1.00575,-2.59974,1.70123,-1.005,-2.59974,1.70123,-1.00429,-2.59974,1.70123,-1.00361,-2.59974,1.70123,-1.00296,-2.59974,1.70123,-1.00236,-2.59974,1.70123,-1.00179,-2.59974,1.70123,-1.00126,-2.59974,1.70123,-1.00076,-2.59974,1.70123,-1.00031,-2.59974,1.70123,-0.993401,-2.60221,1.69797,-0.985112,-2.59974,1.70123,-1.00031,-2.59974,1.70123,-0.993401,-2.60221,1.69797,-0.952926,-2.60068,1.69999,-0.985112,-2.59974,1.70123,-1.07881,-2.59972,1.70125,-1.06016,-2.60108,1.69945,-1.03675,-2.59778,1.70381,-0.866737,-2.60155,1.69884,-0.857088,-2.60238,1.69775,-0.853339,-2.59957,1.70146,-0.895867,-2.60253,1.69754,-0.857088,-2.60238,1.69775,-0.866737,-2.60155,1.69884,-0.974009,-2.60244,1.69766,-0.952926,-2.60068,1.69999,-0.993401,-2.60221,1.69797,-0.974009,-2.60244,1.69766,-0.96141,-2.60387,1.69578,-0.952926,-2.60068,1.69999,-0.876876,-2.60339,1.69641,-0.857088,-2.60238,1.69775,-0.895867,-2.60253,1.69754,-0.993401,-2.60221,1.69797,-0.983529,-2.60402,1.69558,-0.974009,-2.60244,1.69766,-0.989736,-2.60412,1.69544,-0.983529,-2.60402,1.69558,-0.993401,-2.60221,1.69797,-0.989736,-2.60412,1.69544,-0.985112,-2.60412,1.69544,-0.983529,-2.60402,1.69558,-0.989502,-2.60412,1.69544,-0.985112,-2.60412,1.69544,-0.989736,-2.60412,1.69544,-0.989241,-2.60412,1.69544,-0.988952,-2.60412,1.69544,-0.988635,-2.60412,1.69544,-0.988291,-2.60412,1.69544,-0.98792,-2.60412,1.69544,-0.987521,-2.60412,1.69544,-0.987094,-2.60412,1.69544,-0.98664,-2.60412,1.69544,-0.986158,-2.60412,1.69544,-0.985649,-2.60412,1.69544,-0.876876,-2.60339,1.69641,-0.862252,-2.60532,1.69386,-0.857088,-2.60238,1.69775,-0.872821,-2.60532,1.69386,-0.862252,-2.60532,1.69386,-0.876876,-2.60339,1.69641,-0.872578,-2.60532,1.69386,-0.862252,-2.60532,1.69386,-0.872821,-2.60532,1.69386,-0.872289,-2.60532,1.69386,-0.871954,-2.60532,1.69386,-0.871573,-2.60532,1.69386,-0.871146,-2.60532,1.69386,-0.870674,-2.60532,1.69386,-0.870156,-2.60532,1.69386,-0.869592,-2.60532,1.69386,-0.868981,-2.60532,1.69386,-0.868325,-2.60532,1.69386,-0.867624,-2.60532,1.69386,-0.866876,-2.60532,1.69386,-0.866138,-2.60532,1.69386,-0.865463,-2.60532,1.69386,-0.864853,-2.60532,1.69386,-0.864307,-2.60532,1.69386,-0.863826,-2.60532,1.69386,-0.863408,-2.60532,1.69386,-0.863055,-2.60532,1.69386,-0.862766,-2.60532,1.69386,-0.862541,-2.60532,1.69386,-0.862381,-2.60532,1.69386,-0.862284,-2.60532,1.69386,-1.42816,-2.26721,2.14001,-1.36562,-2.26667,2.14072,-1.3872,-2.26352,2.14487,-1.42816,-2.26721,2.14001,-1.33958,-2.27722,2.1268,-1.36562,-2.26667,2.14072,-1.4533,-2.27838,2.12527,-1.33958,-2.27722,2.1268,-1.42816,-2.26721,2.14001,-1.4533,-2.27838,2.12527,-1.32276,-2.29317,2.10575,-1.33958,-2.27722,2.1268,-1.47567,-2.30277,2.09309,-1.32276,-2.29317,2.10575,-1.4533,-2.27838,2.12527,-1.47567,-2.30277,2.09309,-1.39663,-2.33323,2.0529,-1.32276,-2.29317,2.10575,-1.47567,-2.30277,2.09309,-1.47385,-2.36628,2.00929,-1.39663,-2.33323,2.0529,-1.47385,-2.36628,2.00929,-1.44826,-2.36606,2.00957,-1.39663,-2.33323,2.0529,-1.44826,-2.36606,2.00957,-1.4225,-2.37528,1.99741,-1.39663,-2.33323,2.0529,-1.31472,-2.46728,1.87601,-1.32276,-2.29317,2.10575,-1.39663,-2.33323,2.0529,-1.47567,-2.30277,2.09309,-1.49831,-2.37354,1.9997,-1.47385,-2.36628,2.00929,-1.47692,-2.37255,2.00101,-1.44826,-2.37199,2.00175,-1.46132,-2.37106,2.00298,-1.4898,-2.37726,1.9948,-1.44826,-2.37199,2.00175,-1.47692,-2.37255,2.00101,-1.4898,-2.37726,1.9948,-1.46043,-2.38174,1.98889,-1.44826,-2.37199,2.00175,-1.46043,-2.38174,1.98889,-1.44999,-2.38158,1.98909,-1.44826,-2.37199,2.00175,-1.44999,-2.38158,1.98909,-1.42446,-2.3822,1.98827,-1.44826,-2.37199,2.00175,-1.53802,-2.39896,1.96616,-1.49831,-2.37354,1.9997,-1.47567,-2.30277,2.09309,-1.44822,-2.38723,1.98163,-1.52752,-2.39998,1.96482,-1.46043,-2.38174,1.98889,-1.4898,-2.37726,1.9948,-1.52752,-2.39998,1.96482,-1.4628,-2.38539,1.98407,-1.46043,-2.38174,1.98889,-1.44822,-2.38723,1.98163,-1.42749,-2.38488,1.98474,-1.42446,-2.3822,1.98827,-1.42749,-2.38488,1.98474,-1.40263,-2.3887,1.9797,-1.42446,-2.3822,1.98827,-1.52752,-2.39998,1.96482,-1.45988,-2.38934,1.97886,-1.4628,-2.38539,1.98407,-1.4085,-2.39225,1.97502,-1.40263,-2.3887,1.9797,-1.42749,-2.38488,1.98474,-1.44822,-2.38723,1.98163,-1.43821,-2.39105,1.97659,-1.42749,-2.38488,1.98474,-1.45424,-2.38978,1.97828,-1.43821,-2.39105,1.97659,-1.44822,-2.38723,1.98163,-1.52752,-2.39998,1.96482,-1.45424,-2.38978,1.97828,-1.45988,-2.38934,1.97886,-1.52752,-2.39998,1.96482,-1.43821,-2.39105,1.97659,-1.45424,-2.38978,1.97828,-1.4085,-2.39225,1.97502,-1.39761,-2.39289,1.97417,-1.40263,-2.3887,1.9797,-1.52752,-2.39998,1.96482,-1.43367,-2.39616,1.96985,-1.43821,-2.39105,1.97659,-1.43367,-2.39616,1.96985,-1.39761,-2.39289,1.97417,-1.4085,-2.39225,1.97502,-1.43367,-2.39616,1.96985,-1.40948,-2.39641,1.96953,-1.39761,-2.39289,1.97417,-1.40948,-2.39641,1.96953,-1.39992,-2.39625,1.96973,-1.39761,-2.39289,1.97417,-1.52752,-2.39998,1.96482,-1.40948,-2.39641,1.96953,-1.43367,-2.39616,1.96985,-1.52752,-2.39998,1.96482,-1.43299,-2.40113,1.9633,-1.40948,-2.39641,1.96953,-1.52752,-2.39998,1.96482,-1.43682,-2.4053,1.95779,-1.43299,-2.40113,1.9633,-1.52752,-2.39998,1.96482,-1.44541,-2.40982,1.95183,-1.43682,-2.4053,1.95779,-1.52752,-2.39998,1.96482,-1.48886,-2.41354,1.94692,-1.44541,-2.40982,1.95183,-1.52752,-2.39998,1.96482,-1.51159,-2.41407,1.94622,-1.48886,-2.41354,1.94692,-1.48886,-2.41354,1.94692,-1.44896,-2.41799,1.94105,-1.44541,-2.40982,1.95183,-1.52752,-2.39998,1.96482,-1.52654,-2.41837,1.94054,-1.51159,-2.41407,1.94622,-1.47,-2.42013,1.93823,-1.44896,-2.41799,1.94105,-1.48886,-2.41354,1.94692,-1.57528,-2.4328,1.9215,-1.52654,-2.41837,1.94054,-1.52752,-2.39998,1.96482,-1.4582,-2.4318,1.92282,-1.44896,-2.41799,1.94105,-1.47,-2.42013,1.93823,-1.57528,-2.4328,1.9215,-1.5499,-2.4348,1.91886,-1.52654,-2.41837,1.94054,-1.4582,-2.4318,1.92282,-1.42787,-2.43818,1.91441,-1.44896,-2.41799,1.94105,-1.31472,-2.46728,1.87601,-1.19303,-2.48539,1.85211,-1.45311,-2.44947,1.89951,-1.42787,-2.43818,1.91441,-1.4582,-2.4318,1.92282,-1.45311,-2.44947,1.89951,-1.41958,-2.45155,1.89677,-1.42787,-2.43818,1.91441,-1.57528,-2.4328,1.9215,-1.56688,-2.47566,1.86495,-1.5499,-2.4348,1.91886,-1.61144,-2.48398,1.85397,-1.39927,-2.51715,1.81021,-1.31472,-2.46728,1.87601,-1.40587,-2.46728,1.87601,-1.39927,-2.51715,1.81021,-1.19303,-2.48539,1.85211,-1.31472,-2.46728,1.87601,-1.45311,-2.44947,1.89951,-1.43962,-2.46825,1.87473,-1.41958,-2.45155,1.89677,-1.43962,-2.46825,1.87473,-1.4137,-2.49277,1.84237,-1.41958,-2.45155,1.89677,-1.45749,-2.47893,1.86064,-1.43962,-2.46825,1.87473,-1.45311,-2.44947,1.89951,-1.61144,-2.48398,1.85397,-1.58158,-2.47845,1.86127,-1.56688,-2.47566,1.86495,-1.45749,-2.47893,1.86064,-1.44289,-2.48235,1.85612,-1.43962,-2.46825,1.87473,-1.61144,-2.48398,1.85397,-1.59533,-2.48494,1.85271,-1.58158,-2.47845,1.86127,-1.58757,-2.53388,1.78813,-1.56688,-2.47566,1.86495,-1.58158,-2.47845,1.86127,-1.42789,-2.50306,1.8288,-1.4137,-2.49277,1.84237,-1.43962,-2.46825,1.87473,-1.45749,-2.47893,1.86064,-1.42622,-2.5471,1.77069,-1.44289,-2.48235,1.85612,-1.58757,-2.53388,1.78813,-1.57299,-2.49401,1.84074,-1.56688,-2.47566,1.86495,-1.61144,-2.48398,1.85397,-1.60782,-2.49638,1.83761,-1.59533,-2.48494,1.85271,-1.62222,-2.5034,1.82834,-1.60782,-2.49638,1.83761,-1.61144,-2.48398,1.85397,-1.58757,-2.53388,1.78813,-1.57458,-2.54324,1.77578,-1.57299,-2.49401,1.84074,-1.60205,-2.50476,1.82656,-1.59607,-2.5457,1.77254,-1.59347,-2.49321,1.84179,-1.42789,-2.50306,1.8288,-1.40923,-2.50869,1.82137,-1.4137,-2.49277,1.84237,-1.39927,-2.51715,1.81021,-1.28634,-2.51715,1.81021,-1.19303,-2.48539,1.85211,-1.62222,-2.5034,1.82834,-1.61804,-2.51851,1.80842,-1.60782,-2.49638,1.83761,-1.60665,-2.5186,1.80829,-1.59607,-2.5457,1.77254,-1.60205,-2.50476,1.82656,-1.42789,-2.50306,1.8288,-1.4098,-2.5185,1.80842,-1.40923,-2.50869,1.82137,-1.62285,-2.5171,1.81027,-1.61804,-2.51851,1.80842,-1.62222,-2.5034,1.82834,-1.44309,-2.52616,1.79832,-1.42622,-2.5471,1.77069,-1.45749,-2.47893,1.86064,-1.61218,-2.52388,1.80132,-1.59607,-2.5457,1.77254,-1.60665,-2.5186,1.80829,-1.28634,-2.51715,1.81021,-1.14733,-2.55498,1.76029,-1.19303,-2.48539,1.85211,-1.61933,-2.52474,1.80019,-1.59607,-2.5457,1.77254,-1.61218,-2.52388,1.80132,-1.4436,-2.55014,1.76667,-1.42622,-2.5471,1.77069,-1.44309,-2.52616,1.79832,-1.64024,-2.55609,1.75883,-1.59607,-2.5457,1.77254,-1.61933,-2.52474,1.80019,-1.5841,-2.54896,1.76823,-1.24549,-2.57904,1.72854,-1.14733,-2.55498,1.76029,-1.28634,-2.51715,1.81021,-1.5841,-2.54896,1.76823,-1.56736,-2.55818,1.75606,-1.57458,-2.54324,1.77578,-1.45317,-2.56202,1.751,-1.42622,-2.5471,1.77069,-1.4436,-2.55014,1.76667,-1.58589,-2.56523,1.74677,-1.57394,-2.56576,1.74607,-1.56736,-2.55818,1.75606,-1.5841,-2.54896,1.76823,-1.45317,-2.56202,1.751,-1.44068,-2.566,1.74574,-1.42622,-2.5471,1.77069,-1.24549,-2.57904,1.72854,-1.14252,-2.57142,1.7386,-1.14733,-2.55498,1.76029,-1.57394,-2.56576,1.74607,-1.55606,-2.56668,1.74485,-1.56736,-2.55818,1.75606,-1.64392,-2.57311,1.73636,-1.58589,-2.56523,1.74677,-1.64024,-2.55609,1.75883,-1.47516,-2.5707,1.73954,-1.44766,-2.56784,1.74332,-1.45317,-2.56202,1.751,-1.44766,-2.56784,1.74332,-1.44068,-2.566,1.74574,-1.45317,-2.56202,1.751,-1.64392,-2.57311,1.73636,-1.57515,-2.57383,1.73541,-1.58589,-2.56523,1.74677,-1.55805,-2.57447,1.73457,-1.55606,-2.56668,1.74485,-1.57394,-2.56576,1.74607,-1.47516,-2.5707,1.73954,-1.4559,-2.57133,1.73872,-1.44766,-2.56784,1.74332,-1.55805,-2.57447,1.73457,-1.53907,-2.57358,1.73574,-1.55606,-2.56668,1.74485,-1.44766,-2.56784,1.74332,-1.40691,-2.58444,1.72141,-1.44068,-2.566,1.74574,-1.50173,-2.57463,1.73436,-1.4559,-2.57133,1.73872,-1.47516,-2.5707,1.73954,-1.50173,-2.57463,1.73436,-1.46222,-2.57412,1.73503,-1.4559,-2.57133,1.73872,-1.50173,-2.57463,1.73436,-1.48025,-2.57924,1.72828,-1.46222,-2.57412,1.73503,-1.46222,-2.57412,1.73503,-1.44911,-2.57729,1.73085,-1.4559,-2.57133,1.73872,-1.55805,-2.57447,1.73457,-1.50173,-2.57463,1.73436,-1.53907,-2.57358,1.73574,-1.45865,-2.5755,1.73321,-1.44911,-2.57729,1.73085,-1.46222,-2.57412,1.73503,-1.55805,-2.57447,1.73457,-1.48025,-2.57924,1.72828,-1.50173,-2.57463,1.73436,-1.41206,-2.58679,1.71831,-1.40691,-2.58444,1.72141,-1.44766,-2.56784,1.74332,-1.57735,-2.58347,1.7227,-1.55211,-2.57693,1.73133,-1.55805,-2.57447,1.73457,-1.55211,-2.57693,1.73133,-1.48025,-2.57924,1.72828,-1.55805,-2.57447,1.73457,-1.24549,-2.57904,1.72854,-1.14906,-2.58404,1.72194,-1.14252,-2.57142,1.7386,-1.64392,-2.57311,1.73636,-1.59064,-2.58318,1.72308,-1.57515,-2.57383,1.73541,-1.45824,-2.57889,1.72874,-1.44911,-2.57729,1.73085,-1.45865,-2.5755,1.73321,-1.63715,-2.58559,1.7199,-1.59064,-2.58318,1.72308,-1.64392,-2.57311,1.73636,-1.52874,-2.58101,1.72594,-1.48025,-2.57924,1.72828,-1.55211,-2.57693,1.73133,-1.52874,-2.58101,1.72594,-1.51866,-2.58132,1.72553,-1.48025,-2.57924,1.72828,-1.5293,-2.5908,1.71302,-1.51866,-2.58132,1.72553,-1.52874,-2.58101,1.72594,-1.5293,-2.5908,1.71302,-1.52307,-2.59501,1.70747,-1.51866,-2.58132,1.72553,-1.57735,-2.58347,1.7227,-1.57175,-2.58872,1.71576,-1.55211,-2.57693,1.73133,-1.23169,-2.59166,1.71189,-1.14906,-2.58404,1.72194,-1.24549,-2.57904,1.72854,-1.46866,-2.59092,1.71287,-1.44911,-2.57729,1.73085,-1.45824,-2.57889,1.72874,-1.46866,-2.59092,1.71287,-1.45935,-2.59006,1.71399,-1.44911,-2.57729,1.73085,-1.41182,-2.58976,1.71439,-1.40691,-2.58444,1.72141,-1.41206,-2.58679,1.71831,-1.58306,-2.59048,1.71345,-1.57175,-2.58872,1.71576,-1.57735,-2.58347,1.7227,-1.41182,-2.58976,1.71439,-1.4044,-2.59189,1.71159,-1.40691,-2.58444,1.72141,-1.42818,-2.5907,1.71315,-1.41182,-2.58976,1.71439,-1.42337,-2.58941,1.71485,-1.42818,-2.5907,1.71315,-1.4044,-2.59189,1.71159,-1.41182,-2.58976,1.71439,-1.63715,-2.58559,1.7199,-1.59141,-2.59592,1.70627,-1.59064,-2.58318,1.72308,-1.58306,-2.59048,1.71345,-1.56009,-2.59143,1.71219,-1.57175,-2.58872,1.71576,-1.23169,-2.59166,1.71189,-1.16234,-2.59379,1.70908,-1.14906,-2.58404,1.72194,-1.61816,-2.59681,1.7051,-1.59141,-2.59592,1.70627,-1.63715,-2.58559,1.7199,-1.46866,-2.59092,1.71287,-1.45846,-2.59294,1.7102,-1.45935,-2.59006,1.71399,-1.58122,-2.59332,1.7097,-1.56009,-2.59143,1.71219,-1.58306,-2.59048,1.71345,-1.53577,-2.59358,1.70936,-1.52307,-2.59501,1.70747,-1.5293,-2.5908,1.71302,-1.46633,-2.59611,1.70602,-1.45846,-2.59294,1.7102,-1.46866,-2.59092,1.71287,-1.58122,-2.59332,1.7097,-1.55844,-2.59334,1.70966,-1.56009,-2.59143,1.71219,-1.55475,-2.59421,1.70852,-1.53577,-2.59358,1.70936,-1.5446,-2.59161,1.71195,-1.42818,-2.5907,1.71315,-1.4094,-2.59365,1.70926,-1.4044,-2.59189,1.71159,-1.45219,-2.59326,1.70978,-1.43695,-2.59602,1.70613,-1.44911,-2.59201,1.71143,-1.55475,-2.59421,1.70852,-1.52307,-2.59501,1.70747,-1.53577,-2.59358,1.70936,-1.46633,-2.59611,1.70602,-1.45219,-2.59326,1.70978,-1.45846,-2.59294,1.7102,-1.46633,-2.59611,1.70602,-1.43695,-2.59602,1.70613,-1.45219,-2.59326,1.70978,-1.58122,-2.59332,1.7097,-1.55475,-2.59421,1.70852,-1.55844,-2.59334,1.70966,-1.42818,-2.5907,1.71315,-1.42348,-2.59404,1.70875,-1.4094,-2.59365,1.70926,-1.5688,-2.59432,1.70838,-1.55475,-2.59421,1.70852,-1.58122,-2.59332,1.7097,-1.43695,-2.59602,1.70613,-1.42348,-2.59404,1.70875,-1.42818,-2.5907,1.71315,-1.5688,-2.59432,1.70838,-1.52307,-2.59501,1.70747,-1.55475,-2.59421,1.70852,-1.21227,-2.59971,1.70126,-1.16234,-2.59379,1.70908,-1.23169,-2.59166,1.71189,-1.43695,-2.59602,1.70613,-1.428,-2.59696,1.70489,-1.42348,-2.59404,1.70875,-1.21227,-2.59971,1.70126,-1.17497,-2.59897,1.70224,-1.16234,-2.59379,1.70908,-1.46633,-2.59611,1.70602,-1.428,-2.59696,1.70489,-1.43695,-2.59602,1.70613,-1.5688,-2.59432,1.70838,-1.54411,-2.59686,1.70503,-1.52307,-2.59501,1.70747,-1.54411,-2.59686,1.70503,-1.53126,-2.5983,1.70313,-1.52307,-2.59501,1.70747,-1.44704,-2.59786,1.7037,-1.428,-2.59696,1.70489,-1.46633,-2.59611,1.70602,-1.5688,-2.59432,1.70838,-1.55368,-2.59844,1.70293,-1.54411,-2.59686,1.70503,-1.55978,-2.59854,1.70281,-1.55368,-2.59844,1.70293,-1.5688,-2.59432,1.70838,-1.61816,-2.59681,1.7051,-1.5851,-2.59974,1.70122,-1.59141,-2.59592,1.70627,-1.44182,-2.59947,1.70159,-1.428,-2.59696,1.70489,-1.44704,-2.59786,1.7037,-1.55978,-2.59854,1.70281,-1.55516,-2.59854,1.70281,-1.55368,-2.59844,1.70293,-1.55955,-2.59854,1.70281,-1.55516,-2.59854,1.70281,-1.55978,-2.59854,1.70281,-1.55929,-2.59854,1.70281,-1.559,-2.59854,1.70281,-1.55868,-2.59854,1.70281,-1.55834,-2.59854,1.70281,-1.55796,-2.59854,1.70281,-1.55756,-2.59854,1.70281,-1.55714,-2.59854,1.70281,-1.55668,-2.59854,1.70281,-1.5562,-2.59854,1.70281,-1.55569,-2.59854,1.70281,-1.44182,-2.59947,1.70159,-1.43287,-2.59969,1.70129,-1.428,-2.59696,1.70489,-1.59421,-2.60114,1.69939,-1.5851,-2.59974,1.70122,-1.61816,-2.59681,1.7051,-1.21227,-2.59971,1.70126,-1.19101,-2.60041,1.70035,-1.17497,-2.59897,1.70224,-1.59421,-2.60114,1.69939,-1.57996,-2.60019,1.70063,-1.5851,-2.59974,1.70122,-2.01873,-2.27376,2.13137,-1.85637,-2.2664,2.14107,-1.94263,-2.26494,2.143,-2.01873,-2.27376,2.13137,-1.78705,-2.27863,2.12495,-1.85637,-2.2664,2.14107,-2.08227,-2.29237,2.1068,-1.78705,-2.27863,2.12495,-2.01873,-2.27376,2.13137,-2.08227,-2.29237,2.1068,-1.74591,-2.29503,2.1033,-1.78705,-2.27863,2.12495,-2.08227,-2.29237,2.1068,-1.71361,-2.31595,2.07569,-1.74591,-2.29503,2.1033,-2.122,-2.31328,2.07922,-1.71361,-2.31595,2.07569,-2.08227,-2.29237,2.1068,-2.122,-2.31328,2.07922,-1.89689,-2.31567,2.07607,-1.71361,-2.31595,2.07569,-2.122,-2.31328,2.07922,-1.94061,-2.31589,2.07577,-1.89689,-2.31567,2.07607,-2.122,-2.31328,2.07922,-1.97333,-2.32019,2.07011,-1.94061,-2.31589,2.07577,-2.14397,-2.3296,2.05768,-1.97333,-2.32019,2.07011,-2.122,-2.31328,2.07922,-1.85313,-2.32335,2.06593,-1.71361,-2.31595,2.07569,-1.89689,-2.31567,2.07607,-2.14397,-2.3296,2.05768,-2.00644,-2.32966,2.05761,-1.97333,-2.32019,2.07011,-1.85313,-2.32335,2.06593,-1.69433,-2.34008,2.04385,-1.71361,-2.31595,2.07569,-1.8175,-2.33974,2.0443,-1.69433,-2.34008,2.04385,-1.85313,-2.32335,2.06593,-2.16953,-2.35723,2.02122,-2.00644,-2.32966,2.05761,-2.14397,-2.3296,2.05768,-2.16953,-2.35723,2.02122,-2.04265,-2.34964,2.03124,-2.00644,-2.32966,2.05761,-1.78095,-2.37192,2.00185,-1.69433,-2.34008,2.04385,-1.8175,-2.33974,2.0443,-1.78095,-2.37192,2.00185,-1.6942,-2.35765,2.02067,-1.69433,-2.34008,2.04385,-1.78095,-2.37192,2.00185,-1.70131,-2.36741,2.00779,-1.6942,-2.35765,2.02067,-2.16953,-2.35723,2.02122,-2.06589,-2.3761,1.99632,-2.04265,-2.34964,2.03124,-1.78095,-2.37192,2.00185,-1.71718,-2.37697,1.99518,-1.70131,-2.36741,2.00779,-2.1885,-2.40107,1.96337,-2.06589,-2.3761,1.99632,-2.16953,-2.35723,2.02122,-1.76582,-2.3786,1.99303,-1.71718,-2.37697,1.99518,-1.78095,-2.37192,2.00185,-2.04124,-2.38247,1.98792,-2.00274,-2.37881,1.99275,-2.02208,-2.37789,1.99396,-1.76582,-2.3786,1.99303,-1.74325,-2.38151,1.98919,-1.71718,-2.37697,1.99518,-2.04124,-2.38247,1.98792,-1.98157,-2.38855,1.9799,-2.00274,-2.37881,1.99275,-2.07451,-2.39381,1.97295,-2.04124,-2.38247,1.98792,-2.00473,-2.38828,1.98025,-1.98157,-2.38855,1.9799,-2.04124,-2.38247,1.98792,-2.01469,-2.38845,1.98002,-2.00473,-2.38828,1.98025,-2.04124,-2.38247,1.98792,-2.01777,-2.39153,1.97596,-2.01469,-2.38845,1.98002,-2.00241,-2.39402,1.97268,-1.98157,-2.38855,1.9799,-2.00473,-2.38828,1.98025,-2.06513,-2.39632,1.96965,-2.01777,-2.39153,1.97596,-2.04124,-2.38247,1.98792,-2.00241,-2.39402,1.97268,-1.98228,-2.39168,1.97577,-1.98157,-2.38855,1.9799,-1.98228,-2.39168,1.97577,-1.96163,-2.39335,1.97357,-1.98157,-2.38855,1.9799,-2.06513,-2.39632,1.96965,-2.0147,-2.39649,1.96942,-2.01777,-2.39153,1.97596,-2.00241,-2.39402,1.97268,-1.99312,-2.39785,1.96763,-1.98228,-2.39168,1.97577,-1.96211,-2.39937,1.96562,-1.96163,-2.39335,1.97357,-1.98228,-2.39168,1.97577,-1.96211,-2.39937,1.96562,-1.9517,-2.39918,1.96587,-1.96163,-2.39335,1.97357,-2.00911,-2.39695,1.96881,-1.99312,-2.39785,1.96763,-2.00241,-2.39402,1.97268,-2.06513,-2.39632,1.96965,-2.00911,-2.39695,1.96881,-2.0147,-2.39649,1.96942,-2.06513,-2.39632,1.96965,-1.99312,-2.39785,1.96763,-2.00911,-2.39695,1.96881,-1.98793,-2.4028,1.96109,-1.9517,-2.39918,1.96587,-1.96211,-2.39937,1.96562,-2.08305,-2.40768,1.95465,-1.99312,-2.39785,1.96763,-2.06513,-2.39632,1.96965,-2.08305,-2.40768,1.95465,-1.98793,-2.4028,1.96109,-1.99312,-2.39785,1.96763,-1.98793,-2.4028,1.96109,-1.95472,-2.40304,1.96078,-1.9517,-2.39918,1.96587,-1.98793,-2.4028,1.96109,-1.96346,-2.40317,1.96061,-1.95472,-2.40304,1.96078,-2.08305,-2.40768,1.95465,-1.96346,-2.40317,1.96061,-1.98793,-2.4028,1.96109,-1.98708,-2.40786,1.95442,-1.96346,-2.40317,1.96061,-2.08305,-2.40768,1.95465,-1.99161,-2.41208,1.94885,-1.98708,-2.40786,1.95442,-2.10212,-2.42025,1.93807,-1.99161,-2.41208,1.94885,-2.08305,-2.40768,1.95465,-2.10212,-2.42025,1.93807,-2.00008,-2.41697,1.9424,-1.99161,-2.41208,1.94885,-2.1885,-2.40107,1.96337,-2.13918,-2.43671,1.91635,-2.07451,-2.39381,1.97295,-2.10212,-2.42025,1.93807,-2.0602,-2.42001,1.93839,-2.00008,-2.41697,1.9424,-2.19073,-2.44831,1.90105,-2.13918,-2.43671,1.91635,-2.1885,-2.40107,1.96337,-2.03561,-2.42225,1.93543,-2.03561,-2.42225,1.93543,-2.00313,-2.42484,1.93201,-2.00008,-2.41697,1.9424,-2.10212,-2.42025,1.93807,-2.08041,-2.42477,1.93211,-2.0602,-2.42001,1.93839,-2.02325,-2.42801,1.92782,-2.12925,-2.43905,1.91325,-2.08041,-2.42477,1.93211,-2.10212,-2.42025,1.93807,-1.89069,-2.42582,1.93072,-1.70258,-2.42919,1.92628,-1.72517,-2.42564,1.93096,-1.90507,-2.42993,1.92529,-1.70258,-2.42919,1.92628,-1.89069,-2.42582,1.93072,-2.12925,-2.43905,1.91325,-2.10174,-2.43914,1.91314,-2.08041,-2.42477,1.93211,-2.01285,-2.43856,1.91391,-2.00313,-2.42484,1.93201,-2.02325,-2.42801,1.92782,-1.91894,-2.43864,1.9138,-1.70258,-2.42919,1.92628,-1.90507,-2.42993,1.92529,-1.91894,-2.43864,1.9138,-1.68573,-2.43759,1.91519,-2.01285,-2.43856,1.91391,-1.98146,-2.44583,1.90432,-2.00313,-2.42484,1.93201,-1.91894,-2.43864,1.9138,-1.67648,-2.45361,1.89404,-1.68573,-2.43759,1.91519,-1.92339,-2.45226,1.89582,-1.67648,-2.45361,1.89404,-1.91894,-2.43864,1.9138,-2.15979,-2.481,1.85791,-2.10174,-2.43914,1.91314,-2.12925,-2.43905,1.91325,-2.008,-2.45609,1.89078,-1.98146,-2.44583,1.90432,-2.01285,-2.43856,1.91391,-2.008,-2.45609,1.89078,-1.97428,-2.45855,1.88753,-1.98146,-2.44583,1.90432,-2.15979,-2.481,1.85791,-2.11659,-2.46818,1.87483,-2.10174,-2.43914,1.91314,-1.91781,-2.46354,1.88095,-1.67648,-2.45361,1.89404,-1.92339,-2.45226,1.89582,-1.91781,-2.46354,1.88095,-1.77578,-2.47486,1.86601,-1.67648,-2.45361,1.89404,-1.77578,-2.47486,1.86601,-1.67658,-2.53911,1.78123,-1.67648,-2.45361,1.89404,-2.17778,-2.49282,1.84231,-2.13918,-2.43671,1.91635,-2.19073,-2.44831,1.90105,-1.90394,-2.47076,1.87141,-1.77578,-2.47486,1.86601,-1.91781,-2.46354,1.88095,-1.87356,-2.47485,1.86602,-1.77578,-2.47486,1.86601,-1.90394,-2.47076,1.87141,-2.008,-2.45609,1.89078,-1.99449,-2.47548,1.86519,-1.97428,-2.45855,1.88753,-1.77578,-2.52792,1.79599,-1.67658,-2.53911,1.78123,-1.77578,-2.47486,1.86601,-2.01147,-2.48414,1.85376,-1.99449,-2.47548,1.86519,-2.008,-2.45609,1.89078,-2.15979,-2.481,1.85791,-2.13618,-2.48498,1.85265,-2.11659,-2.46818,1.87483,-2.01147,-2.48414,1.85376,-1.99774,-2.48954,1.84664,-1.99449,-2.47548,1.86519,-2.14177,-2.54064,1.77921,-1.98175,-2.51031,1.81923,-1.97428,-2.45855,1.88753,-1.99449,-2.47548,1.86519,-2.01147,-2.48414,1.85376,-1.98082,-2.55358,1.76214,-1.99774,-2.48954,1.84664,-2.15979,-2.481,1.85791,-2.16153,-2.50065,1.83197,-2.13618,-2.48498,1.85265,-2.00392,-2.51548,1.81241,-1.98082,-2.55358,1.76214,-2.01147,-2.48414,1.85376,-1.98175,-2.51031,1.81923,-1.96775,-2.5019,1.83033,-1.97428,-2.45855,1.88753,-2.14177,-2.54064,1.77921,-2.12784,-2.50079,1.83179,-2.11659,-2.46818,1.87483,-2.17592,-2.50809,1.82216,-2.16153,-2.50065,1.83197,-2.15979,-2.481,1.85791,-2.14177,-2.54064,1.77921,-2.12919,-2.55222,1.76394,-2.12784,-2.50079,1.83179,-1.98175,-2.51031,1.81923,-1.9641,-2.5156,1.81225,-1.96775,-2.5019,1.83033,-2.1599,-2.51928,1.80739,-2.15097,-2.52956,1.79383,-2.14768,-2.49984,1.83304,-2.17812,-2.52376,1.80148,-2.16153,-2.50065,1.83197,-2.17592,-2.50809,1.82216,-1.98175,-2.51031,1.81923,-1.96463,-2.52527,1.79949,-1.9641,-2.5156,1.81225,-2.17812,-2.52376,1.80148,-2.17227,-2.52533,1.79942,-2.16153,-2.50065,1.83197,-1.99772,-2.53156,1.79119,-1.98082,-2.55358,1.76214,-2.00392,-2.51548,1.81241,-1.80523,-2.537,1.78402,-1.67658,-2.53911,1.78123,-1.77578,-2.52792,1.79599,-1.85147,-2.54675,1.77114,-1.67658,-2.53911,1.78123,-1.80523,-2.537,1.78402,-2.1385,-2.55602,1.75892,-2.12919,-2.55222,1.76394,-2.14177,-2.54064,1.77921,-1.85147,-2.54675,1.77114,-1.6869,-2.55529,1.75988,-1.67658,-2.53911,1.78123,-1.99776,-2.55644,1.75836,-1.98082,-2.55358,1.76214,-1.99772,-2.53156,1.79119,-1.90256,-2.5516,1.76475,-1.6869,-2.55529,1.75988,-1.85147,-2.54675,1.77114,-1.97174,-2.55738,1.75712,-1.94611,-2.55022,1.76657,-1.97122,-2.54671,1.7712,-1.97174,-2.55738,1.75712,-1.90256,-2.5516,1.76475,-1.94611,-2.55022,1.76657,-1.97174,-2.55738,1.75712,-1.6869,-2.55529,1.75988,-1.90256,-2.5516,1.76475,-2.12015,-2.56655,1.74502,-1.97174,-2.55738,1.75712,-1.70884,-2.56693,1.74452,-1.6869,-2.55529,1.75988,-1.98255,-2.57287,1.73668,-1.70884,-2.56693,1.74452,-1.97174,-2.55738,1.75712,-2.01182,-2.57145,1.73856,-1.98082,-2.55358,1.76214,-1.99776,-2.55644,1.75836,-2.12621,-2.57494,1.73395,-2.12015,-2.56655,1.74502,-2.1385,-2.55602,1.75892,-2.01182,-2.57145,1.73856,-1.99524,-2.57233,1.7374,-1.98082,-2.55358,1.76214,-2.10956,-2.57417,1.73496,-2.00189,-2.57459,1.73442,-1.99524,-2.57233,1.7374,-2.01182,-2.57145,1.73856,-2.00189,-2.57459,1.73442,-1.98512,-2.58009,1.72715,-1.99524,-2.57233,1.7374,-1.9693,-2.58013,1.7271,-1.70884,-2.56693,1.74452,-1.98255,-2.57287,1.73668,-2.04035,-2.57964,1.72775,-2.00189,-2.57459,1.73442,-2.01182,-2.57145,1.73856,-2.04035,-2.57964,1.72775,-2.01081,-2.57811,1.72976,-2.00189,-2.57459,1.73442,-2.12621,-2.57494,1.73395,-2.09362,-2.58032,1.72686,-2.10956,-2.57417,1.73496,-1.9693,-2.58013,1.7271,-1.77101,-2.58601,1.71935,-1.70884,-2.56693,1.74452,-2.1126,-2.58134,1.72551,-2.09362,-2.58032,1.72686,-2.12621,-2.57494,1.73395,-1.9565,-2.58543,1.7201,-1.77101,-2.58601,1.71935,-1.9693,-2.58013,1.7271,-2.04035,-2.57964,1.72775,-2.01444,-2.58098,1.72598,-2.01081,-2.57811,1.72976,-2.06264,-2.58146,1.72535,-2.01444,-2.58098,1.72598,-2.04035,-2.57964,1.72775,-2.06264,-2.58146,1.72535,-2.03432,-2.58599,1.71938,-2.01444,-2.58098,1.72598,-2.1126,-2.58134,1.72551,-2.06264,-2.58146,1.72535,-2.09362,-2.58032,1.72686,-2.01444,-2.58098,1.72598,-2.00402,-2.58409,1.72187,-2.01081,-2.57811,1.72976,-2.1126,-2.58134,1.72551,-2.03432,-2.58599,1.71938,-2.06264,-2.58146,1.72535,-1.96687,-2.59396,1.70885,-1.98512,-2.58009,1.72715,-2.00189,-2.57459,1.73442,-2.13305,-2.59113,1.71258,-2.10627,-2.58372,1.72236,-2.1126,-2.58134,1.72551,-2.10627,-2.58372,1.72236,-2.03432,-2.58599,1.71938,-2.1126,-2.58134,1.72551,-1.96687,-2.59396,1.70885,-1.96075,-2.59128,1.71239,-1.98512,-2.58009,1.72715,-2.0131,-2.58574,1.7197,-2.00402,-2.58409,1.72187,-2.01444,-2.58098,1.72598,-2.08359,-2.5878,1.71699,-2.03432,-2.58599,1.71938,-2.10627,-2.58372,1.72236,-2.08359,-2.5878,1.71699,-2.07309,-2.5881,1.71659,-2.03432,-2.58599,1.71938,-2.08412,-2.59761,1.70404,-2.07309,-2.5881,1.71659,-2.08359,-2.5878,1.71699,-1.9504,-2.59031,1.71367,-1.77101,-2.58601,1.71935,-1.9565,-2.58543,1.7201,-1.9504,-2.59031,1.71367,-1.83201,-2.59752,1.70415,-1.77101,-2.58601,1.71935,-2.13305,-2.59113,1.71258,-2.12786,-2.59601,1.70614,-2.10627,-2.58372,1.72236,-2.0131,-2.58574,1.7197,-2.01358,-2.59687,1.70501,-2.00402,-2.58409,1.72187,-2.02294,-2.5981,1.7034,-2.01358,-2.59687,1.70501,-2.0131,-2.58574,1.7197,-1.96723,-2.59712,1.70468,-1.96075,-2.59128,1.71239,-1.96687,-2.59396,1.70885,-2.08412,-2.59761,1.70404,-2.07788,-2.60125,1.69924,-2.07309,-2.5881,1.71659,-2.13655,-2.59977,1.70119,-2.12786,-2.59601,1.70614,-2.13305,-2.59113,1.71258,-1.94818,-2.60133,1.69913,-1.83201,-2.59752,1.70415,-1.9504,-2.59031,1.71367,-2.13655,-2.59977,1.70119,-2.12057,-2.5963,1.70576,-2.12786,-2.59601,1.70614,-1.96723,-2.59712,1.70468,-1.95874,-2.59873,1.70256,-1.96075,-2.59128,1.71239,-1.97978,-2.59597,1.7062,-1.95874,-2.59873,1.70256,-1.96723,-2.59712,1.70468,-2.02294,-2.5981,1.7034,-2.01283,-2.59956,1.70146,-2.01358,-2.59687,1.70501,-2.13655,-2.59977,1.70119,-2.1135,-2.59961,1.7014,-2.12057,-2.5963,1.70576,-2.09025,-2.60037,1.70039,-2.07788,-2.60125,1.69924,-2.08412,-2.59761,1.70404,-2.00638,-2.60004,1.70083,-1.99141,-2.60286,1.6971,-2.00342,-2.59882,1.70245,-1.97978,-2.59597,1.7062,-1.96449,-2.60043,1.70032,-1.95874,-2.59873,1.70256,-2.1096,-2.60097,1.69961,-2.09025,-2.60037,1.70039,-2.09904,-2.59843,1.70296,-2.02048,-2.60304,1.69687,-2.01283,-2.59956,1.70146,-2.02294,-2.5981,1.7034,-2.13655,-2.59977,1.70119,-2.1096,-2.60097,1.69961,-2.1135,-2.59961,1.7014,-2.1096,-2.60097,1.69961,-2.07788,-2.60125,1.69924,-2.09025,-2.60037,1.70039,-2.02048,-2.60304,1.69687,-2.00638,-2.60004,1.70083,-2.01283,-2.59956,1.70146,-2.02048,-2.60304,1.69687,-1.99141,-2.60286,1.6971,-2.00638,-2.60004,1.70083,-1.94818,-2.60133,1.69913,-1.89679,-2.60208,1.69814,-1.83201,-2.59752,1.70415,-1.97978,-2.59597,1.7062,-1.97768,-2.60082,1.6998,-1.96449,-2.60043,1.70032,-2.1237,-2.60103,1.69952,-2.1096,-2.60097,1.69961,-2.13655,-2.59977,1.70119,-1.99141,-2.60286,1.6971,-1.97768,-2.60082,1.6998,-1.97978,-2.59597,1.7062,-2.1237,-2.60103,1.69952,-2.07788,-2.60125,1.69924,-2.1096,-2.60097,1.69961,-1.99141,-2.60286,1.6971,-1.98222,-2.60411,1.69546,-1.97768,-2.60082,1.6998,-2.02048,-2.60304,1.69687,-1.98222,-2.60411,1.69546,-1.99141,-2.60286,1.6971,-2.1237,-2.60103,1.69952,-2.08291,-2.60451,1.69493,-2.07788,-2.60125,1.69924,-2.1237,-2.60103,1.69952,-2.0987,-2.60374,1.69595,-2.08291,-2.60451,1.69493,-2.00001,-2.60478,1.69457,-1.98222,-2.60411,1.69546,-2.02048,-2.60304,1.69687,-2.1237,-2.60103,1.69952,-2.1084,-2.60522,1.69399,-2.0987,-2.60374,1.69595,-2.11397,-2.60532,1.69386,-2.1084,-2.60522,1.69399,-2.1237,-2.60103,1.69952,-2.11397,-2.60532,1.69386,-2.11001,-2.60532,1.69386,-2.1084,-2.60522,1.69399,-2.11384,-2.60532,1.69386,-2.11001,-2.60532,1.69386,-2.11397,-2.60532,1.69386,-2.11368,-2.60532,1.69386,-2.11348,-2.60532,1.69386,-2.11324,-2.60532,1.69386,-2.11296,-2.60532,1.69386,-2.11265,-2.60532,1.69386,-2.1123,-2.60532,1.69386,-2.11192,-2.60532,1.69386,-2.1115,-2.60532,1.69386,-2.11104,-2.60532,1.69386,-2.11054,-2.60532,1.69386,-2.00001,-2.60478,1.69457,-1.98649,-2.60652,1.69228,-1.98222,-2.60411,1.69546,-1.99706,-2.60652,1.69228,-1.99692,-2.60652,1.69228,-1.98649,-2.60652,1.69228,-1.99706,-2.60652,1.69228,-1.99673,-2.60652,1.69228,-1.99648,-2.60652,1.69228,-1.99618,-2.60652,1.69228,-1.99582,-2.60652,1.69228,-1.99541,-2.60652,1.69228,-1.99494,-2.60652,1.69228,-1.99442,-2.60652,1.69228,-1.99384,-2.60652,1.69228,-1.9932,-2.60652,1.69228,-1.99252,-2.60652,1.69228,-1.99177,-2.60652,1.69228,-1.99103,-2.60652,1.69228,-1.99034,-2.60652,1.69228,-1.98971,-2.60652,1.69228,-1.98913,-2.60652,1.69228,-1.98861,-2.60652,1.69228,-1.98814,-2.60652,1.69228,-1.98773,-2.60652,1.69228,-1.98737,-2.60652,1.69228,-1.98707,-2.60652,1.69228,-1.98682,-2.60652,1.69228,-1.98663,-2.60652,1.69228,1.17861,-3.00915,0.498719,1.24717,-3.01122,0.495713,1.24147,-3.0093,0.498496,1.16191,-3.01154,0.495254,1.24717,-3.01122,0.495713,1.17861,-3.00915,0.498719,1.16191,-3.01154,0.495254,1.25111,-3.01509,0.49011,1.24717,-3.01122,0.495713,1.15417,-3.01557,0.48941,1.25111,-3.01509,0.49011,1.16191,-3.01154,0.495254,1.14747,-3.02401,0.477186,1.25111,-3.01509,0.49011,1.15417,-3.01557,0.48941,1.14747,-3.02401,0.477186,1.25177,-3.01974,0.483378,1.25111,-3.01509,0.49011,1.14747,-3.02401,0.477186,1.24916,-3.0235,0.477926,1.25177,-3.01974,0.483378,1.14747,-3.02401,0.477186,1.18953,-3.02721,0.472551,1.24916,-3.0235,0.477926,1.18953,-3.02721,0.472551,1.24329,-3.02657,0.473482,1.24916,-3.0235,0.477926,1.14208,-3.04204,0.451073,1.14208,-3.04204,0.451073,1.18596,-3.04288,0.449852,1.18953,-3.02721,0.472551,1.13994,-3.0636,0.419834,1.13994,-3.0636,0.419834,1.18535,-3.05391,0.433875,1.18596,-3.04288,0.449852,1.13994,-3.0636,0.419834,1.23078,-3.05372,0.434151,1.18535,-3.05391,0.433875,1.13994,-3.0636,0.419834,1.23794,-3.0564,0.430267,1.23078,-3.05372,0.434151,1.13994,-3.0636,0.419834,1.24151,-3.06246,0.421489,1.23794,-3.0564,0.430267,1.13994,-3.0636,0.419834,1.23914,-3.06751,0.414172,1.24151,-3.06246,0.421489,1.13994,-3.0636,0.419834,1.23266,-3.07112,0.40894,1.23914,-3.06751,0.414172,1.14106,-3.103,0.362768,1.18426,-3.07145,0.40847,1.13994,-3.0636,0.419834,1.18426,-3.07145,0.40847,1.23266,-3.07112,0.40894,1.13994,-3.0636,0.419834,1.14106,-3.103,0.362768,1.1843,-3.09469,0.37481,1.18426,-3.07145,0.40847,1.20086,-3.09271,0.377678,1.24051,-3.09202,0.378671,1.22921,-3.09121,0.379846,1.20086,-3.09271,0.377678,1.24819,-3.09433,0.375328,1.24051,-3.09202,0.378671,1.1843,-3.09469,0.37481,1.24819,-3.09433,0.375328,1.20086,-3.09271,0.377678,1.14106,-3.103,0.362768,1.24819,-3.09433,0.375328,1.1843,-3.09469,0.37481,1.14106,-3.103,0.362768,1.255,-3.09865,0.369059,1.24819,-3.09433,0.375328,1.14106,-3.103,0.362768,1.25666,-3.1042,0.361029,1.255,-3.09865,0.369059,1.14106,-3.103,0.362768,1.25139,-3.10959,0.353219,1.25666,-3.1042,0.361029,1.14106,-3.103,0.362768,1.21514,-3.11069,0.351618,1.25139,-3.10959,0.353219,1.21514,-3.11069,0.351618,1.24119,-3.11123,0.350843,1.25139,-3.10959,0.353219,1.14106,-3.103,0.362768,1.19711,-3.11169,0.35018,1.21514,-3.11069,0.351618,1.14481,-3.11555,0.344581,1.19711,-3.11169,0.35018,1.14106,-3.103,0.362768,1.14481,-3.11555,0.344581,1.17596,-3.11488,0.345551,1.19711,-3.11169,0.35018,1.14481,-3.11555,0.344581,1.15874,-3.11865,0.340092,1.17596,-3.11488,0.345551,1.15182,-3.11854,0.340249,1.15874,-3.11865,0.340092,1.14481,-3.11555,0.344581,1.07555,-3.0093,0.498492,1.11164,-3.00967,0.497958,1.09247,-3.00818,0.50011,0.941479,-3.00966,0.497972,0.977608,-3.0093,0.498492,0.960685,-3.00818,0.50011,1.06114,-3.01215,0.494371,1.11164,-3.00967,0.497958,1.07555,-3.0093,0.498492,0.941479,-3.00966,0.497972,0.992028,-3.01215,0.494372,0.977608,-3.0093,0.498492,1.06114,-3.01215,0.494371,1.12376,-3.01215,0.494365,1.11164,-3.00967,0.497958,0.929321,-3.01212,0.494412,0.992028,-3.01215,0.494372,0.941479,-3.00966,0.497972,1.06114,-3.01215,0.494371,1.12907,-3.01646,0.488122,1.12376,-3.01215,0.494365,0.924787,-3.01554,0.489449,0.992028,-3.01215,0.494372,0.929321,-3.01212,0.494412,0.924787,-3.01554,0.489449,1.00675,-3.01774,0.486272,0.992028,-3.01215,0.494372,1.04341,-3.01919,0.484175,1.12907,-3.01646,0.488122,1.06114,-3.01215,0.494371,0.924116,-3.02017,0.482748,1.00675,-3.01774,0.486272,0.924787,-3.01554,0.489449,1.04341,-3.01919,0.484175,1.12815,-3.0214,0.48096,1.12907,-3.01646,0.488122,0.924116,-3.02017,0.482748,1.01783,-3.02503,0.475709,1.00675,-3.01774,0.486272,0.927336,-3.02326,0.478271,1.01783,-3.02503,0.475709,0.924116,-3.02017,0.482748,1.04341,-3.01919,0.484175,1.08119,-3.02395,0.477278,1.12815,-3.0214,0.48096,1.08119,-3.02395,0.477278,1.12436,-3.0241,0.477064,1.12815,-3.0214,0.48096,0.930433,-3.02473,0.476137,0.974832,-3.02459,0.476353,0.927336,-3.02326,0.478271,0.974832,-3.02459,0.476353,1.01783,-3.02503,0.475709,0.927336,-3.02326,0.478271,1.04341,-3.01919,0.484175,1.07013,-3.02618,0.474042,1.08119,-3.02395,0.477278,0.978751,-3.02466,0.47624,1.01783,-3.02503,0.475709,0.974832,-3.02459,0.476353,1.02643,-3.03366,0.463206,1.07013,-3.02618,0.474042,1.04341,-3.01919,0.484175,1.08119,-3.02395,0.477278,1.11723,-3.02596,0.474368,1.12436,-3.0241,0.477064,0.935137,-3.02567,0.474785,0.974832,-3.02459,0.476353,0.930433,-3.02473,0.476137,0.989187,-3.0287,0.470394,1.01783,-3.02503,0.475709,0.978751,-3.02466,0.47624,1.02643,-3.03366,0.463206,1.05758,-3.03138,0.466517,1.07013,-3.02618,0.474042,1.07752,-3.03348,0.463475,1.11723,-3.02596,0.474368,0.989187,-3.0287,0.470394,1.02643,-3.03366,0.463206,1.01783,-3.02503,0.475709,0.935137,-3.02567,0.474785,0.976616,-3.0429,0.449825,0.974832,-3.02459,0.476353,1.07752,-3.03348,0.463475,1.11947,-3.03462,0.461816,1.11723,-3.02596,0.474368,0.932444,-3.03921,0.455164,0.976616,-3.0429,0.449825,0.935137,-3.02567,0.474785,1.00121,-3.03825,0.456564,1.02643,-3.03366,0.463206,0.989187,-3.0287,0.470394,1.00121,-3.03825,0.456564,1.05758,-3.03138,0.466517,1.02643,-3.03366,0.463206,1.00121,-3.03825,0.456564,1.04711,-3.0415,0.451847,1.05758,-3.03138,0.466517,1.07752,-3.03348,0.463475,1.12034,-3.05079,0.438396,1.11947,-3.03462,0.461816,1.00787,-3.04935,0.440474,1.07458,-3.05979,0.425362,1.12034,-3.05079,0.438396,1.07752,-3.03348,0.463475,1.00787,-3.04935,0.440474,1.04096,-3.05798,0.42798,1.04711,-3.0415,0.451847,0.930952,-3.06071,0.424018,0.932444,-3.03921,0.455164,1.01074,-3.06158,0.422757,1.04096,-3.05798,0.42798,1.00787,-3.04935,0.440474,0.930952,-3.06071,0.424018,0.970683,-3.09615,0.372687,0.976616,-3.0429,0.449825,1.07458,-3.05979,0.425362,1.11659,-3.08526,0.388458,1.12034,-3.05079,0.438396,1.01284,-3.09138,0.379596,1.04096,-3.05798,0.42798,1.01074,-3.06158,0.422757,1.01284,-3.09138,0.379596,1.04053,-3.09106,0.380056,1.04096,-3.05798,0.42798,1.07418,-3.10148,0.364969,1.11659,-3.08526,0.388458,1.07458,-3.05979,0.425362,0.930641,-3.0956,0.373484,1.07418,-3.10148,0.364969,1.11204,-3.10463,0.360398,1.11659,-3.08526,0.388458,1.01284,-3.09138,0.379596,1.0382,-3.09551,0.373617,1.04053,-3.09106,0.380056,1.01623,-3.09715,0.371236,1.0382,-3.09551,0.373617,1.01284,-3.09138,0.379596,1.01623,-3.09715,0.371236,1.0338,-3.0983,0.369571,1.0382,-3.09551,0.373617,1.02438,-3.09975,0.36747,1.0338,-3.0983,0.369571,1.01623,-3.09715,0.371236,0.930641,-3.0956,0.373484,0.964151,-3.11164,0.350255,0.970683,-3.09615,0.372687,0.932664,-3.10695,0.357047,0.964151,-3.11164,0.350255,0.930641,-3.0956,0.373484,1.07804,-3.11176,0.350076,1.11204,-3.10463,0.360398,1.07418,-3.10148,0.364969,0.937238,-3.1151,0.34524,0.964151,-3.11164,0.350255,0.932664,-3.10695,0.357047,1.07804,-3.11176,0.350076,1.10509,-3.11347,0.3476,1.11204,-3.10463,0.360398,1.08322,-3.11639,0.343363,1.10509,-3.11347,0.3476,1.07804,-3.11176,0.350076,0.937238,-3.1151,0.34524,0.954651,-3.11748,0.341792,0.964151,-3.11164,0.350255,1.08322,-3.11639,0.343363,1.09874,-3.11694,0.342571,1.10509,-3.11347,0.3476,0.945003,-3.11835,0.340534,0.954651,-3.11748,0.341792,0.937238,-3.1151,0.34524,1.08992,-3.11819,0.340763,1.09874,-3.11694,0.342571,1.08322,-3.11639,0.343363,0.829416,-3.00989,0.497648,0.854608,-3.01032,0.497015,0.840271,-3.00887,0.499125,0.817279,-3.01354,0.492351,0.854608,-3.01032,0.497015,0.829416,-3.00989,0.497648,0.817279,-3.01354,0.492351,0.86818,-3.01572,0.489192,0.854608,-3.01032,0.497015,0.804825,-3.02163,0.480634,0.86818,-3.01572,0.489192,0.817279,-3.01354,0.492351,0.804825,-3.02163,0.480634,0.880926,-3.02529,0.475331,0.86818,-3.01572,0.489192,0.79668,-3.03044,0.467873,0.880926,-3.02529,0.475331,0.804825,-3.02163,0.480634,0.847053,-3.03312,0.463983,0.880926,-3.02529,0.475331,0.79668,-3.03044,0.467873,0.847053,-3.03312,0.463983,0.854593,-3.03341,0.463571,0.880926,-3.02529,0.475331,0.854593,-3.03341,0.463571,0.892164,-3.04254,0.45034,0.880926,-3.02529,0.475331,0.79668,-3.03044,0.467873,0.839281,-3.03558,0.460423,0.847053,-3.03312,0.463983,0.787319,-3.04582,0.445594,0.839281,-3.03558,0.460423,0.79668,-3.03044,0.467873,0.862436,-3.03881,0.455747,0.892164,-3.04254,0.45034,0.854593,-3.03341,0.463571,0.787319,-3.04582,0.445594,0.829069,-3.04235,0.450614,0.839281,-3.03558,0.460423,0.869108,-3.05108,0.437971,0.892164,-3.04254,0.45034,0.862436,-3.03881,0.455747,0.787319,-3.04582,0.445594,0.821467,-3.0533,0.434751,0.829069,-3.04235,0.450614,0.869108,-3.05108,0.437971,0.898141,-3.06216,0.421922,0.892164,-3.04254,0.45034,0.781554,-3.06025,0.424687,0.740989,-3.06114,0.423408,0.766624,-3.05625,0.430491,0.750733,-3.05724,0.429054,0.740989,-3.06114,0.423408,0.781554,-3.06025,0.424687,0.766624,-3.05625,0.430491,0.781554,-3.06025,0.424687,0.817035,-3.06747,0.414237,0.821467,-3.0533,0.434751,0.872539,-3.06801,0.413449,0.898141,-3.06216,0.421922,0.869108,-3.05108,0.437971,0.740989,-3.06114,0.423408,0.817035,-3.06747,0.414237,0.781554,-3.06025,0.424687,0.898141,-3.06216,0.421922,0.911887,-3.06179,0.422458,0.902598,-3.06111,0.423444,0.872539,-3.06801,0.413449,0.911887,-3.06179,0.422458,0.898141,-3.06216,0.421922,0.736786,-3.06671,0.41533,0.817035,-3.06747,0.414237,0.740989,-3.06114,0.423408,0.872539,-3.06801,0.413449,0.917931,-3.06609,0.416235,0.911887,-3.06179,0.422458,0.872539,-3.06801,0.413449,0.918344,-3.06994,0.410654,0.917931,-3.06609,0.416235,0.738619,-3.07143,0.408488,0.817035,-3.06747,0.414237,0.736786,-3.06671,0.41533,0.852384,-3.06958,0.411177,0.918344,-3.06994,0.410654,0.872539,-3.06801,0.413449,0.738619,-3.07143,0.408488,0.852384,-3.06958,0.411177,0.817035,-3.06747,0.414237,0.738619,-3.07143,0.408488,0.918344,-3.06994,0.410654,0.852384,-3.06958,0.411177,0.738619,-3.07143,0.408488,0.914277,-3.07423,0.404432,0.918344,-3.06994,0.410654,0.744824,-3.07619,0.401595,0.914277,-3.07423,0.404432,0.738619,-3.07143,0.408488,0.744824,-3.07619,0.401595,0.900084,-3.07855,0.398182,0.914277,-3.07423,0.404432,0.761632,-3.08175,0.393539,0.900084,-3.07855,0.398182,0.744824,-3.07619,0.401595,0.761632,-3.08175,0.393539,0.874096,-3.08439,0.389717,0.900084,-3.07855,0.398182,0.775468,-3.08452,0.389534,0.874096,-3.08439,0.389717,0.761632,-3.08175,0.393539,0.874096,-3.08439,0.389717,0.900577,-3.11095,0.351251,0.900084,-3.07855,0.398182,0.775468,-3.08452,0.389534,0.842958,-3.0877,0.384923,0.874096,-3.08439,0.389717,0.775468,-3.08452,0.389534,0.81469,-3.08814,0.384292,0.842958,-3.0877,0.384923,0.775468,-3.08452,0.389534,0.815266,-3.10873,0.354466,0.81469,-3.08814,0.384292,0.773744,-3.10807,0.355414,0.815266,-3.10873,0.354466,0.775468,-3.08452,0.389534,0.874347,-3.11275,0.348643,0.900577,-3.11095,0.351251,0.874096,-3.08439,0.389717,0.777021,-3.11455,0.34603,0.815266,-3.10873,0.354466,0.773744,-3.10807,0.355414,0.777021,-3.11455,0.34603,0.812685,-3.11269,0.348734,0.815266,-3.10873,0.354466,0.874347,-3.11275,0.348643,0.897151,-3.11588,0.344113,0.900577,-3.11095,0.351251,0.777021,-3.11455,0.34603,0.804631,-3.11662,0.343037,0.812685,-3.11269,0.348734,0.879918,-3.11733,0.342003,0.897151,-3.11588,0.344113,0.874347,-3.11275,0.348643,0.785325,-3.11805,0.340971,0.804631,-3.11662,0.343037,0.777021,-3.11455,0.34603,0.879918,-3.11733,0.342003,0.891534,-3.11832,0.340575,0.897151,-3.11588,0.344113,0.785325,-3.11805,0.340971,0.793795,-3.11846,0.340364,0.804631,-3.11662,0.343037,0.885493,-3.11866,0.340078,0.891534,-3.11832,0.340575,0.879918,-3.11733,0.342003,0.637874,-3.01052,0.496724,0.675656,-3.01013,0.497289,0.656117,-3.00881,0.49921,0.637874,-3.01052,0.496724,0.695955,-3.01456,0.49088,0.675656,-3.01013,0.497289,0.617573,-3.0167,0.487773,0.695955,-3.01456,0.49088,0.637874,-3.01052,0.496724,0.617573,-3.0167,0.487773,0.71516,-3.02199,0.480118,0.695955,-3.01456,0.49088,0.602522,-3.02681,0.473124,0.71516,-3.02199,0.480118,0.617573,-3.0167,0.487773,0.602522,-3.02681,0.473124,0.718002,-3.0298,0.468804,0.71516,-3.02199,0.480118,0.602522,-3.02681,0.473124,0.669317,-3.03056,0.467705,0.718002,-3.0298,0.468804,0.593033,-3.03754,0.457586,0.669317,-3.03056,0.467705,0.602522,-3.02681,0.473124,0.65592,-3.03267,0.464638,0.68876,-3.0331,0.464017,0.718002,-3.0298,0.468804,0.669317,-3.03056,0.467705,0.68876,-3.0331,0.464017,0.714657,-3.03517,0.46102,0.718002,-3.0298,0.468804,0.593033,-3.03754,0.457586,0.646143,-3.0373,0.457941,0.65592,-3.03267,0.464638,0.704453,-3.03761,0.457487,0.714657,-3.03517,0.46102,0.68876,-3.0331,0.464017,0.704453,-3.03761,0.457487,0.709907,-3.03742,0.457761,0.714657,-3.03517,0.46102,0.593033,-3.03754,0.457586,0.635917,-3.04756,0.443075,0.646143,-3.0373,0.457941,0.586019,-3.05172,0.437042,0.586019,-3.05172,0.437042,0.630033,-3.06143,0.422986,0.635917,-3.04756,0.443075,0.584826,-3.07001,0.41055,0.689216,-3.06837,0.412929,0.729984,-3.06746,0.414246,0.717827,-3.06609,0.416231,0.584826,-3.07001,0.41055,0.630696,-3.07675,0.400789,0.630033,-3.06143,0.422986,0.659344,-3.0692,0.41173,0.689216,-3.06837,0.412929,0.666732,-3.06791,0.41359,0.659344,-3.0692,0.41173,0.729984,-3.06746,0.414246,0.689216,-3.06837,0.412929,0.659344,-3.0692,0.41173,0.735168,-3.07246,0.406999,0.729984,-3.06746,0.414246,0.65554,-3.07236,0.407148,0.655199,-3.07684,0.400652,0.735168,-3.07246,0.406999,0.65554,-3.07236,0.407148,0.655199,-3.07684,0.400652,0.733928,-3.08054,0.395299,0.735168,-3.07246,0.406999,0.589925,-3.08426,0.389906,0.630696,-3.07675,0.400789,0.584826,-3.07001,0.41055,0.659284,-3.08133,0.394162,0.733928,-3.08054,0.395299,0.655199,-3.07684,0.400652,0.589925,-3.08426,0.389906,0.637459,-3.08602,0.387355,0.630696,-3.07675,0.400789,0.659284,-3.08133,0.394162,0.727352,-3.0847,0.389271,0.733928,-3.08054,0.395299,0.684487,-3.08519,0.388571,0.727352,-3.0847,0.389271,0.659284,-3.08133,0.394162,0.677095,-3.08947,0.382364,0.727352,-3.0847,0.389271,0.684487,-3.08519,0.388571,0.677095,-3.08947,0.382364,0.71679,-3.08647,0.38671,0.727352,-3.0847,0.389271,0.677095,-3.08947,0.382364,0.7192,-3.09496,0.374413,0.71679,-3.08647,0.38671,0.599283,-3.09747,0.370779,0.637459,-3.08602,0.387355,0.589925,-3.08426,0.389906,0.599283,-3.09747,0.370779,0.645538,-3.09071,0.380569,0.637459,-3.08602,0.387355,0.666102,-3.09259,0.377845,0.7192,-3.09496,0.374413,0.677095,-3.08947,0.382364,0.599283,-3.09747,0.370779,0.655338,-3.09294,0.377332,0.645538,-3.09071,0.380569,0.655338,-3.09294,0.377332,0.7192,-3.09496,0.374413,0.666102,-3.09259,0.377845,0.599283,-3.09747,0.370779,0.7192,-3.09496,0.374413,0.655338,-3.09294,0.377332,0.599283,-3.09747,0.370779,0.698285,-3.09988,0.36728,0.7192,-3.09496,0.374413,0.599283,-3.09747,0.370779,0.689227,-3.10634,0.357921,0.698285,-3.09988,0.36728,0.698285,-3.09988,0.36728,0.727655,-3.11645,0.343289,0.7192,-3.09496,0.374413,0.612603,-3.10759,0.356115,0.689227,-3.10634,0.357921,0.599283,-3.09747,0.370779,0.625654,-3.11361,0.347391,0.689227,-3.10634,0.357921,0.612603,-3.10759,0.356115,0.625654,-3.11361,0.347391,0.672931,-3.11358,0.347445,0.689227,-3.10634,0.357921,0.707243,-3.12084,0.336923,0.727655,-3.11645,0.343289,0.698285,-3.09988,0.36728,0.625654,-3.11361,0.347391,0.653184,-3.11725,0.342127,0.672931,-3.11358,0.347445,0.637961,-3.11639,0.343363,0.653184,-3.11725,0.342127,0.625654,-3.11361,0.347391,0.707243,-3.12084,0.336923,0.726924,-3.11994,0.33823,0.727655,-3.11645,0.343289,0.707243,-3.12084,0.336923,0.723517,-3.12301,0.333775,0.726924,-3.11994,0.33823,0.712021,-3.12378,0.33267,0.723517,-3.12301,0.333775,0.707243,-3.12084,0.336923,0.712021,-3.12378,0.33267,0.717711,-3.1246,0.33148,0.723517,-3.12301,0.333775,0.33519,-3.0095,0.49821,0.351899,-3.01151,0.495286,0.343501,-3.00898,0.498956,0.32599,-3.01343,0.492516,0.351899,-3.01151,0.495286,0.33519,-3.0095,0.49821,0.48121,-3.01311,0.492982,0.50273,-3.01059,0.496624,0.490933,-3.00974,0.497861,0.48121,-3.01311,0.492982,0.511138,-3.01417,0.491443,0.50273,-3.01059,0.496624,0.32599,-3.01343,0.492516,0.358565,-3.01986,0.483198,0.351899,-3.01151,0.495286,0.48121,-3.01311,0.492982,0.517244,-3.02054,0.482214,0.511138,-3.01417,0.491443,0.474322,-3.02124,0.481198,0.517244,-3.02054,0.482214,0.48121,-3.01311,0.492982,0.320071,-3.02335,0.478138,0.358565,-3.01986,0.483198,0.32599,-3.01343,0.492516,0.320071,-3.02335,0.478138,0.36146,-3.03315,0.463943,0.358565,-3.01986,0.483198,0.474322,-3.02124,0.481198,0.519798,-3.02978,0.468821,0.517244,-3.02054,0.482214,0.471963,-3.03558,0.460428,0.519798,-3.02978,0.468821,0.474322,-3.02124,0.481198,0.31589,-3.04868,0.441447,0.36146,-3.03315,0.463943,0.320071,-3.02335,0.478138,0.400257,-3.03695,0.458447,0.416331,-3.0348,0.461551,0.408382,-3.03455,0.461923,0.400257,-3.03695,0.458447,0.425734,-3.03891,0.455603,0.416331,-3.0348,0.461551,0.471963,-3.03558,0.460428,0.519802,-3.05121,0.437782,0.519798,-3.02978,0.468821,0.394685,-3.04144,0.45194,0.394685,-3.04144,0.45194,0.429104,-3.04603,0.445289,0.425734,-3.03891,0.455603,0.390461,-3.04975,0.439903,0.429104,-3.04603,0.445289,0.394685,-3.04144,0.45194,0.31589,-3.04868,0.441447,0.361267,-3.05641,0.43026,0.36146,-3.03315,0.463943,0.390461,-3.04975,0.439903,0.429206,-3.06275,0.421074,0.429104,-3.04603,0.445289,0.47506,-3.08402,0.390262,0.519802,-3.05121,0.437782,0.471963,-3.03558,0.460428,0.386927,-3.07079,0.40943,0.429206,-3.06275,0.421074,0.390461,-3.04975,0.439903,0.47506,-3.08402,0.390262,0.518361,-3.08012,0.395905,0.519802,-3.05121,0.437782,0.31589,-3.04868,0.441447,0.356377,-3.09134,0.379656,0.361267,-3.05641,0.43026,0.433191,-3.0806,0.395217,0.315099,-3.0953,0.373916,0.356377,-3.09134,0.379656,0.31589,-3.04868,0.441447,0.374219,-3.0887,0.383482,0.433191,-3.0806,0.395217,0.386927,-3.07079,0.40943,0.47506,-3.08402,0.390262,0.514567,-3.09396,0.375862,0.518361,-3.08012,0.395905,0.374219,-3.0887,0.383482,0.441479,-3.09272,0.377655,0.433191,-3.0806,0.395217,0.47145,-3.09745,0.370801,0.514567,-3.09396,0.375862,0.47506,-3.08402,0.390262,0.374219,-3.0887,0.383482,0.401535,-3.09289,0.377409,0.441479,-3.09272,0.377655,0.36042,-3.09793,0.370102,0.401535,-3.09289,0.377409,0.374219,-3.0887,0.383482,0.401535,-3.09289,0.377409,0.450028,-3.09912,0.368386,0.441479,-3.09272,0.377655,0.315099,-3.0953,0.373916,0.353663,-3.10065,0.366164,0.356377,-3.09134,0.379656,0.36042,-3.09793,0.370102,0.391175,-3.10267,0.363236,0.401535,-3.09289,0.377409,0.317108,-3.10525,0.359504,0.353663,-3.10065,0.366164,0.315099,-3.0953,0.373916,0.47145,-3.09745,0.370801,0.505249,-3.10605,0.358341,0.514567,-3.09396,0.375862,0.464191,-3.1015,0.36494,0.505249,-3.10605,0.358341,0.47145,-3.09745,0.370801,0.353663,-3.10065,0.366164,0.391175,-3.10267,0.363236,0.36042,-3.09793,0.370102,0.415658,-3.10462,0.360414,0.450028,-3.09912,0.368386,0.401535,-3.09289,0.377409,0.317108,-3.10525,0.359504,0.391175,-3.10267,0.363236,0.353663,-3.10065,0.366164,0.415658,-3.10462,0.360414,0.456898,-3.10152,0.364915,0.450028,-3.09912,0.368386,0.415658,-3.10462,0.360414,0.464191,-3.1015,0.36494,0.456898,-3.10152,0.364915,0.415658,-3.10462,0.360414,0.505249,-3.10605,0.358341,0.464191,-3.1015,0.36494,0.317108,-3.10525,0.359504,0.379328,-3.11011,0.352465,0.391175,-3.10267,0.363236,0.42757,-3.11104,0.351115,0.505249,-3.10605,0.358341,0.415658,-3.10462,0.360414,0.323679,-3.11386,0.347027,0.379328,-3.11011,0.352465,0.317108,-3.10525,0.359504,0.42757,-3.11104,0.351115,0.493169,-3.11333,0.347801,0.505249,-3.10605,0.358341,0.323679,-3.11386,0.347027,0.366659,-3.11518,0.345126,0.379328,-3.11011,0.352465,0.448062,-3.11736,0.341969,0.493169,-3.11333,0.347801,0.42757,-3.11104,0.351115,0.448062,-3.11736,0.341969,0.481349,-3.11699,0.342503,0.493169,-3.11333,0.347801,0.333685,-3.11834,0.340548,0.366659,-3.11518,0.345126,0.323679,-3.11386,0.347027,0.333685,-3.11834,0.340548,0.353591,-3.1185,0.340313,0.366659,-3.11518,0.345126,0.448062,-3.11736,0.341969,0.468364,-3.11854,0.340248,0.481349,-3.11699,0.342503,0.342734,-3.11929,0.339169,0.353591,-3.1185,0.340313,0.333685,-3.11834,0.340548,0.226674,-3.00915,0.498719,0.295234,-3.01122,0.495713,0.289541,-3.0093,0.498496,0.209977,-3.01154,0.495254,0.295234,-3.01122,0.495713,0.226674,-3.00915,0.498719,0.209977,-3.01154,0.495254,0.299176,-3.01509,0.49011,0.202234,-3.01557,0.48941,0.299176,-3.01509,0.49011,0.209977,-3.01154,0.495254,0.195534,-3.02401,0.477186,0.299176,-3.01509,0.49011,0.202234,-3.01557,0.48941,0.195534,-3.02401,0.477186,0.299831,-3.01974,0.483378,0.299176,-3.01509,0.49011,0.195534,-3.02401,0.477186,0.297231,-3.0235,0.477926,0.299831,-3.01974,0.483378,0.195534,-3.02401,0.477186,0.237597,-3.02721,0.472551,0.297231,-3.0235,0.477926,0.237597,-3.02721,0.472551,0.291352,-3.02657,0.473482,0.297231,-3.0235,0.477926,0.190142,-3.04204,0.451072,0.237597,-3.02721,0.472551,0.195534,-3.02401,0.477186,0.190142,-3.04204,0.451072,0.234029,-3.04288,0.449853,0.237597,-3.02721,0.472551,0.188005,-3.0636,0.419834,0.234029,-3.04288,0.449853,0.190142,-3.04204,0.451072,0.188005,-3.0636,0.419834,0.233411,-3.05391,0.433875,0.234029,-3.04288,0.449853,0.188005,-3.0636,0.419834,0.278849,-3.05372,0.434151,0.233411,-3.05391,0.433875,0.188005,-3.0636,0.419834,0.286008,-3.0564,0.430268,0.278849,-3.05372,0.434151,0.188005,-3.0636,0.419834,0.289574,-3.06246,0.421489,0.286008,-3.0564,0.430268,0.188005,-3.0636,0.419834,0.287207,-3.06751,0.414172,0.289574,-3.06246,0.421489,0.188005,-3.0636,0.419834,0.280728,-3.07112,0.40894,0.287207,-3.06751,0.414172,0.189125,-3.103,0.362767,0.232324,-3.07145,0.40847,0.188005,-3.0636,0.419834,0.232324,-3.07145,0.40847,0.280728,-3.07112,0.40894,0.188005,-3.0636,0.419834,0.189125,-3.103,0.362767,0.232364,-3.09469,0.37481,0.232324,-3.07145,0.40847,0.248925,-3.09271,0.377678,0.288579,-3.09202,0.378671,0.277276,-3.09121,0.379846,0.248925,-3.09271,0.377678,0.296254,-3.09433,0.375328,0.288579,-3.09202,0.378671,0.232364,-3.09469,0.37481,0.296254,-3.09433,0.375328,0.248925,-3.09271,0.377678,0.189125,-3.103,0.362767,0.296254,-3.09433,0.375328,0.232364,-3.09469,0.37481,0.189125,-3.103,0.362767,0.303063,-3.09865,0.36906,0.296254,-3.09433,0.375328,0.189125,-3.103,0.362767,0.30473,-3.1042,0.361029,0.303063,-3.09865,0.36906,0.189125,-3.103,0.362767,0.299456,-3.10959,0.353219,0.30473,-3.1042,0.361029,0.189125,-3.103,0.362767,0.263204,-3.11069,0.351618,0.299456,-3.10959,0.353219,0.263204,-3.11069,0.351618,0.289256,-3.11123,0.350843,0.299456,-3.10959,0.353219,0.189125,-3.103,0.362767,0.245175,-3.11169,0.35018,0.263204,-3.11069,0.351618,0.192873,-3.11555,0.344581,0.245175,-3.11169,0.35018,0.189125,-3.103,0.362767,0.192873,-3.11555,0.344581,0.224028,-3.11488,0.34555,0.245175,-3.11169,0.35018,0.192873,-3.11555,0.344581,0.20681,-3.11865,0.340092,0.224028,-3.11488,0.34555,0.199891,-3.11854,0.340249,0.20681,-3.11865,0.340092,0.192873,-3.11555,0.344581,0.147034,-3.00939,0.498358,0.160732,-3.01057,0.496661,0.154661,-3.00899,0.498946,0.139278,-3.01226,0.494211,0.160732,-3.01057,0.496661,0.147034,-3.00939,0.498358,0.041504,-3.00902,0.498902,0.085393,-3.01435,0.491175,0.059368,-3.00935,0.498419,0.033958,-3.01285,0.493355,0.085393,-3.01435,0.491175,0.041504,-3.00902,0.498902,0.139278,-3.01226,0.494211,0.166897,-3.01528,0.489831,0.160732,-3.01057,0.496661,0.033021,-3.01812,0.485723,0.085393,-3.01435,0.491175,0.033958,-3.01285,0.493355,0.132998,-3.01954,0.483668,0.166897,-3.01528,0.489831,0.139278,-3.01226,0.494211,0.033021,-3.01812,0.485723,0.117077,-3.02497,0.475793,0.085393,-3.01435,0.491175,0.132998,-3.01954,0.483668,0.171301,-3.0253,0.475321,0.166897,-3.01528,0.489831,0.037644,-3.02197,0.480144,0.117077,-3.02497,0.475793,0.033021,-3.01812,0.485723,0.044445,-3.02368,0.477668,0.117077,-3.02497,0.475793,0.037644,-3.02197,0.480144,0.129608,-3.0303,0.468067,0.171301,-3.0253,0.475321,0.132998,-3.01954,0.483668,0.041539,-3.03236,0.465096,0.117077,-3.02497,0.475793,0.044445,-3.02368,0.477668,0.041539,-3.03236,0.465096,0.083077,-3.02968,0.46898,0.117077,-3.02497,0.475793,0.083077,-3.02968,0.46898,0.129608,-3.0303,0.468067,0.117077,-3.02497,0.475793,0.129608,-3.0303,0.468067,0.173345,-3.04721,0.443582,0.171301,-3.0253,0.475321,0.083077,-3.02968,0.46898,0.173345,-3.04721,0.443582,0.129608,-3.0303,0.468067,0.095784,-3.03349,0.463452,0.173345,-3.04721,0.443582,0.083077,-3.02968,0.46898,0.041539,-3.03236,0.465096,0.085082,-3.05414,0.433544,0.083077,-3.02968,0.46898,0.110518,-3.04105,0.452498,0.173345,-3.04721,0.443582,0.095784,-3.03349,0.463452,0.038806,-3.05751,0.428655,0.085082,-3.05414,0.433544,0.041539,-3.03236,0.465096,0.122397,-3.05238,0.436095,0.173345,-3.04721,0.443582,0.110518,-3.04105,0.452498,0.127468,-3.06918,0.411759,0.173345,-3.04721,0.443582,0.122397,-3.05238,0.436095,0.127468,-3.06918,0.411759,0.172076,-3.07084,0.409347,0.173345,-3.04721,0.443582,0.038806,-3.05751,0.428655,0.082922,-3.08157,0.393803,0.085082,-3.05414,0.433544,0.03878,-3.08946,0.382373,0.082922,-3.08157,0.393803,0.038806,-3.05751,0.428655,0.127468,-3.06918,0.411759,0.167846,-3.09551,0.373618,0.172076,-3.07084,0.409347,0.127168,-3.09476,0.374699,0.03878,-3.08946,0.382373,0.078894,-3.09739,0.370887,0.082922,-3.08157,0.393803,0.040043,-3.10396,0.36137,0.078894,-3.09739,0.370887,0.03878,-3.08946,0.382373,0.130002,-3.10865,0.354581,0.167846,-3.09551,0.373618,0.127168,-3.09476,0.374699,0.040043,-3.10396,0.36137,0.072713,-3.10821,0.355213,0.078894,-3.09739,0.370887,0.130002,-3.10865,0.354581,0.159298,-3.11009,0.352501,0.167846,-3.09551,0.373618,0.043835,-3.11211,0.349562,0.072713,-3.10821,0.355213,0.040043,-3.10396,0.36137,0.043835,-3.11211,0.349562,0.066185,-3.11388,0.347003,0.072713,-3.10821,0.355213,0.137388,-3.11617,0.343692,0.159298,-3.11009,0.352501,0.130002,-3.10865,0.354581,0.137388,-3.11617,0.343692,0.149635,-3.11637,0.343396,0.159298,-3.11009,0.352501,0.049757,-3.11641,0.343337,0.066185,-3.11388,0.347003,0.043835,-3.11211,0.349562,0.049757,-3.11641,0.343337,0.059741,-3.11669,0.342938,0.066185,-3.11388,0.347003,0.143617,-3.11711,0.342329,0.149635,-3.11637,0.343396,0.137388,-3.11617,0.343692,0.055181,-3.11711,0.342329,0.059741,-3.11669,0.342938,0.049757,-3.11641,0.343337,0.143617,-3.11711,0.342329,0.143895,-3.11711,0.342329,0.149635,-3.11637,0.343396,0.055181,-3.11711,0.342329,0.055459,-3.11711,0.342329,0.059741,-3.11669,0.342938,0.055187,-3.11711,0.342329,0.055459,-3.11711,0.342329,0.055181,-3.11711,0.342329,0.055202,-3.11711,0.342329,0.055225,-3.11711,0.342329,0.055253,-3.11711,0.342329,0.055286,-3.11711,0.342329,0.05532,-3.11711,0.342329,0.055355,-3.11711,0.342329,0.055387,-3.11711,0.342329,0.055416,-3.11711,0.342329,0.055439,-3.11711,0.342329,0.055454,-3.11711,0.342329,0.143617,-3.11711,0.342329,0.143895,-3.11711,0.342329,0.143617,-3.11711,0.342329,0.143618,-3.11711,0.342329,0.143621,-3.11711,0.342329,0.143627,-3.11711,0.342329,0.143637,-3.11711,0.342329,0.143652,-3.11711,0.342329,0.143672,-3.11711,0.342329,0.143699,-3.11711,0.342329,0.143734,-3.11711,0.342329,0.143778,-3.11711,0.342329,0.143831,-3.11711,0.342329,-0.175129,-3.01076,0.496376,-0.037923,-3.009,0.498924,-0.168465,-3.009,0.498923,-0.175129,-3.01076,0.496376,-0.031132,-3.01077,0.49637,-0.037923,-3.009,0.498924,-0.179825,-3.01457,0.490855,-0.031132,-3.01077,0.49637,-0.175129,-3.01076,0.496376,-0.179825,-3.01457,0.490855,-0.026295,-3.01459,0.490836,-0.031132,-3.01077,0.49637,-0.179435,-3.01924,0.484089,-0.026295,-3.01459,0.490836,-0.179825,-3.01457,0.490855,-0.179435,-3.01924,0.484089,-0.026699,-3.01923,0.484104,-0.026295,-3.01459,0.490836,-0.172929,-3.02369,0.477656,-0.026699,-3.01923,0.484104,-0.179435,-3.01924,0.484089,-0.172929,-3.02369,0.477656,-0.033388,-3.02368,0.477659,-0.026699,-3.01923,0.484104,-0.165073,-3.02452,0.476442,-0.033388,-3.02368,0.477659,-0.172929,-3.02369,0.477656,-0.165073,-3.02452,0.476442,-0.041319,-3.02452,0.476442,-0.033388,-3.02368,0.477659,-0.118631,-3.02452,0.476442,-0.041319,-3.02452,0.476442,-0.165073,-3.02452,0.476442,-0.123379,-3.02733,0.472381,-0.092489,-3.02452,0.476442,-0.118631,-3.02452,0.476442,-0.092489,-3.02452,0.476442,-0.123379,-3.02733,0.472381,-0.08763,-3.02785,0.471617,-0.092489,-3.02452,0.476442,-0.130124,-3.03669,0.458817,-0.08763,-3.02785,0.471617,-0.123379,-3.02733,0.472381,-0.130124,-3.03669,0.458817,-0.082722,-3.03689,0.458529,-0.08763,-3.02785,0.471617,-0.130124,-3.03669,0.458817,-0.08084,-3.05605,0.430774,-0.082722,-3.03689,0.458529,-0.134983,-3.07045,0.409912,-0.08084,-3.05605,0.430774,-0.130124,-3.03669,0.458817,-0.134983,-3.07045,0.409912,-0.082947,-3.07931,0.397079,-0.08084,-3.05605,0.430774,-0.133674,-3.09448,0.375112,-0.082947,-3.07931,0.397079,-0.134983,-3.07045,0.409912,-0.091024,-3.10531,0.359416,-0.129876,-3.10796,0.355584,-0.091024,-3.10531,0.359416,-0.133674,-3.09448,0.375112,-0.129876,-3.10796,0.355584,-0.099275,-3.11487,0.345569,-0.091024,-3.10531,0.359416,-0.124196,-3.11559,0.344531,-0.099275,-3.11487,0.345569,-0.129876,-3.10796,0.355584,-0.124196,-3.11559,0.344531,-0.109181,-3.11821,0.34074,-0.099275,-3.11487,0.345569,-0.116687,-3.11833,0.340562,-0.109181,-3.11821,0.34074,-0.124196,-3.11559,0.344531,-0.276204,-3.01013,0.497287,-0.233692,-3.01008,0.497366,-0.25415,-3.00887,0.499111,-0.276204,-3.01013,0.497287,-0.214655,-3.01428,0.491278,-0.233692,-3.01008,0.497366,-0.298315,-3.01379,0.491988,-0.214655,-3.01428,0.491278,-0.276204,-3.01013,0.497287,-0.324939,-3.0219,0.480247,-0.214655,-3.01428,0.491278,-0.298315,-3.01379,0.491988,-0.324939,-3.0219,0.480247,-0.198907,-3.02274,0.479033,-0.214655,-3.01428,0.491278,-0.324939,-3.0219,0.480247,-0.257013,-3.02538,0.475201,-0.198907,-3.02274,0.479033,-0.324939,-3.0219,0.480247,-0.284669,-3.027,0.472856,-0.257013,-3.02538,0.475201,-0.335888,-3.02843,0.470782,-0.284669,-3.027,0.472856,-0.324939,-3.0219,0.480247,-0.257013,-3.02538,0.475201,-0.187176,-3.03455,0.461913,-0.198907,-3.02274,0.479033,-0.239526,-3.02892,0.470078,-0.187176,-3.03455,0.461913,-0.257013,-3.02538,0.475201,-0.335888,-3.02843,0.470782,-0.305249,-3.03278,0.464477,-0.284669,-3.027,0.472856,-0.23025,-3.03369,0.46316,-0.187176,-3.03455,0.461913,-0.239526,-3.02892,0.470078,-0.335963,-3.03384,0.462953,-0.305249,-3.03278,0.464477,-0.335888,-3.02843,0.470782,-0.299706,-3.0328,0.464448,-0.281756,-3.03249,0.464903,-0.291716,-3.0314,0.466486,-0.307335,-3.03728,0.457959,-0.281756,-3.03249,0.464903,-0.299706,-3.0328,0.464448,-0.335963,-3.03384,0.462953,-0.31724,-3.03814,0.456722,-0.305249,-3.03278,0.464477,-0.307335,-3.03728,0.457959,-0.274053,-3.03851,0.456177,-0.281756,-3.03249,0.464903,-0.330477,-3.03784,0.457151,-0.31724,-3.03814,0.456722,-0.335963,-3.03384,0.462953,-0.222956,-3.04067,0.453058,-0.187176,-3.03455,0.461913,-0.23025,-3.03369,0.46316,-0.330477,-3.03784,0.457151,-0.323224,-3.03903,0.455425,-0.31724,-3.03814,0.456722,-0.222956,-3.04067,0.453058,-0.18474,-3.04585,0.445552,-0.187176,-3.03455,0.461913,-0.312294,-3.04708,0.443772,-0.274053,-3.03851,0.456177,-0.307335,-3.03728,0.457959,-0.312294,-3.04708,0.443772,-0.270253,-3.04848,0.441748,-0.274053,-3.03851,0.456177,-0.22149,-3.04773,0.44282,-0.18474,-3.04585,0.445552,-0.222956,-3.04067,0.453058,-0.22149,-3.04773,0.44282,-0.187148,-3.05459,0.432885,-0.18474,-3.04585,0.445552,-0.224327,-3.05416,0.433508,-0.187148,-3.05459,0.432885,-0.22149,-3.04773,0.44282,-0.315246,-3.07004,0.410503,-0.270253,-3.04848,0.441748,-0.312294,-3.04708,0.443772,-0.234275,-3.0622,0.421865,-0.187148,-3.05459,0.432885,-0.224327,-3.05416,0.433508,-0.315246,-3.07004,0.410503,-0.270167,-3.06844,0.41282,-0.270253,-3.04848,0.441748,-0.234275,-3.0622,0.421865,-0.194563,-3.06353,0.41994,-0.187148,-3.05459,0.432885,-0.247009,-3.06676,0.415255,-0.194563,-3.06353,0.41994,-0.234275,-3.0622,0.421865,-0.247009,-3.06676,0.415255,-0.207518,-3.07237,0.407131,-0.194563,-3.06353,0.41994,-0.260647,-3.06847,0.412787,-0.207518,-3.07237,0.407131,-0.247009,-3.06676,0.415255,-0.315246,-3.07004,0.410503,-0.260647,-3.06847,0.412787,-0.270167,-3.06844,0.41282,-0.315246,-3.07004,0.410503,-0.207518,-3.07237,0.407131,-0.260647,-3.06847,0.412787,-0.315246,-3.07004,0.410503,-0.226238,-3.07915,0.397316,-0.207518,-3.07237,0.407131,-0.315246,-3.07004,0.410503,-0.20737,-3.08957,0.382218,-0.226238,-3.07915,0.397316,-0.273825,-3.09544,0.373716,-0.20737,-3.08957,0.382218,-0.315246,-3.07004,0.410503,-0.273825,-3.09544,0.373716,-0.191481,-3.09988,0.367283,-0.20737,-3.08957,0.382218,-0.314451,-3.1076,0.356098,-0.222449,-3.11728,0.342075,-0.191481,-3.09988,0.367283,-0.273825,-3.09544,0.373716,-0.222449,-3.11728,0.342075,-0.184922,-3.10793,0.355625,-0.191481,-3.09988,0.367283,-0.314451,-3.1076,0.356098,-0.279625,-3.11155,0.350375,-0.273825,-3.09544,0.373716,-0.222449,-3.11728,0.342075,-0.186691,-3.11408,0.346712,-0.184922,-3.10793,0.355625,-0.310211,-3.11588,0.344112,-0.279625,-3.11155,0.350375,-0.314451,-3.1076,0.356098,-0.310211,-3.11588,0.344112,-0.287385,-3.11794,0.341119,-0.279625,-3.11155,0.350375,-0.222449,-3.11728,0.342075,-0.194384,-3.11929,0.339171,-0.186691,-3.11408,0.346712,-0.304336,-3.11958,0.338746,-0.287385,-3.11794,0.341119,-0.310211,-3.11588,0.344112,-0.207468,-3.12049,0.337424,-0.194384,-3.11929,0.339171,-0.222449,-3.11728,0.342075,-0.304336,-3.11958,0.338746,-0.296571,-3.12026,0.337765,-0.287385,-3.11794,0.341119,-0.427314,-3.00989,0.497648,-0.402122,-3.01032,0.497015,-0.41646,-3.00887,0.499125,-0.439451,-3.01354,0.492351,-0.402122,-3.01032,0.497015,-0.427314,-3.00989,0.497648,-0.439451,-3.01354,0.492351,-0.38855,-3.01572,0.489192,-0.402122,-3.01032,0.497015,-0.451905,-3.02163,0.480634,-0.38855,-3.01572,0.489192,-0.439451,-3.01354,0.492351,-0.451905,-3.02163,0.480634,-0.375804,-3.02529,0.475331,-0.38855,-3.01572,0.489192,-0.460051,-3.03044,0.467873,-0.375804,-3.02529,0.475331,-0.451905,-3.02163,0.480634,-0.409678,-3.03312,0.463983,-0.375804,-3.02529,0.475331,-0.460051,-3.03044,0.467873,-0.409678,-3.03312,0.463983,-0.402137,-3.03341,0.463571,-0.375804,-3.02529,0.475331,-0.364566,-3.04254,0.45034,-0.460051,-3.03044,0.467873,-0.41745,-3.03558,0.460423,-0.409678,-3.03312,0.463983,-0.469412,-3.04582,0.445594,-0.41745,-3.03558,0.460423,-0.394294,-3.03881,0.455747,-0.364566,-3.04254,0.45034,-0.402137,-3.03341,0.463571,-0.469412,-3.04582,0.445594,-0.427661,-3.04235,0.450615,-0.41745,-3.03558,0.460423,-0.387623,-3.05108,0.437971,-0.364566,-3.04254,0.45034,-0.394294,-3.03881,0.455747,-0.469412,-3.04582,0.445594,-0.435264,-3.0533,0.434751,-0.427661,-3.04235,0.450615,-0.387623,-3.05108,0.437971,-0.35859,-3.06216,0.421922,-0.364566,-3.04254,0.45034,-0.475177,-3.06025,0.424687,-0.435264,-3.0533,0.434751,-0.469412,-3.04582,0.445594,-0.515741,-3.06114,0.423409,-0.490107,-3.05625,0.430491,-0.505997,-3.05724,0.429054,-0.515741,-3.06114,0.423409,-0.475177,-3.06025,0.424687,-0.490107,-3.05625,0.430491,-0.475177,-3.06025,0.424687,-0.439696,-3.06747,0.414237,-0.435264,-3.0533,0.434751,-0.384192,-3.06801,0.413449,-0.515741,-3.06114,0.423409,-0.439696,-3.06747,0.414237,-0.475177,-3.06025,0.424687,-0.35859,-3.06216,0.421922,-0.344844,-3.06179,0.422458,-0.354133,-3.06111,0.423444,-0.384192,-3.06801,0.413449,-0.344844,-3.06179,0.422458,-0.35859,-3.06216,0.421922,-0.519945,-3.06671,0.41533,-0.439696,-3.06747,0.414237,-0.515741,-3.06114,0.423409,-0.384192,-3.06801,0.413449,-0.338799,-3.06609,0.416235,-0.344844,-3.06179,0.422458,-0.338386,-3.06994,0.410654,-0.518112,-3.07143,0.408488,-0.439696,-3.06747,0.414237,-0.519945,-3.06671,0.41533,-0.404347,-3.06958,0.411177,-0.338386,-3.06994,0.410654,-0.384192,-3.06801,0.413449,-0.518112,-3.07143,0.408488,-0.404347,-3.06958,0.411177,-0.439696,-3.06747,0.414237,-0.518112,-3.07143,0.408488,-0.338386,-3.06994,0.410654,-0.404347,-3.06958,0.411177,-0.518112,-3.07143,0.408488,-0.341987,-3.0739,0.404917,-0.338386,-3.06994,0.410654,-0.511907,-3.07619,0.401595,-0.341987,-3.0739,0.404917,-0.518112,-3.07143,0.408488,-0.511907,-3.07619,0.401595,-0.356639,-3.0786,0.398105,-0.341987,-3.0739,0.404917,-0.495098,-3.08175,0.393539,-0.356639,-3.0786,0.398105,-0.511907,-3.07619,0.401595,-0.495098,-3.08175,0.393539,-0.382634,-3.08439,0.389717,-0.356639,-3.0786,0.398105,-0.481263,-3.08452,0.389534,-0.382634,-3.08439,0.389717,-0.495098,-3.08175,0.393539,-0.382634,-3.08439,0.389717,-0.356153,-3.11095,0.351251,-0.356639,-3.0786,0.398105,-0.481263,-3.08452,0.389534,-0.413773,-3.0877,0.384923,-0.382634,-3.08439,0.389717,-0.481263,-3.08452,0.389534,-0.44204,-3.08814,0.384292,-0.413773,-3.0877,0.384923,-0.481263,-3.08452,0.389534,-0.441464,-3.10873,0.354466,-0.44204,-3.08814,0.384292,-0.482987,-3.10807,0.355414,-0.382384,-3.11275,0.348643,-0.356153,-3.11095,0.351251,-0.382634,-3.08439,0.389717,-0.479709,-3.11455,0.34603,-0.441464,-3.10873,0.354466,-0.482987,-3.10807,0.355414,-0.479709,-3.11455,0.34603,-0.444046,-3.11269,0.348734,-0.441464,-3.10873,0.354466,-0.382384,-3.11275,0.348643,-0.35958,-3.11588,0.344113,-0.356153,-3.11095,0.351251,-0.452099,-3.11662,0.343037,-0.376812,-3.11733,0.342003,-0.35958,-3.11588,0.344113,-0.382384,-3.11275,0.348643,-0.471406,-3.11805,0.340971,-0.452099,-3.11662,0.343037,-0.479709,-3.11455,0.34603,-0.376812,-3.11733,0.342003,-0.365196,-3.11832,0.340575,-0.35958,-3.11588,0.344113,-0.471406,-3.11805,0.340971,-0.462936,-3.11846,0.340364,-0.452099,-3.11662,0.343037,-0.371237,-3.11866,0.340078,-0.365196,-3.11832,0.340575,-0.376812,-3.11733,0.342003,-0.668477,-3.01076,0.496376,-0.531271,-3.009,0.498924,-0.661813,-3.009,0.498923,-0.668477,-3.01076,0.496376,-0.52448,-3.01077,0.49637,-0.531271,-3.009,0.498924,-0.673173,-3.01457,0.490855,-0.52448,-3.01077,0.49637,-0.668477,-3.01076,0.496376,-0.673173,-3.01457,0.490855,-0.519643,-3.01459,0.490836,-0.52448,-3.01077,0.49637,-0.672783,-3.01924,0.484089,-0.519643,-3.01459,0.490836,-0.673173,-3.01457,0.490855,-0.520047,-3.01923,0.484104,-0.666277,-3.02369,0.477656,-0.520047,-3.01923,0.484104,-0.672783,-3.01924,0.484089,-0.666277,-3.02369,0.477656,-0.526736,-3.02368,0.477659,-0.520047,-3.01923,0.484104,-0.658421,-3.02452,0.476442,-0.526736,-3.02368,0.477659,-0.666277,-3.02369,0.477656,-0.658421,-3.02452,0.476442,-0.534667,-3.02452,0.476442,-0.526736,-3.02368,0.477659,-0.611979,-3.02452,0.476442,-0.534667,-3.02452,0.476442,-0.658421,-3.02452,0.476442,-0.616726,-3.02733,0.472381,-0.585837,-3.02452,0.476442,-0.611979,-3.02452,0.476442,-0.585837,-3.02452,0.476442,-0.616726,-3.02733,0.472381,-0.580978,-3.02785,0.471617,-0.585837,-3.02452,0.476442,-0.623472,-3.03669,0.458816,-0.580978,-3.02785,0.471617,-0.616726,-3.02733,0.472381,-0.623472,-3.03669,0.458816,-0.57607,-3.03689,0.458529,-0.580978,-3.02785,0.471617,-0.623472,-3.03669,0.458816,-0.574188,-3.05605,0.430775,-0.57607,-3.03689,0.458529,-0.62833,-3.07045,0.409912,-0.574188,-3.05605,0.430775,-0.623472,-3.03669,0.458816,-0.62833,-3.07045,0.409912,-0.576295,-3.07931,0.397079,-0.574188,-3.05605,0.430775,-0.627022,-3.09448,0.375111,-0.576295,-3.07931,0.397079,-0.62833,-3.07045,0.409912,-0.627022,-3.09448,0.375111,-0.584372,-3.10531,0.359416,-0.576295,-3.07931,0.397079,-0.623224,-3.10796,0.355584,-0.584372,-3.10531,0.359416,-0.627022,-3.09448,0.375111,-0.623224,-3.10796,0.355584,-0.592624,-3.11487,0.345569,-0.584372,-3.10531,0.359416,-0.617544,-3.11559,0.344531,-0.592624,-3.11487,0.345569,-0.623224,-3.10796,0.355584,-0.617544,-3.11559,0.344531,-0.602529,-3.11821,0.34074,-0.592624,-3.11487,0.345569,-0.610035,-3.11833,0.340562,-0.602529,-3.11821,0.34074,-0.617544,-3.11559,0.344531,-0.762265,-3.00852,0.49963,-0.717448,-3.01052,0.49673,-0.737842,-3.00773,0.500773,-0.781599,-3.01192,0.494694,-0.717448,-3.01052,0.49673,-0.762265,-3.00852,0.49963,-0.781599,-3.01192,0.494694,-0.699139,-3.01623,0.488455,-0.717448,-3.01052,0.49673,-0.801343,-3.01902,0.484422,-0.699139,-3.01623,0.488455,-0.781599,-3.01192,0.494694,-0.801343,-3.01902,0.484422,-0.682915,-3.02448,0.47651,-0.699139,-3.01623,0.488455,-0.814977,-3.02795,0.471486,-0.682915,-3.02448,0.47651,-0.801343,-3.01902,0.484422,-0.814977,-3.02795,0.471486,-0.676687,-3.03067,0.467542,-0.682915,-3.02448,0.47651,-0.814977,-3.02795,0.471486,-0.758892,-3.03112,0.466888,-0.676687,-3.03067,0.467542,-0.745379,-3.03196,0.465667,-0.676687,-3.03067,0.467542,-0.758892,-3.03112,0.466888,-0.814977,-3.02795,0.471486,-0.769158,-3.03248,0.464917,-0.758892,-3.03112,0.466888,-0.745379,-3.03196,0.465667,-0.674937,-3.03564,0.460341,-0.676687,-3.03067,0.467542,-0.822152,-3.03746,0.457709,-0.769158,-3.03248,0.464917,-0.814977,-3.02795,0.471486,-0.733728,-3.03492,0.461383,-0.674937,-3.03564,0.460341,-0.745379,-3.03196,0.465667,-0.822152,-3.03746,0.457709,-0.777898,-3.03534,0.46077,-0.769158,-3.03248,0.464917,-0.822152,-3.03746,0.457709,-0.784972,-3.04013,0.453829,-0.777898,-3.03534,0.46077,-0.72179,-3.04,0.454022,-0.674937,-3.03564,0.460341,-0.733728,-3.03492,0.461383,-0.72179,-3.04,0.454022,-0.676712,-3.03972,0.454424,-0.674937,-3.03564,0.460341,-0.708824,-3.04398,0.448264,-0.676712,-3.03972,0.454424,-0.72179,-3.04,0.454022,-0.708824,-3.04398,0.448264,-0.682282,-3.04358,0.44884,-0.676712,-3.03972,0.454424,-0.823835,-3.04593,0.445438,-0.784972,-3.04013,0.453829,-0.822152,-3.03746,0.457709,-0.823835,-3.04593,0.445438,-0.785844,-3.04421,0.447924,-0.784972,-3.04013,0.453829,-0.708824,-3.04398,0.448264,-0.694278,-3.04554,0.446003,-0.682282,-3.04358,0.44884,-0.823835,-3.04593,0.445438,-0.782098,-3.04866,0.441475,-0.785844,-3.04421,0.447924,-0.821853,-3.05428,0.433339,-0.782098,-3.04866,0.441475,-0.823835,-3.04593,0.445438,-0.821853,-3.05428,0.433339,-0.769985,-3.05242,0.436034,-0.782098,-3.04866,0.441475,-0.821853,-3.05428,0.433339,-0.751891,-3.05496,0.432361,-0.769985,-3.05242,0.436034,-0.815423,-3.06199,0.422173,-0.751891,-3.05496,0.432361,-0.821853,-3.05428,0.433339,-0.815423,-3.06199,0.422173,-0.732827,-3.05873,0.426889,-0.751891,-3.05496,0.432361,-0.815423,-3.06199,0.422173,-0.716557,-3.06323,0.420372,-0.732827,-3.05873,0.426889,-0.79636,-3.06995,0.410641,-0.716557,-3.06323,0.420372,-0.815423,-3.06199,0.422173,-0.79636,-3.06995,0.410641,-0.701586,-3.07051,0.409823,-0.716557,-3.06323,0.420372,-0.768473,-3.07546,0.402651,-0.701586,-3.07051,0.409823,-0.79636,-3.06995,0.410641,-0.768473,-3.07546,0.402651,-0.692365,-3.08048,0.395387,-0.701586,-3.07051,0.409823,-0.739689,-3.0796,0.39666,-0.692365,-3.08048,0.395387,-0.768473,-3.07546,0.402651,-0.803508,-3.08311,0.391576,-0.778351,-3.0826,0.39232,-0.79022,-3.08136,0.394113,-0.728784,-3.0848,0.389123,-0.692365,-3.08048,0.395387,-0.739689,-3.0796,0.39666,-0.803508,-3.08311,0.391576,-0.770623,-3.0855,0.38811,-0.778351,-3.0826,0.39232,-0.811655,-3.08698,0.385971,-0.770623,-3.0855,0.38811,-0.803508,-3.08311,0.391576,-0.728784,-3.0848,0.389123,-0.691187,-3.08973,0.381993,-0.692365,-3.08048,0.395387,-0.727507,-3.09042,0.380982,-0.691187,-3.08973,0.381993,-0.728784,-3.0848,0.389123,-0.816193,-3.09245,0.378045,-0.770623,-3.0855,0.38811,-0.811655,-3.08698,0.385971,-0.816193,-3.09245,0.378045,-0.762436,-3.09404,0.375744,-0.770623,-3.0855,0.38811,-0.727507,-3.09042,0.380982,-0.694338,-3.09784,0.370242,-0.691187,-3.08973,0.381993,-0.733431,-3.09447,0.37512,-0.694338,-3.09784,0.370242,-0.727507,-3.09042,0.380982,-0.816945,-3.09884,0.368795,-0.762436,-3.09404,0.375744,-0.816193,-3.09245,0.378045,-0.741701,-3.09631,0.372453,-0.694338,-3.09784,0.370242,-0.733431,-3.09447,0.37512,-0.816945,-3.09884,0.368795,-0.75243,-3.09668,0.371922,-0.762436,-3.09404,0.375744,-0.75243,-3.09668,0.371922,-0.694338,-3.09784,0.370242,-0.741701,-3.09631,0.372453,-0.816945,-3.09884,0.368795,-0.694338,-3.09784,0.370242,-0.75243,-3.09668,0.371922,-0.816945,-3.09884,0.368795,-0.702371,-3.10578,0.358735,-0.694338,-3.09784,0.370242,-0.811906,-3.10786,0.355724,-0.702371,-3.10578,0.358735,-0.816945,-3.09884,0.368795,-0.811906,-3.10786,0.355724,-0.714099,-3.11228,0.349323,-0.702371,-3.10578,0.358735,-0.798321,-3.11546,0.34471,-0.714099,-3.11228,0.349323,-0.811906,-3.10786,0.355724,-0.798321,-3.11546,0.34471,-0.736073,-3.11916,0.339353,-0.714099,-3.11228,0.349323,-0.78325,-3.11956,0.338782,-0.736073,-3.11916,0.339353,-0.798321,-3.11546,0.34471,-0.76401,-3.12153,0.335928,-0.736073,-3.11916,0.339353,-0.78325,-3.11956,0.338782,-0.982662,-3.01135,0.495521,-0.933366,-3.01005,0.497416,-0.959312,-3.00812,0.500206,-0.982662,-3.01135,0.495521,-0.915762,-3.01544,0.489601,-0.933366,-3.01005,0.497416,-1.00341,-3.01861,0.485014,-0.915762,-3.01544,0.489601,-0.982662,-3.01135,0.495521,-1.00341,-3.01861,0.485014,-0.903738,-3.02243,0.479475,-0.915762,-3.01544,0.489601,-1.02084,-3.02893,0.47006,-0.903738,-3.02243,0.479475,-1.00341,-3.01861,0.485014,-1.02084,-3.02893,0.47006,-0.894894,-3.03093,0.467162,-0.903738,-3.02243,0.479475,-1.03419,-3.04131,0.452131,-0.894894,-3.03093,0.467162,-1.02084,-3.02893,0.47006,-1.03419,-3.04131,0.452131,-0.97213,-3.03677,0.458703,-0.894894,-3.03093,0.467162,-0.97213,-3.03677,0.458703,-0.890167,-3.03821,0.456623,-0.894894,-3.03093,0.467162,-0.959919,-3.03757,0.457547,-0.890167,-3.03821,0.456623,-0.97213,-3.03677,0.458703,-1.03419,-3.04131,0.452131,-0.987613,-3.03916,0.455247,-0.97213,-3.03677,0.458703,-0.942426,-3.04212,0.450946,-0.890167,-3.03821,0.456623,-0.959919,-3.03757,0.457547,-0.942426,-3.04212,0.450946,-0.886993,-3.04542,0.446178,-0.890167,-3.03821,0.456623,-1.03419,-3.04131,0.452131,-0.999444,-3.04523,0.446441,-0.987613,-3.03916,0.455247,-1.04392,-3.05703,0.429355,-0.999444,-3.04523,0.446441,-1.03419,-3.04131,0.452131,-0.922587,-3.05397,0.433782,-0.886993,-3.04542,0.446178,-0.942426,-3.04212,0.450946,-1.04392,-3.05703,0.429355,-1.00694,-3.05443,0.433122,-0.999444,-3.04523,0.446441,-0.922587,-3.05397,0.433782,-0.884473,-3.05936,0.425979,-0.886993,-3.04542,0.446178,-1.04392,-3.05703,0.429355,-1.00874,-3.06388,0.419428,-1.00694,-3.05443,0.433122,-0.915582,-3.06468,0.418272,-0.884473,-3.05936,0.425979,-0.922587,-3.05397,0.433782,-0.915582,-3.06468,0.418272,-0.886479,-3.07121,0.408811,-0.884473,-3.05936,0.425979,-1.04543,-3.07619,0.401599,-1.00874,-3.06388,0.419428,-1.04392,-3.05703,0.429355,-0.915092,-3.07523,0.402986,-0.886479,-3.07121,0.408811,-0.915582,-3.06468,0.418272,-1.04543,-3.07619,0.401599,-1.00695,-3.07175,0.408038,-1.00874,-3.06388,0.419428,-0.915092,-3.07523,0.402986,-0.892669,-3.08358,0.3909,-0.886479,-3.07121,0.408811,-1.04543,-3.07619,0.401599,-1.00043,-3.0821,0.393039,-1.00695,-3.07175,0.408038,-0.923957,-3.08632,0.386927,-0.892669,-3.08358,0.3909,-0.915092,-3.07523,0.402986,-1.03818,-3.09161,0.379266,-1.00043,-3.0821,0.393039,-1.04543,-3.07619,0.401599,-1.03818,-3.09161,0.379266,-0.985426,-3.09202,0.378664,-1.00043,-3.0821,0.393039,-0.923957,-3.08632,0.386927,-0.908046,-3.09912,0.368391,-0.939823,-3.09373,0.376189,-1.0295,-3.10094,0.365743,-0.985426,-3.09202,0.378664,-1.03818,-3.09161,0.379266,-0.968308,-3.09611,0.372742,-0.954973,-3.09624,0.372563,-0.908046,-3.09912,0.368391,-0.939823,-3.09373,0.376189,-0.968308,-3.09611,0.372742,-0.908046,-3.09912,0.368391,-0.954973,-3.09624,0.372563,-1.0295,-3.10094,0.365743,-0.908046,-3.09912,0.368391,-0.968308,-3.09611,0.372742,-1.0295,-3.10094,0.365743,-0.92949,-3.11135,0.350663,-0.908046,-3.09912,0.368391,-1.01326,-3.11111,0.351023,-0.92949,-3.11135,0.350663,-1.0295,-3.10094,0.365743,-1.01326,-3.11111,0.351023,-0.955219,-3.11846,0.340367,-0.92949,-3.11135,0.350663,-0.983579,-3.11888,0.339759,-0.955219,-3.11846,0.340367,-1.01326,-3.11111,0.351023,-1.19826,-3.01076,0.496376,-1.06105,-3.009,0.498924,-1.19159,-3.009,0.498923,-1.19826,-3.01076,0.496376,-1.05426,-3.01077,0.49637,-1.06105,-3.009,0.498924,-1.20295,-3.01457,0.490855,-1.05426,-3.01077,0.49637,-1.19826,-3.01076,0.496376,-1.20295,-3.01457,0.490855,-1.04942,-3.01459,0.490836,-1.05426,-3.01077,0.49637,-1.20256,-3.01924,0.484089,-1.04942,-3.01459,0.490836,-1.20295,-3.01457,0.490855,-1.20256,-3.01924,0.484089,-1.04983,-3.01923,0.484104,-1.04942,-3.01459,0.490836,-1.19606,-3.02369,0.477656,-1.04983,-3.01923,0.484104,-1.20256,-3.01924,0.484089,-1.19606,-3.02369,0.477656,-1.05651,-3.02368,0.477659,-1.04983,-3.01923,0.484104,-1.1882,-3.02452,0.476442,-1.05651,-3.02368,0.477659,-1.19606,-3.02369,0.477656,-1.1882,-3.02452,0.476442,-1.06445,-3.02452,0.476442,-1.05651,-3.02368,0.477659,-1.14176,-3.02452,0.476442,-1.06445,-3.02452,0.476442,-1.1882,-3.02452,0.476442,-1.1465,-3.02733,0.472381,-1.11562,-3.02452,0.476442,-1.14176,-3.02452,0.476442,-1.11562,-3.02452,0.476442,-1.1465,-3.02733,0.472381,-1.10973,-3.02877,0.470294,-1.11562,-3.02452,0.476442,-1.15325,-3.03669,0.458816,-1.10973,-3.02877,0.470294,-1.1465,-3.02733,0.472381,-1.15325,-3.03669,0.458816,-1.10518,-3.03999,0.454033,-1.10973,-3.02877,0.470294,-1.15811,-3.07045,0.409913,-1.10518,-3.03999,0.454033,-1.15325,-3.03669,0.458816,-1.10404,-3.06069,0.424047,-1.15811,-3.07045,0.409913,-1.10725,-3.08483,0.389084,-1.10404,-3.06069,0.424047,-1.1568,-3.09448,0.375111,-1.10725,-3.08483,0.389084,-1.15811,-3.07045,0.409913,-1.1568,-3.09448,0.375111,-1.11498,-3.10661,0.35753,-1.10725,-3.08483,0.389084,-1.153,-3.10796,0.355583,-1.11498,-3.10661,0.35753,-1.1568,-3.09448,0.375111,-1.153,-3.10796,0.355583,-1.1224,-3.11487,0.345569,-1.11498,-3.10661,0.35753,-1.14732,-3.11559,0.344531,-1.1224,-3.11487,0.345569,-1.153,-3.10796,0.355583,-1.14732,-3.11559,0.344531,-1.13231,-3.11821,0.34074,-1.1224,-3.11487,0.345569,-1.13981,-3.11833,0.340562,-1.13231,-3.11821,0.34074,-1.14732,-3.11559,0.344531,0.749237,-2.85369,0.723902,0.764273,-2.85268,0.725366,0.756536,-2.85222,0.726041,0.831868,-2.85628,0.720153,0.848849,-2.85262,0.725452,0.84078,-2.85256,0.725538,0.749237,-2.85369,0.723902,0.770919,-2.85567,0.721041,0.764273,-2.85268,0.725366,0.831868,-2.85628,0.720153,0.857775,-2.8576,0.718242,0.848849,-2.85262,0.725452,0.742407,-2.8583,0.717226,0.770919,-2.85567,0.721041,0.749237,-2.85369,0.723902,0.742407,-2.8583,0.717226,0.77758,-2.86344,0.70978,0.770919,-2.85567,0.721041,0.823204,-2.86497,0.707561,0.857775,-2.8576,0.718242,0.831868,-2.85628,0.720153,0.823204,-2.86497,0.707561,0.861301,-2.86906,0.701642,0.857775,-2.8576,0.718242,0.737918,-2.87114,0.698631,0.77758,-2.86344,0.70978,0.742407,-2.8583,0.717226,0.816021,-2.8772,0.689847,0.861301,-2.86906,0.701642,0.823204,-2.86497,0.707561,0.737918,-2.87114,0.698631,0.782222,-2.88438,0.679452,0.77758,-2.86344,0.70978,0.816021,-2.8772,0.689847,0.854164,-2.89758,0.660333,0.861301,-2.86906,0.701642,0.73885,-2.90078,0.655699,0.782222,-2.88438,0.679452,0.737918,-2.87114,0.698631,0.809836,-2.90494,0.649673,0.854164,-2.89758,0.660333,0.86734,-2.89809,0.659591,0.860386,-2.89684,0.661403,0.73885,-2.90078,0.655699,0.782169,-2.90545,0.648934,0.782222,-2.88438,0.679452,0.809836,-2.90494,0.649673,0.86734,-2.89809,0.659591,0.854164,-2.89758,0.660333,0.809836,-2.90494,0.649673,0.872525,-2.90125,0.655006,0.86734,-2.89809,0.659591,0.730757,-2.90168,0.654385,0.782169,-2.90545,0.648934,0.73885,-2.90078,0.655699,0.809836,-2.90494,0.649673,0.87432,-2.90611,0.647977,0.872525,-2.90125,0.655006,0.723576,-2.90769,0.645678,0.782169,-2.90545,0.648934,0.730757,-2.90168,0.654385,0.782169,-2.90545,0.648934,0.87432,-2.90611,0.647977,0.809836,-2.90494,0.649673,0.723576,-2.90769,0.645678,0.87432,-2.90611,0.647977,0.782169,-2.90545,0.648934,0.723576,-2.90769,0.645678,0.869579,-2.91185,0.639661,0.87432,-2.90611,0.647977,0.725725,-2.91344,0.637348,0.869579,-2.91185,0.639661,0.723576,-2.90769,0.645678,0.85026,-2.91672,0.632596,0.731418,-2.91666,0.632697,0.85026,-2.91672,0.632596,0.725725,-2.91344,0.637348,0.740422,-2.91828,0.630339,0.85026,-2.91672,0.632596,0.731418,-2.91666,0.632697,0.740422,-2.91828,0.630339,0.807228,-2.92191,0.62508,0.807228,-2.92191,0.62508,0.850773,-2.93603,0.604629,0.85026,-2.91672,0.632596,0.740422,-2.91828,0.630339,0.781855,-2.92214,0.624744,0.807228,-2.92191,0.62508,0.781855,-2.92214,0.624744,0.790476,-2.92214,0.624744,0.807228,-2.92191,0.62508,0.740422,-2.91828,0.630339,0.781127,-2.93138,0.611361,0.781855,-2.92214,0.624744,0.78255,-2.92214,0.624744,0.790476,-2.92214,0.624744,0.781855,-2.92214,0.624744,0.783246,-2.92214,0.624744,0.783945,-2.92214,0.624744,0.784646,-2.92214,0.624744,0.785351,-2.92214,0.624744,0.786061,-2.92214,0.624744,0.786776,-2.92214,0.624744,0.787499,-2.92214,0.624744,0.788229,-2.92214,0.624744,0.788968,-2.92214,0.624744,0.789716,-2.92214,0.624744,0.744057,-2.93636,0.604145,0.80939,-2.94405,0.593021,0.850773,-2.93603,0.604629,0.807228,-2.92191,0.62508,0.744057,-2.93636,0.604145,0.774203,-2.94307,0.594429,0.781127,-2.93138,0.611361,0.749684,-2.94446,0.592423,0.774203,-2.94307,0.594429,0.744057,-2.93636,0.604145,0.849483,-2.94906,0.585762,0.749684,-2.94446,0.592423,0.765568,-2.94746,0.588072,0.774203,-2.94307,0.594429,0.757641,-2.94782,0.58755,0.765568,-2.94746,0.588072,0.749684,-2.94446,0.592423,0.813958,-2.95476,0.577504,0.849483,-2.94906,0.585762,0.80939,-2.94405,0.593021,0.813958,-2.95476,0.577504,0.845116,-2.95883,0.571601,0.849483,-2.94906,0.585762,0.82075,-2.96279,0.565865,0.845116,-2.95883,0.571601,0.813958,-2.95476,0.577504,0.82075,-2.96279,0.565865,0.840076,-2.96339,0.565001,0.845116,-2.95883,0.571601,0.82075,-2.96279,0.565865,0.834862,-2.96558,0.561819,0.840076,-2.96339,0.565001,0.827335,-2.96563,0.561761,0.834862,-2.96558,0.561819,0.82075,-2.96279,0.565865,0.827335,-2.96563,0.561761,0.831078,-2.96591,0.56135,0.834862,-2.96558,0.561819,0.8308,-2.96591,0.56135,0.831078,-2.96591,0.56135,0.827335,-2.96563,0.561761,0.830805,-2.96591,0.56135,0.831078,-2.96591,0.56135,0.8308,-2.96591,0.56135,0.830821,-2.96591,0.56135,0.830843,-2.96591,0.56135,0.830872,-2.96591,0.56135,0.830905,-2.96591,0.56135,0.830939,-2.96591,0.56135,0.830974,-2.96591,0.56135,0.831006,-2.96591,0.56135,0.831035,-2.96591,0.56135,0.831058,-2.96591,0.56135,0.831073,-2.96591,0.56135,0.661617,-2.85374,0.723838,0.703328,-2.85363,0.723991,0.677854,-2.85201,0.726343,0.642563,-2.85833,0.717188,0.703328,-2.85363,0.723991,0.661617,-2.85374,0.723838,0.642563,-2.85833,0.717188,0.715094,-2.85853,0.716894,0.703328,-2.85363,0.723991,0.642563,-2.85833,0.717188,0.718625,-2.86474,0.707902,0.715094,-2.85853,0.716894,0.625781,-2.86539,0.706965,0.718625,-2.86474,0.707902,0.642563,-2.85833,0.717188,0.611577,-2.87532,0.692572,0.718625,-2.86474,0.707902,0.625781,-2.86539,0.706965,0.611577,-2.87532,0.692572,0.714242,-2.87506,0.692953,0.718625,-2.86474,0.707902,0.611577,-2.87532,0.692572,0.706086,-2.88197,0.682937,0.714242,-2.87506,0.692953,0.611577,-2.87532,0.692572,0.666911,-2.88201,0.682877,0.706086,-2.88197,0.682937,0.603031,-2.8892,0.672471,0.666911,-2.88201,0.682877,0.611577,-2.87532,0.692572,0.698261,-2.88354,0.680669,0.706086,-2.88197,0.682937,0.666911,-2.88201,0.682877,0.603031,-2.8892,0.672471,0.648377,-2.8847,0.678982,0.666911,-2.88201,0.682877,0.603031,-2.8892,0.672471,0.638283,-2.88901,0.672746,0.648377,-2.8847,0.678982,0.603031,-2.8892,0.672471,0.630959,-2.89606,0.662523,0.638283,-2.88901,0.672746,0.599182,-2.90157,0.654553,0.630959,-2.89606,0.662523,0.603031,-2.8892,0.672471,0.599182,-2.90157,0.654553,0.62873,-2.90669,0.647139,0.630959,-2.89606,0.662523,0.599193,-2.91617,0.633399,0.62873,-2.90669,0.647139,0.599182,-2.90157,0.654553,0.599193,-2.91617,0.633399,0.631484,-2.91452,0.635786,0.62873,-2.90669,0.647139,0.679572,-2.92199,0.624963,0.701815,-2.916,0.63365,0.693626,-2.91575,0.634011,0.679572,-2.92199,0.624963,0.708432,-2.91975,0.628217,0.701815,-2.916,0.63365,0.599193,-2.91617,0.633399,0.639866,-2.92161,0.625521,0.631484,-2.91452,0.635786,0.6045,-2.92978,0.613689,0.639866,-2.92161,0.625521,0.599193,-2.91617,0.633399,0.679572,-2.92199,0.624963,0.712472,-2.92592,0.619276,0.708432,-2.91975,0.628217,0.6045,-2.92978,0.613689,0.652516,-2.92516,0.620375,0.639866,-2.92161,0.625521,0.667745,-2.92493,0.620706,0.712472,-2.92592,0.619276,0.679572,-2.92199,0.624963,0.652516,-2.92516,0.620375,0.712472,-2.92592,0.619276,0.667745,-2.92493,0.620706,0.6045,-2.92978,0.613689,0.712472,-2.92592,0.619276,0.652516,-2.92516,0.620375,0.6045,-2.92978,0.613689,0.713129,-2.93281,0.609297,0.712472,-2.92592,0.619276,0.709674,-2.93903,0.60029,0.713129,-2.93281,0.609297,0.616687,-2.94181,0.596257,0.709674,-2.93903,0.60029,0.6045,-2.92978,0.613689,0.693796,-2.94734,0.588252,0.630388,-2.94819,0.587022,0.693796,-2.94734,0.588252,0.616687,-2.94181,0.596257,0.647201,-2.95205,0.581425,0.693796,-2.94734,0.588252,0.630388,-2.94819,0.587022,0.647201,-2.95205,0.581425,0.671391,-2.95218,0.581242,0.693796,-2.94734,0.588252,0.570404,-2.83696,0.748139,0.587682,-2.83956,0.744374,0.581565,-2.83636,0.749008,0.562809,-2.84291,0.73952,0.587682,-2.83956,0.744374,0.570404,-2.83696,0.748139,0.562809,-2.84291,0.73952,0.590619,-2.84404,0.737877,0.587682,-2.83956,0.744374,0.562809,-2.84291,0.73952,0.590622,-2.8581,0.717518,0.590619,-2.84404,0.737877,0.484566,-2.85318,0.72464,0.499014,-2.85446,0.722791,0.490405,-2.85224,0.726002,0.479733,-2.85652,0.7198,0.499014,-2.85446,0.722791,0.484566,-2.85318,0.72464,0.556905,-2.87616,0.691352,0.590622,-2.8581,0.717518,0.562809,-2.84291,0.73952,0.479733,-2.85652,0.7198,0.503406,-2.85953,0.715442,0.499014,-2.85446,0.722791,0.474529,-2.8696,0.700858,0.503406,-2.85953,0.715442,0.479733,-2.85652,0.7198,0.556905,-2.87616,0.691352,0.585279,-2.88747,0.674968,0.590622,-2.8581,0.717518,0.474529,-2.8696,0.700858,0.505726,-2.89199,0.668431,0.503406,-2.85953,0.715442,0.475412,-2.89533,0.663581,0.505726,-2.89199,0.668431,0.474529,-2.8696,0.700858,0.54822,-2.90542,0.648972,0.585279,-2.88747,0.674968,0.556905,-2.87616,0.691352,0.54822,-2.90542,0.648972,0.574793,-2.91804,0.630694,0.585279,-2.88747,0.674968,0.475412,-2.89533,0.663581,0.509876,-2.90593,0.648239,0.505726,-2.89199,0.668431,0.479041,-2.91154,0.640102,0.509876,-2.90593,0.648239,0.475412,-2.89533,0.663581,0.479041,-2.91154,0.640102,0.514875,-2.9139,0.636688,0.509876,-2.90593,0.648239,0.537411,-2.91735,0.631687,0.574793,-2.91804,0.630694,0.54822,-2.90542,0.648972,0.48366,-2.92269,0.623958,0.514875,-2.9139,0.636688,0.479041,-2.91154,0.640102,0.48366,-2.92269,0.623958,0.521,-2.91778,0.63107,0.514875,-2.9139,0.636688,0.48366,-2.92269,0.623958,0.528261,-2.91923,0.628964,0.521,-2.91778,0.63107,0.528261,-2.91923,0.628964,0.574793,-2.91804,0.630694,0.537411,-2.91735,0.631687,0.48366,-2.92269,0.623958,0.574793,-2.91804,0.630694,0.528261,-2.91923,0.628964,0.490822,-2.93326,0.608648,0.574793,-2.91804,0.630694,0.48366,-2.92269,0.623958,0.490822,-2.93326,0.608648,0.565924,-2.9321,0.610319,0.574793,-2.91804,0.630694,0.490822,-2.93326,0.608648,0.558291,-2.93975,0.599243,0.565924,-2.9321,0.610319,0.501881,-2.94294,0.594622,0.558291,-2.93975,0.599243,0.490822,-2.93326,0.608648,0.501881,-2.94294,0.594622,0.545839,-2.94681,0.589012,0.558291,-2.93975,0.599243,0.518702,-2.94908,0.585726,0.545839,-2.94681,0.589012,0.501881,-2.94294,0.594622,0.518702,-2.94908,0.585726,0.53276,-2.94954,0.585057,0.545839,-2.94681,0.589012,0.39009,-2.85234,0.725859,0.419351,-2.8537,0.723896,0.403915,-2.85179,0.726658,0.374618,-2.85513,0.721813,0.419351,-2.8537,0.723896,0.39009,-2.85234,0.725859,0.374618,-2.85513,0.721813,0.433072,-2.85797,0.717707,0.419351,-2.8537,0.723896,0.356637,-2.86162,0.712421,0.433072,-2.85797,0.717707,0.374618,-2.85513,0.721813,0.356637,-2.86162,0.712421,0.445202,-2.86461,0.708088,0.433072,-2.85797,0.717707,0.342438,-2.87018,0.700019,0.445202,-2.86461,0.708088,0.356637,-2.86162,0.712421,0.342438,-2.87018,0.700019,0.45744,-2.87553,0.692272,0.331432,-2.88058,0.684956,0.45744,-2.87553,0.692272,0.342438,-2.87018,0.700019,0.386724,-2.88003,0.685751,0.45744,-2.87553,0.692272,0.331432,-2.88058,0.684956,0.397838,-2.88052,0.685047,0.45744,-2.87553,0.692272,0.386724,-2.88003,0.685751,0.331432,-2.88058,0.684956,0.372789,-2.88298,0.681475,0.386724,-2.88003,0.685751,0.397838,-2.88052,0.685047,0.463161,-2.88721,0.675342,0.45744,-2.87553,0.692272,0.408885,-2.88418,0.679735,0.463161,-2.88721,0.675342,0.397838,-2.88052,0.685047,0.324206,-2.89222,0.668097,0.372789,-2.88298,0.681475,0.331432,-2.88058,0.684956,0.420558,-2.89124,0.669508,0.463161,-2.88721,0.675342,0.408885,-2.88418,0.679735,0.324206,-2.89222,0.668097,0.362808,-2.89019,0.671032,0.372789,-2.88298,0.681475,0.420558,-2.89124,0.669508,0.464118,-2.901,0.655369,0.463161,-2.88721,0.675342,0.324206,-2.89222,0.668097,0.358977,-2.90095,0.655445,0.362808,-2.89019,0.671032,0.321315,-2.90449,0.650314,0.358977,-2.90095,0.655445,0.324206,-2.89222,0.668097,0.427895,-2.90036,0.656304,0.464118,-2.901,0.655369,0.420558,-2.89124,0.669508,0.429966,-2.90787,0.645428,0.464118,-2.901,0.655369,0.427895,-2.90036,0.656304,0.321315,-2.90449,0.650314,0.362584,-2.91179,0.639744,0.358977,-2.90095,0.655445,0.322931,-2.91575,0.634013,0.362584,-2.91179,0.639744,0.321315,-2.90449,0.650314,0.429966,-2.90787,0.645428,0.458491,-2.91956,0.628486,0.464118,-2.901,0.655369,0.427086,-2.91655,0.632846,0.458491,-2.91956,0.628486,0.429966,-2.90787,0.645428,0.322931,-2.91575,0.634013,0.370841,-2.92063,0.626938,0.362584,-2.91179,0.639744,0.327694,-2.92607,0.619062,0.370841,-2.92063,0.626938,0.322931,-2.91575,0.634013,0.417925,-2.92344,0.622869,0.458491,-2.91956,0.628486,0.427086,-2.91655,0.632846,0.327694,-2.92607,0.619062,0.384319,-2.92656,0.61835,0.370841,-2.92063,0.626938,0.4017,-2.92775,0.616627,0.458491,-2.91956,0.628486,0.417925,-2.92344,0.622869,0.4017,-2.92775,0.616627,0.444669,-2.93457,0.606746,0.458491,-2.91956,0.628486,0.327694,-2.92607,0.619062,0.4017,-2.92775,0.616627,0.384319,-2.92656,0.61835,0.327694,-2.92607,0.619062,0.444669,-2.93457,0.606746,0.4017,-2.92775,0.616627,0.336474,-2.93593,0.604777,0.444669,-2.93457,0.606746,0.327694,-2.92607,0.619062,0.336474,-2.93593,0.604777,0.426567,-2.94379,0.593383,0.444669,-2.93457,0.606746,0.351622,-2.94507,0.591542,0.426567,-2.94379,0.593383,0.336474,-2.93593,0.604777,0.351622,-2.94507,0.591542,0.403644,-2.9496,0.584975,0.426567,-2.94379,0.593383,0.375443,-2.95052,0.583649,0.403644,-2.9496,0.584975,0.351622,-2.94507,0.591542,0.174988,-2.839,0.745178,0.31232,-2.84077,0.742625,0.305529,-2.839,0.745179,0.168323,-2.84076,0.742631,0.31232,-2.84077,0.742625,0.174988,-2.839,0.745178,0.168323,-2.84076,0.742631,0.317158,-2.84459,0.737091,0.31232,-2.84077,0.742625,0.163627,-2.84457,0.73711,0.317158,-2.84459,0.737091,0.168323,-2.84076,0.742631,0.164017,-2.84925,0.730344,0.317158,-2.84459,0.737091,0.163627,-2.84457,0.73711,0.164017,-2.84925,0.730344,0.316754,-2.84924,0.730359,0.317158,-2.84459,0.737091,0.170524,-2.85369,0.723911,0.316754,-2.84924,0.730359,0.164017,-2.84925,0.730344,0.170524,-2.85369,0.723911,0.310065,-2.85368,0.723914,0.316754,-2.84924,0.730359,0.178379,-2.85452,0.722697,0.310065,-2.85368,0.723914,0.170524,-2.85369,0.723911,0.178379,-2.85452,0.722697,0.302133,-2.85452,0.722697,0.310065,-2.85368,0.723914,0.224822,-2.85452,0.722697,0.302133,-2.85452,0.722697,0.178379,-2.85452,0.722697,0.220074,-2.85733,0.718636,0.250963,-2.85452,0.722697,0.224822,-2.85452,0.722697,0.250963,-2.85452,0.722697,0.220074,-2.85733,0.718636,0.255822,-2.85786,0.717872,0.250963,-2.85452,0.722697,0.213329,-2.86669,0.705072,0.255822,-2.85786,0.717872,0.220074,-2.85733,0.718636,0.213329,-2.86669,0.705072,0.26073,-2.86689,0.704784,0.255822,-2.85786,0.717872,0.213329,-2.86669,0.705072,0.262612,-2.88605,0.677029,0.26073,-2.86689,0.704784,0.20847,-2.90045,0.656167,0.262612,-2.88605,0.677029,0.213329,-2.86669,0.705072,0.20847,-2.90045,0.656167,0.260506,-2.90931,0.643334,0.262612,-2.88605,0.677029,0.209779,-2.92448,0.621367,0.260506,-2.90931,0.643334,0.20847,-2.90045,0.656167,0.209779,-2.92448,0.621367,0.252429,-2.93531,0.605671,0.260506,-2.90931,0.643334,0.213576,-2.93796,0.601839,0.252429,-2.93531,0.605671,0.209779,-2.92448,0.621367,0.213576,-2.93796,0.601839,0.244177,-2.94487,0.591824,0.252429,-2.93531,0.605671,0.219256,-2.94559,0.590786,0.244177,-2.94487,0.591824,0.213576,-2.93796,0.601839,0.219256,-2.94559,0.590786,0.234271,-2.9482,0.586995,0.244177,-2.94487,0.591824,0.226765,-2.94833,0.586817,0.234271,-2.9482,0.586995,0.219256,-2.94559,0.590786,0.017845,-2.85205,0.726278,0.048458,-2.85418,0.723204,0.03373,-2.85206,0.72627,0.001429,-2.85411,0.723291,0.048458,-2.85418,0.723204,0.017845,-2.85205,0.726278,-0.018923,-2.85942,0.715611,0.048458,-2.85418,0.723204,0.001429,-2.85411,0.723291,-0.018923,-2.85942,0.715611,0.062833,-2.85906,0.716123,0.048458,-2.85418,0.723204,-0.018923,-2.85942,0.715611,0.075012,-2.86703,0.704587,0.062833,-2.85906,0.716123,-0.03629,-2.86724,0.704281,0.075012,-2.86703,0.704587,-0.018923,-2.85942,0.715611,-0.039129,-2.87161,0.697944,0.017815,-2.86906,0.701635,-0.03629,-2.86724,0.704281,0.017815,-2.86906,0.701635,0.075012,-2.86703,0.704587,-0.03629,-2.86724,0.704281,-0.039129,-2.87161,0.697944,0.005605,-2.8704,0.699693,0.017815,-2.86906,0.701635,0.017815,-2.86906,0.701635,0.080911,-2.87395,0.694563,0.075012,-2.86703,0.704587,0.027827,-2.87033,0.699799,0.080911,-2.87395,0.694563,0.017815,-2.86906,0.701635,-0.039129,-2.87161,0.697944,0.011133,-2.87131,0.698383,0.005605,-2.8704,0.699693,0.037648,-2.87408,0.694374,0.080911,-2.87395,0.694563,0.027827,-2.87033,0.699799,-0.039129,-2.87161,0.697944,0.016644,-2.8741,0.694346,0.011133,-2.87131,0.698383,-0.036578,-2.87689,0.690293,0.016644,-2.8741,0.694346,-0.039129,-2.87161,0.697944,0.037648,-2.87408,0.694374,0.083625,-2.88144,0.683709,0.080911,-2.87395,0.694563,-0.036578,-2.87689,0.690293,0.020731,-2.87904,0.687184,0.016644,-2.8741,0.694346,0.044298,-2.87969,0.686245,-0.016027,-2.87876,0.687584,0.020731,-2.87904,0.687184,-0.036578,-2.87689,0.690293,-0.029664,-2.87985,0.686005,-0.016027,-2.87876,0.687584,-0.036578,-2.87689,0.690293,-0.029664,-2.87985,0.686005,-0.022349,-2.8803,0.685363,-0.016027,-2.87876,0.687584,0.046184,-2.88469,0.679003,0.083625,-2.88144,0.683709,0.044298,-2.87969,0.686245,-0.016027,-2.87876,0.687584,0.023356,-2.88774,0.67458,0.020731,-2.87904,0.687184,-0.019467,-2.89037,0.670771,0.023356,-2.88774,0.67458,-0.016027,-2.87876,0.687584,0.046184,-2.88469,0.679003,0.082598,-2.88915,0.672544,0.083625,-2.88144,0.683709,0.04452,-2.88951,0.672014,0.082598,-2.88915,0.672544,0.046184,-2.88469,0.679003,0.038242,-2.89526,0.663695,0.082598,-2.88915,0.672544,0.04452,-2.88951,0.672014,0.038242,-2.89526,0.663695,0.078189,-2.89623,0.662281,0.082598,-2.88915,0.672544,-0.019467,-2.89037,0.670771,0.023526,-2.90041,0.656226,0.023356,-2.88774,0.67458,0.023526,-2.90041,0.656226,0.078189,-2.89623,0.662281,0.038242,-2.89526,0.663695,0.023526,-2.90041,0.656226,0.070311,-2.90309,0.652343,0.078189,-2.89623,0.662281,-0.021524,-2.91504,0.635037,-0.021524,-2.91504,0.635037,0.070311,-2.90309,0.652343,0.023526,-2.90041,0.656226,-0.021524,-2.91504,0.635037,0.060028,-2.90885,0.643997,0.070311,-2.90309,0.652343,-0.021524,-2.91504,0.635037,0.051118,-2.91201,0.639419,0.060028,-2.90885,0.643997,-0.019962,-2.93697,0.603271,0.051118,-2.91201,0.639419,-0.021524,-2.91504,0.635037,0.01905,-2.92933,0.614334,0.051118,-2.91201,0.639419,-0.019962,-2.93697,0.603271,0.01905,-2.92933,0.614334,0.097528,-2.93718,0.602968,0.051118,-2.91201,0.639419,-0.019962,-2.93697,0.603271,0.016089,-2.93678,0.603543,0.01905,-2.92933,0.614334,0.01905,-2.92933,0.614334,0.109353,-2.94557,0.590806,0.097528,-2.93718,0.602968,-0.019962,-2.93697,0.603271,0.008255,-2.94429,0.592668,0.016089,-2.93678,0.603543,-0.015669,-2.94381,0.593357,0.008255,-2.94429,0.592668,-0.019962,-2.93697,0.603271,-0.009758,-2.94668,0.589208,0.008255,-2.94429,0.592668,-0.015669,-2.94381,0.593357,-0.009758,-2.94668,0.589208,-0.00193,-2.94731,0.588296,0.008255,-2.94429,0.592668,0.073803,-2.9576,0.573379,0.109353,-2.94557,0.590806,0.01905,-2.92933,0.614334,0.073803,-2.9576,0.573379,0.111738,-2.95332,0.57958,0.109353,-2.94557,0.590806,0.073803,-2.9576,0.573379,0.107562,-2.95842,0.572201,0.111738,-2.95332,0.57958,0.073803,-2.9576,0.573379,0.101262,-2.9615,0.567743,0.107562,-2.95842,0.572201,0.089252,-2.96219,0.56673,0.101262,-2.9615,0.567743,0.073803,-2.9576,0.573379,-0.119388,-2.85234,0.725859,-0.090127,-2.8537,0.723896,-0.105563,-2.85179,0.726658,-0.13486,-2.85513,0.721813,-0.090127,-2.8537,0.723896,-0.119388,-2.85234,0.725859,-0.13486,-2.85513,0.721813,-0.076406,-2.85797,0.717707,-0.090127,-2.8537,0.723896,-0.152841,-2.86162,0.712421,-0.076406,-2.85797,0.717707,-0.13486,-2.85513,0.721813,-0.152841,-2.86162,0.712421,-0.064275,-2.86461,0.708088,-0.076406,-2.85797,0.717707,-0.16704,-2.87018,0.700019,-0.064275,-2.86461,0.708088,-0.152841,-2.86162,0.712421,-0.16704,-2.87018,0.700019,-0.052038,-2.87553,0.692272,-0.064275,-2.86461,0.708088,-0.178046,-2.88058,0.684955,-0.122754,-2.88003,0.685751,-0.052038,-2.87553,0.692272,-0.178046,-2.88058,0.684955,-0.111639,-2.88052,0.685047,-0.052038,-2.87553,0.692272,-0.122754,-2.88003,0.685751,-0.178046,-2.88058,0.684955,-0.136689,-2.88298,0.681475,-0.122754,-2.88003,0.685751,-0.111639,-2.88052,0.685047,-0.046317,-2.88721,0.675343,-0.052038,-2.87553,0.692272,-0.100593,-2.88418,0.679735,-0.046317,-2.88721,0.675343,-0.111639,-2.88052,0.685047,-0.185272,-2.89222,0.668097,-0.136689,-2.88298,0.681475,-0.178046,-2.88058,0.684955,-0.08892,-2.89124,0.669508,-0.046317,-2.88721,0.675343,-0.100593,-2.88418,0.679735,-0.185272,-2.89222,0.668097,-0.14667,-2.89019,0.671032,-0.136689,-2.88298,0.681475,-0.08892,-2.89124,0.669508,-0.04536,-2.901,0.655369,-0.046317,-2.88721,0.675343,-0.185272,-2.89222,0.668097,-0.150501,-2.90095,0.655445,-0.14667,-2.89019,0.671032,-0.188163,-2.90449,0.650313,-0.150501,-2.90095,0.655445,-0.185272,-2.89222,0.668097,-0.081583,-2.90036,0.656304,-0.04536,-2.901,0.655369,-0.08892,-2.89124,0.669508,-0.079512,-2.90787,0.645428,-0.04536,-2.901,0.655369,-0.081583,-2.90036,0.656304,-0.188163,-2.90449,0.650313,-0.146894,-2.91179,0.639744,-0.150501,-2.90095,0.655445,-0.186546,-2.91575,0.634013,-0.079512,-2.90787,0.645428,-0.050987,-2.91956,0.628486,-0.04536,-2.901,0.655369,-0.082392,-2.91655,0.632847,-0.050987,-2.91956,0.628486,-0.079512,-2.90787,0.645428,-0.186546,-2.91575,0.634013,-0.138637,-2.92063,0.626938,-0.146894,-2.91179,0.639744,-0.181783,-2.92607,0.619063,-0.138637,-2.92063,0.626938,-0.186546,-2.91575,0.634013,-0.091553,-2.92344,0.622869,-0.050987,-2.91956,0.628486,-0.082392,-2.91655,0.632847,-0.181783,-2.92607,0.619063,-0.125158,-2.92656,0.61835,-0.138637,-2.92063,0.626938,-0.107778,-2.92775,0.616627,-0.050987,-2.91956,0.628486,-0.091553,-2.92344,0.622869,-0.107778,-2.92775,0.616627,-0.064809,-2.93457,0.606746,-0.050987,-2.91956,0.628486,-0.181783,-2.92607,0.619063,-0.107778,-2.92775,0.616627,-0.125158,-2.92656,0.61835,-0.181783,-2.92607,0.619063,-0.064809,-2.93457,0.606746,-0.107778,-2.92775,0.616627,-0.173004,-2.93593,0.604777,-0.064809,-2.93457,0.606746,-0.181783,-2.92607,0.619063,-0.173004,-2.93593,0.604777,-0.082911,-2.94379,0.593383,-0.064809,-2.93457,0.606746,-0.157856,-2.94507,0.591542,-0.082911,-2.94379,0.593383,-0.173004,-2.93593,0.604777,-0.157856,-2.94507,0.591542,-0.105834,-2.9496,0.584975,-0.082911,-2.94379,0.593383,-0.134035,-2.95052,0.583649,-0.105834,-2.9496,0.584975,-0.157856,-2.94507,0.591542,-0.364799,-2.85486,0.722211,-0.347314,-2.85325,0.724543,-0.355747,-2.85187,0.726537,-0.364799,-2.85486,0.722211,-0.341656,-2.85686,0.719314,-0.347314,-2.85325,0.724543,-0.370968,-2.86095,0.713384,-0.341656,-2.85686,0.719314,-0.364799,-2.85486,0.722211,-0.281453,-2.85496,0.722061,-0.267132,-2.85687,0.719305,-0.274081,-2.85473,0.722404,-0.287052,-2.85688,0.719282,-0.267132,-2.85687,0.719305,-0.281453,-2.85496,0.722061,-0.287052,-2.85688,0.719282,-0.26388,-2.86015,0.714543,-0.267132,-2.85687,0.719305,-0.370968,-2.86095,0.713384,-0.337663,-2.86262,0.710973,-0.341656,-2.85686,0.719314,-0.304736,-2.86871,0.702153,-0.26388,-2.86015,0.714543,-0.287052,-2.85688,0.719282,-0.304736,-2.86871,0.702153,-0.263673,-2.86453,0.708204,-0.26388,-2.86015,0.714543,-0.37665,-2.87519,0.692756,-0.337663,-2.86262,0.710973,-0.370968,-2.86095,0.713384,-0.37665,-2.87519,0.692756,-0.335012,-2.87284,0.696172,-0.337663,-2.86262,0.710973,-0.304736,-2.86871,0.702153,-0.266467,-2.86791,0.703301,-0.263673,-2.86453,0.708204,-0.334706,-2.88642,0.676501,-0.266467,-2.86791,0.703301,-0.304736,-2.86871,0.702153,-0.334706,-2.88642,0.676501,-0.291045,-2.88403,0.679951,-0.266467,-2.86791,0.703301,-0.379453,-2.89518,0.663806,-0.335012,-2.87284,0.696172,-0.37665,-2.87519,0.692756,-0.334706,-2.88642,0.676501,-0.291045,-2.88403,0.679951,-0.379453,-2.89518,0.663806,-0.322016,-2.90204,0.653867,-0.291045,-2.88403,0.679951,-0.379229,-2.91761,0.631309,-0.322016,-2.90204,0.653867,-0.379453,-2.89518,0.663806,-0.379229,-2.91761,0.631309,-0.312058,-2.91184,0.639672,-0.322016,-2.90204,0.653867,-0.379229,-2.91761,0.631309,-0.301036,-2.91625,0.63328,-0.312058,-2.91184,0.639672,-0.379229,-2.91761,0.631309,-0.28686,-2.91842,0.630141,-0.301036,-2.91625,0.63328,-0.379229,-2.91761,0.631309,-0.260366,-2.91952,0.628552,-0.28686,-2.91842,0.630141,-0.379229,-2.91761,0.631309,-0.252795,-2.92127,0.626008,-0.260366,-2.91952,0.628552,-0.379229,-2.91761,0.631309,-0.248067,-2.9246,0.62119,-0.252795,-2.92127,0.626008,-0.338781,-2.92558,0.619769,-0.377744,-2.93421,0.607264,-0.338781,-2.92558,0.619769,-0.379229,-2.91761,0.631309,-0.333525,-2.9298,0.613658,-0.248067,-2.9246,0.62119,-0.338781,-2.92558,0.619769,-0.333525,-2.9298,0.613658,-0.246609,-2.92904,0.614751,-0.248067,-2.9246,0.62119,-0.333525,-2.9298,0.613658,-0.248773,-2.93355,0.608229,-0.246609,-2.92904,0.614751,-0.377744,-2.93421,0.607264,-0.342335,-2.93806,0.601686,-0.338781,-2.92558,0.619769,-0.319181,-2.93712,0.603045,-0.248773,-2.93355,0.608229,-0.333525,-2.9298,0.613658,-0.319181,-2.93712,0.603045,-0.256926,-2.9393,0.59989,-0.248773,-2.93355,0.608229,-0.301351,-2.94178,0.596296,-0.256926,-2.9393,0.59989,-0.319181,-2.93712,0.603045,-0.371105,-2.94743,0.588119,-0.342335,-2.93806,0.601686,-0.377744,-2.93421,0.607264,-0.301351,-2.94178,0.596296,-0.271593,-2.94311,0.594369,-0.256926,-2.9393,0.59989,-0.28592,-2.94364,0.593605,-0.271593,-2.94311,0.594369,-0.301351,-2.94178,0.596296,-0.371105,-2.94743,0.588119,-0.350272,-2.94774,0.587671,-0.342335,-2.93806,0.601686,-0.371105,-2.94743,0.588119,-0.358654,-2.95104,0.582894,-0.350272,-2.94774,0.587671,-0.364223,-2.951,0.582941,-0.358654,-2.95104,0.582894,-0.371105,-2.94743,0.588119,-0.447164,-2.85374,0.723838,-0.405454,-2.85363,0.723991,-0.430928,-2.85201,0.726343,-0.466218,-2.85833,0.717188,-0.405454,-2.85363,0.723991,-0.447164,-2.85374,0.723838,-0.466218,-2.85833,0.717188,-0.393687,-2.85853,0.716894,-0.405454,-2.85363,0.723991,-0.466218,-2.85833,0.717188,-0.390157,-2.86474,0.707902,-0.393687,-2.85853,0.716894,-0.483001,-2.86539,0.706965,-0.390157,-2.86474,0.707902,-0.466218,-2.85833,0.717188,-0.497205,-2.87532,0.692572,-0.390157,-2.86474,0.707902,-0.483001,-2.86539,0.706965,-0.497205,-2.87532,0.692572,-0.39454,-2.87506,0.692953,-0.390157,-2.86474,0.707902,-0.497205,-2.87532,0.692572,-0.402696,-2.88197,0.682937,-0.39454,-2.87506,0.692953,-0.497205,-2.87532,0.692572,-0.44187,-2.88201,0.682877,-0.402696,-2.88197,0.682937,-0.505751,-2.8892,0.672471,-0.44187,-2.88201,0.682877,-0.497205,-2.87532,0.692572,-0.410521,-2.88354,0.680669,-0.402696,-2.88197,0.682937,-0.44187,-2.88201,0.682877,-0.505751,-2.8892,0.672471,-0.460405,-2.8847,0.678982,-0.44187,-2.88201,0.682877,-0.505751,-2.8892,0.672471,-0.470498,-2.88901,0.672746,-0.460405,-2.8847,0.678982,-0.505751,-2.8892,0.672471,-0.477822,-2.89606,0.662523,-0.470498,-2.88901,0.672746,-0.5096,-2.90157,0.654553,-0.477822,-2.89606,0.662523,-0.505751,-2.8892,0.672471,-0.5096,-2.90157,0.654553,-0.480052,-2.90669,0.647138,-0.477822,-2.89606,0.662523,-0.509589,-2.91617,0.633399,-0.480052,-2.90669,0.647138,-0.5096,-2.90157,0.654553,-0.509589,-2.91617,0.633399,-0.477298,-2.91452,0.635786,-0.480052,-2.90669,0.647138,-0.42921,-2.92199,0.624963,-0.406966,-2.916,0.63365,-0.415155,-2.91575,0.634011,-0.42921,-2.92199,0.624963,-0.40035,-2.91975,0.628217,-0.406966,-2.916,0.63365,-0.509589,-2.91617,0.633399,-0.468916,-2.92161,0.625521,-0.477298,-2.91452,0.635786,-0.504282,-2.92978,0.613689,-0.468916,-2.92161,0.625521,-0.509589,-2.91617,0.633399,-0.42921,-2.92199,0.624963,-0.396309,-2.92592,0.619276,-0.40035,-2.91975,0.628217,-0.504282,-2.92978,0.613689,-0.456266,-2.92516,0.620375,-0.468916,-2.92161,0.625521,-0.441037,-2.92493,0.620706,-0.396309,-2.92592,0.619276,-0.42921,-2.92199,0.624963,-0.456266,-2.92516,0.620375,-0.396309,-2.92592,0.619276,-0.441037,-2.92493,0.620706,-0.504282,-2.92978,0.613689,-0.396309,-2.92592,0.619276,-0.456266,-2.92516,0.620375,-0.504282,-2.92978,0.613689,-0.395653,-2.93281,0.609297,-0.396309,-2.92592,0.619276,-0.504282,-2.92978,0.613689,-0.399108,-2.93903,0.60029,-0.395653,-2.93281,0.609297,-0.492094,-2.94181,0.596256,-0.399108,-2.93903,0.60029,-0.504282,-2.92978,0.613689,-0.492094,-2.94181,0.596256,-0.414986,-2.94734,0.588252,-0.399108,-2.93903,0.60029,-0.478394,-2.94819,0.587022,-0.414986,-2.94734,0.588252,-0.492094,-2.94181,0.596256,-0.461581,-2.95205,0.581425,-0.414986,-2.94734,0.588252,-0.478394,-2.94819,0.587022,-0.461581,-2.95205,0.581425,-0.43739,-2.95218,0.581242,-0.414986,-2.94734,0.588252,-0.566292,-2.85289,0.725065,-0.524009,-2.8543,0.723026,-0.528781,-2.85231,0.725909,-0.57312,-2.85742,0.718507,-0.524009,-2.8543,0.723026,-0.566292,-2.85289,0.725065,-0.57312,-2.85742,0.718507,-0.521194,-2.85797,0.717707,-0.524009,-2.8543,0.723026,-0.57312,-2.85742,0.718507,-0.521419,-2.86476,0.707868,-0.521194,-2.85797,0.717707,-0.57301,-2.8649,0.707675,-0.568742,-2.86855,0.702378,-0.521419,-2.86476,0.707868,-0.57301,-2.8649,0.707675,-0.568742,-2.86855,0.702378,-0.527126,-2.86872,0.702128,-0.521419,-2.86476,0.707868,-0.568742,-2.86855,0.702378,-0.53022,-2.86922,0.701406,-0.527126,-2.86872,0.702128,-0.559388,-2.86968,0.700741,-0.53022,-2.86922,0.701406,-0.568742,-2.86855,0.702378,-0.560489,-2.88933,0.672272,-0.53022,-2.86922,0.701406,-0.559388,-2.86968,0.700741,-0.560489,-2.88933,0.672272,-0.524104,-2.90338,0.651919,-0.53022,-2.86922,0.701406,-0.569822,-2.92422,0.621735,-0.524104,-2.90338,0.651919,-0.560489,-2.88933,0.672272,-0.523903,-2.92339,0.622943,-0.571551,-2.93443,0.606946,-0.523903,-2.92339,0.622943,-0.569822,-2.92422,0.621735,-0.571551,-2.93443,0.606946,-0.526461,-2.93645,0.604024,-0.523903,-2.92339,0.622943,-0.567709,-2.94279,0.594842,-0.526461,-2.93645,0.604024,-0.571551,-2.93443,0.606946,-0.567709,-2.94279,0.594842,-0.53325,-2.94577,0.590524,-0.526461,-2.93645,0.604024,-0.561494,-2.94768,0.587749,-0.53325,-2.94577,0.590524,-0.567709,-2.94279,0.594842,-0.561494,-2.94768,0.587749,-0.543628,-2.95015,0.584175,-0.53325,-2.94577,0.590524,-0.552862,-2.95046,0.583728,-0.543628,-2.95015,0.584175,-0.561494,-2.94768,0.587749,-0.663097,-2.85496,0.72206,-0.618765,-2.85268,0.725367,-0.631524,-2.85156,0.726994,-0.663097,-2.85496,0.72206,-0.613959,-2.85574,0.72093,-0.618765,-2.85268,0.725367,-0.67093,-2.85741,0.718513,-0.613959,-2.85574,0.72093,-0.663097,-2.85496,0.72206,-0.67093,-2.85741,0.718513,-0.613033,-2.86135,0.712809,-0.613959,-2.85574,0.72093,-0.675134,-2.86144,0.712674,-0.613033,-2.86135,0.712809,-0.67093,-2.85741,0.718513,-0.673763,-2.86734,0.70413,-0.613033,-2.86135,0.712809,-0.675134,-2.86144,0.712674,-0.665774,-2.87147,0.698143,-0.613033,-2.86135,0.712809,-0.673763,-2.86734,0.70413,-0.660922,-2.87175,0.697751,-0.660914,-2.87175,0.697751,-0.665774,-2.87147,0.698143,-0.660842,-2.87175,0.697751,-0.660646,-2.87175,0.697751,-0.613033,-2.86135,0.712809,-0.665774,-2.87147,0.698143,-0.660904,-2.87175,0.697751,-0.660842,-2.87175,0.697751,-0.660914,-2.87175,0.697751,-0.660889,-2.87175,0.697751,-0.660869,-2.87175,0.697751,-0.662609,-2.88211,0.682743,-0.613033,-2.86135,0.712809,-0.660646,-2.87175,0.697751,-0.618329,-2.8813,0.683903,-0.662609,-2.88211,0.682743,-0.624704,-2.92466,0.621105,-0.618329,-2.8813,0.683903,-0.668954,-2.93671,0.603649,-0.624704,-2.92466,0.621105,-0.662609,-2.88211,0.682743,-0.624704,-2.92466,0.621105,-0.585435,-2.92352,0.622754,-0.593708,-2.92267,0.623982,-0.624704,-2.92466,0.621105,-0.580912,-2.92617,0.618915,-0.585435,-2.92352,0.622754,-0.668954,-2.93671,0.603649,-0.580912,-2.92617,0.618915,-0.624704,-2.92466,0.621105,-0.668954,-2.93671,0.603649,-0.578211,-2.93141,0.611318,-0.580912,-2.92617,0.618915,-0.668954,-2.93671,0.603649,-0.581189,-2.93609,0.604549,-0.578211,-2.93141,0.611318,-0.668954,-2.93671,0.603649,-0.586492,-2.93879,0.600629,-0.581189,-2.93609,0.604549,-0.666031,-2.94454,0.59231,-0.586492,-2.93879,0.600629,-0.668954,-2.93671,0.603649,-0.666031,-2.94454,0.59231,-0.631043,-2.94909,0.585717,-0.586492,-2.93879,0.600629,-0.659789,-2.94926,0.585471,-0.631043,-2.94909,0.585717,-0.666031,-2.94454,0.59231,-0.659789,-2.94926,0.585471,-0.646998,-2.95113,0.582752,-0.631043,-2.94909,0.585717,-0.763967,-2.8423,0.740399,-0.707491,-2.83913,0.745003,-0.738633,-2.83933,0.744704,-0.763967,-2.8423,0.740399,-0.690713,-2.84203,0.740797,-0.707491,-2.83913,0.745003,-0.763967,-2.8423,0.740399,-0.683502,-2.84619,0.734775,-0.690713,-2.84203,0.740797,-0.786301,-2.85107,0.727697,-0.683502,-2.84619,0.734775,-0.763967,-2.8423,0.740399,-0.786301,-2.85107,0.727697,-0.682839,-2.85359,0.724057,-0.683502,-2.84619,0.734775,-0.802734,-2.86439,0.708409,-0.682839,-2.85359,0.724057,-0.786301,-2.85107,0.727697,-0.69115,-2.86511,0.707366,-0.802734,-2.86439,0.708409,-0.724646,-2.86777,0.703506,-0.69115,-2.86511,0.707366,-0.724646,-2.86777,0.703506,-0.698527,-2.86917,0.701477,-0.69115,-2.86511,0.707366,-0.802734,-2.86439,0.708409,-0.747276,-2.86826,0.702805,-0.724646,-2.86777,0.703506,-0.810858,-2.87677,0.690468,-0.747276,-2.86826,0.702805,-0.802734,-2.86439,0.708409,-0.810858,-2.87677,0.690468,-0.767603,-2.87203,0.697338,-0.747276,-2.86826,0.702805,-0.810858,-2.87677,0.690468,-0.781042,-2.87965,0.686303,-0.767603,-2.87203,0.697338,-0.814229,-2.88537,0.67801,-0.781042,-2.87965,0.686303,-0.810858,-2.87677,0.690468,-0.814229,-2.88537,0.67801,-0.787648,-2.88876,0.673105,-0.781042,-2.87965,0.686303,-0.816454,-2.89875,0.65863,-0.787648,-2.88876,0.673105,-0.814229,-2.88537,0.67801,-0.816454,-2.89875,0.65863,-0.789265,-2.89989,0.656987,-0.787648,-2.88876,0.673105,-0.814571,-2.91202,0.639409,-0.789265,-2.89989,0.656987,-0.816454,-2.89875,0.65863,-0.814571,-2.91202,0.639409,-0.783457,-2.91111,0.640725,-0.789265,-2.89989,0.656987,-0.809776,-2.92385,0.62227,-0.783457,-2.91111,0.640725,-0.814571,-2.91202,0.639409,-0.708014,-2.91136,0.640367,-0.691475,-2.91542,0.634485,-0.698677,-2.91128,0.640486,-0.809776,-2.92385,0.62227,-0.774596,-2.91741,0.631602,-0.783457,-2.91111,0.640725,-0.721256,-2.91763,0.631286,-0.691475,-2.91542,0.634485,-0.708014,-2.91136,0.640367,-0.809776,-2.92385,0.62227,-0.765247,-2.9209,0.626547,-0.774596,-2.91741,0.631602,-0.734149,-2.92132,0.625938,-0.691475,-2.91542,0.634485,-0.721256,-2.91763,0.631286,-0.734149,-2.92132,0.625938,-0.689343,-2.92372,0.62246,-0.691475,-2.91542,0.634485,-0.809776,-2.92385,0.62227,-0.750155,-2.92258,0.62412,-0.765247,-2.9209,0.626547,-0.750155,-2.92258,0.62412,-0.689343,-2.92372,0.62246,-0.734149,-2.92132,0.625938,-0.809776,-2.92385,0.62227,-0.689343,-2.92372,0.62246,-0.750155,-2.92258,0.62412,-0.809776,-2.92385,0.62227,-0.690971,-2.93294,0.609103,-0.689343,-2.92372,0.62246,-0.799626,-2.93528,0.605716,-0.690971,-2.93294,0.609103,-0.809776,-2.92385,0.62227,-0.799626,-2.93528,0.605716,-0.697763,-2.93883,0.600577,-0.690971,-2.93294,0.609103,-0.785579,-2.94315,0.594314,-0.697763,-2.93883,0.600577,-0.785579,-2.94315,0.594314,-0.707759,-2.94308,0.594415,-0.697763,-2.93883,0.600577,-0.785579,-2.94315,0.594314,-0.723055,-2.94727,0.588345,-0.707759,-2.94308,0.594415,-0.76724,-2.94823,0.586959,-0.723055,-2.94727,0.588345,-0.785579,-2.94315,0.594314,-0.76724,-2.94823,0.586959,-0.744796,-2.9498,0.58469,-0.723055,-2.94727,0.588345}; +const GLfloat gameover_normals[] = {-1e-06,-0.797012,0.603963,-1e-06,-0.797012,0.603963,-1e-06,-0.797012,0.603963,0,-0.796991,0.603991,0,-0.796991,0.603991,0,-0.796991,0.603991,-0,-0.796987,0.603996,-0,-0.796987,0.603996,-0,-0.796987,0.603996,-0,-0.796986,0.603998,-0,-0.796986,0.603998,-0,-0.796986,0.603998,-1e-06,-0.796979,0.604007,-1e-06,-0.796979,0.604007,-1e-06,-0.796979,0.604007,-0,-0.796983,0.604002,-0,-0.796983,0.604002,-0,-0.796983,0.604002,2e-06,-0.796948,0.604048,2e-06,-0.796948,0.604048,2e-06,-0.796948,0.604048,-1e-06,-0.797015,0.603959,-1e-06,-0.797015,0.603959,-1e-06,-0.797015,0.603959,-3e-06,-0.796985,0.604,-3e-06,-0.796985,0.604,-3e-06,-0.796985,0.604,-1e-06,-0.796857,0.604168,-1e-06,-0.796857,0.604168,-1e-06,-0.796857,0.604168,5e-06,-0.79703,0.603939,5e-06,-0.79703,0.603939,5e-06,-0.79703,0.603939,-0,-0.796993,0.603988,-0,-0.796993,0.603988,-0,-0.796993,0.603988,-1e-06,-0.796991,0.603991,-1e-06,-0.796991,0.603991,-1e-06,-0.796991,0.603991,-3e-06,-0.796975,0.604012,-3e-06,-0.796975,0.604012,-3e-06,-0.796975,0.604012,-4e-06,-0.796985,0.603999,-4e-06,-0.796985,0.603999,-4e-06,-0.796985,0.603999,-1e-06,-0.796993,0.603989,-1e-06,-0.796993,0.603989,-1e-06,-0.796993,0.603989,2e-06,-0.796993,0.603988,2e-06,-0.796993,0.603988,2e-06,-0.796993,0.603988,-4e-06,-0.796985,0.603999,2e-06,-0.796994,0.603988,2e-06,-0.796994,0.603988,2e-06,-0.796994,0.603988,-2e-06,-0.796964,0.604026,-2e-06,-0.796964,0.604026,-2e-06,-0.796964,0.604026,-0,-0.797022,0.60395,-0,-0.797022,0.60395,-0,-0.797022,0.60395,-4e-06,-0.796985,0.604,-4e-06,-0.796985,0.604,-4e-06,-0.796985,0.604,1e-06,-0.796993,0.603989,1e-06,-0.796993,0.603989,1e-06,-0.796993,0.603989,1e-06,-0.79699,0.603993,1e-06,-0.79699,0.603993,1e-06,-0.79699,0.603993,-2e-06,-0.79699,0.603992,-2e-06,-0.79699,0.603992,-2e-06,-0.79699,0.603992,1.2e-05,-0.797003,0.603975,1.2e-05,-0.797003,0.603975,1.2e-05,-0.797003,0.603975,1e-06,-0.79698,0.604005,1e-06,-0.79698,0.604005,1e-06,-0.79698,0.604005,2e-06,-0.797007,0.60397,2e-06,-0.797007,0.60397,2e-06,-0.797007,0.60397,0,-0.796983,0.604001,0,-0.796983,0.604001,0,-0.796983,0.604001,-1e-06,-0.796988,0.603995,-1e-06,-0.796988,0.603995,-1e-06,-0.796988,0.603995,1e-06,-0.796985,0.603999,1e-06,-0.796985,0.603999,1e-06,-0.796985,0.603999,-3.8e-05,-0.796935,0.604065,-3.8e-05,-0.796935,0.604065,-3.8e-05,-0.796935,0.604065,1e-06,-0.796982,0.604003,1e-06,-0.796982,0.604003,1e-06,-0.796982,0.604003,-4e-06,-0.796984,0.604,-4e-06,-0.796984,0.604,-4e-06,-0.796984,0.604,-4e-05,-0.796949,0.604046,-4e-05,-0.796949,0.604046,-4e-05,-0.796949,0.604046,0,-0.796983,0.604002,0,-0.796983,0.604002,0,-0.796983,0.604002,1e-06,-0.79698,0.604005,1e-06,-0.79698,0.604005,1e-06,-0.79698,0.604005,-7e-06,-0.796992,0.60399,-7e-06,-0.796992,0.60399,-7e-06,-0.796992,0.60399,-2e-06,-0.796984,0.604001,-2e-06,-0.796984,0.604001,-2e-06,-0.796984,0.604001,1e-06,-0.796988,0.603995,1e-06,-0.796988,0.603995,1e-06,-0.796988,0.603995,-7e-06,-0.796972,0.604016,-7e-06,-0.796972,0.604016,-7e-06,-0.796972,0.604016,-1.4e-05,-0.79699,0.603992,-1.4e-05,-0.79699,0.603992,-1.4e-05,-0.79699,0.603992,-1.4e-05,-0.796986,0.603997,-1.4e-05,-0.796986,0.603997,-1.4e-05,-0.796986,0.603997,-1e-06,-0.796958,0.604035,-1e-06,-0.796958,0.604035,-1e-06,-0.796958,0.604035,1e-06,-0.796991,0.603991,1e-06,-0.796991,0.603991,1e-06,-0.796991,0.603991,3e-06,-0.79699,0.603992,3e-06,-0.79699,0.603992,3e-06,-0.79699,0.603992,-0,-0.796986,0.603998,-0,-0.796986,0.603998,-0,-0.796986,0.603998,-3e-06,-0.796988,0.603995,-3e-06,-0.796988,0.603995,-3e-06,-0.796988,0.603995,-4e-06,-0.796987,0.603996,-4e-06,-0.796987,0.603996,-4e-06,-0.796987,0.603996,0,-0.796986,0.603998,4e-06,-0.796992,0.60399,4e-06,-0.796992,0.60399,4e-06,-0.796992,0.60399,5e-06,-0.796991,0.603991,5e-06,-0.796991,0.603991,5e-06,-0.796991,0.603991,0,-0.796981,0.604005,0,-0.796981,0.604005,0,-0.796981,0.604005,8e-06,-0.796991,0.603991,8e-06,-0.796991,0.603991,8e-06,-0.796991,0.603991,2e-06,-0.796985,0.603999,2e-06,-0.796985,0.603999,2e-06,-0.796985,0.603999,0,-0.796986,0.603998,3e-06,-0.796984,0.604,3e-06,-0.796984,0.604,3e-06,-0.796984,0.604,0,-0.796986,0.603998,5e-06,-0.796988,0.603996,5e-06,-0.796988,0.603996,5e-06,-0.796988,0.603996,6e-06,-0.796993,0.603989,6e-06,-0.796993,0.603989,6e-06,-0.796993,0.603989,5e-06,-0.797006,0.603972,5e-06,-0.797006,0.603972,5e-06,-0.797006,0.603972,1e-06,-0.796984,0.604,1e-06,-0.796984,0.604,1e-06,-0.796984,0.604,1e-06,-0.796991,0.603991,1e-06,-0.796991,0.603991,1e-06,-0.796991,0.603991,1e-06,-0.796988,0.603995,1e-06,-0.796988,0.603995,1e-06,-0.796988,0.603995,3e-06,-0.79699,0.603992,3e-06,-0.79699,0.603992,3e-06,-0.79699,0.603992,1e-06,-0.796987,0.603997,1e-06,-0.796987,0.603997,1e-06,-0.796987,0.603997,1e-06,-0.796991,0.603991,1e-06,-0.796991,0.603991,1e-06,-0.796999,0.60398,1e-06,-0.796999,0.60398,1e-06,-0.796999,0.60398,-6e-06,-0.796982,0.604004,-6e-06,-0.796982,0.604004,-6e-06,-0.796982,0.604004,-0,-0.796985,0.603999,-0,-0.796985,0.603999,-0,-0.796985,0.603999,0,-0.796986,0.603997,0,-0.796986,0.603997,0,-0.796986,0.603997,0,-0.796987,0.603997,0,-0.796987,0.603997,0,-0.796987,0.603997,-3e-06,-0.796987,0.603996,-3e-06,-0.796987,0.603996,-3e-06,-0.796987,0.603996,0,-0.796987,0.603997,0,-0.796987,0.603997,0,-0.796987,0.603997,0,-0.796985,0.603999,0,-0.796985,0.603999,0,-0.796985,0.603999,-1e-06,-0.796975,0.604012,-1e-06,-0.796975,0.604012,-1e-06,-0.796975,0.604012,1e-06,-0.796982,0.604003,1e-06,-0.796982,0.604003,1e-06,-0.796982,0.604003,3e-06,-0.796986,0.603998,3e-06,-0.796986,0.603998,3e-06,-0.796986,0.603998,-1e-06,-0.796983,0.604002,-1e-06,-0.796983,0.604002,-1e-06,-0.796983,0.604002,2e-06,-0.796989,0.603994,2e-06,-0.796989,0.603994,2e-06,-0.796989,0.603994,-1e-06,-0.79699,0.603993,-1e-06,-0.79699,0.603993,-1e-06,-0.79699,0.603993,-4e-06,-0.796986,0.603998,-4e-06,-0.796986,0.603998,-4e-06,-0.796986,0.603998,2e-06,-0.797,0.603979,2e-06,-0.797,0.603979,2e-06,-0.797,0.603979,5e-06,-0.796981,0.604005,5e-06,-0.796981,0.604005,5e-06,-0.796981,0.604005,-2e-06,-0.79698,0.604006,-2e-06,-0.79698,0.604006,-2e-06,-0.79698,0.604006,0,-0.796987,0.603996,0,-0.796987,0.603996,0,-0.796987,0.603996,2e-06,-0.796988,0.603995,2e-06,-0.796988,0.603995,2e-06,-0.796988,0.603995,6e-06,-0.796992,0.603989,6e-06,-0.796992,0.603989,6e-06,-0.796992,0.603989,-3e-06,-0.796992,0.60399,-3e-06,-0.796992,0.60399,-3e-06,-0.796992,0.60399,-3e-06,-0.796985,0.603999,-3e-06,-0.796985,0.603999,-3e-06,-0.796985,0.603999,-1e-06,-0.796989,0.603994,-1e-06,-0.796989,0.603994,-1e-06,-0.796989,0.603994,-2e-06,-0.796981,0.604004,-2e-06,-0.796981,0.604004,-2e-06,-0.796981,0.604004,-5e-06,-0.796987,0.603997,-5e-06,-0.796987,0.603997,-5e-06,-0.796987,0.603997,-4e-06,-0.79699,0.603993,-4e-06,-0.79699,0.603993,-4e-06,-0.79699,0.603993,-1e-06,-0.796988,0.603995,-1e-06,-0.796988,0.603995,-1e-06,-0.796988,0.603995,-3e-06,-0.796985,0.603999,-4e-06,-0.796986,0.603997,-4e-06,-0.796986,0.603997,-4e-06,-0.796986,0.603997,-3e-06,-0.796994,0.603988,-3e-06,-0.796994,0.603988,-3e-06,-0.796994,0.603988,2e-06,-0.796988,0.603995,-3e-06,-0.796993,0.603989,-3e-06,-0.796993,0.603989,-3e-06,-0.796993,0.603989,1e-06,-0.796983,0.604002,1e-06,-0.796983,0.604002,1e-06,-0.796983,0.604002,-5e-06,-0.796979,0.604007,-5e-06,-0.796979,0.604007,-5e-06,-0.796979,0.604007,2e-06,-0.796994,0.603987,2e-06,-0.796994,0.603987,2e-06,-0.796994,0.603987,2e-06,-0.796989,0.603994,2e-06,-0.796989,0.603994,2e-06,-0.796989,0.603994,1e-06,-0.796986,0.603997,1e-06,-0.796986,0.603997,1e-06,-0.796986,0.603997,5e-06,-0.796987,0.603996,5e-06,-0.796987,0.603996,5e-06,-0.796987,0.603996,3e-06,-0.796987,0.603996,3e-06,-0.796987,0.603996,3e-06,-0.796987,0.603996,2e-06,-0.796981,0.604004,2e-06,-0.796981,0.604004,2e-06,-0.796981,0.604004,-0,-0.796977,0.604009,-0,-0.796977,0.604009,-0,-0.796977,0.604009,0,-0.797023,0.603949,0,-0.797023,0.603949,0,-0.797023,0.603949,2e-06,-0.796984,0.604001,2e-06,-0.796984,0.604001,2e-06,-0.796984,0.604001,-2e-06,-0.796991,0.603992,-2e-06,-0.796991,0.603992,-2e-06,-0.796991,0.603992,2e-06,-0.796985,0.603999,2e-06,-0.796985,0.603999,2e-06,-0.796985,0.603999,6e-06,-0.796985,0.603999,6e-06,-0.796985,0.603999,6e-06,-0.796985,0.603999,2e-06,-0.796985,0.603999,2e-06,-0.796985,0.603999,2e-06,-0.796985,0.603999,0,-0.796994,0.603987,0,-0.796994,0.603987,0,-0.796994,0.603987,2e-06,-0.796985,0.603999,0,-0.796992,0.60399,0,-0.796992,0.60399,0,-0.796992,0.60399,-1e-06,-0.796988,0.603996,-1e-06,-0.796988,0.603996,-1e-06,-0.796988,0.603996,-3e-06,-0.796984,0.604,-3e-06,-0.796984,0.604,-3e-06,-0.796984,0.604,5e-06,-0.796984,0.604001,5e-06,-0.796984,0.604001,5e-06,-0.796984,0.604001,4e-06,-0.79699,0.603992,4e-06,-0.79699,0.603992,4e-06,-0.79699,0.603992,2e-06,-0.796988,0.603995,2e-06,-0.796988,0.603995,2e-06,-0.796988,0.603995,-2e-06,-0.796981,0.604004,-2e-06,-0.796981,0.604004,-2e-06,-0.796981,0.604004,3e-06,-0.796991,0.60399,3e-06,-0.796991,0.60399,3e-06,-0.796991,0.60399,-3e-06,-0.796986,0.603998,-3e-06,-0.796986,0.603998,-3e-06,-0.796986,0.603998,4e-06,-0.79699,0.603992,4e-06,-0.79699,0.603992,4e-06,-0.79699,0.603992,2e-06,-0.796986,0.603997,2e-06,-0.796986,0.603997,2e-06,-0.796986,0.603997,-4e-06,-0.796997,0.603983,-4e-06,-0.796997,0.603983,-4e-06,-0.796997,0.603983,0,-0.796992,0.60399,0,-0.796992,0.60399,0,-0.796992,0.60399,1e-06,-0.796987,0.603997,1e-06,-0.796987,0.603997,1e-06,-0.796987,0.603997,0,-0.796989,0.603993,0,-0.796989,0.603993,0,-0.796989,0.603993,0,-0.796988,0.603995,0,-0.796988,0.603995,0,-0.796988,0.603995,1e-06,-0.796986,0.603998,1e-06,-0.796986,0.603998,1e-06,-0.796986,0.603998,-1e-06,-0.796987,0.603996,-1e-06,-0.796987,0.603996,-1e-06,-0.796987,0.603996,2e-06,-0.796982,0.604003,2e-06,-0.796982,0.604003,2e-06,-0.796982,0.604003,-3e-06,-0.796984,0.604,-3e-06,-0.796984,0.604,-3e-06,-0.796984,0.604,-1.1e-05,-0.796944,0.604053,-1.1e-05,-0.796944,0.604053,-1.1e-05,-0.796944,0.604053,0,-0.79698,0.604006,0,-0.79698,0.604006,0,-0.79698,0.604006,0,-0.796985,0.603999,0,-0.796985,0.603999,0,-0.796985,0.603999,-1e-06,-0.796985,0.603999,-1e-06,-0.796985,0.603999,-1e-06,-0.796985,0.603999,-8e-06,-0.796999,0.603981,-8e-06,-0.796999,0.603981,-8e-06,-0.796999,0.603981,0,-0.796984,0.604001,0,-0.796984,0.604001,0,-0.796984,0.604001,-5e-06,-0.79699,0.603992,-5e-06,-0.79699,0.603992,-5e-06,-0.79699,0.603992,-4e-06,-0.796991,0.603991,-4e-06,-0.796991,0.603991,-4e-06,-0.796991,0.603991,-0,-0.79699,0.603993,-0,-0.79699,0.603993,-0,-0.79699,0.603993,3e-06,-0.796986,0.603998,3e-06,-0.796986,0.603998,3e-06,-0.796986,0.603998,-1e-06,-0.796987,0.603996,-1e-06,-0.796987,0.603996,-1e-06,-0.796987,0.603996,5e-06,-0.796989,0.603994,5e-06,-0.796989,0.603994,5e-06,-0.796989,0.603994,-1e-06,-0.796987,0.603997,-1e-06,-0.796987,0.603997,-1e-06,-0.796987,0.603997,-2e-06,-0.796986,0.603998,-2e-06,-0.796986,0.603998,-2e-06,-0.796986,0.603998,3e-06,-0.79699,0.603992,3e-06,-0.79699,0.603992,3e-06,-0.79699,0.603992,-0,-0.796984,0.604,-0,-0.796984,0.604,-0,-0.796984,0.604,-2e-06,-0.796988,0.603995,-2e-06,-0.796988,0.603995,-2e-06,-0.796988,0.603995,-4e-06,-0.796985,0.603998,-4e-06,-0.796985,0.603998,-4e-06,-0.796985,0.603998,0,-0.796984,0.604001,0,-0.796984,0.604001,0,-0.796984,0.604001,1e-06,-0.796992,0.60399,1e-06,-0.796992,0.60399,1e-06,-0.796992,0.60399,1e-06,-0.796975,0.604012,1e-06,-0.796975,0.604012,1e-06,-0.796975,0.604012,-0,-0.796988,0.603995,-0,-0.796988,0.603995,-0,-0.796988,0.603995,1e-06,-0.797041,0.603925,1e-06,-0.797041,0.603925,1e-06,-0.797041,0.603925,4e-06,-0.797205,0.603709,4e-06,-0.797205,0.603709,4e-06,-0.797205,0.603709,1e-06,-0.796979,0.604007,1e-06,-0.796979,0.604007,1e-06,-0.796979,0.604007,-0,-0.796996,0.603985,-0,-0.796996,0.603985,-0,-0.796996,0.603985,-2e-06,-0.796988,0.603995,-2e-06,-0.796988,0.603995,-2e-06,-0.796988,0.603995,-2e-06,-0.796988,0.603996,-2e-06,-0.796988,0.603996,-2e-06,-0.796988,0.603996,-2e-06,-0.796988,0.603995,-2e-06,-0.796989,0.603994,-2e-06,-0.796989,0.603994,-2e-06,-0.796989,0.603994,2e-06,-0.796981,0.604005,2e-06,-0.796981,0.604005,2e-06,-0.796981,0.604005,-2e-06,-0.796984,0.604001,-2e-06,-0.796984,0.604001,-2e-06,-0.796984,0.604001,2e-06,-0.79699,0.603993,2e-06,-0.79699,0.603993,2e-06,-0.79699,0.603993,2e-06,-0.796982,0.604003,2e-06,-0.796982,0.604003,2e-06,-0.796982,0.604003,6e-06,-0.796987,0.603996,6e-06,-0.796987,0.603996,6e-06,-0.796987,0.603996,3e-06,-0.796986,0.603998,3e-06,-0.796986,0.603998,3e-06,-0.796986,0.603998,6e-06,-0.796989,0.603993,6e-06,-0.796989,0.603993,6e-06,-0.796989,0.603993,6e-06,-0.796981,0.604004,6e-06,-0.796981,0.604004,6e-06,-0.796981,0.604004,-5e-06,-0.796997,0.603984,-5e-06,-0.796997,0.603984,-5e-06,-0.796997,0.603984,6e-06,-0.796989,0.603994,6e-06,-0.796989,0.603994,6e-06,-0.796989,0.603994,-6e-06,-0.796984,0.604001,-6e-06,-0.796984,0.604001,-6e-06,-0.796984,0.604001,-1e-06,-0.796989,0.603994,-1e-06,-0.796989,0.603994,-1e-06,-0.796989,0.603994,4e-06,-0.796984,0.604,4e-06,-0.796984,0.604,4e-06,-0.796984,0.604,4e-06,-0.796985,0.603999,4e-06,-0.796985,0.603999,4e-06,-0.796985,0.603999,-0,-0.796982,0.604003,-0,-0.796982,0.604003,-0,-0.796982,0.604003,3e-06,-0.796989,0.603994,3e-06,-0.796989,0.603994,3e-06,-0.796989,0.603994,4e-06,-0.796993,0.603989,4e-06,-0.796993,0.603989,4e-06,-0.796993,0.603989,-7e-06,-0.796987,0.603996,-7e-06,-0.796987,0.603996,-7e-06,-0.796987,0.603996,3e-06,-0.79699,0.603993,3e-06,-0.79699,0.603993,3e-06,-0.79699,0.603993,3e-06,-0.796987,0.603996,3e-06,-0.796987,0.603996,3e-06,-0.796987,0.603996,3e-06,-0.796988,0.603996,3e-06,-0.796988,0.603996,3e-06,-0.796988,0.603996,-7e-06,-0.796996,0.603985,-7e-06,-0.796996,0.603985,-7e-06,-0.796996,0.603985,-0,-0.796986,0.603998,-0,-0.796986,0.603998,-0,-0.796986,0.603998,2e-06,-0.796989,0.603993,2e-06,-0.796989,0.603993,2e-06,-0.796989,0.603993,-2e-06,-0.796984,0.604001,-2e-06,-0.796984,0.604001,-2e-06,-0.796984,0.604001,-2e-06,-0.796991,0.60399,-2e-06,-0.796991,0.60399,-2e-06,-0.796991,0.60399,2e-06,-0.796984,0.604,2e-06,-0.796984,0.604,2e-06,-0.796984,0.604,-2e-06,-0.79699,0.603993,-2e-06,-0.79699,0.603993,-2e-06,-0.79699,0.603993,-1e-06,-0.796989,0.603993,-1e-06,-0.796989,0.603993,-1e-06,-0.796989,0.603993,-7e-06,-0.796982,0.604002,-7e-06,-0.796982,0.604002,-7e-06,-0.796982,0.604002,-1e-06,-0.796986,0.603998,-1e-06,-0.796986,0.603998,-1e-06,-0.796986,0.603998,-1e-06,-0.796999,0.603981,-1e-06,-0.796999,0.603981,-1e-06,-0.796999,0.603981,2e-06,-0.79696,0.604032,2e-06,-0.79696,0.604032,2e-06,-0.79696,0.604032,-1e-06,-0.796998,0.603982,-1e-06,-0.796998,0.603982,-1e-06,-0.796998,0.603982,-1e-06,-0.796992,0.60399,-1e-06,-0.796992,0.60399,-1e-06,-0.796992,0.60399,0,-0.796983,0.604001,0,-0.796983,0.604001,0,-0.796983,0.604001,0,-0.796987,0.603997,0,-0.796987,0.603997,0,-0.796987,0.603997,0,-0.796986,0.603997,0,-0.796986,0.603997,0,-0.796986,0.603997,0,-0.796984,0.604001,0,-0.796984,0.604001,0,-0.796984,0.604001,-4e-06,-0.797018,0.603956,-4e-06,-0.797018,0.603956,-4e-06,-0.797018,0.603956,-9e-06,-0.796988,0.603995,-9e-06,-0.796988,0.603995,-9e-06,-0.796988,0.603995,0,-0.796983,0.604002,0,-0.796983,0.604002,0,-0.796983,0.604002,-1e-06,-0.796987,0.603997,-1e-06,-0.796987,0.603997,-1e-06,-0.796987,0.603997,0,-0.796986,0.603997,0,-0.796986,0.603997,0,-0.796986,0.603997,-1e-06,-0.79698,0.604006,-1e-06,-0.79698,0.604006,-1e-06,-0.79698,0.604006,2e-06,-0.796987,0.603996,2e-06,-0.796987,0.603996,2e-06,-0.796987,0.603996,0,-0.796991,0.603991,0,-0.796991,0.603991,0,-0.796991,0.603991,-1e-06,-0.796991,0.603992,-1e-06,-0.796991,0.603992,-1e-06,-0.796991,0.603992,0,-0.796995,0.603986,0,-0.796995,0.603986,0,-0.796995,0.603986,-3e-06,-0.796987,0.603997,-3e-06,-0.796987,0.603997,-3e-06,-0.796987,0.603997,-3e-06,-0.796987,0.603996,-3e-06,-0.796987,0.603996,-3e-06,-0.796987,0.603996,1e-06,-0.796987,0.603996,1e-06,-0.796987,0.603996,1e-06,-0.796987,0.603996,1e-06,-0.796987,0.603996,1e-06,-0.796987,0.603996,1e-06,-0.796987,0.603996,-1e-06,-0.796987,0.603996,-1e-06,-0.796987,0.603996,-1e-06,-0.796987,0.603996,-2.1e-05,-0.79694,0.604058,-2.1e-05,-0.79694,0.604058,-2.1e-05,-0.79694,0.604058,1.1e-05,-0.796995,0.603986,1.1e-05,-0.796995,0.603986,1.1e-05,-0.796995,0.603986,1.2e-05,-0.79699,0.603993,1.2e-05,-0.79699,0.603993,1.2e-05,-0.79699,0.603993,-1e-06,-0.796987,0.603997,-1e-06,-0.796987,0.603997,-1e-06,-0.796987,0.603997,2e-06,-0.796988,0.603995,2e-06,-0.796988,0.603995,2e-06,-0.796988,0.603995,4e-06,-0.796988,0.603994,4e-06,-0.796988,0.603994,4e-06,-0.796988,0.603994,-1e-06,-0.796987,0.603996,-1e-06,-0.796987,0.603996,-1e-06,-0.796987,0.603996,2e-06,-0.796988,0.603996,2e-06,-0.796988,0.603996,2e-06,-0.796988,0.603996,-0,-0.796987,0.603996,-0,-0.796987,0.603996,-0,-0.796987,0.603996,3e-06,-0.796989,0.603994,3e-06,-0.796989,0.603994,3e-06,-0.796989,0.603994,-7e-06,-0.796989,0.603994,-7e-06,-0.796989,0.603994,-7e-06,-0.796989,0.603994,-3e-06,-0.79699,0.603993,-3e-06,-0.79699,0.603993,-3e-06,-0.79699,0.603993,-1e-06,-0.797003,0.603975,-1e-06,-0.797003,0.603975,-1e-06,-0.797003,0.603975,1.2e-05,-0.796962,0.604029,1.2e-05,-0.796962,0.604029,1.2e-05,-0.796962,0.604029,-1.3e-05,-0.796958,0.604034,-1.3e-05,-0.796958,0.604034,-1.3e-05,-0.796958,0.604034,-3e-06,-0.796975,0.604013,-3e-06,-0.796975,0.604013,-3e-06,-0.796975,0.604013,-2e-06,-0.796988,0.603996,-2e-06,-0.796988,0.603996,-2e-06,-0.796988,0.603996,-6e-06,-0.796993,0.603988,-6e-06,-0.796993,0.603988,-6e-06,-0.796993,0.603988,-6e-06,-0.796992,0.60399,-6e-06,-0.796992,0.60399,-6e-06,-0.796992,0.60399,-7e-06,-0.79699,0.603992,-7e-06,-0.79699,0.603992,-7e-06,-0.79699,0.603992,-6e-06,-0.796989,0.603993,-6e-06,-0.796989,0.603993,-6e-06,-0.796989,0.603993,-3e-06,-0.796985,0.603999,-3e-06,-0.796985,0.603999,-3e-06,-0.796985,0.603999,0,-0.796986,0.603997,0,-0.796986,0.603997,0,-0.796986,0.603997,0,-0.796986,0.603997,0,-0.796986,0.603997,0,-0.796986,0.603997,-1e-06,-0.796984,0.604,-1e-06,-0.796984,0.604,-1e-06,-0.796984,0.604,0,-0.796986,0.603997,0,-0.796987,0.603996,0,-0.796987,0.603996,0,-0.796987,0.603996,0,-0.796979,0.604007,0,-0.796979,0.604007,0,-0.796979,0.604007,0,-0.79699,0.603993,0,-0.79699,0.603993,0,-0.79699,0.603993,-5e-06,-0.796987,0.603996,-5e-06,-0.796987,0.603996,-5e-06,-0.796987,0.603996,0,-0.796984,0.604,0,-0.796984,0.604,0,-0.796984,0.604,0,-0.79699,0.603993,0,-0.79699,0.603993,0,-0.79699,0.603993,-2e-06,-0.796987,0.603996,-2e-06,-0.796987,0.603996,-2e-06,-0.796987,0.603996,0,-0.796988,0.603995,0,-0.796988,0.603995,0,-0.796988,0.603995,-0,-0.796987,0.603997,-0,-0.796987,0.603997,-0,-0.796987,0.603997,1e-06,-0.796987,0.603997,1e-06,-0.796987,0.603997,1e-06,-0.796987,0.603997,-1.8e-05,-0.796991,0.603991,-1.8e-05,-0.796991,0.603991,-1.8e-05,-0.796991,0.603991,-1.5e-05,-0.796997,0.603983,-1.5e-05,-0.796997,0.603983,-1.5e-05,-0.796997,0.603983,-1.3e-05,-0.796987,0.603997,-1.3e-05,-0.796987,0.603997,-1.3e-05,-0.796987,0.603997,-5e-06,-0.796987,0.603996,-5e-06,-0.796987,0.603996,-5e-06,-0.796987,0.603996,5e-06,-0.796988,0.603995,5e-06,-0.796988,0.603995,5e-06,-0.796988,0.603995,-0,-0.796991,0.603991,-0,-0.796991,0.603991,-0,-0.796991,0.603991,-1e-06,-0.796988,0.603995,-1e-06,-0.796988,0.603995,-1e-06,-0.796988,0.603995,-1e-06,-0.796986,0.603998,-1e-06,-0.796986,0.603998,-1e-06,-0.796986,0.603998,-1e-06,-0.796986,0.603998,0,-0.79699,0.603993,0,-0.79699,0.603993,0,-0.79699,0.603993,0,-0.796987,0.603996,0,-0.796987,0.603996,0,-0.796987,0.603996,-0,-0.796987,0.603996,4e-06,-0.796986,0.603997,4e-06,-0.796986,0.603997,4e-06,-0.796986,0.603997,2e-06,-0.796988,0.603996,2e-06,-0.796988,0.603996,2e-06,-0.796988,0.603996,-1e-06,-0.796989,0.603993,-1e-06,-0.796989,0.603993,-1e-06,-0.796989,0.603993,-1e-06,-0.79699,0.603993,-1e-06,-0.79699,0.603993,-1e-06,-0.79699,0.603993,1e-06,-0.796987,0.603997,1e-06,-0.796987,0.603997,1e-06,-0.796987,0.603997,-3e-06,-0.797003,0.603975,-3e-06,-0.797003,0.603975,-3e-06,-0.797003,0.603975,-0,-0.796994,0.603987,-0,-0.796994,0.603987,-0,-0.796994,0.603987,-2.5e-05,-0.796921,0.604084,-2.5e-05,-0.796921,0.604084,-2.5e-05,-0.796921,0.604084,-0,-0.796983,0.604002,-0,-0.796983,0.604002,-0,-0.796983,0.604002,-0,-0.796986,0.603998,-0,-0.796986,0.603998,-0,-0.796986,0.603998,-1e-06,-0.796981,0.604005,-1e-06,-0.796981,0.604005,-1e-06,-0.796981,0.604005,1e-06,-0.796996,0.603985,1e-06,-0.796996,0.603985,1e-06,-0.796996,0.603985,-4e-06,-0.796987,0.603996,-4e-06,-0.796987,0.603996,-4e-06,-0.796987,0.603996,-1e-06,-0.796981,0.604004,-1e-06,-0.796981,0.604004,-1e-06,-0.796981,0.604004,-7e-06,-0.797008,0.603969,-7e-06,-0.797008,0.603969,-7e-06,-0.797008,0.603969,-8e-06,-0.797001,0.603978,-8e-06,-0.797001,0.603978,-8e-06,-0.797001,0.603978,-3e-06,-0.796979,0.604007,-3e-06,-0.796979,0.604007,-3e-06,-0.796979,0.604007,-5e-06,-0.796972,0.604016,-5e-06,-0.796972,0.604016,-5e-06,-0.796972,0.604016,-2e-06,-0.796987,0.603997,-2e-06,-0.796987,0.603997,-2e-06,-0.796987,0.603997,-7e-06,-0.79699,0.603992,-7e-06,-0.79699,0.603992,-7e-06,-0.79699,0.603992,1.7e-05,-0.797041,0.603924,1.7e-05,-0.797041,0.603924,1.7e-05,-0.797041,0.603924,0,-0.796985,0.603999,0,-0.796985,0.603999,0,-0.796985,0.603999,-0,-0.796988,0.603994,-0,-0.796988,0.603994,-0,-0.796988,0.603994,-0,-0.79699,0.603993,-0,-0.79699,0.603993,-0,-0.79699,0.603993,1e-06,-0.796989,0.603994,1e-06,-0.796989,0.603994,1e-06,-0.796989,0.603994,1e-06,-0.796985,0.604,1e-06,-0.796985,0.604,1e-06,-0.796985,0.604,3e-06,-0.796987,0.603996,3e-06,-0.796987,0.603996,3e-06,-0.796987,0.603996,-1e-06,-0.796987,0.603996,-1e-06,-0.796987,0.603996,-1e-06,-0.796987,0.603996,-0,-0.796986,0.603997,-0,-0.796986,0.603997,-0,-0.796986,0.603997,-2e-06,-0.79698,0.604006,-2e-06,-0.79698,0.604006,-2e-06,-0.79698,0.604006,6e-06,-0.796987,0.603996,6e-06,-0.796987,0.603996,6e-06,-0.796987,0.603996,0,-0.796991,0.603991,0,-0.796991,0.603991,0,-0.796991,0.603991,1e-06,-0.796987,0.603996,1e-06,-0.796987,0.603996,1e-06,-0.796987,0.603996,0,-0.796995,0.603986,0,-0.796995,0.603986,0,-0.796995,0.603986,-4e-06,-0.796989,0.603994,-4e-06,-0.796989,0.603994,-4e-06,-0.796989,0.603994,-3e-06,-0.796987,0.603997,-3e-06,-0.796987,0.603997,-3e-06,-0.796987,0.603997,-2e-06,-0.796988,0.603995,-2e-06,-0.796988,0.603995,-2e-06,-0.796988,0.603995,3e-06,-0.796987,0.603996,3e-06,-0.796987,0.603996,3e-06,-0.796987,0.603996,1e-05,-0.796991,0.603991,1e-05,-0.796991,0.603991,1e-05,-0.796991,0.603991,1e-05,-0.796994,0.603987,1e-05,-0.796994,0.603987,1e-05,-0.796994,0.603987,9e-06,-0.796993,0.603989,9e-06,-0.796993,0.603989,9e-06,-0.796993,0.603989,8e-06,-0.796968,0.604022,8e-06,-0.796968,0.604022,8e-06,-0.796968,0.604022,-6e-06,-0.797003,0.603975,-6e-06,-0.797003,0.603975,-6e-06,-0.797003,0.603975,-4e-06,-0.797011,0.603965,-4e-06,-0.797011,0.603965,-4e-06,-0.797011,0.603965,2e-06,-0.79697,0.604018,2e-06,-0.79697,0.604018,2e-06,-0.79697,0.604018,1e-06,-0.796969,0.60402,1e-06,-0.796969,0.60402,1e-06,-0.796969,0.60402,-0,-0.797048,0.603916,-0,-0.797048,0.603916,-0,-0.797048,0.603916,4e-06,-0.796991,0.603991,4e-06,-0.796991,0.603991,4e-06,-0.796991,0.603991,-1e-06,-0.796982,0.604003,-1e-06,-0.796982,0.604003,-1e-06,-0.796982,0.604003,-1e-06,-0.796987,0.603997,-1e-06,-0.796987,0.603997,-1e-06,-0.796987,0.603997,0,-0.796987,0.603996,0,-0.796987,0.603996,0,-0.796987,0.603996,3e-06,-0.796987,0.603996,3e-06,-0.796987,0.603996,3e-06,-0.796987,0.603996,-4e-06,-0.796988,0.603995,-4e-06,-0.796988,0.603995,-4e-06,-0.796988,0.603995,3e-06,-0.796987,0.603996,-2e-06,-0.796988,0.603996,-2e-06,-0.796988,0.603996,-2e-06,-0.796988,0.603996,1e-06,-0.796987,0.603996,1e-06,-0.796987,0.603996,1e-06,-0.796987,0.603996,2e-06,-0.796991,0.603991,2e-06,-0.796991,0.603991,2e-06,-0.796991,0.603991,1e-06,-0.796988,0.603995,1e-06,-0.796988,0.603995,1e-06,-0.796988,0.603995,2e-06,-0.796994,0.603988,2e-06,-0.796994,0.603988,2e-06,-0.796994,0.603988,1e-06,-0.797,0.603979,1e-06,-0.797,0.603979,1e-06,-0.797,0.603979,1e-06,-0.796987,0.603996,0,-0.796989,0.603994,0,-0.796989,0.603994,0,-0.796989,0.603994,0,-0.796989,0.603994,0,-0.796989,0.603994,0,-0.796989,0.603994,0,-0.796989,0.603994,0,-0.79699,0.603993,0,-0.79699,0.603993,0,-0.79699,0.603993,0,-0.79699,0.603993,0,-0.79699,0.603993,0,-0.79699,0.603993,0,-0.79699,0.603993,0,-0.79699,0.603993,0,-0.79699,0.603993,0,-0.796983,0.604002,0,-0.796983,0.604002,0,-0.796983,0.604002,2e-06,-0.796987,0.603997,2e-06,-0.796987,0.603997,2e-06,-0.796987,0.603997,2e-06,-0.796988,0.603996,2e-06,-0.796988,0.603996,2e-06,-0.796988,0.603996,-0,-0.796989,0.603994,-0,-0.796989,0.603994,-0,-0.796989,0.603994,-4e-06,-0.796988,0.603996,-4e-06,-0.796988,0.603996,-4e-06,-0.796988,0.603996,-0,-0.796987,0.603996,-0,-0.796987,0.603996,-0,-0.796987,0.603996,-0,-0.796979,0.604007,-0,-0.796979,0.604007,-0,-0.796979,0.604007,-0,-0.796984,0.604,-0,-0.796984,0.604,-0,-0.796984,0.604,5e-06,-0.796989,0.603994,5e-06,-0.796989,0.603994,5e-06,-0.796989,0.603994,-3.6e-05,-0.79704,0.603926,-3.6e-05,-0.79704,0.603926,-3.6e-05,-0.79704,0.603926,7e-06,-0.796969,0.60402,7e-06,-0.796969,0.60402,7e-06,-0.796969,0.60402,-0,-0.796983,0.604002,-0,-0.796983,0.604002,-0,-0.796983,0.604002,-0,-0.796993,0.603989,-0,-0.796993,0.603989,-0,-0.796993,0.603989,7e-06,-0.796984,0.604001,7e-06,-0.796984,0.604001,7e-06,-0.796984,0.604001,3e-06,-0.796989,0.603993,3e-06,-0.796989,0.603993,3e-06,-0.796989,0.603993,-0,-0.796991,0.603991,-0,-0.796991,0.603991,-0,-0.796991,0.603991,7e-06,-0.796988,0.603995,7e-06,-0.796988,0.603995,7e-06,-0.796988,0.603995,3e-06,-0.796999,0.603981,3e-06,-0.796999,0.603981,3e-06,-0.796999,0.603981,8e-06,-0.796986,0.603998,8e-06,-0.796986,0.603998,8e-06,-0.796986,0.603998,-4e-06,-0.796942,0.604056,-4e-06,-0.796942,0.604056,-4e-06,-0.796942,0.604056,6e-06,-0.79697,0.60402,6e-06,-0.79697,0.60402,6e-06,-0.79697,0.60402,-1.2e-05,-0.797001,0.603978,-1.2e-05,-0.797001,0.603978,-1.2e-05,-0.797001,0.603978,-0,-0.796987,0.603997,-0,-0.796987,0.603997,-0,-0.796987,0.603997,1e-06,-0.796987,0.603996,1e-06,-0.796987,0.603996,1e-06,-0.796987,0.603996,-2e-06,-0.796987,0.603996,-2e-06,-0.796987,0.603996,-2e-06,-0.796987,0.603996,0,-0.796986,0.603998,0,-0.796986,0.603998,0,-0.796986,0.603998,-0,-0.796985,0.603999,-0,-0.796985,0.603999,-0,-0.796985,0.603999,-0,-0.796987,0.603996,0,-0.796987,0.603996,0,-0.796987,0.603996,0,-0.796987,0.603996,-1e-06,-0.79698,0.604005,-1e-06,-0.79698,0.604005,-1e-06,-0.79698,0.604005,1e-06,-0.796987,0.603996,0,-0.796986,0.603997,0,-0.796986,0.603997,0,-0.796986,0.603997,0,-0.796987,0.603996,0,-0.796989,0.603993,0,-0.796989,0.603993,0,-0.796989,0.603993,0,-0.796968,0.604022,0,-0.796968,0.604022,0,-0.796968,0.604022,0,-0.796966,0.604025,0,-0.796966,0.604025,0,-0.796966,0.604025,0,-0.79699,0.603993,0,-0.79699,0.603993,0,-0.79699,0.603993,0,-0.796992,0.60399,0,-0.796992,0.60399,0,-0.796992,0.60399,0,-0.796985,0.603999,0,-0.796985,0.603999,0,-0.796985,0.603999,-0,-0.79698,0.604005,-0,-0.79698,0.604005,-0,-0.79698,0.604005,3e-06,-0.796987,0.603996,3e-06,-0.796987,0.603996,3e-06,-0.796987,0.603996,2e-06,-0.796988,0.603996,2e-06,-0.796988,0.603996,2e-06,-0.796988,0.603996,-0,-0.796995,0.603985,-0,-0.796995,0.603985,-0,-0.796995,0.603985,-1e-06,-0.797001,0.603979,-1e-06,-0.797001,0.603979,-1e-06,-0.797001,0.603979,-0,-0.796988,0.603995,-0,-0.796988,0.603995,-0,-0.796988,0.603995,-0,-0.79699,0.603992,-0,-0.79699,0.603992,-0,-0.79699,0.603992,-3e-06,-0.797009,0.603968,-3e-06,-0.797009,0.603968,-3e-06,-0.797009,0.603968,-2e-06,-0.796998,0.603982,-2e-06,-0.796998,0.603982,-2e-06,-0.796998,0.603982,2e-06,-0.796987,0.603996,2e-06,-0.796987,0.603996,2e-06,-0.796987,0.603996,-2e-06,-0.796986,0.603998,-2e-06,-0.796986,0.603998,-2e-06,-0.796986,0.603998,-1e-06,-0.796988,0.603995,-1e-06,-0.796988,0.603995,-1e-06,-0.796988,0.603995,-3e-06,-0.796992,0.603989,-3e-06,-0.796992,0.603989,-3e-06,-0.796992,0.603989,-1e-06,-0.796974,0.604013,-1e-06,-0.796974,0.604013,-1e-06,-0.796974,0.604013,0,-0.796988,0.603995,0,-0.796988,0.603995,0,-0.796988,0.603995,-0,-0.796987,0.603997,-0,-0.796987,0.603997,-0,-0.796987,0.603997,-1e-06,-0.797005,0.603973,-1e-06,-0.797005,0.603973,-1e-06,-0.797005,0.603973,-0,-0.796979,0.604008,-0,-0.796979,0.604008,-0,-0.796979,0.604008,-1e-06,-0.796981,0.604004,-1e-06,-0.796981,0.604004,-1e-06,-0.796981,0.604004,0,-0.796996,0.603985,0,-0.796996,0.603985,0,-0.796996,0.603985,0,-0.796994,0.603987,0,-0.796994,0.603987,0,-0.796994,0.603987,1e-06,-0.79699,0.603993,1e-06,-0.79699,0.603993,1e-06,-0.79699,0.603993,-0,-0.796986,0.603998,-0,-0.796986,0.603998,-0,-0.796986,0.603998,-1.2e-05,-0.796995,0.603986,-1.2e-05,-0.796995,0.603986,-1.2e-05,-0.796995,0.603986,6e-06,-0.796962,0.604029,6e-06,-0.796962,0.604029,6e-06,-0.796962,0.604029,3e-06,-0.796985,0.603999,3e-06,-0.796985,0.603999,3e-06,-0.796985,0.603999,6e-06,-0.796988,0.603995,6e-06,-0.796988,0.603995,6e-06,-0.796988,0.603995,1e-06,-0.796981,0.604004,1e-06,-0.796981,0.604004,1e-06,-0.796981,0.604004,-1e-06,-0.796987,0.603997,-1e-06,-0.796987,0.603997,-1e-06,-0.796987,0.603997,3e-06,-0.796985,0.603999,0,-0.796988,0.603995,0,-0.796988,0.603995,0,-0.796988,0.603995,-0,-0.79699,0.603993,-0,-0.79699,0.603993,-0,-0.79699,0.603993,1e-06,-0.796989,0.603993,1e-06,-0.796989,0.603993,1e-06,-0.796989,0.603993,2e-06,-0.796991,0.603991,2e-06,-0.796991,0.603991,2e-06,-0.796991,0.603991,5e-06,-0.796994,0.603987,5e-06,-0.796994,0.603987,5e-06,-0.796994,0.603987,-4e-06,-0.796985,0.603999,-4e-06,-0.796985,0.603999,-4e-06,-0.796985,0.603999,-1e-05,-0.796922,0.604082,-1e-05,-0.796922,0.604082,-1e-05,-0.796922,0.604082,-1.1e-05,-0.796956,0.604038,-1.1e-05,-0.796956,0.604038,-1.1e-05,-0.796956,0.604038,-8e-06,-0.796988,0.603996,-8e-06,-0.796988,0.603996,-8e-06,-0.796988,0.603996,-0,-0.796999,0.60398,-0,-0.796999,0.60398,-0,-0.796999,0.60398,-1e-06,-0.796981,0.604004,-1e-06,-0.796981,0.604004,-1e-06,-0.796981,0.604004,-5e-06,-0.79699,0.603993,-5e-06,-0.79699,0.603993,-5e-06,-0.79699,0.603993,-6e-06,-0.796988,0.603994,-6e-06,-0.796988,0.603994,-6e-06,-0.796988,0.603994,-5e-06,-0.796987,0.603996,-5e-06,-0.796987,0.603996,-5e-06,-0.796987,0.603996,-9e-06,-0.796998,0.603982,-9e-06,-0.796998,0.603982,-9e-06,-0.796998,0.603982,-1.1e-05,-0.796987,0.603996,-1.1e-05,-0.796987,0.603996,-1.1e-05,-0.796987,0.603996,-2e-06,-0.796991,0.603991,-2e-06,-0.796991,0.603991,-2e-06,-0.796991,0.603991,-2e-06,-0.796988,0.603995,-2e-06,-0.796988,0.603995,-2e-06,-0.796988,0.603995,-3e-06,-0.797,0.603979,-3e-06,-0.797,0.603979,-3e-06,-0.797,0.603979,-4e-06,-0.796994,0.603988,-4e-06,-0.796994,0.603988,-4e-06,-0.796994,0.603988,-3e-06,-0.796986,0.603998,-3e-06,-0.796986,0.603998,-3e-06,-0.796986,0.603998,2e-06,-0.796987,0.603996,2e-06,-0.796987,0.603996,2e-06,-0.796987,0.603996,-1e-06,-0.796987,0.603996,-1e-06,-0.796987,0.603996,-1e-06,-0.796987,0.603996,5e-06,-0.796988,0.603995,5e-06,-0.796988,0.603995,5e-06,-0.796988,0.603995,3e-06,-0.796987,0.603996,3e-06,-0.796987,0.603996,3e-06,-0.796987,0.603996,-3e-06,-0.796985,0.603999,-3e-06,-0.796985,0.603999,-3e-06,-0.796985,0.603999,-1e-05,-0.79698,0.604005,-1e-05,-0.79698,0.604005,-1e-05,-0.79698,0.604005,-2e-06,-0.796984,0.604,-2e-06,-0.796984,0.604,-2e-06,-0.796984,0.604,5e-06,-0.79699,0.603993,5e-06,-0.79699,0.603993,5e-06,-0.79699,0.603993,0,-0.796986,0.603997,0,-0.796986,0.603997,0,-0.796986,0.603997,-3e-06,-0.796983,0.604001,-3e-06,-0.796983,0.604001,-3e-06,-0.796983,0.604001,1.2e-05,-0.796999,0.60398,1.2e-05,-0.796999,0.60398,1.2e-05,-0.796999,0.60398,-0,-0.796987,0.603996,-0,-0.796987,0.603996,-0,-0.796987,0.603996,4.1e-05,-0.797039,0.603928,4.1e-05,-0.797039,0.603928,4.1e-05,-0.797039,0.603928,-1e-06,-0.796987,0.603997,-1e-06,-0.796987,0.603997,-1e-06,-0.796987,0.603997,-1e-06,-0.796987,0.603997,3e-06,-0.796993,0.603989,3e-06,-0.796993,0.603989,3e-06,-0.796993,0.603989,3e-06,-0.796984,0.604,3e-06,-0.796984,0.604,3e-06,-0.796984,0.604,-3e-06,-0.79699,0.603993,-3e-06,-0.79699,0.603993,-3e-06,-0.79699,0.603993,-4e-06,-0.796984,0.604001,-4e-06,-0.796984,0.604001,-4e-06,-0.796984,0.604001,3.2e-05,-0.797007,0.603971,3.2e-05,-0.797007,0.603971,3.2e-05,-0.797007,0.603971,4e-06,-0.796984,0.604001,4e-06,-0.796984,0.604001,4e-06,-0.796984,0.604001,0,-0.796988,0.603995,0,-0.796988,0.603995,0,-0.796988,0.603995,9e-06,-0.796987,0.603996,9e-06,-0.796987,0.603996,9e-06,-0.796987,0.603996,-0,-0.796986,0.603997,-0,-0.796986,0.603997,-0,-0.796986,0.603997,-7e-06,-0.796987,0.603997,-7e-06,-0.796987,0.603997,-7e-06,-0.796987,0.603997,3e-06,-0.796987,0.603997,3e-06,-0.796987,0.603997,3e-06,-0.796987,0.603997,2.2e-05,-0.796991,0.603991,2.2e-05,-0.796991,0.603991,2.2e-05,-0.796991,0.603991,-2e-06,-0.79699,0.603993,-2e-06,-0.79699,0.603993,-2e-06,-0.79699,0.603993,3e-06,-0.796988,0.603996,3e-06,-0.796988,0.603996,3e-06,-0.796988,0.603996,3e-06,-0.796988,0.603996,-5e-06,-0.796988,0.603996,-5e-06,-0.796988,0.603996,-5e-06,-0.796988,0.603996,1e-06,-0.796987,0.603997,1e-06,-0.796987,0.603997,1e-06,-0.796987,0.603997,-4e-06,-0.796986,0.603998,-4e-06,-0.796986,0.603998,-4e-06,-0.796986,0.603998,3e-06,-0.796987,0.603996,3e-06,-0.796987,0.603996,3e-06,-0.796987,0.603996,-2e-06,-0.796987,0.603996,-2e-06,-0.796987,0.603996,-2e-06,-0.796987,0.603996,-0,-0.796986,0.603997,-0,-0.796986,0.603997,-0,-0.796986,0.603997,-6e-06,-0.796991,0.603992,-6e-06,-0.796991,0.603992,-6e-06,-0.796991,0.603992,-7e-06,-0.796988,0.603995,-7e-06,-0.796988,0.603995,-7e-06,-0.796988,0.603995,-1e-06,-0.796987,0.603996,-1e-06,-0.796987,0.603996,-1e-06,-0.796987,0.603996,-2e-06,-0.796985,0.603999,-2e-06,-0.796985,0.603999,-2e-06,-0.796985,0.603999,-1e-06,-0.796989,0.603993,-1e-06,-0.796989,0.603993,-1e-06,-0.796989,0.603993,1e-06,-0.796988,0.603995,1e-06,-0.796988,0.603995,1e-06,-0.796988,0.603995,3e-06,-0.796987,0.603997,3e-06,-0.796987,0.603997,3e-06,-0.796987,0.603997,-0,-0.796989,0.603994,-0,-0.796989,0.603994,-0,-0.796989,0.603994,-0,-0.796986,0.603997,-0,-0.796986,0.603997,-0,-0.796986,0.603997,1e-06,-0.796985,0.603999,1e-06,-0.796985,0.603999,1e-06,-0.796985,0.603999,0,-0.796987,0.603996,0,-0.796987,0.603996,0,-0.796987,0.603996,-1e-06,-0.796994,0.603987,-1e-06,-0.796994,0.603987,-1e-06,-0.796994,0.603987,-0,-0.796997,0.603984,-0,-0.796997,0.603984,-0,-0.796997,0.603984,-0,-0.796983,0.604002,-0,-0.796983,0.604002,-0,-0.796983,0.604002,0,-0.79699,0.603993,0,-0.79699,0.603993,0,-0.79699,0.603993,-1e-06,-0.796987,0.603996,-1e-06,-0.796987,0.603996,-1e-06,-0.796987,0.603996,6e-06,-0.796988,0.603995,6e-06,-0.796988,0.603995,6e-06,-0.796988,0.603995,0,-0.796991,0.603991,0,-0.796991,0.603991,0,-0.796991,0.603991,-3e-06,-0.796988,0.603995,-3e-06,-0.796988,0.603995,-3e-06,-0.796988,0.603995,-3e-06,-0.796986,0.603997,-3e-06,-0.796986,0.603997,-3e-06,-0.796986,0.603997,-0,-0.796986,0.603998,-0,-0.796986,0.603998,-0,-0.796986,0.603998,0,-0.79699,0.603993,0,-0.79699,0.603993,0,-0.79699,0.603993,0,-0.796993,0.603989,0,-0.796993,0.603989,0,-0.796993,0.603989,1e-06,-0.796971,0.604017,1e-06,-0.796971,0.604017,1e-06,-0.796971,0.604017,2e-06,-0.796989,0.603993,2e-06,-0.796989,0.603993,2e-06,-0.796989,0.603993,2e-06,-0.796987,0.603996,2e-06,-0.796987,0.603996,2e-06,-0.796987,0.603996,2e-06,-0.796987,0.603996,4e-06,-0.796988,0.603995,4e-06,-0.796988,0.603995,4e-06,-0.796988,0.603995,-1e-06,-0.796997,0.603983,-1e-06,-0.796997,0.603983,-1e-06,-0.796997,0.603983,-1e-06,-0.796997,0.603983,5e-06,-0.796984,0.604001,5e-06,-0.796984,0.604001,5e-06,-0.796984,0.604001,0,-0.796987,0.603997,0,-0.796987,0.603997,0,-0.796987,0.603997,1.1e-05,-0.796968,0.604022,1.1e-05,-0.796968,0.604022,1.1e-05,-0.796968,0.604022,2e-06,-0.796982,0.604003,2e-06,-0.796982,0.604003,2e-06,-0.796982,0.604003,2e-06,-0.796992,0.60399,2e-06,-0.796992,0.60399,2e-06,-0.796992,0.60399,-7e-06,-0.797003,0.603975,-7e-06,-0.797003,0.603975,-7e-06,-0.797003,0.603975,-5e-06,-0.796966,0.604024,-5e-06,-0.796966,0.604024,-5e-06,-0.796966,0.604024,3e-06,-0.796988,0.603996,3e-06,-0.796988,0.603996,3e-06,-0.796988,0.603996,9e-06,-0.796968,0.604021,9e-06,-0.796968,0.604021,9e-06,-0.796968,0.604021,-1e-06,-0.796987,0.603996,-1e-06,-0.796987,0.603996,-1e-06,-0.796987,0.603996,0,-0.796987,0.603997,0,-0.796987,0.603997,0,-0.796987,0.603997,0,-0.796987,0.603997,2e-06,-0.796987,0.603996,2e-06,-0.796987,0.603996,2e-06,-0.796987,0.603996,2e-06,-0.796988,0.603996,2e-06,-0.796988,0.603996,2e-06,-0.796988,0.603996,2e-06,-0.796987,0.603996,0,-0.796986,0.603997,0,-0.796986,0.603997,0,-0.796986,0.603997,-0,-0.796985,0.603999,-0,-0.796985,0.603999,-0,-0.796985,0.603999,0,-0.796989,0.603994,0,-0.796989,0.603994,0,-0.796989,0.603994,0,-0.796989,0.603994,0,-0.796983,0.604002,0,-0.796983,0.604002,0,-0.796983,0.604002,0,-0.79699,0.603993,0,-0.79699,0.603993,0,-0.79699,0.603993,0,-0.79699,0.603993,0,-0.79699,0.603993,0,-0.79699,0.603993,0,-0.796983,0.604002,0,-0.796983,0.604002,0,-0.796983,0.604002,2e-06,-0.796987,0.603997,2e-06,-0.796987,0.603997,2e-06,-0.796987,0.603997,2e-06,-0.796988,0.603996,2e-06,-0.796988,0.603996,2e-06,-0.796988,0.603996,-0,-0.796989,0.603994,-0,-0.796989,0.603994,-0,-0.796989,0.603994,-4e-06,-0.796988,0.603996,-4e-06,-0.796988,0.603996,-4e-06,-0.796988,0.603996,-0,-0.796987,0.603996,-0,-0.796987,0.603996,-0,-0.796987,0.603996,-1e-06,-0.796962,0.604029,-1e-06,-0.796962,0.604029,-1e-06,-0.796962,0.604029,-0,-0.796987,0.603997,-0,-0.796987,0.603997,-0,-0.796987,0.603997,2e-06,-0.796989,0.603994,2e-06,-0.796989,0.603994,2e-06,-0.796989,0.603994,-1.3e-05,-0.797022,0.60395,-1.3e-05,-0.797022,0.60395,-1.3e-05,-0.797022,0.60395,0,-0.796979,0.604007,0,-0.796979,0.604007,0,-0.796979,0.604007,5e-06,-0.796982,0.604003,5e-06,-0.796982,0.604003,5e-06,-0.796982,0.604003,-1e-06,-0.797007,0.603971,-1e-06,-0.797007,0.603971,-1e-06,-0.797007,0.603971,4e-06,-0.796976,0.604011,4e-06,-0.796976,0.604011,4e-06,-0.796976,0.604011,-3e-06,-0.796993,0.603989,-3e-06,-0.796993,0.603989,-3e-06,-0.796993,0.603989,-1e-06,-0.796968,0.604022,-1e-06,-0.796968,0.604022,-1e-06,-0.796968,0.604022,-5e-06,-0.79699,0.603993,-5e-06,-0.79699,0.603993,-5e-06,-0.79699,0.603993,-4e-06,-0.796989,0.603994,-4e-06,-0.796989,0.603994,-4e-06,-0.796989,0.603994,-3e-06,-0.796988,0.603996,-3e-06,-0.796988,0.603996,-3e-06,-0.796988,0.603996,-9e-06,-0.796968,0.604021,-9e-06,-0.796968,0.604021,-9e-06,-0.796968,0.604021,-7e-06,-0.796969,0.60402,-7e-06,-0.796969,0.60402,-7e-06,-0.796969,0.60402,-1.2e-05,-0.796978,0.604009,-1.2e-05,-0.796978,0.604009,-1.2e-05,-0.796978,0.604009,-0,-0.796987,0.603997,-0,-0.796987,0.603997,-0,-0.796987,0.603997,1e-06,-0.796987,0.603996,1e-06,-0.796987,0.603996,1e-06,-0.796987,0.603996,-2e-06,-0.796987,0.603996,-2e-06,-0.796987,0.603996,-2e-06,-0.796987,0.603996,0,-0.796986,0.603998,0,-0.796986,0.603998,0,-0.796986,0.603998,-0,-0.796985,0.603999,-0,-0.796985,0.603999,-0,-0.796985,0.603999,-0,-0.796987,0.603996,0,-0.796987,0.603996,0,-0.796987,0.603996,0,-0.796987,0.603996,-1e-06,-0.79698,0.604005,-1e-06,-0.79698,0.604005,-1e-06,-0.79698,0.604005,1e-06,-0.796987,0.603996,0,-0.796986,0.603997,0,-0.796986,0.603997,0,-0.796986,0.603997,0,-0.796987,0.603996,0,-0.79699,0.603993,0,-0.79699,0.603993,0,-0.79699,0.603993,3e-06,-0.796998,0.603982,3e-06,-0.796998,0.603982,3e-06,-0.796998,0.603982,0,-0.796967,0.604023,0,-0.796967,0.604023,0,-0.796967,0.604023,0,-0.796998,0.603982,0,-0.796998,0.603982,0,-0.796998,0.603982,-0,-0.796994,0.603987,-0,-0.796994,0.603987,-0,-0.796994,0.603987,-0,-0.796979,0.604007,-0,-0.796979,0.604007,-0,-0.796979,0.604007,-0,-0.796969,0.60402,-0,-0.796969,0.60402,-0,-0.796969,0.60402,0,-0.796984,0.604,0,-0.796984,0.604,0,-0.796984,0.604,-0,-0.796981,0.604005,-0,-0.796981,0.604005,-0,-0.796981,0.604005,1e-06,-0.796992,0.60399,1e-06,-0.796992,0.60399,1e-06,-0.796992,0.60399,-2e-06,-0.796998,0.603982,-2e-06,-0.796998,0.603982,-2e-06,-0.796998,0.603982,0,-0.796986,0.603998,0,-0.796986,0.603998,0,-0.796986,0.603998,-1e-06,-0.796994,0.603987,-1e-06,-0.796994,0.603987,-1e-06,-0.796994,0.603987,-0,-0.79699,0.603993,-0,-0.79699,0.603993,-0,-0.79699,0.603993,-1e-06,-0.796987,0.603996,-1e-06,-0.796987,0.603996,-1e-06,-0.796987,0.603996,4e-06,-0.796987,0.603997,4e-06,-0.796987,0.603997,4e-06,-0.796987,0.603997,-2e-06,-0.796987,0.603997,-2e-06,-0.796987,0.603997,-2e-06,-0.796987,0.603997,-2e-06,-0.796983,0.604001,-2e-06,-0.796983,0.604001,-2e-06,-0.796983,0.604001,-6e-06,-0.796952,0.604042,-6e-06,-0.796952,0.604042,-6e-06,-0.796952,0.604042,-3e-06,-0.796966,0.604024,-3e-06,-0.796966,0.604024,-3e-06,-0.796966,0.604024,-1e-06,-0.79699,0.603993,-1e-06,-0.79699,0.603993,-1e-06,-0.79699,0.603993,3e-06,-0.796984,0.604,3e-06,-0.796984,0.604,3e-06,-0.796984,0.604,5e-06,-0.796979,0.604007,5e-06,-0.796979,0.604007,5e-06,-0.796979,0.604007,-3e-06,-0.796978,0.604008,-3e-06,-0.796978,0.604008,-3e-06,-0.796978,0.604008,-1e-06,-0.796989,0.603993,-1e-06,-0.796989,0.603993,-1e-06,-0.796989,0.603993,-0,-0.796987,0.603997,-0,-0.796987,0.603997,-0,-0.796987,0.603997,5e-06,-0.796984,0.604001,5e-06,-0.796984,0.604001,5e-06,-0.796984,0.604001,7e-06,-0.796985,0.603999,7e-06,-0.796985,0.603999,7e-06,-0.796985,0.603999,0,-0.796998,0.603982,0,-0.796998,0.603982,0,-0.796998,0.603982,0,-0.796967,0.604023,0,-0.796967,0.604023,0,-0.796967,0.604023,-3e-06,-0.796984,0.604,-3e-06,-0.796984,0.604,-3e-06,-0.796984,0.604,7e-06,-0.796982,0.604003,7e-06,-0.796982,0.604003,7e-06,-0.796982,0.604003,0,-0.796992,0.603989,0,-0.796992,0.603989,0,-0.796992,0.603989,-5e-06,-0.796981,0.604005,-5e-06,-0.796981,0.604005,-5e-06,-0.796981,0.604005,-1e-06,-0.796987,0.603997,-1e-06,-0.796987,0.603997,-1e-06,-0.796987,0.603997,-1e-06,-0.79699,0.603993,-1e-06,-0.79699,0.603993,-1e-06,-0.79699,0.603993,-1e-06,-0.796993,0.603989,-1e-06,-0.796993,0.603989,-1e-06,-0.796993,0.603989,-4e-06,-0.79699,0.603993,-4e-06,-0.79699,0.603993,-4e-06,-0.79699,0.603993,0,-0.796978,0.604009,0,-0.796978,0.604009,0,-0.796978,0.604009,6e-06,-0.796995,0.603985,6e-06,-0.796995,0.603985,6e-06,-0.796995,0.603985,-2e-06,-0.796988,0.603995,-2e-06,-0.796988,0.603995,-2e-06,-0.796988,0.603995,4e-06,-0.796982,0.604003,4e-06,-0.796982,0.604003,4e-06,-0.796982,0.604003,-1e-06,-0.796991,0.603992,-1e-06,-0.796991,0.603992,-1e-06,-0.796991,0.603992,-4e-06,-0.796984,0.604,-4e-06,-0.796984,0.604,-4e-06,-0.796984,0.604,-4e-06,-0.796983,0.604002,-4e-06,-0.796983,0.604002,-4e-06,-0.796983,0.604002,-6e-06,-0.796987,0.603996,-6e-06,-0.796987,0.603996,-6e-06,-0.796987,0.603996,-5e-06,-0.796987,0.603997,-5e-06,-0.796987,0.603997,-5e-06,-0.796987,0.603997,-5e-06,-0.796986,0.603998,-5e-06,-0.796986,0.603998,-5e-06,-0.796986,0.603998,-6e-06,-0.796987,0.603996,-5e-06,-0.796985,0.603999,-5e-06,-0.796985,0.603999,-5e-06,-0.796985,0.603999,-4e-06,-0.796992,0.60399,-4e-06,-0.796992,0.60399,-4e-06,-0.796992,0.60399,7e-06,-0.796987,0.603996,7e-06,-0.796987,0.603996,7e-06,-0.796987,0.603996,-2e-06,-0.796988,0.603995,-2e-06,-0.796988,0.603995,-2e-06,-0.796988,0.603995,7e-06,-0.796987,0.603996,-1e-06,-0.796986,0.603998,-1e-06,-0.796986,0.603998,-1e-06,-0.796986,0.603998,4e-06,-0.79699,0.603993,4e-06,-0.79699,0.603993,4e-06,-0.79699,0.603993,-6e-06,-0.796985,0.603999,-6e-06,-0.796985,0.603999,-6e-06,-0.796985,0.603999,1e-06,-0.796987,0.603996,1e-06,-0.796987,0.603996,1e-06,-0.796987,0.603996,-1e-06,-0.797023,0.60395,-1e-06,-0.797023,0.60395,-1e-06,-0.797023,0.60395,-1e-06,-0.796991,0.603992,-1e-06,-0.796991,0.603992,-1e-06,-0.796991,0.603992,0,-0.796976,0.604011,0,-0.796976,0.604011,0,-0.796976,0.604011,1e-06,-0.796989,0.603994,1e-06,-0.796989,0.603994,1e-06,-0.796989,0.603994,1e-06,-0.796988,0.603994,1e-06,-0.796988,0.603994,1e-06,-0.796988,0.603994,2e-06,-0.796986,0.603997,2e-06,-0.796986,0.603997,2e-06,-0.796986,0.603997,-6e-06,-0.796987,0.603997,-6e-06,-0.796987,0.603997,-6e-06,-0.796987,0.603997,0,-0.796984,0.604,0,-0.796984,0.604,0,-0.796984,0.604,1e-06,-0.796988,0.603995,1e-06,-0.796988,0.603995,1e-06,-0.796988,0.603995,-0,-0.796979,0.604007,-0,-0.796979,0.604007,-0,-0.796979,0.604007,0,-0.796985,0.603999,0,-0.796985,0.603999,0,-0.796985,0.603999,-0,-0.796987,0.603996,-0,-0.796987,0.603996,-0,-0.796987,0.603996,1e-06,-0.796991,0.60399,1e-06,-0.796991,0.60399,1e-06,-0.796991,0.60399,-1e-06,-0.796989,0.603993,-1e-06,-0.796989,0.603993,-1e-06,-0.796989,0.603993,-1e-06,-0.796993,0.603989,-1e-06,-0.796993,0.603989,-1e-06,-0.796993,0.603989,-3e-06,-0.797,0.603979,-3e-06,-0.797,0.603979,-3e-06,-0.797,0.603979,1e-05,-0.797008,0.603968,1e-05,-0.797008,0.603968,1e-05,-0.797008,0.603968,-3e-06,-0.79685,0.604178,-3e-06,-0.79685,0.604178,-3e-06,-0.79685,0.604178,-3e-06,-0.796983,0.604001,-3e-06,-0.796983,0.604001,-3e-06,-0.796983,0.604001,5.1e-05,-0.797086,0.603866,5.1e-05,-0.797086,0.603866,5.1e-05,-0.797086,0.603866,1.6e-05,-0.796978,0.604008,1.6e-05,-0.796978,0.604008,1.6e-05,-0.796978,0.604008,2e-06,-0.796983,0.604002,2e-06,-0.796983,0.604002,2e-06,-0.796983,0.604002,0,-0.796987,0.603997,0,-0.796987,0.603997,0,-0.796987,0.603997,-2e-06,-0.796986,0.603998,-2e-06,-0.796986,0.603998,-2e-06,-0.796986,0.603998,-1e-06,-0.79697,0.604019,-1e-06,-0.79697,0.604019,-1e-06,-0.79697,0.604019,-1e-06,-0.796991,0.603991,-1e-06,-0.796991,0.603991,-1e-06,-0.796991,0.603991,-0,-0.79699,0.603993,-0,-0.79699,0.603993,-0,-0.79699,0.603993,-1e-06,-0.79699,0.603993,-1e-06,-0.79699,0.603993,-1e-06,-0.79699,0.603993,-1e-06,-0.796988,0.603996,-1e-06,-0.796988,0.603996,-1e-06,-0.796988,0.603996,-1e-06,-0.796989,0.603994,-1e-06,-0.796989,0.603994,-1e-06,-0.796989,0.603994,-1e-06,-0.796986,0.603997,-1e-06,-0.796986,0.603997,-1e-06,-0.796986,0.603997,-0,-0.796988,0.603996,-0,-0.796988,0.603996,-0,-0.796988,0.603996,-2e-06,-0.796985,0.603999,-2e-06,-0.796985,0.603999,-2e-06,-0.796985,0.603999,-4e-06,-0.796988,0.603995,-4e-06,-0.796988,0.603995,-4e-06,-0.796988,0.603995,0,-0.796993,0.603989,0,-0.796993,0.603989,0,-0.796993,0.603989,-2e-06,-0.796991,0.603991,-2e-06,-0.796991,0.603991,-2e-06,-0.796991,0.603991,-4e-06,-0.79699,0.603993,-4e-06,-0.79699,0.603993,-4e-06,-0.79699,0.603993,0,-0.796988,0.603996,0,-0.796988,0.603996,0,-0.796988,0.603996,-0,-0.79699,0.603993,-0,-0.79699,0.603993,-0,-0.79699,0.603993,-1e-06,-0.796981,0.604004,-1e-06,-0.796981,0.604004,-1e-06,-0.796981,0.604004,2e-06,-0.796985,0.603999,2e-06,-0.796985,0.603999,2e-06,-0.796985,0.603999,-1e-06,-0.796986,0.603997,-1e-06,-0.796986,0.603997,-1e-06,-0.796986,0.603997,0,-0.796982,0.604003,0,-0.796982,0.604003,0,-0.796982,0.604003,-1e-06,-0.796993,0.603988,-1e-06,-0.796993,0.603988,-1e-06,-0.796993,0.603988,1e-06,-0.796989,0.603994,1e-06,-0.796989,0.603994,1e-06,-0.796989,0.603994,-5e-06,-0.79699,0.603993,-5e-06,-0.79699,0.603993,-5e-06,-0.79699,0.603993,1e-06,-0.796989,0.603994,-4e-06,-0.796987,0.603996,-4e-06,-0.796987,0.603996,-4e-06,-0.796987,0.603996,0,-0.796988,0.603994,0,-0.796988,0.603994,0,-0.796988,0.603994,0,-0.796987,0.603996,0,-0.796987,0.603996,0,-0.796987,0.603996,-0,-0.79699,0.603993,-0,-0.79699,0.603993,-0,-0.79699,0.603993,-1e-06,-0.796985,0.603999,-1e-06,-0.796985,0.603999,-1e-06,-0.796985,0.603999,-0,-0.796987,0.603997,-0,-0.796987,0.603997,-0,-0.796987,0.603997,-1e-06,-0.796988,0.603996,-1e-06,-0.796988,0.603996,-1e-06,-0.796988,0.603996,-4e-06,-0.796984,0.604001,-4e-06,-0.796984,0.604001,-4e-06,-0.796984,0.604001,-2e-06,-0.796989,0.603994,-2e-06,-0.796989,0.603994,-2e-06,-0.796989,0.603994,-5e-06,-0.796986,0.603998,-5e-06,-0.796986,0.603998,-5e-06,-0.796986,0.603998,-1e-06,-0.796992,0.603989,-1e-06,-0.796992,0.603989,-1e-06,-0.796992,0.603989,2e-06,-0.796983,0.604002,2e-06,-0.796983,0.604002,2e-06,-0.796983,0.604002,-2e-06,-0.796989,0.603994,-0,-0.796988,0.603995,-0,-0.796988,0.603995,-0,-0.796988,0.603995,1e-06,-0.796987,0.603996,1e-06,-0.796987,0.603996,1e-06,-0.796987,0.603996,4e-06,-0.796989,0.603994,4e-06,-0.796989,0.603994,4e-06,-0.796989,0.603994,3e-06,-0.79699,0.603992,3e-06,-0.79699,0.603992,3e-06,-0.79699,0.603992,1e-06,-0.796988,0.603995,1e-06,-0.796988,0.603995,1e-06,-0.796988,0.603995,3e-06,-0.796988,0.603996,3e-06,-0.796988,0.603996,3e-06,-0.796988,0.603996,-3e-06,-0.79697,0.604019,-3e-06,-0.79697,0.604019,-3e-06,-0.79697,0.604019,3e-06,-0.797008,0.603969,3e-06,-0.797008,0.603969,3e-06,-0.797008,0.603969,1e-06,-0.796984,0.604,1e-06,-0.796984,0.604,1e-06,-0.796984,0.604,1e-06,-0.796988,0.603994,1e-06,-0.796988,0.603994,1e-06,-0.796988,0.603994,1e-06,-0.796981,0.604005,1e-06,-0.796981,0.604005,1e-06,-0.796981,0.604005,2e-06,-0.796988,0.603995,2e-06,-0.796988,0.603995,2e-06,-0.796988,0.603995,0,-0.796991,0.603992,0,-0.796991,0.603992,0,-0.796991,0.603992,3e-06,-0.796987,0.603997,3e-06,-0.796987,0.603997,3e-06,-0.796987,0.603997,-0,-0.796985,0.603998,-0,-0.796985,0.603998,-0,-0.796985,0.603998,-0,-0.796999,0.60398,-0,-0.796999,0.60398,-0,-0.796999,0.60398,2e-06,-0.79699,0.603993,2e-06,-0.79699,0.603993,2e-06,-0.79699,0.603993,-0,-0.796987,0.603997,-0,-0.796987,0.603997,-0,-0.796987,0.603997,1e-06,-0.796985,0.603999,1e-06,-0.796985,0.603999,1e-06,-0.796985,0.603999,2e-06,-0.796988,0.603994,2e-06,-0.796988,0.603994,2e-06,-0.796988,0.603994,-1e-06,-0.796992,0.60399,-1e-06,-0.796992,0.60399,-1e-06,-0.796992,0.60399,-0,-0.796985,0.603999,-0,-0.796985,0.603999,-0,-0.796985,0.603999,-2e-06,-0.79698,0.604005,-2e-06,-0.79698,0.604005,-2e-06,-0.79698,0.604005,-3e-06,-0.796985,0.604,-3e-06,-0.796985,0.604,-3e-06,-0.796985,0.604,-3e-06,-0.796988,0.603995,-3e-06,-0.796988,0.603995,-3e-06,-0.796988,0.603995,-1e-06,-0.796984,0.604001,-1e-06,-0.796984,0.604001,-1e-06,-0.796984,0.604001,-0,-0.796992,0.60399,-0,-0.796992,0.60399,-0,-0.796992,0.60399,-0,-0.796991,0.603991,-0,-0.796991,0.603991,-0,-0.796991,0.603991,-1e-06,-0.796981,0.604004,-1e-06,-0.796981,0.604004,-1e-06,-0.796981,0.604004,0,-0.796987,0.603997,0,-0.796987,0.603997,0,-0.796987,0.603997,1e-06,-0.796971,0.604018,1e-06,-0.796971,0.604018,1e-06,-0.796971,0.604018,-1e-06,-0.796981,0.604004,-1e-06,-0.796981,0.604004,-1e-06,-0.796981,0.604004,-2e-06,-0.797026,0.603945,-2e-06,-0.797026,0.603945,-2e-06,-0.797026,0.603945,-1e-06,-0.796984,0.604,-1e-06,-0.796984,0.604,-1e-06,-0.796984,0.604,-0,-0.796988,0.603995,-0,-0.796988,0.603995,-0,-0.796985,0.603999,-0,-0.796985,0.603999,-0,-0.796985,0.603999,-0,-0.796989,0.603994,-0,-0.796989,0.603994,-0,-0.796989,0.603994,-0,-0.796987,0.603996,-0,-0.796987,0.603996,-0,-0.796987,0.603996,-0,-0.796979,0.604008,-0,-0.796979,0.604008,-0,-0.796979,0.604008,-1e-06,-0.796981,0.604004,-1e-06,-0.796981,0.604004,-1e-06,-0.796981,0.604004,1e-06,-0.796973,0.604015,1e-06,-0.796973,0.604015,1e-06,-0.796973,0.604015,0,-0.796993,0.603989,0,-0.796993,0.603989,0,-0.796993,0.603989,0,-0.796983,0.604001,0,-0.796983,0.604001,0,-0.796983,0.604001,-0,-0.796993,0.603988,-0,-0.796993,0.603988,-0,-0.796993,0.603988,-0,-0.796988,0.603995,-0,-0.796988,0.603995,-0,-0.796988,0.603995,-0,-0.796989,0.603993,-0,-0.796989,0.603993,-0,-0.796989,0.603993,0,-0.796983,0.604002,0,-0.796983,0.604002,0,-0.796983,0.604002,0,-0.796986,0.603997,0,-0.796986,0.603997,0,-0.796986,0.603997,1e-06,-0.796987,0.603996,1e-06,-0.796987,0.603996,1e-06,-0.796987,0.603996,-0,-0.796987,0.603996,-0,-0.796987,0.603996,-0,-0.796987,0.603996,-0,-0.796987,0.603996,0,-0.796986,0.603998,0,-0.796986,0.603998,0,-0.796986,0.603998,0,-0.796984,0.604001,0,-0.796984,0.604001,0,-0.796984,0.604001,2.2e-05,-0.796992,0.60399,2.2e-05,-0.796992,0.60399,2.2e-05,-0.796992,0.60399,-1e-06,-0.796987,0.603996,-1e-06,-0.796987,0.603996,-1e-06,-0.796987,0.603996,-1e-06,-0.796987,0.603996,1e-06,-0.796988,0.603995,1e-06,-0.796988,0.603995,1e-06,-0.796988,0.603995,-4e-06,-0.797009,0.603967,-4e-06,-0.797009,0.603967,-4e-06,-0.797009,0.603967,1e-06,-0.796982,0.604004,1e-06,-0.796982,0.604004,1e-06,-0.796982,0.604004,1e-06,-0.796985,0.603999,1e-06,-0.796985,0.603999,1e-06,-0.796985,0.603999,1e-06,-0.796987,0.603997,1e-06,-0.796987,0.603997,1e-06,-0.796987,0.603997,2e-06,-0.796986,0.603998,2e-06,-0.796986,0.603998,2e-06,-0.796986,0.603998,2e-06,-0.796986,0.603998,3e-06,-0.796996,0.603985,3e-06,-0.796996,0.603985,3e-06,-0.796996,0.603985,1e-06,-0.796989,0.603994,1e-06,-0.796989,0.603994,1e-06,-0.796989,0.603994,6e-06,-0.796974,0.604014,6e-06,-0.796974,0.604014,6e-06,-0.796974,0.604014,-0,-0.796986,0.603998,-0,-0.796986,0.603998,-0,-0.796986,0.603998,2e-06,-0.797018,0.603956,2e-06,-0.797018,0.603956,2e-06,-0.797018,0.603956,-1e-05,-0.796966,0.604024,-1e-05,-0.796966,0.604024,-1e-05,-0.796966,0.604024,5e-06,-0.796999,0.603981,5e-06,-0.796999,0.603981,5e-06,-0.796999,0.603981,4e-06,-0.796969,0.60402,4e-06,-0.796969,0.60402,4e-06,-0.796969,0.60402,-0,-0.796988,0.603995,-0,-0.796988,0.603995,-0,-0.796988,0.603995,-1e-06,-0.79699,0.603992,-1e-06,-0.79699,0.603992,-1e-06,-0.79699,0.603992,0,-0.796987,0.603997,0,-0.796987,0.603997,0,-0.796987,0.603997,7e-06,-0.796988,0.603995,7e-06,-0.796988,0.603995,7e-06,-0.796988,0.603995,9e-06,-0.796995,0.603986,9e-06,-0.796995,0.603986,9e-06,-0.796995,0.603986,0,-0.796978,0.604008,0,-0.796978,0.604008,0,-0.796978,0.604008,-1e-06,-0.796996,0.603985,-1e-06,-0.796996,0.603985,-1e-06,-0.796996,0.603985,0,-0.796979,0.604007,0,-0.796979,0.604007,0,-0.796979,0.604007,0,-0.796987,0.603996,0,-0.796987,0.603996,0,-0.796987,0.603996,-1e-06,-0.79699,0.603992,-1e-06,-0.79699,0.603992,7e-06,-0.796959,0.604033,7e-06,-0.796959,0.604033,7e-06,-0.796959,0.604033,-1e-06,-0.796986,0.603998,-1e-06,-0.796986,0.603998,-1e-06,-0.796986,0.603998,-3e-06,-0.79699,0.603993,-3e-06,-0.79699,0.603993,-3e-06,-0.79699,0.603993,4e-06,-0.796993,0.603989,4e-06,-0.796993,0.603989,4e-06,-0.796993,0.603989,0,-0.796986,0.603997,0,-0.796986,0.603997,0,-0.796986,0.603997,0,-0.796987,0.603997,0,-0.796987,0.603997,0,-0.796987,0.603997,2e-06,-0.796986,0.603998,2e-06,-0.796986,0.603998,2e-06,-0.796986,0.603998,0,-0.796984,0.604,0,-0.796984,0.604,0,-0.796984,0.604,1e-06,-0.796992,0.60399,1e-06,-0.796992,0.60399,1e-06,-0.796992,0.60399,2e-06,-0.796998,0.603983,2e-06,-0.796998,0.603983,2e-06,-0.796998,0.603983,-2e-06,-0.796985,0.603999,-2e-06,-0.796985,0.603999,-2e-06,-0.796985,0.603999,1e-06,-0.796991,0.603991,1e-06,-0.796991,0.603991,1e-06,-0.796991,0.603991,-7e-06,-0.797014,0.603961,-7e-06,-0.797014,0.603961,-7e-06,-0.797014,0.603961,0,-0.796987,0.603997,-0,-0.796991,0.603992,-0,-0.796991,0.603992,-0,-0.796991,0.603992,1.7e-05,-0.796999,0.603981,1.7e-05,-0.796999,0.603981,1.7e-05,-0.796999,0.603981,2e-06,-0.796982,0.604003,2e-06,-0.796982,0.604003,2e-06,-0.796982,0.604003,1e-06,-0.796989,0.603994,1e-06,-0.796989,0.603994,1e-06,-0.796989,0.603994,1e-06,-0.796973,0.604015,1e-06,-0.796973,0.604015,1e-06,-0.796973,0.604015,-1e-06,-0.797109,0.603836,-1e-06,-0.797109,0.603836,-1e-06,-0.797109,0.603836,7e-06,-0.796988,0.603996,7e-06,-0.796988,0.603996,7e-06,-0.796988,0.603996,0,-0.796989,0.603994,0,-0.796989,0.603994,0,-0.796989,0.603994,1e-06,-0.796989,0.603994,1e-06,-0.796989,0.603994,2e-06,-0.796987,0.603997,2e-06,-0.796987,0.603997,2e-06,-0.796987,0.603997,-1e-06,-0.796989,0.603994,-1e-06,-0.796989,0.603994,-1e-06,-0.796989,0.603994,2e-06,-0.796991,0.603992,2e-06,-0.796991,0.603992,2e-06,-0.796991,0.603992,1e-06,-0.796986,0.603998,1e-06,-0.796986,0.603998,1e-06,-0.796986,0.603998,3e-06,-0.796985,0.604,3e-06,-0.796985,0.604,3e-06,-0.796985,0.604,4e-06,-0.796986,0.603998,4e-06,-0.796986,0.603998,4e-06,-0.796986,0.603998,1e-06,-0.796986,0.603998,-1e-05,-0.797009,0.603968,-1e-05,-0.797009,0.603968,-1e-05,-0.797009,0.603968,2e-06,-0.796989,0.603994,2e-06,-0.796989,0.603994,2e-06,-0.796989,0.603994,2e-06,-0.796987,0.603997,2e-06,-0.796987,0.603997,2e-06,-0.796987,0.603997,-2e-06,-0.796985,0.604,-2e-06,-0.796985,0.604,-2e-06,-0.796985,0.604,1e-06,-0.796986,0.603997,1e-06,-0.796986,0.603997,1e-06,-0.796986,0.603997,-2e-06,-0.796981,0.604005,-2e-06,-0.796981,0.604005,-2e-06,-0.796981,0.604005,4e-06,-0.796988,0.603995,4e-06,-0.796988,0.603995,4e-06,-0.796988,0.603995,3e-06,-0.796988,0.603996,3e-06,-0.796988,0.603996,3e-06,-0.796988,0.603996,3e-06,-0.796989,0.603994,3e-06,-0.796989,0.603994,3e-06,-0.796989,0.603994,-2e-06,-0.796987,0.603996,-2e-06,-0.796987,0.603996,-2e-06,-0.796987,0.603996,-0.000269,-0.79703,0.60394,-0.000269,-0.79703,0.60394,-0.000269,-0.79703,0.60394,9e-06,-0.79698,0.604006,9e-06,-0.79698,0.604006,9e-06,-0.79698,0.604006,-0.00062,-0.796979,0.604007,-0.00062,-0.796979,0.604007,-0.00062,-0.796979,0.604007,-0.000193,-0.797041,0.603926,-0.000193,-0.797041,0.603926,-0.000193,-0.797041,0.603926,-0.000789,-0.797099,0.603848,-0.000789,-0.797099,0.603848,-0.000789,-0.797099,0.603848,-0,-0.796986,0.603998,-0,-0.796986,0.603998,-0,-0.796986,0.603998,8e-06,-0.796988,0.603994,8e-06,-0.796988,0.603994,8e-06,-0.796988,0.603994,1e-06,-0.796987,0.603996,1e-06,-0.796987,0.603996,1e-06,-0.796987,0.603996,5e-06,-0.796991,0.603991,5e-06,-0.796991,0.603991,5e-06,-0.796991,0.603991,-3e-06,-0.796987,0.603996,-3e-06,-0.796987,0.603996,-3e-06,-0.796987,0.603996,1e-06,-0.796987,0.603997,1e-06,-0.796987,0.603997,1e-06,-0.796987,0.603997,-1e-06,-0.79699,0.603993,-1e-06,-0.79699,0.603993,-1e-06,-0.79699,0.603993,0,-0.796987,0.603997,0,-0.796987,0.603997,0,-0.796987,0.603997,-1e-05,-0.796981,0.604005,-1e-05,-0.796981,0.604005,-1e-05,-0.796981,0.604005,1e-06,-0.796987,0.603996,-1.5e-05,-0.796988,0.603995,-1.5e-05,-0.796988,0.603995,-1.5e-05,-0.796988,0.603995,2.4e-05,-0.796973,0.604015,2.4e-05,-0.796973,0.604015,2.4e-05,-0.796973,0.604015,4e-06,-0.796987,0.603996,4e-06,-0.796987,0.603996,4e-06,-0.796987,0.603996,-0,-0.796987,0.603997,2e-06,-0.796989,0.603993,2e-06,-0.796989,0.603993,2e-06,-0.796989,0.603993,5e-06,-0.796987,0.603997,5e-06,-0.796987,0.603997,5e-06,-0.796987,0.603997,1e-06,-0.796987,0.603997,1e-06,-0.796987,0.603997,1e-06,-0.796987,0.603997,1e-06,-0.796987,0.603996,1e-06,-0.796987,0.603996,1e-06,-0.796987,0.603996,-4e-06,-0.796985,0.603999,-4e-06,-0.796985,0.603999,-4e-06,-0.796985,0.603999,-8e-06,-0.796987,0.603997,-8e-06,-0.796987,0.603997,-8e-06,-0.796987,0.603997,0,-0.796986,0.603998,0,-0.796986,0.603998,0,-0.796986,0.603998,-2e-06,-0.796986,0.603997,-2e-06,-0.796986,0.603997,-2e-06,-0.796986,0.603997,-3e-06,-0.796985,0.603999,-3e-06,-0.796985,0.603999,-3e-06,-0.796985,0.603999,-4e-06,-0.796983,0.604001,-4e-06,-0.796983,0.604001,-4e-06,-0.796983,0.604001,2e-06,-0.796991,0.603992,2e-06,-0.796991,0.603992,2e-06,-0.796991,0.603992,0,-0.796987,0.603997,0,-0.796987,0.603997,0,-0.796987,0.603997,9e-06,-0.796989,0.603994,9e-06,-0.796989,0.603994,9e-06,-0.796989,0.603994,2e-06,-0.796992,0.60399,2e-06,-0.796992,0.60399,2e-06,-0.796992,0.60399,-0,-0.796986,0.603998,-0,-0.796986,0.603998,-0,-0.796986,0.603998,2e-06,-0.796991,0.603991,2e-06,-0.796991,0.603991,2e-06,-0.796991,0.603991,2e-06,-0.79699,0.603993,2e-06,-0.79699,0.603993,2e-06,-0.79699,0.603993,2e-06,-0.79699,0.603992,2e-06,-0.79699,0.603992,2e-06,-0.79699,0.603992,2e-06,-0.79699,0.603992,-0,-0.796992,0.60399,-0,-0.796992,0.60399,-0,-0.796992,0.60399,-1e-06,-0.79697,0.604019,-1e-06,-0.79697,0.604019,-1e-06,-0.79697,0.604019,4e-06,-0.796974,0.604014,4e-06,-0.796974,0.604014,4e-06,-0.796974,0.604014,2e-06,-0.796988,0.603996,2e-06,-0.796988,0.603996,2e-06,-0.796988,0.603996,-3e-06,-0.796994,0.603987,-3e-06,-0.796994,0.603987,-3e-06,-0.796994,0.603987,1e-06,-0.796991,0.603992,1e-06,-0.796991,0.603992,1e-06,-0.796991,0.603992,-8e-06,-0.796988,0.603995,-8e-06,-0.796988,0.603995,-8e-06,-0.796988,0.603995,3e-06,-0.796985,0.603999,3e-06,-0.796985,0.603999,3e-06,-0.796985,0.603999,2e-06,-0.796986,0.603998,2e-06,-0.796986,0.603998,2e-06,-0.796986,0.603998,-1e-06,-0.79701,0.603966,-1e-06,-0.79701,0.603966,-1e-06,-0.79701,0.603966,4e-06,-0.796985,0.603999,4e-06,-0.796985,0.603999,4e-06,-0.796985,0.603999,1e-06,-0.796988,0.603995,1e-06,-0.796988,0.603995,1e-06,-0.796988,0.603995,3e-06,-0.796987,0.603996,3e-06,-0.796987,0.603996,3e-06,-0.796987,0.603996,3e-06,-0.796998,0.603982,3e-06,-0.796998,0.603982,3e-06,-0.796998,0.603982,2e-06,-0.796989,0.603994,2e-06,-0.796989,0.603994,2e-06,-0.796989,0.603994,-0,-0.796987,0.603997,-0,-0.796987,0.603997,-0,-0.796987,0.603997,-0,-0.796988,0.603996,-0,-0.796988,0.603996,-0,-0.796988,0.603996,0,-0.796986,0.603998,0,-0.796986,0.603998,0,-0.796986,0.603998,-4e-06,-0.796996,0.603985,-4e-06,-0.796996,0.603985,-4e-06,-0.796996,0.603985,2e-06,-0.796987,0.603997,2e-06,-0.796987,0.603997,2e-06,-0.796987,0.603997,3e-06,-0.79699,0.603993,3e-06,-0.79699,0.603993,3e-06,-0.79699,0.603993,2e-06,-0.796993,0.603988,2e-06,-0.796993,0.603988,2e-06,-0.796993,0.603988,2e-06,-0.796936,0.604063,2e-06,-0.796936,0.604063,2e-06,-0.796936,0.604063,-1e-06,-0.796986,0.603998,-1e-06,-0.796986,0.603998,-1e-06,-0.796986,0.603998,-2e-06,-0.796988,0.603996,-2e-06,-0.796988,0.603996,-2e-06,-0.796988,0.603996,-3e-06,-0.796996,0.603985,-3e-06,-0.796996,0.603985,-3e-06,-0.796996,0.603985,-3e-06,-0.796988,0.603995,-3e-06,-0.796988,0.603995,-3e-06,-0.796988,0.603995,-0,-0.796989,0.603994,-0,-0.796989,0.603994,-0,-0.796989,0.603994,2e-06,-0.796982,0.604003,2e-06,-0.796982,0.604003,2e-06,-0.796982,0.604003,-5e-06,-0.797002,0.603977,-5e-06,-0.797002,0.603977,-5e-06,-0.797002,0.603977,-1.9e-05,-0.796988,0.603995,-1.9e-05,-0.796988,0.603995,-1.9e-05,-0.796988,0.603995,1e-06,-0.796962,0.604029,1e-06,-0.796962,0.604029,1e-06,-0.796962,0.604029,3e-06,-0.79699,0.603993,6e-06,-0.79698,0.604005,6e-06,-0.79698,0.604005,6e-06,-0.79698,0.604005,-0,-0.796971,0.604017,-0,-0.796971,0.604017,-0,-0.796971,0.604017,-1e-06,-0.796993,0.603989,-1e-06,-0.796993,0.603989,-1e-06,-0.796993,0.603989,1e-06,-0.796984,0.604,1e-06,-0.796984,0.604,1e-06,-0.796984,0.604,0,-0.797003,0.603976,0,-0.797003,0.603976,0,-0.797003,0.603976,0,-0.796981,0.604005,0,-0.796981,0.604005,0,-0.796981,0.604005,-0,-0.796989,0.603994,-0,-0.796989,0.603994,-0,-0.796989,0.603994,-0,-0.796988,0.603995,-0,-0.796988,0.603995,-0,-0.796988,0.603995,-0,-0.796985,0.603999,-0,-0.796985,0.603999,-0,-0.796985,0.603999,-0,-0.796988,0.603996,-0,-0.796988,0.603996,-0,-0.796988,0.603996,-0,-0.796984,0.604001,-0,-0.796984,0.604001,-0,-0.796984,0.604001,-1e-06,-0.796987,0.603996,-1e-06,-0.796987,0.603996,-1e-06,-0.796987,0.603996,-0,-0.796987,0.603996,-0,-0.796987,0.603996,-0,-0.796987,0.603996,-0,-0.796987,0.603996,1e-06,-0.796995,0.603986,1e-06,-0.796995,0.603986,1e-06,-0.796995,0.603986,0,-0.796987,0.603997,0,-0.796987,0.603997,0,-0.796987,0.603997,-3.4e-05,-0.796981,0.604004,-3.4e-05,-0.796981,0.604004,-3.4e-05,-0.796981,0.604004,1e-06,-0.796987,0.603996,1e-06,-0.796987,0.603996,1e-06,-0.796987,0.603996,-4e-06,-0.796981,0.604005,-4e-06,-0.796981,0.604005,-4e-06,-0.796981,0.604005,6e-06,-0.796992,0.60399,6e-06,-0.796992,0.60399,6e-06,-0.796992,0.60399,-2e-06,-0.79698,0.604006,-2e-06,-0.79698,0.604006,-2e-06,-0.79698,0.604006,2e-06,-0.797005,0.603973,2e-06,-0.797005,0.603973,2e-06,-0.797005,0.603973,1e-06,-0.796994,0.603987,1e-06,-0.796994,0.603987,1e-06,-0.796994,0.603987,6e-06,-0.79695,0.604045,6e-06,-0.79695,0.604045,6e-06,-0.79695,0.604045,3e-06,-0.796996,0.603984,3e-06,-0.796996,0.603984,3e-06,-0.796996,0.603984,5e-06,-0.796995,0.603986,5e-06,-0.796995,0.603986,5e-06,-0.796995,0.603986,-1.9e-05,-0.796978,0.604008,-1.9e-05,-0.796978,0.604008,-1.9e-05,-0.796978,0.604008,-9e-06,-0.796986,0.603997,-9e-06,-0.796986,0.603997,-9e-06,-0.796986,0.603997,2.1e-05,-0.796981,0.604005,2.1e-05,-0.796981,0.604005,2.1e-05,-0.796981,0.604005,1.1e-05,-0.797051,0.603912,1.1e-05,-0.797051,0.603912,1.1e-05,-0.797051,0.603912,-3e-06,-0.796969,0.60402,-3e-06,-0.796969,0.60402,-3e-06,-0.796969,0.60402,-4e-06,-0.796977,0.60401,-4e-06,-0.796977,0.60401,-4e-06,-0.796977,0.60401,2e-06,-0.796998,0.603982,2e-06,-0.796998,0.603982,2e-06,-0.796998,0.603982,2e-06,-0.796996,0.603985,2e-06,-0.796996,0.603985,2e-06,-0.796996,0.603985,2e-06,-0.796992,0.60399,2e-06,-0.796992,0.60399,2e-06,-0.796992,0.60399,-4e-06,-0.796961,0.604031,-4e-06,-0.796961,0.604031,-4e-06,-0.796961,0.604031,5e-06,-0.796992,0.60399,5e-06,-0.796992,0.60399,5e-06,-0.796992,0.60399,-3e-06,-0.796982,0.604004,-3e-06,-0.796982,0.604004,-3e-06,-0.796982,0.604004,1e-06,-0.796983,0.604001,1e-06,-0.796983,0.604001,1e-06,-0.796983,0.604001,-1e-06,-0.796986,0.603998,-1e-06,-0.796986,0.603998,-1e-06,-0.796986,0.603998,1e-06,-0.796983,0.604002,1e-06,-0.796983,0.604002,1e-06,-0.796983,0.604002,-3e-06,-0.796983,0.604001,-3e-06,-0.796983,0.604001,-3e-06,-0.796983,0.604001,1e-06,-0.797,0.603979,1e-06,-0.797,0.603979,1e-06,-0.797,0.603979,-5e-06,-0.796988,0.603995,-5e-06,-0.796988,0.603995,-5e-06,-0.796988,0.603995,1e-06,-0.796996,0.603985,1e-06,-0.796996,0.603985,1e-06,-0.796996,0.603985,-2e-06,-0.796989,0.603994,-2e-06,-0.796989,0.603994,-2e-06,-0.796989,0.603994,1e-06,-0.796979,0.604007,1e-06,-0.796979,0.604007,1e-06,-0.796979,0.604007,-0,-0.79699,0.603993,-0,-0.79699,0.603993,-0,-0.79699,0.603993,3e-06,-0.796989,0.603994,3e-06,-0.796989,0.603994,3e-06,-0.796989,0.603994,-0,-0.796989,0.603994,-0,-0.796989,0.603994,-0,-0.796989,0.603994,-2e-06,-0.796988,0.603995,-2e-06,-0.796988,0.603995,-2e-06,-0.796988,0.603995,-1.2e-05,-0.796974,0.604013,-1.2e-05,-0.796974,0.604013,-1.2e-05,-0.796974,0.604013,0,-0.796987,0.603996,0,-0.796987,0.603996,0,-0.796987,0.603996,2e-06,-0.796987,0.603996,2e-06,-0.796987,0.603996,2e-06,-0.796987,0.603996,-1e-06,-0.796989,0.603994,-1e-06,-0.796989,0.603994,-1e-06,-0.796989,0.603994,1e-05,-0.796988,0.603995,1e-05,-0.796988,0.603995,1e-05,-0.796988,0.603995,-4e-06,-0.796992,0.60399,-4e-06,-0.796992,0.60399,-4e-06,-0.796992,0.60399,2e-06,-0.796998,0.603981,2e-06,-0.796998,0.603981,2e-06,-0.796998,0.603981,-0,-0.796985,0.603999,-0,-0.796985,0.603999,-0,-0.796985,0.603999,-1.2e-05,-0.796951,0.604044,-1.2e-05,-0.796951,0.604044,-1.2e-05,-0.796951,0.604044,1e-06,-0.79699,0.603992,1e-06,-0.79699,0.603992,1e-06,-0.79699,0.603992,2e-06,-0.796987,0.603996,-0,-0.796987,0.603996,-0,-0.796987,0.603996,-4e-06,-0.796982,0.604003,-4e-06,-0.796982,0.604003,-4e-06,-0.796982,0.604003,-7e-06,-0.796991,0.603991,-7e-06,-0.796991,0.603991,-7e-06,-0.796991,0.603991,-2e-06,-0.796986,0.603998,-2e-06,-0.796986,0.603998,-2e-06,-0.796986,0.603998,1.4e-05,-0.796992,0.60399,1.4e-05,-0.796992,0.60399,1.4e-05,-0.796992,0.60399,1e-06,-0.796987,0.603996,1e-06,-0.796987,0.603996,1e-06,-0.796987,0.603996,-3e-06,-0.796989,0.603994,-3e-06,-0.796989,0.603994,-3e-06,-0.796989,0.603994,-4e-06,-0.796987,0.603997,-4e-06,-0.796987,0.603997,-4e-06,-0.796987,0.603997,-6e-06,-0.796989,0.603994,-6e-06,-0.796989,0.603994,-6e-06,-0.796989,0.603994,1e-06,-0.796984,0.604,1e-06,-0.796984,0.604,1e-06,-0.796984,0.604,-6e-06,-0.796987,0.603997,-6e-06,-0.796987,0.603997,-6e-06,-0.796987,0.603997,-2e-06,-0.796985,0.603999,-2e-06,-0.796985,0.603999,-2e-06,-0.796985,0.603999,1e-06,-0.796985,0.603999,1e-06,-0.796985,0.603999,1e-06,-0.796985,0.603999,6e-06,-0.796981,0.604004,6e-06,-0.796981,0.604004,6e-06,-0.796981,0.604004,-4e-06,-0.79699,0.603992,-4e-06,-0.79699,0.603992,-4e-06,-0.79699,0.603992,1e-06,-0.796985,0.603999,-2e-06,-0.796983,0.604002,-2e-06,-0.796983,0.604002,-2e-06,-0.796983,0.604002,9e-06,-0.796987,0.603997,9e-06,-0.796987,0.603997,9e-06,-0.796987,0.603997,-2e-06,-0.796988,0.603996,-2e-06,-0.796988,0.603996,-2e-06,-0.796988,0.603996,-2e-06,-0.796985,0.604,-2e-06,-0.796985,0.604,-2e-06,-0.796985,0.604,1e-06,-0.796984,0.604,1e-06,-0.796984,0.604,1e-06,-0.796984,0.604,-3e-06,-0.796991,0.603991,-3e-06,-0.796991,0.603991,-3e-06,-0.796991,0.603991,-3e-06,-0.797002,0.603976,-3e-06,-0.797002,0.603976,-3e-06,-0.797002,0.603976,5e-06,-0.796957,0.604035,5e-06,-0.796957,0.604035,5e-06,-0.796957,0.604035,-1e-05,-0.79699,0.603992,-1e-05,-0.79699,0.603992,-1e-05,-0.79699,0.603992,-3e-06,-0.796993,0.603989,-3e-06,-0.796993,0.603989,-3e-06,-0.796993,0.603989,-1e-06,-0.796987,0.603996,-1.2e-05,-0.796991,0.603991,-1.2e-05,-0.796991,0.603991,-1.2e-05,-0.796991,0.603991,-1e-06,-0.797002,0.603977,-1e-06,-0.797002,0.603977,-1e-06,-0.797002,0.603977,2e-06,-0.796987,0.603997,2e-06,-0.796987,0.603997,2e-06,-0.796987,0.603997,-1e-06,-0.796987,0.603996,-3e-06,-0.796988,0.603995,-3e-06,-0.796988,0.603995,-3e-06,-0.796988,0.603995,-0,-0.796987,0.603996,-0,-0.796987,0.603996,-0,-0.796987,0.603996,-4e-06,-0.796987,0.603997,-4e-06,-0.796987,0.603997,-4e-06,-0.796987,0.603997,-7e-06,-0.796989,0.603994,-7e-06,-0.796989,0.603994,-7e-06,-0.796989,0.603994,-1.1e-05,-0.796987,0.603996,-1.1e-05,-0.796987,0.603996,-1.1e-05,-0.796987,0.603996,-1e-05,-0.796987,0.603997,-1e-05,-0.796987,0.603997,-1e-05,-0.796987,0.603997,-6e-06,-0.796985,0.603999,-6e-06,-0.796985,0.603999,-6e-06,-0.796985,0.603999,-1e-05,-0.796989,0.603994,-1e-05,-0.796989,0.603994,-1e-05,-0.796989,0.603994,-1e-05,-0.796989,0.603994,-4e-06,-0.796986,0.603998,-4e-06,-0.796986,0.603998,-4e-06,-0.796986,0.603998,-2e-06,-0.796984,0.604001,-2e-06,-0.796984,0.604001,-2e-06,-0.796984,0.604001,9e-06,-0.796989,0.603994,9e-06,-0.796989,0.603994,9e-06,-0.796989,0.603994,-3e-06,-0.79699,0.603992,-3e-06,-0.79699,0.603992,-3e-06,-0.79699,0.603992,2e-06,-0.796989,0.603994,2e-06,-0.796989,0.603994,2e-06,-0.796989,0.603994,2e-06,-0.796989,0.603994,2e-06,-0.796989,0.603994,2e-06,-0.796989,0.603994,1.2e-05,-0.796996,0.603985,1.2e-05,-0.796996,0.603985,1.2e-05,-0.796996,0.603985,-6e-06,-0.796987,0.603997,-6e-06,-0.796987,0.603997,-6e-06,-0.796987,0.603997,-2.7e-05,-0.796958,0.604034,-2.7e-05,-0.796958,0.604034,-2.7e-05,-0.796958,0.604034,-3e-06,-0.796985,0.603999,-3e-06,-0.796985,0.603999,-3e-06,-0.796985,0.603999,-5e-06,-0.796987,0.603997,-5e-06,-0.796987,0.603997,-5e-06,-0.796987,0.603997,0,-0.796984,0.604001,0,-0.796984,0.604001,0,-0.796984,0.604001,-2e-06,-0.796985,0.603999,-2e-06,-0.796985,0.603999,-2e-06,-0.796985,0.603999,-0,-0.796986,0.603998,-0,-0.796986,0.603998,-0,-0.796986,0.603998,-1.8e-05,-0.796991,0.603991,-1.8e-05,-0.796991,0.603991,-1.8e-05,-0.796991,0.603991,-4e-06,-0.796984,0.604001,-4e-06,-0.796984,0.604001,-4e-06,-0.796984,0.604001,-0,-0.796987,0.603997,-0,-0.796987,0.603997,-0,-0.796987,0.603997,-1.6e-05,-0.796985,0.603999,-1.6e-05,-0.796985,0.603999,-1.6e-05,-0.796985,0.603999,-6e-06,-0.796992,0.60399,-6e-06,-0.796992,0.60399,-6e-06,-0.796992,0.60399,-7e-06,-0.796991,0.603991,-7e-06,-0.796991,0.603991,-7e-06,-0.796991,0.603991,0,-0.796989,0.603994,0,-0.796989,0.603994,0,-0.796989,0.603994,-1.1e-05,-0.796987,0.603996,-1.1e-05,-0.796987,0.603996,-1.1e-05,-0.796987,0.603996,-0,-0.796989,0.603994,-0,-0.796989,0.603994,-0,-0.796989,0.603994,-1e-06,-0.796986,0.603998,-1e-06,-0.796986,0.603998,-1e-06,-0.796986,0.603998,-9e-06,-0.797015,0.603959,-9e-06,-0.797015,0.603959,-9e-06,-0.797015,0.603959,2e-06,-0.796985,0.603999,2e-06,-0.796985,0.603999,2e-06,-0.796985,0.603999,-2e-06,-0.796989,0.603994,-2e-06,-0.796989,0.603994,-2e-06,-0.796989,0.603994,-0,-0.79698,0.604006,-0,-0.79698,0.604006,-0,-0.79698,0.604006,3e-06,-0.797024,0.603948,3e-06,-0.797024,0.603948,3e-06,-0.797024,0.603948,0,-0.79698,0.604006,0,-0.79698,0.604006,0,-0.79698,0.604006,6e-06,-0.796991,0.603991,6e-06,-0.796991,0.603991,6e-06,-0.796991,0.603991,-0,-0.796982,0.604003,-0,-0.796982,0.604003,-0,-0.796982,0.604003,-0,-0.796984,0.604,-0,-0.796984,0.604,-0,-0.796984,0.604,0,-0.796986,0.603997,0,-0.796986,0.603997,0,-0.796986,0.603997,0,-0.796986,0.603997,2e-06,-0.796979,0.604007,2e-06,-0.796979,0.604007,2e-06,-0.796979,0.604007,0,-0.797011,0.603964,0,-0.797011,0.603964,0,-0.797011,0.603964,-0,-0.796925,0.604079,-0,-0.796925,0.604079,-0,-0.796925,0.604079,1e-06,-0.796954,0.60404,1e-06,-0.796954,0.60404,1e-06,-0.796954,0.60404,1.7e-05,-0.797526,0.603284,1.7e-05,-0.797526,0.603284,1.7e-05,-0.797526,0.603284,0,-0.796983,0.604002,0,-0.796983,0.604002,0,-0.796983,0.604002,5e-06,-0.796991,0.603991,5e-06,-0.796991,0.603991,5e-06,-0.796991,0.603991,1e-06,-0.796988,0.603996,1e-06,-0.796988,0.603996,1e-06,-0.796988,0.603996,5e-06,-0.796984,0.604,5e-06,-0.796984,0.604,5e-06,-0.796984,0.604,-0,-0.796991,0.603992,-0,-0.796991,0.603992,-0,-0.796991,0.603992,5e-06,-0.79699,0.603992,5e-06,-0.79699,0.603992,5e-06,-0.79699,0.603992,0,-0.79715,0.603781,0,-0.79715,0.603781,0,-0.79715,0.603781,4e-06,-0.796962,0.60403,4e-06,-0.796962,0.60403,4e-06,-0.796962,0.60403,-9e-06,-0.796931,0.60407,-9e-06,-0.796931,0.60407,-9e-06,-0.796931,0.60407,6e-06,-0.796985,0.603999,6e-06,-0.796985,0.603999,6e-06,-0.796985,0.603999,5e-06,-0.796934,0.604067,5e-06,-0.796934,0.604067,5e-06,-0.796934,0.604067,1e-06,-0.796989,0.603994,1e-06,-0.796989,0.603994,1e-06,-0.796989,0.603994,2e-06,-0.79699,0.603992,2e-06,-0.79699,0.603992,2e-06,-0.79699,0.603992,-2e-06,-0.796988,0.603995,-2e-06,-0.796988,0.603995,-2e-06,-0.796988,0.603995,0.000134,-0.797529,0.60328,0.000134,-0.797529,0.60328,0.000134,-0.797529,0.60328,9e-06,-0.796983,0.604002,9e-06,-0.796983,0.604002,9e-06,-0.796983,0.604002,-0,-0.796992,0.603989,-0,-0.796992,0.603989,-0,-0.796992,0.603989,-1e-06,-0.796985,0.603999,-1e-06,-0.796985,0.603999,-1e-06,-0.796985,0.603999,-1e-06,-0.796972,0.604017,-1e-06,-0.796972,0.604017,-1e-06,-0.796972,0.604017,1e-06,-0.796994,0.603987,1e-06,-0.796994,0.603987,1e-06,-0.796994,0.603987,-2e-06,-0.796992,0.603989,-2e-06,-0.796992,0.603989,-2e-06,-0.796992,0.603989,-2e-06,-0.797005,0.603972,-2e-06,-0.797005,0.603972,-2e-06,-0.797005,0.603972,-1.5e-05,-0.797033,0.603935,-1.5e-05,-0.797033,0.603935,-1.5e-05,-0.797033,0.603935,1.5e-05,-0.796982,0.604002,1.5e-05,-0.796982,0.604002,1.5e-05,-0.796982,0.604002,-6e-06,-0.796978,0.604008,-6e-06,-0.796978,0.604008,-6e-06,-0.796978,0.604008,3e-06,-0.796987,0.603996,3e-06,-0.796987,0.603996,3e-06,-0.796987,0.603996,1e-06,-0.796977,0.604009,1e-06,-0.796977,0.604009,1e-06,-0.796977,0.604009,3e-06,-0.796982,0.604003,3e-06,-0.796982,0.604003,3e-06,-0.796982,0.604003,1e-06,-0.796986,0.603999,1e-06,-0.796986,0.603999,1e-06,-0.796986,0.603999,2e-06,-0.796978,0.604008,2e-06,-0.796978,0.604008,2e-06,-0.796978,0.604008,1e-06,-0.79703,0.603939,1e-06,-0.79703,0.603939,1e-06,-0.79703,0.603939,-5e-06,-0.796991,0.603991,-5e-06,-0.796991,0.603991,-5e-06,-0.796991,0.603991,-8e-06,-0.79701,0.603966,-8e-06,-0.79701,0.603966,-8e-06,-0.79701,0.603966,1e-06,-0.796979,0.604007,1e-06,-0.796979,0.604007,1e-06,-0.796979,0.604007,-3e-06,-0.796984,0.604,-3e-06,-0.796984,0.604,-3e-06,-0.796984,0.604,-1.1e-05,-0.796986,0.603998,-1.1e-05,-0.796986,0.603998,-1.1e-05,-0.796986,0.603998,2.3e-05,-0.797025,0.603947,2.3e-05,-0.797025,0.603947,2.3e-05,-0.797025,0.603947,-5e-06,-0.796979,0.604008,-5e-06,-0.796979,0.604008,-5e-06,-0.796979,0.604008,-1e-06,-0.796989,0.603994,-1e-06,-0.796989,0.603994,-1e-06,-0.796989,0.603994,-2e-06,-0.796987,0.603996,-2e-06,-0.796987,0.603996,-2e-06,-0.796987,0.603996,-9e-06,-0.79699,0.603992,-9e-06,-0.79699,0.603992,-9e-06,-0.79699,0.603992,-1e-06,-0.796997,0.603984,-1e-06,-0.796997,0.603984,-1e-06,-0.796997,0.603984,1.5e-05,-0.796981,0.604004,1.5e-05,-0.796981,0.604004,1.5e-05,-0.796981,0.604004,-1.1e-05,-0.796957,0.604036,-1.1e-05,-0.796957,0.604036,-1.1e-05,-0.796957,0.604036,0,-0.798355,0.602188,0,-0.798355,0.602188,0,-0.798355,0.602188,-2e-06,-0.797053,0.603909,-2e-06,-0.797053,0.603909,-2e-06,-0.797053,0.603909,9e-06,-0.797006,0.603972,9e-06,-0.797006,0.603972,9e-06,-0.797006,0.603972,3e-06,-0.796988,0.603995,3e-06,-0.796988,0.603995,3e-06,-0.796988,0.603995,-0,-0.796991,0.603991,-0,-0.796991,0.603991,-0,-0.796991,0.603991,0.000372,-0.788485,0.615053,0.000372,-0.788485,0.615053,0.000372,-0.788485,0.615053,4e-06,-0.796978,0.604008,4e-06,-0.796978,0.604008,4e-06,-0.796978,0.604008,2e-06,-0.797035,0.603934,2e-06,-0.797035,0.603934,2e-06,-0.797035,0.603934,-1e-06,-0.796975,0.604013,-1e-06,-0.796975,0.604013,-1e-06,-0.796975,0.604013,1e-06,-0.796984,0.604,1e-06,-0.796984,0.604,1e-06,-0.796984,0.604,-2e-06,-0.796991,0.603991,-2e-06,-0.796991,0.603991,-2e-06,-0.796991,0.603991,3e-06,-0.797009,0.603967,3e-06,-0.797009,0.603967,3e-06,-0.797009,0.603967,-0,-0.796964,0.604026,-0,-0.796964,0.604026,-0,-0.796964,0.604026,3e-06,-0.79699,0.603992,3e-06,-0.79699,0.603992,3e-06,-0.79699,0.603992,3e-06,-0.797011,0.603965,3e-06,-0.797011,0.603965,3e-06,-0.797011,0.603965,-0,-0.796983,0.604002,-0,-0.796983,0.604002,-0,-0.796983,0.604002,-2e-06,-0.796962,0.604029,-2e-06,-0.796962,0.604029,-2e-06,-0.796962,0.604029,1e-06,-0.797002,0.603976,1e-06,-0.797002,0.603976,1e-06,-0.797002,0.603976,-1e-06,-0.796992,0.60399,-1e-06,-0.796992,0.60399,-1e-06,-0.796992,0.60399,-6e-06,-0.796968,0.604021,-6e-06,-0.796968,0.604021,-6e-06,-0.796968,0.604021,1e-06,-0.796989,0.603994,1e-06,-0.796989,0.603994,1e-06,-0.796989,0.603994,0,-0.796979,0.604007,0,-0.796979,0.604007,0,-0.796979,0.604007,-1e-06,-0.796984,0.604,-1e-06,-0.796984,0.604,-1e-06,-0.796984,0.604,0,-0.79699,0.603992,0,-0.79699,0.603992,0,-0.79699,0.603992,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,1e-06,-0.797007,0.60397,1e-06,-0.797007,0.60397,1e-06,-0.797007,0.60397,3e-06,-0.796984,0.604,3e-06,-0.796984,0.604,3e-06,-0.796984,0.604,-1e-06,-0.796978,0.604008,-1e-06,-0.796978,0.604008,-1e-06,-0.796978,0.604008,3e-06,-0.796991,0.603992,3e-06,-0.796991,0.603992,3e-06,-0.796991,0.603992,3e-06,-0.796989,0.603994,3e-06,-0.796989,0.603994,3e-06,-0.796989,0.603994,3e-06,-0.796988,0.603995,3e-06,-0.796988,0.603995,3e-06,-0.796988,0.603995,0,-0.796978,0.604008,0,-0.796978,0.604008,0,-0.796978,0.604008,2e-06,-0.796984,0.604,2e-06,-0.796984,0.604,2e-06,-0.796984,0.604,2e-06,-0.796984,0.604,-0,-0.796989,0.603993,-0,-0.796989,0.603993,-0,-0.796989,0.603993,-0,-0.796987,0.603996,-0,-0.796987,0.603996,-0,-0.796987,0.603996,1e-06,-0.796992,0.60399,1e-06,-0.796992,0.60399,1e-06,-0.796992,0.60399,-0,-0.796986,0.603998,-0,-0.796986,0.603998,-0,-0.796986,0.603998,1e-06,-0.796989,0.603994,1e-06,-0.796989,0.603994,1e-06,-0.796989,0.603994,1e-06,-0.796987,0.603997,1e-06,-0.796987,0.603997,1e-06,-0.796987,0.603997,-1e-06,-0.796987,0.603996,-1e-06,-0.796987,0.603996,-1e-06,-0.796987,0.603996,-1e-06,-0.796987,0.603996,3e-06,-0.796988,0.603996,3e-06,-0.796988,0.603996,3e-06,-0.796988,0.603996,1e-06,-0.796987,0.603996,1e-06,-0.796987,0.603996,1e-06,-0.796987,0.603996,-3e-06,-0.796981,0.604005,-3e-06,-0.796981,0.604005,-3e-06,-0.796981,0.604005,-4e-06,-0.796995,0.603987,-4e-06,-0.796995,0.603987,-4e-06,-0.796995,0.603987,0,-0.796983,0.604002,0,-0.796983,0.604002,0,-0.796983,0.604002,-0,-0.796987,0.603996,-0,-0.796987,0.603996,-0,-0.796987,0.603996,1e-06,-0.796988,0.603995,1e-06,-0.796988,0.603995,1e-06,-0.796988,0.603995,1.4e-05,-0.797136,0.6038,1.4e-05,-0.797136,0.6038,1.4e-05,-0.797136,0.6038,1e-06,-0.796986,0.603998,1e-06,-0.796986,0.603998,1e-06,-0.796986,0.603998,5e-06,-0.796981,0.604005,5e-06,-0.796981,0.604005,5e-06,-0.796981,0.604005,2e-06,-0.796986,0.603998,2e-06,-0.796986,0.603998,2e-06,-0.796986,0.603998,1e-06,-0.796987,0.603996,1e-06,-0.796987,0.603996,1e-06,-0.796987,0.603996,0,-0.796987,0.603996,0,-0.796987,0.603996,0,-0.796987,0.603996,-9e-06,-0.796996,0.603984,-9e-06,-0.796996,0.603984,-9e-06,-0.796996,0.603984,0,-0.79699,0.603993,0,-0.79699,0.603993,0,-0.79699,0.603993,0,-0.796987,0.603997,0,-0.796987,0.603997,0,-0.796987,0.603997,-1.8e-05,-0.796988,0.603996,-1.8e-05,-0.796988,0.603996,-1.8e-05,-0.796988,0.603996,4e-06,-0.796993,0.603988,4e-06,-0.796993,0.603988,4e-06,-0.796993,0.603988,1e-06,-0.796984,0.604,1e-06,-0.796984,0.604,1e-06,-0.796984,0.604,2e-06,-0.796981,0.604004,2e-06,-0.796981,0.604004,2e-06,-0.796981,0.604004,-3e-06,-0.796959,0.604034,-3e-06,-0.796959,0.604034,-3e-06,-0.796959,0.604034,2e-06,-0.796985,0.603999,2e-06,-0.796985,0.603999,2e-06,-0.796985,0.603999,-2e-06,-0.796989,0.603993,-2e-06,-0.796989,0.603993,-2e-06,-0.796989,0.603993,2e-06,-0.796992,0.60399,2e-06,-0.796992,0.60399,2e-06,-0.796992,0.60399,2e-06,-0.796994,0.603988,2e-06,-0.796994,0.603988,2e-06,-0.796994,0.603988,2e-06,-0.796988,0.603996,2e-06,-0.796988,0.603996,2e-06,-0.796988,0.603996,-1e-06,-0.796987,0.603996,-1e-06,-0.796987,0.603996,-1e-06,-0.796987,0.603996,-0,-0.796984,0.604001,-0,-0.796984,0.604001,-0,-0.796984,0.604001,0,-0.797004,0.603974,0,-0.797004,0.603974,0,-0.797004,0.603974,2e-06,-0.796992,0.603989,2e-06,-0.796992,0.603989,2e-06,-0.796992,0.603989,-2e-06,-0.796991,0.603991,-2e-06,-0.796991,0.603991,-2e-06,-0.796991,0.603991,-3e-06,-0.79699,0.603993,-3e-06,-0.79699,0.603993,-3e-06,-0.79699,0.603993,0,-0.796985,0.604,0,-0.796985,0.604,0,-0.796985,0.604,-0,-0.796986,0.603998,-0,-0.796986,0.603998,-0,-0.796986,0.603998,-3e-06,-0.79699,0.603993,-0,-0.796986,0.603998,-2e-06,-0.796991,0.603992,-2e-06,-0.796991,0.603992,-2e-06,-0.796991,0.603992,-5e-06,-0.796988,0.603995,-5e-06,-0.796988,0.603995,-5e-06,-0.796988,0.603995,1e-06,-0.796985,0.603999,1e-06,-0.796985,0.603999,1e-06,-0.796985,0.603999,-6e-06,-0.796987,0.603997,-6e-06,-0.796987,0.603997,-6e-06,-0.796987,0.603997,-1e-06,-0.796983,0.604002,-1e-06,-0.796983,0.604002,-1e-06,-0.796983,0.604002,2e-06,-0.796986,0.603998,2e-06,-0.796986,0.603998,2e-06,-0.796986,0.603998,-2e-06,-0.79699,0.603993,-2e-06,-0.79699,0.603993,-2e-06,-0.79699,0.603993,2e-06,-0.796988,0.603995,2e-06,-0.796988,0.603995,2e-06,-0.796988,0.603995,-3e-06,-0.796989,0.603993,-3e-06,-0.796989,0.603993,-3e-06,-0.796989,0.603993,-0,-0.796988,0.603996,-0,-0.796988,0.603996,-0,-0.796988,0.603996,-2e-06,-0.79699,0.603992,-2e-06,-0.79699,0.603992,-2e-06,-0.79699,0.603992,-6e-06,-0.796989,0.603994,-6e-06,-0.796989,0.603994,-6e-06,-0.796989,0.603994,3e-06,-0.796988,0.603995,3e-06,-0.796988,0.603995,3e-06,-0.796988,0.603995,9e-06,-0.796986,0.603997,9e-06,-0.796986,0.603997,9e-06,-0.796986,0.603997,1.1e-05,-0.796987,0.603997,1.1e-05,-0.796987,0.603997,1.1e-05,-0.796987,0.603997,-1e-06,-0.796986,0.603997,-1e-06,-0.796986,0.603997,-1e-06,-0.796986,0.603997,-5e-06,-0.796988,0.603995,-5e-06,-0.796988,0.603995,-5e-06,-0.796988,0.603995,-1.4e-05,-0.796984,0.604,-1.4e-05,-0.796984,0.604,-1.4e-05,-0.796984,0.604,-5e-06,-0.796989,0.603994,-5e-06,-0.796989,0.603994,-5e-06,-0.796989,0.603994,8e-06,-0.796987,0.603996,8e-06,-0.796987,0.603996,8e-06,-0.796987,0.603996,4e-06,-0.796987,0.603996,4e-06,-0.796987,0.603996,4e-06,-0.796987,0.603996,0,-0.796986,0.603998,0,-0.796986,0.603998,0,-0.796986,0.603998,1.4e-05,-0.796985,0.603999,1.4e-05,-0.796985,0.603999,1.4e-05,-0.796985,0.603999,3e-06,-0.796988,0.603995,3e-06,-0.796988,0.603995,3e-06,-0.796988,0.603995,8e-06,-0.796987,0.603996,8e-06,-0.796987,0.603996,8e-06,-0.796987,0.603996,1.3e-05,-0.796989,0.603994,1.3e-05,-0.796989,0.603994,1.3e-05,-0.796989,0.603994,2.1e-05,-0.796991,0.603991,2.1e-05,-0.796991,0.603991,2.1e-05,-0.796991,0.603991,-1e-06,-0.796986,0.603998,-1e-06,-0.796986,0.603998,-1e-06,-0.796986,0.603998,-2.3e-05,-0.79697,0.60402,-2.3e-05,-0.79697,0.60402,-2.3e-05,-0.79697,0.60402,3e-06,-0.796987,0.603997,3e-06,-0.796987,0.603997,3e-06,-0.796987,0.603997,2e-06,-0.796989,0.603994,2e-06,-0.796989,0.603994,2e-06,-0.796989,0.603994,7e-06,-0.796988,0.603995,7e-06,-0.796988,0.603995,7e-06,-0.796988,0.603995,1e-06,-0.796988,0.603995,1e-06,-0.796988,0.603995,1e-06,-0.796988,0.603995,3e-06,-0.796986,0.603998,3e-06,-0.796986,0.603998,3e-06,-0.796986,0.603998,9e-06,-0.796987,0.603997,9e-06,-0.796987,0.603997,9e-06,-0.796987,0.603997,7e-06,-0.796988,0.603995,0,-0.796981,0.604004,0,-0.796981,0.604004,0,-0.796981,0.604004,8e-06,-0.796988,0.603996,8e-06,-0.796988,0.603996,8e-06,-0.796988,0.603996,2e-06,-0.796978,0.604009,2e-06,-0.796978,0.604009,2e-06,-0.796978,0.604009,-1e-06,-0.796988,0.603995,-1e-06,-0.796988,0.603995,-1e-06,-0.796988,0.603995,2e-06,-0.796995,0.603985,2e-06,-0.796995,0.603985,2e-06,-0.796995,0.603985,-1e-05,-0.79701,0.603967,-1e-05,-0.79701,0.603967,-1e-05,-0.79701,0.603967,-3e-06,-0.796989,0.603994,-3e-06,-0.796989,0.603994,-3e-06,-0.796989,0.603994,1.2e-05,-0.797011,0.603965,1.2e-05,-0.797011,0.603965,1.2e-05,-0.797011,0.603965,-6e-06,-0.796992,0.60399,-6e-06,-0.796992,0.60399,-6e-06,-0.796992,0.60399,-5e-06,-0.796981,0.604004,-5e-06,-0.796981,0.604004,-5e-06,-0.796981,0.604004,-3e-06,-0.797,0.603979,-3e-06,-0.797,0.603979,-3e-06,-0.797,0.603979,-1e-05,-0.796985,0.603999,-1e-05,-0.796985,0.603999,-1e-05,-0.796985,0.603999,3e-06,-0.796976,0.604011,3e-06,-0.796976,0.604011,3e-06,-0.796976,0.604011,2e-06,-0.796944,0.604053,2e-06,-0.796944,0.604053,2e-06,-0.796944,0.604053,9e-06,-0.79701,0.603966,9e-06,-0.79701,0.603966,9e-06,-0.79701,0.603966,2e-06,-0.796988,0.603995,2e-06,-0.796988,0.603995,2e-06,-0.796988,0.603995,-4e-06,-0.796968,0.604021,-4e-06,-0.796968,0.604021,-4e-06,-0.796968,0.604021,0,-0.796991,0.603991,0,-0.796991,0.603991,0,-0.796991,0.603991,-1e-06,-0.796985,0.603999,-1e-06,-0.796985,0.603999,-1e-06,-0.796985,0.603999,1e-06,-0.796988,0.603995,1e-06,-0.796988,0.603995,1e-06,-0.796988,0.603995,1e-06,-0.796986,0.603998,1e-06,-0.796986,0.603998,1e-06,-0.796986,0.603998,-7e-06,-0.796983,0.604001,-7e-06,-0.796983,0.604001,-7e-06,-0.796983,0.604001,1e-06,-0.796998,0.603981,1e-06,-0.796998,0.603981,1e-06,-0.796998,0.603981,5e-06,-0.796928,0.604074,5e-06,-0.796928,0.604074,5e-06,-0.796928,0.604074,-2e-06,-0.797009,0.603967,-2e-06,-0.797009,0.603967,-2e-06,-0.797009,0.603967,0,-0.796984,0.604,0,-0.796984,0.604,0,-0.796984,0.604,6e-06,-0.796985,0.603999,6e-06,-0.796985,0.603999,6e-06,-0.796985,0.603999,1.3e-05,-0.796998,0.603982,1.3e-05,-0.796998,0.603982,1.3e-05,-0.796998,0.603982,6e-06,-0.796982,0.604003,6e-06,-0.796982,0.604003,6e-06,-0.796982,0.604003,-1e-05,-0.796989,0.603994,-1e-05,-0.796989,0.603994,-1e-05,-0.796989,0.603994,-1e-06,-0.796987,0.603997,-1e-06,-0.796987,0.603997,-1e-06,-0.796987,0.603997,-7e-06,-0.796989,0.603994,-7e-06,-0.796989,0.603994,-7e-06,-0.796989,0.603994,3.2e-05,-0.796977,0.60401,3.2e-05,-0.796977,0.60401,3.2e-05,-0.796977,0.60401,1.3e-05,-0.796988,0.603995,1.3e-05,-0.796988,0.603995,1.3e-05,-0.796988,0.603995,8e-06,-0.796986,0.603998,8e-06,-0.796986,0.603998,8e-06,-0.796986,0.603998,2e-06,-0.79699,0.603993,2e-06,-0.79699,0.603993,2e-06,-0.79699,0.603993,1.7e-05,-0.79699,0.603992,1.7e-05,-0.79699,0.603992,1.7e-05,-0.79699,0.603992,6e-06,-0.796999,0.603981,6e-06,-0.796999,0.603981,6e-06,-0.796999,0.603981,-4e-06,-0.797052,0.603911,-4e-06,-0.797052,0.603911,-4e-06,-0.797052,0.603911,3e-06,-0.796977,0.60401,3e-06,-0.796977,0.60401,3e-06,-0.796977,0.60401,-6e-06,-0.796983,0.604002,-6e-06,-0.796983,0.604002,-6e-06,-0.796983,0.604002,-4e-06,-0.796985,0.603999,-4e-06,-0.796985,0.603999,-4e-06,-0.796985,0.603999,6e-06,-0.796998,0.603982,6e-06,-0.796998,0.603982,6e-06,-0.796998,0.603982,3.2e-05,-0.796945,0.604052,3.2e-05,-0.796945,0.604052,3.2e-05,-0.796945,0.604052,2e-06,-0.796981,0.604005,2e-06,-0.796981,0.604005,2e-06,-0.796981,0.604005,1.2e-05,-0.797009,0.603967,1.2e-05,-0.797009,0.603967,1.2e-05,-0.797009,0.603967,-3e-06,-0.796982,0.604003,-3e-06,-0.796982,0.604003,-3e-06,-0.796982,0.604003,-3e-06,-0.796992,0.60399,-3e-06,-0.796992,0.60399,-3e-06,-0.796992,0.60399,-3e-06,-0.796977,0.60401,-3e-06,-0.796977,0.60401,-3e-06,-0.796977,0.60401,5e-06,-0.79699,0.603993,5e-06,-0.79699,0.603993,5e-06,-0.79699,0.603993,1e-06,-0.796999,0.60398,1e-06,-0.796999,0.60398,1e-06,-0.796999,0.60398,7e-06,-0.797007,0.603971,7e-06,-0.797007,0.603971,7e-06,-0.797007,0.603971,-5e-06,-0.796985,0.603999,-5e-06,-0.796985,0.603999,-5e-06,-0.796985,0.603999,1.3e-05,-0.797072,0.603884,1.3e-05,-0.797072,0.603884,1.3e-05,-0.797072,0.603884,-2e-06,-0.796975,0.604012,-2e-06,-0.796975,0.604012,-2e-06,-0.796975,0.604012,-1e-06,-0.796987,0.603996,-1e-06,-0.796987,0.603996,-1e-06,-0.796987,0.603996,-0,-0.796979,0.604007,-0,-0.796979,0.604007,-0,-0.796979,0.604007,-2e-06,-0.796966,0.604024,-2e-06,-0.796966,0.604024,-2e-06,-0.796966,0.604024,6e-06,-0.796992,0.60399,6e-06,-0.796992,0.60399,6e-06,-0.796992,0.60399,7e-06,-0.797082,0.603871,7e-06,-0.797082,0.603871,7e-06,-0.797082,0.603871,-5e-06,-0.796991,0.603991,-5e-06,-0.796991,0.603991,-5e-06,-0.796991,0.603991,0,-0.797016,0.603958,0,-0.797016,0.603958,0,-0.797016,0.603958,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,8e-06,-0.796991,0.603991,8e-06,-0.796991,0.603991,8e-06,-0.796991,0.603991,0,-0.796967,0.604023,0,-0.796967,0.604023,0,-0.796967,0.604023,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-0.796976,0.604012,0,-0.796976,0.604012,0,-0.796976,0.604012,-1e-06,-0.796985,0.604,-1e-06,-0.796985,0.604,-1e-06,-0.796985,0.604,-1e-06,-0.796992,0.60399,-1e-06,-0.796992,0.60399,-1e-06,-0.796992,0.60399,-0,-0.796986,0.603998,-0,-0.796986,0.603998,-0,-0.796986,0.603998,-0,-0.796985,0.604,-0,-0.796985,0.604,-0,-0.796985,0.604,-0,-0.796987,0.603997,-0,-0.796987,0.603997,-0,-0.796987,0.603997,-0,-0.796984,0.604,-0,-0.796984,0.604,-0,-0.796984,0.604,1e-06,-0.796974,0.604013,1e-06,-0.796974,0.604013,1e-06,-0.796974,0.604013,-1e-05,-0.797223,0.603684,-1e-05,-0.797223,0.603684,-1e-05,-0.797223,0.603684,2e-06,-0.797057,0.603904,2e-06,-0.797057,0.603904,2e-06,-0.797057,0.603904,4e-06,-0.797002,0.603977,4e-06,-0.797002,0.603977,4e-06,-0.797002,0.603977,-1e-06,-0.796993,0.603989,-1e-06,-0.796993,0.603989,-1e-06,-0.796993,0.603989,-2e-06,-0.796987,0.603997,-2e-06,-0.796987,0.603997,-2e-06,-0.796987,0.603997,-1e-06,-0.796988,0.603995,-1e-06,-0.796988,0.603995,-1e-06,-0.796988,0.603995,0,-0.796987,0.603997,0,-0.796987,0.603997,1e-06,-0.796979,0.604007,1e-06,-0.796979,0.604007,1e-06,-0.796979,0.604007,2e-06,-0.796997,0.603984,2e-06,-0.796997,0.603984,2e-06,-0.796997,0.603984,1e-06,-0.796989,0.603994,1e-06,-0.796989,0.603994,1e-06,-0.796989,0.603994,0,-0.797,0.603979,0,-0.797,0.603979,0,-0.797,0.603979,-1e-06,-0.796999,0.603981,-1e-06,-0.796999,0.603981,-1e-06,-0.796999,0.603981,-2e-06,-0.796985,0.603999,-2e-06,-0.796985,0.603999,-2e-06,-0.796985,0.603999,0,-0.796991,0.603991,0,-0.796991,0.603991,0,-0.796991,0.603991,-1e-06,-0.796987,0.603996,-1e-06,-0.796987,0.603996,-1e-06,-0.796987,0.603996,1e-06,-0.796988,0.603995,1e-06,-0.796988,0.603995,1e-06,-0.796988,0.603995,1.4e-05,-0.796979,0.604007,1.4e-05,-0.796979,0.604007,1.4e-05,-0.796979,0.604007,0,-0.796985,0.603999,0,-0.796985,0.603999,0,-0.796985,0.603999,-3e-06,-0.796984,0.604001,-3e-06,-0.796984,0.604001,-3e-06,-0.796984,0.604001,1e-06,-0.796986,0.603997,1e-06,-0.796986,0.603997,1e-06,-0.796986,0.603997,-1e-06,-0.796983,0.604002,-1e-06,-0.796983,0.604002,-1e-06,-0.796983,0.604002,3e-06,-0.796991,0.603992,3e-06,-0.796991,0.603992,3e-06,-0.796991,0.603992,7e-06,-0.797017,0.603956,7e-06,-0.797017,0.603956,7e-06,-0.797017,0.603956,0,-0.796989,0.603994,0,-0.796989,0.603994,0,-0.796989,0.603994,2e-06,-0.796984,0.604,2e-06,-0.796984,0.604,2e-06,-0.796984,0.604,1e-06,-0.796983,0.604002,1e-06,-0.796983,0.604002,1e-06,-0.796983,0.604002,-0,-0.796995,0.603986,-0,-0.796995,0.603986,-0,-0.796995,0.603986,1e-06,-0.796982,0.604004,1e-06,-0.796982,0.604004,1e-06,-0.796982,0.604004,0,-0.796988,0.603995,0,-0.796988,0.603995,0,-0.796988,0.603995,2e-06,-0.796984,0.604001,2e-06,-0.796984,0.604001,2e-06,-0.796984,0.604001,1e-06,-0.797002,0.603976,1e-06,-0.797002,0.603976,1e-06,-0.797002,0.603976,-0,-0.796989,0.603994,0,-0.79697,0.604019,0,-0.79697,0.604019,0,-0.79697,0.604019,-1e-06,-0.796999,0.603981,-1e-06,-0.796999,0.603981,-1e-06,-0.796999,0.603981,-1e-06,-0.796969,0.60402,-1e-06,-0.796969,0.60402,-1e-06,-0.796969,0.60402,-0,-0.796998,0.603982,-0,-0.796998,0.603982,-0,-0.796998,0.603982,0,-0.796996,0.603985,0,-0.796996,0.603985,0,-0.796996,0.603985,1e-06,-0.796987,0.603996,1e-06,-0.796987,0.603996,1e-06,-0.796987,0.603996,1.6e-05,-0.79698,0.604006,1.6e-05,-0.79698,0.604006,1.6e-05,-0.79698,0.604006,-1e-06,-0.796988,0.603995,-1e-06,-0.796988,0.603995,-1e-06,-0.796988,0.603995,4e-06,-0.796987,0.603996,4e-06,-0.796987,0.603996,4e-06,-0.796987,0.603996,1e-06,-0.796987,0.603997,1e-06,-0.796987,0.603997,1e-06,-0.796987,0.603997,-0,-0.79695,0.604045,-0,-0.79695,0.604045,-0,-0.79695,0.604045,1e-06,-0.796964,0.604027,1e-06,-0.796964,0.604027,1e-06,-0.796964,0.604027,-1e-06,-0.797008,0.603969,-1e-06,-0.797008,0.603969,-1e-06,-0.797008,0.603969,1e-06,-0.796988,0.603995,1e-06,-0.796988,0.603995,1e-06,-0.796988,0.603995,1.3e-05,-0.796991,0.603991,1.3e-05,-0.796991,0.603991,1.3e-05,-0.796991,0.603991,-8e-06,-0.796967,0.604023,-8e-06,-0.796967,0.604023,-8e-06,-0.796967,0.604023,-1e-06,-0.796977,0.604009,-1e-06,-0.796977,0.604009,-1e-06,-0.796977,0.604009,-1e-06,-0.796985,0.603999,-1e-06,-0.796985,0.603999,-1e-06,-0.796985,0.603999,-0,-0.796988,0.603995,-0,-0.796988,0.603995,-0,-0.796988,0.603995,1e-06,-0.796992,0.60399,1e-06,-0.796992,0.60399,1e-06,-0.796992,0.60399,-1e-06,-0.796987,0.603996,-1e-06,-0.796987,0.603996,-1e-06,-0.796987,0.603996,8e-06,-0.79699,0.603993,8e-06,-0.79699,0.603993,8e-06,-0.79699,0.603993,2e-06,-0.796987,0.603996,2e-06,-0.796987,0.603996,2e-06,-0.796987,0.603996,2e-06,-0.796988,0.603996,2e-06,-0.796988,0.603996,2e-06,-0.796988,0.603996,1e-06,-0.796988,0.603995,2e-06,-0.796987,0.603996,2e-06,-0.796987,0.603996,2e-06,-0.796987,0.603996,-1e-06,-0.796989,0.603993,-1e-06,-0.796989,0.603993,-1e-06,-0.796989,0.603993,-1e-06,-0.796988,0.603995,-1e-06,-0.796988,0.603995,-1e-06,-0.796988,0.603995,8e-06,-0.796995,0.603986,8e-06,-0.796995,0.603986,8e-06,-0.796995,0.603986,-1e-06,-0.796989,0.603993,1.1e-05,-0.796995,0.603986,1.1e-05,-0.796995,0.603986,1.1e-05,-0.796995,0.603986,8e-06,-0.796972,0.604016,8e-06,-0.796972,0.604016,8e-06,-0.796972,0.604016,4e-06,-0.796962,0.604029,4e-06,-0.796962,0.604029,4e-06,-0.796962,0.604029,1e-05,-0.796986,0.603997,1e-05,-0.796986,0.603997,1e-05,-0.796986,0.603997,-0,-0.797019,0.603955,-0,-0.797019,0.603955,-0,-0.797019,0.603955,-1e-06,-0.796938,0.604062,-1e-06,-0.796938,0.604062,-1e-06,-0.796938,0.604062,2e-06,-0.796991,0.603991,2e-06,-0.796991,0.603991,2e-06,-0.796991,0.603991,3e-06,-0.796984,0.604,3e-06,-0.796984,0.604,3e-06,-0.796984,0.604,8e-06,-0.796979,0.604007,8e-06,-0.796979,0.604007,8e-06,-0.796979,0.604007,2e-06,-0.796984,0.604001,2e-06,-0.796984,0.604001,2e-06,-0.796984,0.604001,-0,-0.796982,0.604003,-0,-0.796982,0.604003,-0,-0.796982,0.604003,-2e-06,-0.796983,0.604001,-2e-06,-0.796983,0.604001,-2e-06,-0.796983,0.604001,-6e-06,-0.796954,0.60404,-6e-06,-0.796954,0.60404,-6e-06,-0.796954,0.60404,-0,-0.796995,0.603985,-0,-0.796995,0.603985,-0,-0.796995,0.603985,-0,-0.796987,0.603997,-0,-0.796987,0.603997,-0,-0.796987,0.603997,-3e-06,-0.796988,0.603995,-3e-06,-0.796988,0.603995,-3e-06,-0.796988,0.603995,-3e-06,-0.796991,0.603991,-3e-06,-0.796991,0.603991,-3e-06,-0.796991,0.603991,-1e-06,-0.796987,0.603997,-1e-06,-0.796987,0.603997,-1e-06,-0.796987,0.603997,-2e-06,-0.79699,0.603992,-2e-06,-0.79699,0.603992,-2e-06,-0.79699,0.603992,1e-06,-0.796987,0.603997,-1e-06,-0.796988,0.603995,-1e-06,-0.796988,0.603995,-1e-06,-0.796988,0.603995,-2e-06,-0.796982,0.604003,-2e-06,-0.796982,0.604003,-2e-06,-0.796982,0.604003,-1e-06,-0.796979,0.604007,-1e-06,-0.796979,0.604007,-1e-06,-0.796979,0.604007,-0,-0.796986,0.603998,-0,-0.796986,0.603998,-0,-0.796986,0.603998,2e-06,-0.79703,0.603939,2e-06,-0.79703,0.603939,2e-06,-0.79703,0.603939,-2e-06,-0.796999,0.60398,-2e-06,-0.796999,0.60398,-2e-06,-0.796999,0.60398,1e-06,-0.796975,0.604012,1e-06,-0.796975,0.604012,1e-06,-0.796975,0.604012,-0,-0.796987,0.603997,-1e-06,-0.796992,0.60399,-1e-06,-0.796992,0.60399,-1e-06,-0.796992,0.60399,1e-06,-0.796975,0.604012,2e-06,-0.796989,0.603994,2e-06,-0.796989,0.603994,2e-06,-0.796989,0.603994,3e-06,-0.797032,0.603937,3e-06,-0.797032,0.603937,3e-06,-0.797032,0.603937,3e-06,-0.797015,0.60396,3e-06,-0.797015,0.60396,3e-06,-0.797015,0.60396,-2.1e-05,-0.796675,0.604408,-2.1e-05,-0.796675,0.604408,-2.1e-05,-0.796675,0.604408,1e-06,-0.796978,0.604008,1e-06,-0.796978,0.604008,1e-06,-0.796978,0.604008,-5e-06,-0.796992,0.60399,-5e-06,-0.796992,0.60399,-5e-06,-0.796992,0.60399,-1.4e-05,-0.796992,0.60399,-1.4e-05,-0.796992,0.60399,-1.4e-05,-0.796992,0.60399,0,-0.796987,0.603996,0,-0.796987,0.603996,0,-0.796987,0.603996,-1e-06,-0.79699,0.603993,-1e-06,-0.79699,0.603993,-1e-06,-0.79699,0.603993,-3e-06,-0.796986,0.603998,-3e-06,-0.796986,0.603998,-3e-06,-0.796986,0.603998,-1.4e-05,-0.796984,0.604,-1.4e-05,-0.796984,0.604,-1.4e-05,-0.796984,0.604,2e-06,-0.796989,0.603994,-4e-06,-0.796988,0.603995,-4e-06,-0.796988,0.603995,-4e-06,-0.796988,0.603995,-1e-06,-0.796987,0.603997,-1e-06,-0.796987,0.603997,-1e-06,-0.796987,0.603997,-5e-06,-0.796988,0.603995,-5e-06,-0.796988,0.603995,-5e-06,-0.796988,0.603995,8e-06,-0.796991,0.603992,8e-06,-0.796991,0.603992,8e-06,-0.796991,0.603992,2e-06,-0.796987,0.603996,2e-06,-0.796987,0.603996,2e-06,-0.796987,0.603996,-7e-06,-0.796989,0.603994,-7e-06,-0.796989,0.603994,-7e-06,-0.796989,0.603994,-1e-06,-0.796987,0.603997,-1e-06,-0.796987,0.603997,-1e-06,-0.796987,0.603997,-0,-0.796987,0.603996,-0,-0.796987,0.603996,-0,-0.796987,0.603996,2e-06,-0.796986,0.603998,2e-06,-0.796986,0.603998,2e-06,-0.796986,0.603998,-2e-06,-0.796989,0.603994,-2e-06,-0.796989,0.603994,-2e-06,-0.796989,0.603994,-7e-06,-0.796981,0.604005,-7e-06,-0.796981,0.604005,-7e-06,-0.796981,0.604005,8e-06,-0.796987,0.603996,8e-06,-0.796987,0.603996,8e-06,-0.796987,0.603996,-7e-06,-0.796981,0.604005,5e-06,-0.796987,0.603996,5e-06,-0.796987,0.603996,5e-06,-0.796987,0.603996,-2e-06,-0.796988,0.603995,-2e-06,-0.796988,0.603995,-2e-06,-0.796988,0.603995,2e-06,-0.796983,0.604001,2e-06,-0.796983,0.604001,2e-06,-0.796983,0.604001,0,-0.796987,0.603997,0,-0.796987,0.603997,0,-0.796987,0.603997,-4e-06,-0.797002,0.603977,-4e-06,-0.797002,0.603977,-4e-06,-0.797002,0.603977,3e-06,-0.796986,0.603998,3e-06,-0.796986,0.603998,3e-06,-0.796986,0.603998,7e-06,-0.797009,0.603967,7e-06,-0.797009,0.603967,7e-06,-0.797009,0.603967,-1e-05,-0.796989,0.603994,-1e-05,-0.796989,0.603994,-1e-05,-0.796989,0.603994,1e-05,-0.796968,0.604021,1e-05,-0.796968,0.604021,1e-05,-0.796968,0.604021,0,-0.796989,0.603994,0,-0.796989,0.603994,0,-0.796989,0.603994,-3e-06,-0.796994,0.603987,-3e-06,-0.796994,0.603987,-3e-06,-0.796994,0.603987,2e-06,-0.796982,0.604003,2e-06,-0.796982,0.604003,2e-06,-0.796982,0.604003,-1e-05,-0.796989,0.603994,1.7e-05,-0.797001,0.603978,1.7e-05,-0.797001,0.603978,1.7e-05,-0.797001,0.603978,0,-0.796986,0.603998,0,-0.796986,0.603998,0,-0.796986,0.603998,0,-0.796989,0.603994,0,-0.796989,0.603994,0,-0.796989,0.603994,1.8e-05,-0.796979,0.604007,1.8e-05,-0.796979,0.604007,1.8e-05,-0.796979,0.604007,1.4e-05,-0.796996,0.603985,1.4e-05,-0.796996,0.603985,1.4e-05,-0.796996,0.603985,1.5e-05,-0.796976,0.604011,1.5e-05,-0.796976,0.604011,1.5e-05,-0.796976,0.604011,-2e-06,-0.796988,0.603995,-2e-06,-0.796988,0.603995,-2e-06,-0.796988,0.603995,-3e-06,-0.796992,0.60399,-3e-06,-0.796992,0.60399,-3e-06,-0.796992,0.60399,-3e-06,-0.796991,0.603991,-3e-06,-0.796991,0.603991,-3e-06,-0.796991,0.603991,0,-0.796986,0.603998,-2e-06,-0.796988,0.603995,-1e-05,-0.796982,0.604003,-1e-05,-0.796982,0.604003,-1e-05,-0.796982,0.604003,1e-05,-0.796987,0.603997,1e-05,-0.796987,0.603997,1e-05,-0.796987,0.603997,0,-0.796985,0.603999,0,-0.796985,0.603999,0,-0.796985,0.603999,1e-06,-0.796991,0.603992,1e-06,-0.796991,0.603992,1e-06,-0.796991,0.603992,2e-06,-0.79701,0.603966,2e-06,-0.79701,0.603966,2e-06,-0.79701,0.603966,1e-06,-0.79702,0.603952,1e-06,-0.79702,0.603952,1e-06,-0.79702,0.603952,-3e-05,-0.797,0.603979,-3e-05,-0.797,0.603979,-3e-05,-0.797,0.603979,9e-06,-0.796986,0.603997,9e-06,-0.796986,0.603997,9e-06,-0.796986,0.603997,7e-06,-0.796988,0.603996,7e-06,-0.796988,0.603996,7e-06,-0.796988,0.603996,1.1e-05,-0.796974,0.604013,1.1e-05,-0.796974,0.604013,1.1e-05,-0.796974,0.604013,2e-06,-0.796967,0.604023,2e-06,-0.796967,0.604023,2e-06,-0.796967,0.604023,-8e-06,-0.796982,0.604003,-8e-06,-0.796982,0.604003,-8e-06,-0.796982,0.604003,5e-06,-0.797,0.603979,5e-06,-0.797,0.603979,5e-06,-0.797,0.603979,1e-06,-0.796986,0.603997,1e-06,-0.796986,0.603997,1e-06,-0.796986,0.603997,-1e-06,-0.796968,0.604021,-1e-06,-0.796968,0.604021,-1e-06,-0.796968,0.604021,1.2e-05,-0.79697,0.604018,1.2e-05,-0.79697,0.604018,1.2e-05,-0.79697,0.604018,-3e-06,-0.796988,0.603996,-3e-06,-0.796988,0.603996,-3e-06,-0.796988,0.603996,-4e-06,-0.797016,0.603958,-4e-06,-0.797016,0.603958,-4e-06,-0.797016,0.603958,-9e-06,-0.797057,0.603904,-9e-06,-0.797057,0.603904,-9e-06,-0.797057,0.603904,-1e-06,-0.796883,0.604134,-1e-06,-0.796883,0.604134,-1e-06,-0.796883,0.604134,-3.9e-05,-0.793552,0.608503,-3.9e-05,-0.793552,0.608503,-3.9e-05,-0.793552,0.608503,-2e-06,-0.796988,0.603995,-2e-06,-0.796988,0.603995,-2e-06,-0.796988,0.603995,-3e-06,-0.796994,0.603987,-3e-06,-0.796994,0.603987,-3e-06,-0.796994,0.603987,-6e-06,-0.796984,0.604,-6e-06,-0.796984,0.604,-6e-06,-0.796984,0.604,-1.2e-05,-0.796986,0.603997,-1.2e-05,-0.796986,0.603997,-1.2e-05,-0.796986,0.603997,-5e-06,-0.796991,0.603991,-5e-06,-0.796991,0.603991,-5e-06,-0.796991,0.603991,3e-06,-0.796995,0.603986,3e-06,-0.796995,0.603986,3e-06,-0.796995,0.603986,-0,-0.796991,0.603992,-0,-0.796991,0.603992,-0,-0.796991,0.603992,-2e-06,-0.796991,0.603991,-2e-06,-0.796991,0.603991,-2e-06,-0.796991,0.603991,7e-06,-0.79701,0.603967,7e-06,-0.79701,0.603967,7e-06,-0.79701,0.603967,0,-0.796986,0.603998,0,-0.796986,0.603998,-1.1e-05,-0.796993,0.603988,-1.1e-05,-0.796993,0.603988,-1.1e-05,-0.796993,0.603988,1e-05,-0.796999,0.603981,1e-05,-0.796999,0.603981,1e-05,-0.796999,0.603981,-7e-06,-0.796988,0.603995,-7e-06,-0.796988,0.603995,-7e-06,-0.796988,0.603995,1.5e-05,-0.797032,0.603938,1.5e-05,-0.797032,0.603938,1.5e-05,-0.797032,0.603938,-3e-06,-0.796972,0.604016,-3e-06,-0.796972,0.604016,-3e-06,-0.796972,0.604016,-1e-06,-0.796988,0.603995,-1e-06,-0.796988,0.603995,-1e-06,-0.796988,0.603995,5e-06,-0.796994,0.603987,5e-06,-0.796994,0.603987,5e-06,-0.796994,0.603987,-0,-0.796985,0.603998,-0,-0.796985,0.603998,-0,-0.796985,0.603998,2e-06,-0.796971,0.604018,2e-06,-0.796971,0.604018,2e-06,-0.796971,0.604018,2e-06,-0.796985,0.603999,2e-06,-0.796985,0.603999,2e-06,-0.796985,0.603999,-3e-06,-0.796982,0.604003,-3e-06,-0.796982,0.604003,-3e-06,-0.796982,0.604003,-9e-06,-0.797033,0.603936,-9e-06,-0.797033,0.603936,-9e-06,-0.797033,0.603936,-1.4e-05,-0.797114,0.603828,-1.4e-05,-0.797114,0.603828,-1.4e-05,-0.797114,0.603828,1e-06,-0.796974,0.604013,1e-06,-0.796974,0.604013,1e-06,-0.796974,0.604013,-0,-0.796984,0.604,-0,-0.796984,0.604,-0,-0.796984,0.604,1e-06,-0.796982,0.604004,1e-06,-0.796982,0.604004,1e-06,-0.796982,0.604004,4e-06,-0.796996,0.603985,4e-06,-0.796996,0.603985,4e-06,-0.796996,0.603985,-1e-06,-0.796986,0.603997,-1e-06,-0.796986,0.603997,-1e-06,-0.796986,0.603997,-0,-0.79699,0.603993,-0,-0.79699,0.603993,-0,-0.79699,0.603993,0,-0.796986,0.603998,0,-0.796986,0.603998,0,-0.796986,0.603998,-1e-06,-0.796983,0.604001,-1e-06,-0.796983,0.604001,-1e-06,-0.796983,0.604001,1e-06,-0.796987,0.603996,1e-06,-0.796987,0.603996,1e-06,-0.796987,0.603996,0,-0.796989,0.603993,0,-0.796989,0.603993,0,-0.796989,0.603993,-1e-06,-0.796993,0.603989,-1e-06,-0.796993,0.603989,-1e-06,-0.796993,0.603989,0,-0.796985,0.604,0,-0.796985,0.604,0,-0.796985,0.604,0,-0.796987,0.603997,0,-0.796987,0.603997,0,-0.796987,0.603997,0,-0.796987,0.603996,0,-0.796987,0.603996,0,-0.796987,0.603996,1e-06,-0.796989,0.603994,1e-06,-0.796989,0.603994,1e-06,-0.796989,0.603994,0,-0.796985,0.604,0,-0.796985,0.604,0,-0.796985,0.604,-0,-0.796989,0.603994,-0,-0.796989,0.603994,-0,-0.796989,0.603994,-0,-0.796985,0.603999,-0,-0.796985,0.603999,-0,-0.796985,0.603999,-0,-0.796985,0.603999,1e-06,-0.79699,0.603993,1e-06,-0.79699,0.603993,1e-06,-0.79699,0.603993,0,-0.796981,0.604005,0,-0.796981,0.604005,0,-0.796981,0.604005,-0,-0.796991,0.603991,-0,-0.796991,0.603991,-0,-0.796991,0.603991,-0,-0.796988,0.603995,-0,-0.796988,0.603995,-0,-0.796988,0.603995,0,-0.796992,0.603989,0,-0.796992,0.603989,0,-0.796992,0.603989,0,-0.79699,0.603992,0,-0.79699,0.603992,0,-0.79699,0.603992,-0,-0.79698,0.604006,-0,-0.79698,0.604006,-0,-0.79698,0.604006,1e-06,-0.796987,0.603996,1e-06,-0.796987,0.603996,1e-06,-0.796987,0.603996,-1e-06,-0.796987,0.603996,-1e-06,-0.796987,0.603996,-1e-06,-0.796987,0.603996,-1e-06,-0.796986,0.603997,-1e-06,-0.796986,0.603997,-1e-06,-0.796986,0.603997,0,-0.796989,0.603993,0,-0.796989,0.603993,0,-0.796989,0.603993,0,-0.796995,0.603987,0,-0.796995,0.603987,0,-0.796995,0.603987,-6.6e-05,-0.796976,0.604011,-6.6e-05,-0.796976,0.604011,-6.6e-05,-0.796976,0.604011,1e-06,-0.796987,0.603996,1e-06,-0.796987,0.603996,1e-06,-0.796987,0.603996,-1e-05,-0.796983,0.604001,-1e-05,-0.796983,0.604001,-1e-05,-0.796983,0.604001,1e-05,-0.797004,0.603974,1e-05,-0.797004,0.603974,1e-05,-0.797004,0.603974,1e-06,-0.796981,0.604004,1e-06,-0.796981,0.604004,1e-06,-0.796981,0.604004,6e-06,-0.797017,0.603957,6e-06,-0.797017,0.603957,6e-06,-0.797017,0.603957,7e-06,-0.796997,0.603984,7e-06,-0.796997,0.603984,7e-06,-0.796997,0.603984,7e-06,-0.796993,0.603988,7e-06,-0.796993,0.603988,7e-06,-0.796993,0.603988,8e-06,-0.796973,0.604015,8e-06,-0.796973,0.604015,8e-06,-0.796973,0.604015,-4e-06,-0.796987,0.603996,-4e-06,-0.796987,0.603996,-4e-06,-0.796987,0.603996,-2.1e-05,-0.796975,0.604013,-2.1e-05,-0.796975,0.604013,-2.1e-05,-0.796975,0.604013,2.3e-05,-0.796985,0.603999,2.3e-05,-0.796985,0.603999,2.3e-05,-0.796985,0.603999,1.8e-05,-0.796986,0.603998,1.8e-05,-0.796986,0.603998,1.8e-05,-0.796986,0.603998,8e-06,-0.796987,0.603996,8e-06,-0.796987,0.603996,8e-06,-0.796987,0.603996,0,-0.797025,0.603946,0,-0.797025,0.603946,0,-0.797025,0.603946,-1e-06,-0.79702,0.603952,-1e-06,-0.79702,0.603952,-1e-06,-0.79702,0.603952,-5e-06,-0.796986,0.603998,-5e-06,-0.796986,0.603998,-5e-06,-0.796986,0.603998,-5e-06,-0.796984,0.604,-5e-06,-0.796984,0.604,-5e-06,-0.796984,0.604,-2e-06,-0.796996,0.603985,-2e-06,-0.796996,0.603985,-2e-06,-0.796996,0.603985,-2e-06,-0.796992,0.60399,-2e-06,-0.796992,0.60399,-2e-06,-0.796992,0.60399,-2e-06,-0.79698,0.604006,-2e-06,-0.79698,0.604006,-2e-06,-0.79698,0.604006,3e-06,-0.797001,0.603979,3e-06,-0.797001,0.603979,3e-06,-0.797001,0.603979,2e-06,-0.796998,0.603982,2e-06,-0.796998,0.603982,2e-06,-0.796998,0.603982,3e-06,-0.797006,0.603971,3e-06,-0.797006,0.603971,3e-06,-0.797006,0.603971,-1e-06,-0.796987,0.603997,-1e-06,-0.796987,0.603997,-1e-06,-0.796987,0.603997,-8e-06,-0.796978,0.604008,-8e-06,-0.796978,0.604008,-8e-06,-0.796978,0.604008,7e-06,-0.796976,0.604011,7e-06,-0.796976,0.604011,7e-06,-0.796976,0.604011,0,-0.797003,0.603975,0,-0.797003,0.603975,0,-0.797003,0.603975,0,-0.796987,0.603996,0,-0.796987,0.603996,0,-0.796987,0.603996,2e-06,-0.796987,0.603997,2e-06,-0.796987,0.603997,2e-06,-0.796987,0.603997,-5e-06,-0.796982,0.604003,-5e-06,-0.796982,0.604003,-5e-06,-0.796982,0.604003,-0,-0.79699,0.603993,-0,-0.79699,0.603993,-0,-0.79699,0.603993,0,-0.796987,0.603996,0,-0.796987,0.603996,0,-0.796987,0.603996,1e-06,-0.796984,0.604001,1e-06,-0.796984,0.604001,1e-06,-0.796984,0.604001,4e-06,-0.79699,0.603993,4e-06,-0.79699,0.603993,4e-06,-0.79699,0.603993,1e-06,-0.796986,0.603998,1e-06,-0.796986,0.603998,1e-06,-0.796986,0.603998,-1.2e-05,-0.796975,0.604013,-1.2e-05,-0.796975,0.604013,-1.2e-05,-0.796975,0.604013,1e-06,-0.796988,0.603995,1e-06,-0.796988,0.603995,1e-06,-0.796988,0.603995,-5e-06,-0.796981,0.604004,-5e-06,-0.796981,0.604004,-5e-06,-0.796981,0.604004,0,-0.796988,0.603995,0,-0.796988,0.603995,0,-0.796988,0.603995,-1.5e-05,-0.796989,0.603993,-1.5e-05,-0.796989,0.603993,-1.5e-05,-0.796989,0.603993,0,-0.796987,0.603997,0,-0.796987,0.603997,0,-0.796987,0.603997,7e-06,-0.796983,0.604002,7e-06,-0.796983,0.604002,7e-06,-0.796983,0.604002,2e-06,-0.796984,0.604001,2e-06,-0.796984,0.604001,2e-06,-0.796984,0.604001,8e-06,-0.796981,0.604005,8e-06,-0.796981,0.604005,8e-06,-0.796981,0.604005,-2e-06,-0.796991,0.603992,-2e-06,-0.796991,0.603992,-2e-06,-0.796991,0.603992,0,-0.796994,0.603988,0,-0.796994,0.603988,0,-0.796994,0.603988,3e-06,-0.796986,0.603998,3e-06,-0.796986,0.603998,3e-06,-0.796986,0.603998,4e-06,-0.796988,0.603995,4e-06,-0.796988,0.603995,4e-06,-0.796988,0.603995,5e-06,-0.796979,0.604008,5e-06,-0.796979,0.604008,5e-06,-0.796979,0.604008,0,-0.79699,0.603993,0,-0.79699,0.603993,0,-0.79699,0.603993,2e-06,-0.796987,0.603996,2e-06,-0.796987,0.603996,2e-06,-0.796987,0.603996,5e-06,-0.79699,0.603992,5e-06,-0.79699,0.603992,5e-06,-0.79699,0.603992,-3e-06,-0.796987,0.603996,-3e-06,-0.796987,0.603996,-3e-06,-0.796987,0.603996,0,-0.796983,0.604002,0,-0.796983,0.604002,0,-0.796983,0.604002,1.1e-05,-0.796964,0.604027,1.1e-05,-0.796964,0.604027,1.1e-05,-0.796964,0.604027,1e-06,-0.796983,0.604002,1e-06,-0.796983,0.604002,1e-06,-0.796983,0.604002,-1e-06,-0.796987,0.603996,-1e-06,-0.796987,0.603996,-1e-06,-0.796987,0.603996,-1e-06,-0.796989,0.603993,-1e-06,-0.796989,0.603993,-1e-06,-0.796989,0.603993,-3e-06,-0.79699,0.603992,-3e-06,-0.79699,0.603992,-3e-06,-0.79699,0.603992,9e-06,-0.796964,0.604027,9e-06,-0.796964,0.604027,9e-06,-0.796964,0.604027,1e-06,-0.796996,0.603985,1e-06,-0.796996,0.603985,1e-06,-0.796996,0.603985,5e-06,-0.796986,0.603998,5e-06,-0.796986,0.603998,5e-06,-0.796986,0.603998,-0,-0.79699,0.603992,-0,-0.79699,0.603992,-0,-0.79699,0.603992,2e-06,-0.79699,0.603992,2e-06,-0.79699,0.603992,2e-06,-0.79699,0.603992,-4e-06,-0.796986,0.603998,-4e-06,-0.796986,0.603998,-4e-06,-0.796986,0.603998,8e-06,-0.79699,0.603992,8e-06,-0.79699,0.603992,8e-06,-0.79699,0.603992,-4e-06,-0.796991,0.603991,-4e-06,-0.796991,0.603991,-4e-06,-0.796991,0.603991,-3e-06,-0.79698,0.604006,-3e-06,-0.79698,0.604006,-3e-06,-0.79698,0.604006,1e-06,-0.796989,0.603994,1e-06,-0.796989,0.603994,1e-06,-0.796989,0.603994,2e-06,-0.796974,0.604014,2e-06,-0.796974,0.604014,2e-06,-0.796974,0.604014,-2e-06,-0.797003,0.603975,-2e-06,-0.797003,0.603975,-2e-06,-0.797003,0.603975,-2e-06,-0.797002,0.603976,-2e-06,-0.797002,0.603976,-2e-06,-0.797002,0.603976,1e-06,-0.796987,0.603996,1e-06,-0.796987,0.603996,1e-06,-0.796987,0.603996,-3e-06,-0.796986,0.603997,-3e-06,-0.796986,0.603997,-3e-06,-0.796986,0.603997,-2.1e-05,-0.796992,0.603989,-2.1e-05,-0.796992,0.603989,-2.1e-05,-0.796992,0.603989,2e-06,-0.796986,0.603998,2e-06,-0.796986,0.603998,2e-06,-0.796986,0.603998,2e-06,-0.796987,0.603996,2e-06,-0.796987,0.603996,2e-06,-0.796987,0.603996,-1.3e-05,-0.796991,0.603991,-1.3e-05,-0.796991,0.603991,-1.3e-05,-0.796991,0.603991,-4e-06,-0.796987,0.603997,-4e-06,-0.796987,0.603997,-4e-06,-0.796987,0.603997,1e-06,-0.796984,0.604001,1e-06,-0.796984,0.604001,1e-06,-0.796984,0.604001,0,-0.796987,0.603996,0,-0.796987,0.603996,0,-0.796987,0.603996,3e-06,-0.796986,0.603997,3e-06,-0.796986,0.603997,3e-06,-0.796986,0.603997,4e-06,-0.796986,0.603998,4e-06,-0.796986,0.603998,4e-06,-0.796986,0.603998,-1.1e-05,-0.796989,0.603994,-1.1e-05,-0.796989,0.603994,-1.1e-05,-0.796989,0.603994,-1.3e-05,-0.796989,0.603994,-1.3e-05,-0.796989,0.603994,-1.3e-05,-0.796989,0.603994,4e-06,-0.796988,0.603995,4e-06,-0.796988,0.603995,4e-06,-0.796988,0.603995,-3e-06,-0.796988,0.603995,-3e-06,-0.796988,0.603995,-3e-06,-0.796988,0.603995,-1.3e-05,-0.796988,0.603995,-1.3e-05,-0.796988,0.603995,-1.3e-05,-0.796988,0.603995,-3e-06,-0.79699,0.603992,-3e-06,-0.79699,0.603992,-3e-06,-0.79699,0.603992,3e-06,-0.796986,0.603997,3e-06,-0.796986,0.603997,3e-06,-0.796986,0.603997,8e-06,-0.796989,0.603994,8e-06,-0.796989,0.603994,8e-06,-0.796989,0.603994,-4e-06,-0.796986,0.603998,-4e-06,-0.796986,0.603998,-4e-06,-0.796986,0.603998,1e-06,-0.796988,0.603995,1e-06,-0.796988,0.603995,1e-06,-0.796988,0.603995,1e-06,-0.796984,0.604,1e-06,-0.796984,0.604,1e-06,-0.796984,0.604,-5.2e-05,-0.796949,0.604047,-5.2e-05,-0.796949,0.604047,-5.2e-05,-0.796949,0.604047,1.1e-05,-0.79701,0.603966,1.1e-05,-0.79701,0.603966,1.1e-05,-0.79701,0.603966,5e-06,-0.796987,0.603997,5e-06,-0.796987,0.603997,5e-06,-0.796987,0.603997,1.6e-05,-0.796985,0.603999,1.6e-05,-0.796985,0.603999,1.6e-05,-0.796985,0.603999,1e-06,-0.796976,0.604011,1e-06,-0.796976,0.604011,1e-06,-0.796976,0.604011,-5e-06,-0.796988,0.603994,-5e-06,-0.796988,0.603994,-5e-06,-0.796988,0.603994,3e-06,-0.796991,0.603992,3e-06,-0.796991,0.603992,3e-06,-0.796991,0.603992,-1e-06,-0.796987,0.603996,-1e-06,-0.796987,0.603996,-1e-06,-0.796987,0.603996,-1e-06,-0.796991,0.603991,-1e-06,-0.796991,0.603991,-1e-06,-0.796991,0.603991,3e-06,-0.79699,0.603992,3e-06,-0.79699,0.603992,3e-06,-0.79699,0.603992,-1e-06,-0.79699,0.603993,-1e-06,-0.79699,0.603993,-1e-06,-0.79699,0.603993,2e-06,-0.796984,0.604001,2e-06,-0.796984,0.604001,2e-06,-0.796984,0.604001,1e-06,-0.796989,0.603993,1e-06,-0.796989,0.603993,1e-06,-0.796989,0.603993,4e-06,-0.796986,0.603998,4e-06,-0.796986,0.603998,4e-06,-0.796986,0.603998,1e-06,-0.796985,0.604,1e-06,-0.796985,0.604,1e-06,-0.796985,0.604,-0,-0.796987,0.603996,-0,-0.796987,0.603996,-0,-0.796987,0.603996,-1e-06,-0.796983,0.604002,-1e-06,-0.796983,0.604002,-1e-06,-0.796983,0.604002,-0,-0.796981,0.604005,-0,-0.796981,0.604005,-0,-0.796981,0.604005,-0,-0.796986,0.603998,-0,-0.796986,0.603998,-0,-0.796986,0.603998,1e-06,-0.796981,0.604005,1e-06,-0.796981,0.604005,1e-06,-0.796981,0.604005,2e-06,-0.796978,0.604008,2e-06,-0.796978,0.604008,2e-06,-0.796978,0.604008,-4e-06,-0.796984,0.604,-4e-06,-0.796984,0.604,-4e-06,-0.796984,0.604,-2e-06,-0.796958,0.604034,-2e-06,-0.796958,0.604034,-2e-06,-0.796958,0.604034,-1e-06,-0.796991,0.603991,-1e-06,-0.796991,0.603991,-1e-06,-0.796991,0.603991,-3e-06,-0.796948,0.604047,-3e-06,-0.796948,0.604047,-3e-06,-0.796948,0.604047,3e-06,-0.796995,0.603986,3e-06,-0.796995,0.603986,3e-06,-0.796995,0.603986,1e-06,-0.796986,0.603999,1e-06,-0.796986,0.603999,1e-06,-0.796986,0.603999,0,-0.796957,0.604037,0,-0.796957,0.604037,0,-0.796957,0.604037,-2e-06,-0.79702,0.603953,-2e-06,-0.79702,0.603953,-2e-06,-0.79702,0.603953,-0,-0.796984,0.604001,-0,-0.796984,0.604001,-0,-0.796984,0.604001,-1e-06,-0.79699,0.603993,-1e-06,-0.79699,0.603993,-1e-06,-0.79699,0.603993,4e-06,-0.797008,0.603968,4e-06,-0.797008,0.603968,4e-06,-0.797008,0.603968,2e-06,-0.796997,0.603983,2e-06,-0.796997,0.603983,2e-06,-0.796997,0.603983,-1e-06,-0.796969,0.604021,-1e-06,-0.796969,0.604021,-1e-06,-0.796969,0.604021,-2.4e-05,-0.796241,0.60498,-2.4e-05,-0.796241,0.60498,-2.4e-05,-0.796241,0.60498,4.1e-05,-0.798523,0.601964,4.1e-05,-0.798523,0.601964,4.1e-05,-0.798523,0.601964,2e-06,-0.796998,0.603982,2e-06,-0.796998,0.603982,2e-06,-0.796998,0.603982,-2e-06,-0.796977,0.604009,-2e-06,-0.796977,0.604009,-2e-06,-0.796977,0.604009,-1e-06,-0.796983,0.604002,-1e-06,-0.796983,0.604002,-1e-06,-0.796983,0.604002,9e-06,-0.796992,0.603989,9e-06,-0.796992,0.603989,9e-06,-0.796992,0.603989,-6e-06,-0.796984,0.604001,-6e-06,-0.796984,0.604001,-6e-06,-0.796984,0.604001,0,-0.797001,0.603978,0,-0.797001,0.603978,0,-0.797001,0.603978,-1e-06,-0.797119,0.603822,-1e-06,-0.797119,0.603822,-1e-06,-0.797119,0.603822,2e-06,-0.796955,0.604039,2e-06,-0.796955,0.604039,2e-06,-0.796955,0.604039,-6e-06,-0.797,0.603979,-6e-06,-0.797,0.603979,-6e-06,-0.797,0.603979,-9e-06,-0.796985,0.603999,-9e-06,-0.796985,0.603999,-9e-06,-0.796985,0.603999,1e-06,-0.797015,0.60396,1e-06,-0.797015,0.60396,1e-06,-0.797015,0.60396,-1e-06,-0.796994,0.603987,-1e-06,-0.796994,0.603987,-1e-06,-0.796994,0.603987,2e-06,-0.796979,0.604007,2e-06,-0.796979,0.604007,2e-06,-0.796979,0.604007,-8e-06,-0.796987,0.603996,-8e-06,-0.796987,0.603996,-8e-06,-0.796987,0.603996,0.000155,-0.797599,0.603188,0.000155,-0.797599,0.603188,0.000155,-0.797599,0.603188,1.3e-05,-0.79698,0.604006,1.3e-05,-0.79698,0.604006,1.3e-05,-0.79698,0.604006,-1e-06,-0.796988,0.603996,-1e-06,-0.796988,0.603996,-1e-06,-0.796988,0.603996,-6e-06,-0.796978,0.604009,-6e-06,-0.796978,0.604009,-6e-06,-0.796978,0.604009,-1e-05,-0.796971,0.604017,-1e-05,-0.796971,0.604017,-1e-05,-0.796971,0.604017,-1e-06,-0.797003,0.603975,-1e-06,-0.797003,0.603975,-1e-06,-0.797003,0.603975,1.6e-05,-0.796942,0.604056,1.6e-05,-0.796942,0.604056,1.6e-05,-0.796942,0.604056,-1e-06,-0.796987,0.603997,-1e-06,-0.796987,0.603997,-1e-06,-0.796987,0.603997,-3e-05,-0.797063,0.603896,-3e-05,-0.797063,0.603896,-3e-05,-0.797063,0.603896,-7e-06,-0.796983,0.604002,-7e-06,-0.796983,0.604002,-7e-06,-0.796983,0.604002,1e-05,-0.79698,0.604006,1e-05,-0.79698,0.604006,1e-05,-0.79698,0.604006,1.2e-05,-0.796987,0.603996,1.2e-05,-0.796987,0.603996,1.2e-05,-0.796987,0.603996,-2e-06,-0.796985,0.603999,-2e-06,-0.796985,0.603999,-2e-06,-0.796985,0.603999,2e-06,-0.796978,0.604009,2e-06,-0.796978,0.604009,2e-06,-0.796978,0.604009,1.2e-05,-0.796986,0.603998,1.2e-05,-0.796986,0.603998,1.2e-05,-0.796986,0.603998,-9e-06,-0.797,0.603979,-9e-06,-0.797,0.603979,-9e-06,-0.797,0.603979,3e-06,-0.796985,0.603999,3e-06,-0.796985,0.603999,3e-06,-0.796985,0.603999,-8e-06,-0.796999,0.60398,-8e-06,-0.796999,0.60398,-8e-06,-0.796999,0.60398,-0,-0.796994,0.603987,-0,-0.796994,0.603987,-0,-0.796994,0.603987,-1e-06,-0.796987,0.603997,-1e-06,-0.796987,0.603997,-1e-06,-0.796987,0.603997,-9e-06,-0.797001,0.603979,-9e-06,-0.797001,0.603979,-9e-06,-0.797001,0.603979,-1e-06,-0.796986,0.603998,-1e-06,-0.796986,0.603998,-1e-06,-0.796986,0.603998,1e-06,-0.797003,0.603976,1e-06,-0.797003,0.603976,1e-06,-0.797003,0.603976,7e-06,-0.797018,0.603956,7e-06,-0.797018,0.603956,7e-06,-0.797018,0.603956,-3e-06,-0.796967,0.604022,-3e-06,-0.796967,0.604022,-3e-06,-0.796967,0.604022,-1e-06,-0.796986,0.603998,-1e-06,-0.796986,0.603998,-1e-06,-0.796986,0.603998,-4e-06,-0.796994,0.603988,-4e-06,-0.796994,0.603988,-4e-06,-0.796994,0.603988,-1.2e-05,-0.79699,0.603993,-1.2e-05,-0.79699,0.603993,-1.2e-05,-0.79699,0.603993,7e-06,-0.797002,0.603976,7e-06,-0.797002,0.603976,7e-06,-0.797002,0.603976,-9e-06,-0.796959,0.604033,-9e-06,-0.796959,0.604033,-9e-06,-0.796959,0.604033,-2e-06,-0.79696,0.604033,-2e-06,-0.79696,0.604033,-2e-06,-0.79696,0.604033,5e-06,-0.796992,0.60399,5e-06,-0.796992,0.60399,5e-06,-0.796992,0.60399,2e-06,-0.797068,0.603889,2e-06,-0.797068,0.603889,2e-06,-0.797068,0.603889,4e-06,-0.797192,0.603726,4e-06,-0.797192,0.603726,4e-06,-0.797192,0.603726,3e-06,-0.797003,0.603976,3e-06,-0.797003,0.603976,3e-06,-0.797003,0.603976,2e-06,-0.796988,0.603995,2e-06,-0.796988,0.603995,2e-06,-0.796988,0.603995,2e-06,-0.796974,0.604014,2e-06,-0.796974,0.604014,2e-06,-0.796974,0.604014,2e-06,-0.796987,0.603996,2e-06,-0.796987,0.603996,2e-06,-0.796987,0.603996,2e-06,-0.796998,0.603982,2e-06,-0.796998,0.603982,2e-06,-0.796998,0.603982,4e-06,-0.797028,0.603942,4e-06,-0.797028,0.603942,4e-06,-0.797028,0.603942,-1e-06,-0.79699,0.603992,-1e-06,-0.79699,0.603992,-1e-06,-0.79699,0.603992,-3e-06,-0.796991,0.603991,-3e-06,-0.796991,0.603991,-3e-06,-0.796991,0.603991,4e-06,-0.797009,0.603968,4e-06,-0.797009,0.603968,4e-06,-0.797009,0.603968,-6e-06,-0.796971,0.604018,-6e-06,-0.796971,0.604018,-6e-06,-0.796971,0.604018,2e-06,-0.796987,0.603996,-8.6e-05,-0.796284,0.604923,-8.6e-05,-0.796284,0.604923,-8.6e-05,-0.796284,0.604923,-0,-0.796987,0.603996,-0,-0.796987,0.603996,-0,-0.796987,0.603996,6e-06,-0.796982,0.604003,6e-06,-0.796982,0.604003,6e-06,-0.796982,0.604003,-3e-06,-0.79701,0.603966,-3e-06,-0.79701,0.603966,-3e-06,-0.79701,0.603966,-1e-06,-0.796984,0.604,-1e-06,-0.796984,0.604,-1e-06,-0.796984,0.604,6e-06,-0.796996,0.603984,6e-06,-0.796996,0.603984,6e-06,-0.796996,0.603984,-1e-06,-0.796993,0.603988,-1e-06,-0.796993,0.603988,-1e-06,-0.796993,0.603988,-6e-06,-0.797006,0.603971,-6e-06,-0.797006,0.603971,-6e-06,-0.797006,0.603971,0,-0.797051,0.603912,0,-0.797051,0.603912,0,-0.797051,0.603912,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-0,-0.796985,0.603999,-0,-0.796985,0.603999,-0,-0.796985,0.603999,3e-06,-0.796975,0.604013,3e-06,-0.796975,0.604013,3e-06,-0.796975,0.604013,1e-06,-0.796986,0.603998,1e-06,-0.796986,0.603998,1e-06,-0.796986,0.603998,1e-06,-0.797005,0.603972,1e-06,-0.797005,0.603972,1e-06,-0.797005,0.603972,0,-0.796983,0.604002,0,-0.796983,0.604002,0,-0.796983,0.604002,0,-0.79699,0.603992,0,-0.79699,0.603992,0,-0.79699,0.603992,-0,-0.796991,0.603991,-0,-0.796991,0.603991,-0,-0.796991,0.603991,1e-06,-0.796986,0.603998,1e-06,-0.796986,0.603998,1e-06,-0.796986,0.603998,-0,-0.796988,0.603996,-0,-0.796988,0.603996,-0,-0.796988,0.603996,1e-06,-0.796984,0.604001,1e-06,-0.796984,0.604001,1e-06,-0.796984,0.604001,-0,-0.796988,0.603995,-0,-0.796988,0.603995,-0,-0.796988,0.603995,0,-0.796985,0.603998,0,-0.796985,0.603998,0,-0.796985,0.603998,1e-06,-0.796987,0.603996,1e-06,-0.796987,0.603996,1e-06,-0.796987,0.603996,0,-0.796988,0.603995,0,-0.796988,0.603995,0,-0.796988,0.603995,-0,-0.796987,0.603996,-0,-0.796987,0.603996,-0,-0.796987,0.603996,-0,-0.796987,0.603996,0,-0.796987,0.603996,-4e-06,-0.796986,0.603997,-4e-06,-0.796986,0.603997,-4e-06,-0.796986,0.603997,2.2e-05,-0.796987,0.603997,2.2e-05,-0.796987,0.603997,2.2e-05,-0.796987,0.603997,-1e-06,-0.796987,0.603996,-1e-06,-0.796987,0.603996,-1e-06,-0.796987,0.603996,-2e-06,-0.796987,0.603996,-2e-06,-0.796987,0.603996,-2e-06,-0.796987,0.603996,1e-06,-0.796987,0.603996,1e-06,-0.796987,0.603996,1e-06,-0.796987,0.603996,-5e-06,-0.796987,0.603996,-5e-06,-0.796987,0.603996,-5e-06,-0.796987,0.603996,0,-0.796987,0.603996,6e-06,-0.797,0.603979,6e-06,-0.797,0.603979,6e-06,-0.797,0.603979,2e-06,-0.796985,0.603999,2e-06,-0.796985,0.603999,2e-06,-0.796985,0.603999,3e-06,-0.796986,0.603998,3e-06,-0.796986,0.603998,3e-06,-0.796986,0.603998,0,-0.796985,0.603999,0,-0.796985,0.603999,0,-0.796985,0.603999,1e-06,-0.796979,0.604007,1e-06,-0.796979,0.604007,1e-06,-0.796979,0.604007,3e-06,-0.796982,0.604003,3e-06,-0.796982,0.604003,3e-06,-0.796982,0.604003,1.7e-05,-0.797009,0.603968,1.7e-05,-0.797009,0.603968,1.7e-05,-0.797009,0.603968,-5e-06,-0.796997,0.603983,-5e-06,-0.796997,0.603983,-5e-06,-0.796997,0.603983,-1e-06,-0.796986,0.603997,-1e-06,-0.796986,0.603997,-1e-06,-0.796986,0.603997,3e-06,-0.796992,0.603989,3e-06,-0.796992,0.603989,3e-06,-0.796992,0.603989,-5e-06,-0.796991,0.603992,-5e-06,-0.796991,0.603992,-5e-06,-0.796991,0.603992,-8e-06,-0.796991,0.603991,-8e-06,-0.796991,0.603991,-8e-06,-0.796991,0.603991,2e-05,-0.797018,0.603955,2e-05,-0.797018,0.603955,2e-05,-0.797018,0.603955,0,-0.796982,0.604002,0,-0.796982,0.604002,0,-0.796982,0.604002,3e-06,-0.796993,0.603989,3e-06,-0.796993,0.603989,3e-06,-0.796993,0.603989,-0,-0.796985,0.603999,-0,-0.796985,0.603999,-0,-0.796985,0.603999,-1.2e-05,-0.796953,0.604042,-1.2e-05,-0.796953,0.604042,-1.2e-05,-0.796953,0.604042,1e-06,-0.79699,0.603992,1e-06,-0.79699,0.603992,1e-06,-0.79699,0.603992,-0,-0.796993,0.603989,-0,-0.796993,0.603989,-0,-0.796993,0.603989,4e-06,-0.796788,0.604258,4e-06,-0.796788,0.604258,4e-06,-0.796788,0.604258,-3e-06,-0.796965,0.604026,-3e-06,-0.796965,0.604026,-3e-06,-0.796965,0.604026,-1e-06,-0.796987,0.603997,-1e-06,-0.796987,0.603997,-1e-06,-0.796987,0.603997,1e-06,-0.796995,0.603986,1e-06,-0.796995,0.603986,1e-06,-0.796995,0.603986,1e-06,-0.796987,0.603997,1e-06,-0.796987,0.603997,1e-06,-0.796987,0.603997,1e-06,-0.796987,0.603997,0,-0.796989,0.603994,0,-0.796989,0.603994,0,-0.796989,0.603994,3e-06,-0.796982,0.604003,3e-06,-0.796982,0.604003,3e-06,-0.796982,0.604003,-6e-06,-0.796992,0.60399,-6e-06,-0.796992,0.60399,-6e-06,-0.796992,0.60399,1e-06,-0.796997,0.603983,1e-06,-0.796997,0.603983,1e-06,-0.796997,0.603983,1e-06,-0.796985,0.603999,1e-06,-0.796985,0.603999,1e-06,-0.796985,0.603999,1e-06,-0.796989,0.603994,1e-06,-0.796989,0.603994,1e-06,-0.796989,0.603994,-2e-06,-0.796991,0.603991,-2e-06,-0.796991,0.603991,-2e-06,-0.796991,0.603991,1e-06,-0.796989,0.603994,-0,-0.796987,0.603996,-0,-0.796987,0.603996,-2e-06,-0.796985,0.603998,-2e-06,-0.796985,0.603998,-2e-06,-0.796985,0.603998,-2e-06,-0.796986,0.603998,-2e-06,-0.796986,0.603998,-2e-06,-0.796986,0.603998,-1e-06,-0.796986,0.603997,-1e-06,-0.796986,0.603997,-1e-06,-0.796986,0.603997,-1e-06,-0.796987,0.603997,-1e-06,-0.796987,0.603997,-1e-06,-0.796987,0.603997,-2e-06,-0.796986,0.603998,-2e-06,-0.796986,0.603998,-2e-06,-0.796986,0.603998,-1e-06,-0.796987,0.603997,-1e-06,-0.796988,0.603995,-1e-06,-0.796988,0.603995,-1e-06,-0.796988,0.603995,-1e-06,-0.796986,0.603998,-1e-06,-0.796986,0.603998,-1e-06,-0.796986,0.603998,0.000361,-0.797074,0.603882,0.000361,-0.797074,0.603882,0.000361,-0.797074,0.603882,-2e-06,-0.79699,0.603992,-2e-06,-0.79699,0.603992,-2e-06,-0.79699,0.603992,-7e-06,-0.796988,0.603995,-7e-06,-0.796988,0.603995,-7e-06,-0.796988,0.603995,6e-06,-0.796988,0.603995,6e-06,-0.796988,0.603995,6e-06,-0.796988,0.603995,1.4e-05,-0.796996,0.603985,1.4e-05,-0.796996,0.603985,1.4e-05,-0.796996,0.603985,2e-06,-0.796986,0.603998,2e-06,-0.796986,0.603998,2e-06,-0.796986,0.603998,-5e-06,-0.796987,0.603996,-5e-06,-0.796987,0.603996,-5e-06,-0.796987,0.603996,8e-06,-0.796981,0.604005,8e-06,-0.796981,0.604005,8e-06,-0.796981,0.604005,-7e-06,-0.796988,0.603995,1.1e-05,-0.796986,0.603998,1.1e-05,-0.796986,0.603998,1.1e-05,-0.796986,0.603998,1.2e-05,-0.796994,0.603987,1.2e-05,-0.796994,0.603987,1.2e-05,-0.796994,0.603987,0.000173,-0.79701,0.603966,0.000173,-0.79701,0.603966,0.000173,-0.79701,0.603966,-1.4e-05,-0.796991,0.603991,-1.4e-05,-0.796991,0.603991,-1.4e-05,-0.796991,0.603991,-2e-06,-0.796987,0.603997,-2e-06,-0.796987,0.603997,-2e-06,-0.796987,0.603997,-1.3e-05,-0.796987,0.603997,-1.3e-05,-0.796987,0.603997,-1.3e-05,-0.796987,0.603997,-8e-06,-0.796988,0.603996,-8e-06,-0.796988,0.603996,-8e-06,-0.796988,0.603996,1.2e-05,-0.796988,0.603995,1.2e-05,-0.796988,0.603995,1.2e-05,-0.796988,0.603995,1.3e-05,-0.796989,0.603994,1.3e-05,-0.796989,0.603994,1.3e-05,-0.796989,0.603994,6e-06,-0.796987,0.603997,6e-06,-0.796987,0.603997,6e-06,-0.796987,0.603997,-8e-06,-0.796987,0.603996,-8e-06,-0.796987,0.603996,-8e-06,-0.796987,0.603996,6e-06,-0.796988,0.603995,6e-06,-0.796988,0.603995,6e-06,-0.796988,0.603995,2.1e-05,-0.796987,0.603996,2.1e-05,-0.796987,0.603996,2.1e-05,-0.796987,0.603996,-1e-05,-0.796987,0.603997,-1e-05,-0.796987,0.603997,-1e-05,-0.796987,0.603997,-2.2e-05,-0.796965,0.604025,-2.2e-05,-0.796965,0.604025,-2.2e-05,-0.796965,0.604025,-1e-06,-0.796986,0.603998,-1e-06,-0.796986,0.603998,-1e-06,-0.796986,0.603998,-0,-0.796987,0.603996,-0,-0.796987,0.603996,4e-06,-0.796986,0.603998,4e-06,-0.796986,0.603998,4e-06,-0.796986,0.603998,-1.3e-05,-0.796993,0.603989,-1.3e-05,-0.796993,0.603989,-1.3e-05,-0.796993,0.603989,-1e-06,-0.796985,0.603999,-1e-06,-0.796985,0.603999,-1e-06,-0.796985,0.603999,-2e-06,-0.796985,0.603999,-2e-06,-0.796985,0.603999,-2e-06,-0.796985,0.603999,-2e-06,-0.796988,0.603995,-2e-06,-0.796988,0.603995,-2e-06,-0.796988,0.603995,4e-06,-0.796987,0.603996,4e-06,-0.796987,0.603996,4e-06,-0.796987,0.603996,-1e-06,-0.796986,0.603998,-1e-06,-0.796986,0.603998,-1e-06,-0.796986,0.603998,4e-06,-0.796988,0.603996,4e-06,-0.796988,0.603996,4e-06,-0.796988,0.603996,-3e-06,-0.796985,0.603999,-3e-06,-0.796985,0.603999,-3e-06,-0.796985,0.603999,2e-06,-0.796991,0.603991,2e-06,-0.796991,0.603991,2e-06,-0.796991,0.603991,2e-06,-0.796985,0.603999,2e-06,-0.796985,0.603999,2e-06,-0.796985,0.603999,-1.1e-05,-0.79699,0.603992,-1.1e-05,-0.79699,0.603992,-1.1e-05,-0.79699,0.603992,1e-06,-0.796989,0.603994,1e-06,-0.796989,0.603994,1e-06,-0.796989,0.603994,-7e-06,-0.796982,0.604003,-7e-06,-0.796982,0.604003,-7e-06,-0.796982,0.604003,-4e-06,-0.796993,0.603989,-4e-06,-0.796993,0.603989,-4e-06,-0.796993,0.603989,-2e-06,-0.796978,0.604009,-2e-06,-0.796978,0.604009,-2e-06,-0.796978,0.604009,1e-06,-0.79699,0.603992,1e-06,-0.79699,0.603992,1e-06,-0.79699,0.603992,2e-06,-0.796997,0.603983,2e-06,-0.796997,0.603983,2e-06,-0.796997,0.603983,2e-06,-0.796982,0.604003,2e-06,-0.796982,0.604003,2e-06,-0.796982,0.604003,2e-06,-0.796997,0.603983,4e-06,-0.797,0.60398,4e-06,-0.797,0.60398,4e-06,-0.797,0.60398,-1e-06,-0.796993,0.603989,-1e-06,-0.796993,0.603989,-1e-06,-0.796993,0.603989,1e-06,-0.79699,0.603993,1e-06,-0.79699,0.603993,1e-06,-0.79699,0.603993,-0,-0.796993,0.603989,-0,-0.796993,0.603989,-0,-0.796993,0.603989,-2e-06,-0.796986,0.603997,-2e-06,-0.796986,0.603997,-2e-06,-0.796986,0.603997,0,-0.796981,0.604005,0,-0.796981,0.604005,0,-0.796981,0.604005,1e-06,-0.796989,0.603994,1e-06,-0.796989,0.603994,1e-06,-0.796989,0.603994,-0,-0.796987,0.603996,-0,-0.796987,0.603996,-0,-0.796987,0.603996,-8e-06,-0.797,0.60398,-8e-06,-0.797,0.60398,-8e-06,-0.797,0.60398,2e-06,-0.79701,0.603967,2e-06,-0.79701,0.603967,2e-06,-0.79701,0.603967,1e-06,-0.796992,0.60399,1e-06,-0.796992,0.60399,1e-06,-0.796992,0.60399,1.1e-05,-0.796979,0.604008,1.1e-05,-0.796979,0.604008,1.1e-05,-0.796979,0.604008,-3e-06,-0.796985,0.603999,-3e-06,-0.796985,0.603999,-3e-06,-0.796985,0.603999,1e-06,-0.796982,0.604003,1e-06,-0.796982,0.604003,1e-06,-0.796982,0.604003,2e-06,-0.796989,0.603994,2e-06,-0.796989,0.603994,2e-06,-0.796989,0.603994,4e-06,-0.796974,0.604013,4e-06,-0.796974,0.604013,4e-06,-0.796974,0.604013,-1e-06,-0.796988,0.603995,-1e-06,-0.796988,0.603995,-1e-06,-0.796988,0.603995,1e-05,-0.796979,0.604007,1e-05,-0.796979,0.604007,1e-05,-0.796979,0.604007,2e-06,-0.79699,0.603992,2e-06,-0.79699,0.603992,2e-06,-0.79699,0.603992,-5e-06,-0.796984,0.604,-5e-06,-0.796984,0.604,-5e-06,-0.796984,0.604,1e-06,-0.796988,0.603996,1e-06,-0.796988,0.603996,1e-06,-0.796988,0.603996,0,-0.796977,0.604009,0,-0.796977,0.604009,0,-0.796977,0.604009,-1e-06,-0.796956,0.604038,-1e-06,-0.796956,0.604038,-1e-06,-0.796956,0.604038,-4e-06,-0.79699,0.603993,-4e-06,-0.79699,0.603993,-4e-06,-0.79699,0.603993,0,-0.79699,0.603993,0,-0.79699,0.603993,0,-0.79699,0.603993,1e-06,-0.79699,0.603993,1e-06,-0.79699,0.603993,1e-06,-0.79699,0.603993,1e-05,-0.796987,0.603997,1e-05,-0.796987,0.603997,1e-05,-0.796987,0.603997,-9e-06,-0.796986,0.603998,-9e-06,-0.796986,0.603998,-9e-06,-0.796986,0.603998,2.9e-05,-0.796997,0.603983,2.9e-05,-0.796997,0.603983,2.9e-05,-0.796997,0.603983,-1.5e-05,-0.796985,0.603999,-1.5e-05,-0.796985,0.603999,-1.5e-05,-0.796985,0.603999,-1e-06,-0.796986,0.603998,-1e-06,-0.796986,0.603998,-1e-06,-0.796986,0.603998,0,-0.796987,0.603997,0,-0.796987,0.603997,0,-0.796987,0.603997,5e-06,-0.796988,0.603996,5e-06,-0.796988,0.603996,5e-06,-0.796988,0.603996,2e-06,-0.796996,0.603985,2e-06,-0.796996,0.603985,2e-06,-0.796996,0.603985,-1e-06,-0.796985,0.603999,-1e-06,-0.796985,0.603999,-1e-06,-0.796985,0.603999,-0,-0.796981,0.604005,-0,-0.796981,0.604005,-0,-0.796981,0.604005,2e-06,-0.796986,0.603998,2e-06,-0.796986,0.603998,2e-06,-0.796986,0.603998,-0,-0.796984,0.604,-0,-0.796984,0.604,-0,-0.796984,0.604,0,-0.796977,0.60401,0,-0.796977,0.60401,0,-0.796977,0.60401,-0,-0.79699,0.603993,-0,-0.79699,0.603993,-2e-06,-0.796967,0.604023,-2e-06,-0.796967,0.604023,-2e-06,-0.796967,0.604023,-8e-06,-0.796993,0.603989,-8e-06,-0.796993,0.603989,-8e-06,-0.796993,0.603989,-0,-0.796983,0.604001,-0,-0.796983,0.604001,-0,-0.796983,0.604001,-5e-06,-0.796988,0.603995,-5e-06,-0.796988,0.603995,-5e-06,-0.796988,0.603995,1e-06,-0.796986,0.603997,1e-06,-0.796986,0.603997,1e-06,-0.796986,0.603997,-1e-06,-0.79698,0.604006,-1e-06,-0.79698,0.604006,-1e-06,-0.79698,0.604006,3e-06,-0.796995,0.603986,3e-06,-0.796995,0.603986,3e-06,-0.796995,0.603986,0,-0.796991,0.603991,0,-0.796991,0.603991,0,-0.796991,0.603991,2e-06,-0.79698,0.604006,2e-06,-0.79698,0.604006,2e-06,-0.79698,0.604006,3e-06,-0.796958,0.604034,3e-06,-0.796958,0.604034,3e-06,-0.796958,0.604034,-8e-06,-0.796982,0.604003,-8e-06,-0.796982,0.604003,-8e-06,-0.796982,0.604003,-2e-06,-0.796994,0.603988,-2e-06,-0.796994,0.603988,-2e-06,-0.796994,0.603988,4e-06,-0.796925,0.604079,4e-06,-0.796925,0.604079,4e-06,-0.796925,0.604079,0,-0.797359,0.603505,0,-0.797359,0.603505,0,-0.797359,0.603505,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-0.796989,0.603994,0,-0.796989,0.603994,0,-0.796989,0.603994,-1e-06,-0.796988,0.603994,-1e-06,-0.796988,0.603994,-1e-06,-0.796988,0.603994,-0,-0.79699,0.603992,-0,-0.79699,0.603992,-0,-0.79699,0.603992,-2e-06,-0.796997,0.603983,-2e-06,-0.796997,0.603983,-2e-06,-0.796997,0.603983,-0,-0.796988,0.603995,-0,-0.796988,0.603995,-0,-0.796988,0.603995,3e-06,-0.797023,0.603949,3e-06,-0.797023,0.603949,3e-06,-0.797023,0.603949,-6e-06,-0.796985,0.603999,-6e-06,-0.796985,0.603999,-6e-06,-0.796985,0.603999,0,-0.797017,0.603957,0,-0.797017,0.603957,0,-0.797017,0.603957,4e-06,-0.796979,0.604007,4e-06,-0.796979,0.604007,4e-06,-0.796979,0.604007,2e-06,-0.796984,0.604,2e-06,-0.796984,0.604,2e-06,-0.796984,0.604,0,-0.796948,0.604047,0,-0.796948,0.604047,0,-0.796948,0.604047,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-5e-06,-0.796979,0.604007,-5e-06,-0.796979,0.604007,-5e-06,-0.796979,0.604007,0,-0.796965,0.604025,0,-0.796965,0.604025,0,-0.796965,0.604025,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-0,-0.796983,0.604002,-0,-0.796983,0.604002,-0,-0.796983,0.604002,0,-0.796987,0.603997,0,-0.796987,0.603997,0,-0.796987,0.603997,1e-06,-0.796985,0.604,1e-06,-0.796985,0.604,1e-06,-0.796985,0.604,1e-06,-0.796985,0.603999,1e-06,-0.796985,0.603999,1e-06,-0.796985,0.603999,-0,-0.796989,0.603994,-0,-0.796989,0.603994,-0,-0.796989,0.603994,-1e-06,-0.796987,0.603996,-1e-06,-0.796987,0.603996,-1e-06,-0.796987,0.603996,-0,-0.796987,0.603997,-0,-0.796987,0.603997,-0,-0.796987,0.603997,4e-06,-0.796991,0.603992,4e-06,-0.796991,0.603992,4e-06,-0.796991,0.603992,-3e-06,-0.796986,0.603997,-3e-06,-0.796986,0.603997,-3e-06,-0.796986,0.603997,-0,-0.796988,0.603996,-0,-0.796988,0.603996,-0,-0.796988,0.603996,-5e-06,-0.796987,0.603997,-5e-06,-0.796987,0.603997,-5e-06,-0.796987,0.603997,4e-06,-0.797004,0.603974,4e-06,-0.797004,0.603974,4e-06,-0.797004,0.603974,3e-06,-0.796995,0.603986,3e-06,-0.796995,0.603986,3e-06,-0.796995,0.603986,-2e-06,-0.796981,0.604004,-2e-06,-0.796981,0.604004,-2e-06,-0.796981,0.604004,3e-06,-0.796983,0.604002,3e-06,-0.796983,0.604002,3e-06,-0.796983,0.604002,4e-06,-0.796983,0.604002,4e-06,-0.796983,0.604002,4e-06,-0.796983,0.604002,1e-06,-0.796988,0.603996,1e-06,-0.796988,0.603996,1e-06,-0.796988,0.603996,4e-06,-0.796983,0.604002,-3e-06,-0.796985,0.604,-3e-06,-0.796985,0.604,-3e-06,-0.796985,0.604,3e-06,-0.796993,0.603989,3e-06,-0.796993,0.603989,3e-06,-0.796993,0.603989,6e-06,-0.796987,0.603997,6e-06,-0.796987,0.603997,6e-06,-0.796987,0.603997,1e-06,-0.796984,0.604,1e-06,-0.796984,0.604,1e-06,-0.796984,0.604,2e-06,-0.796991,0.603991,2e-06,-0.796991,0.603991,2e-06,-0.796991,0.603991,4e-06,-0.796977,0.60401,4e-06,-0.796977,0.60401,4e-06,-0.796977,0.60401,8e-06,-0.796994,0.603988,8e-06,-0.796994,0.603988,8e-06,-0.796994,0.603988,-4e-06,-0.797005,0.603973,-4e-06,-0.797005,0.603973,-4e-06,-0.797005,0.603973,3e-06,-0.796994,0.603988,3e-06,-0.796994,0.603988,3e-06,-0.796994,0.603988,0,-0.796987,0.603997,0,-0.796987,0.603997,0,-0.796987,0.603997,6e-06,-0.796978,0.604008,6e-06,-0.796978,0.604008,6e-06,-0.796978,0.604008,-0,-0.796984,0.604001,-0,-0.796984,0.604001,-0,-0.796984,0.604001,2e-06,-0.797002,0.603977,2e-06,-0.797002,0.603977,2e-06,-0.797002,0.603977,-1e-06,-0.796987,0.603997,-1e-06,-0.796987,0.603997,-1e-06,-0.796987,0.603997,6e-06,-0.796996,0.603985,6e-06,-0.796996,0.603985,6e-06,-0.796996,0.603985,-1e-06,-0.796977,0.60401,-1e-06,-0.796977,0.60401,-1e-06,-0.796977,0.60401,-0,-0.796989,0.603994,-0,-0.796989,0.603994,-0,-0.796989,0.603994,-0,-0.796997,0.603983,-0,-0.796997,0.603983,-0,-0.796997,0.603983,2e-06,-0.796979,0.604008,2e-06,-0.796979,0.604008,2e-06,-0.796979,0.604008,-2e-06,-0.796991,0.603991,-2e-06,-0.796991,0.603991,-2e-06,-0.796991,0.603991,4e-06,-0.796985,0.603999,4e-06,-0.796985,0.603999,4e-06,-0.796985,0.603999,-3e-06,-0.796987,0.603997,-3e-06,-0.796987,0.603997,-3e-06,-0.796987,0.603997,-3e-06,-0.796988,0.603995,-3e-06,-0.796988,0.603995,-3e-06,-0.796988,0.603995,0,-0.796977,0.60401,0,-0.796977,0.60401,0,-0.796977,0.60401,1e-06,-0.796988,0.603995,1e-06,-0.796988,0.603995,1e-06,-0.796988,0.603995,3e-06,-0.796986,0.603997,3e-06,-0.796986,0.603997,3e-06,-0.796986,0.603997,2e-06,-0.796988,0.603994,2e-06,-0.796988,0.603994,2e-06,-0.796988,0.603994,4e-06,-0.796987,0.603997,4e-06,-0.796987,0.603997,4e-06,-0.796987,0.603997,-1e-06,-0.796987,0.603996,-1e-06,-0.796987,0.603996,4e-06,-0.796987,0.603996,4e-06,-0.796987,0.603996,4e-06,-0.796987,0.603996,-0,-0.796984,0.604,-0,-0.796984,0.604,-0,-0.796984,0.604,2e-06,-0.796987,0.603997,2e-06,-0.796987,0.603997,2e-06,-0.796987,0.603997,2e-06,-0.796987,0.603997,0,-0.796986,0.603997,0,-0.796986,0.603997,0,-0.796986,0.603997,-0,-0.796986,0.603998,-0,-0.796986,0.603998,-0,-0.796986,0.603998,-1e-06,-0.796987,0.603996,-1e-06,-0.796987,0.603996,-1e-06,-0.796987,0.603996,-0,-0.796987,0.603996,-0,-0.796987,0.603996,-0,-0.796987,0.603996,-5e-06,-0.796988,0.603995,-5e-06,-0.796988,0.603995,-5e-06,-0.796988,0.603995,9.9e-05,-0.797177,0.603745,9.9e-05,-0.797177,0.603745,9.9e-05,-0.797177,0.603745,-2e-06,-0.79699,0.603993,-2e-06,-0.79699,0.603993,-2e-06,-0.79699,0.603993,0,-0.796982,0.604003,0,-0.796982,0.604003,0,-0.796982,0.604003,1e-06,-0.796987,0.603997,1e-06,-0.796987,0.603997,1e-06,-0.796987,0.603997,-5e-06,-0.796989,0.603994,-5e-06,-0.796989,0.603994,-5e-06,-0.796989,0.603994,0,-0.796987,0.603997,0,-0.796987,0.603997,0,-0.796987,0.603997,0.000217,-0.797015,0.603959,0.000217,-0.797015,0.603959,0.000217,-0.797015,0.603959,-1e-06,-0.79699,0.603993,-1e-06,-0.79699,0.603993,-1e-06,-0.79699,0.603993,6e-06,-0.796989,0.603994,6e-06,-0.796989,0.603994,6e-06,-0.796989,0.603994,5e-06,-0.796987,0.603997,5e-06,-0.796987,0.603997,5e-06,-0.796987,0.603997,-8e-06,-0.796988,0.603995,-8e-06,-0.796988,0.603995,-8e-06,-0.796988,0.603995,-1e-06,-0.796991,0.603991,-1e-06,-0.796991,0.603991,-1e-06,-0.796991,0.603991,1e-06,-0.796988,0.603995,1e-06,-0.796988,0.603995,1e-06,-0.796988,0.603995,3e-06,-0.796987,0.603996,3e-06,-0.796987,0.603996,3e-06,-0.796987,0.603996,-7e-06,-0.796988,0.603995,-7e-06,-0.796988,0.603995,-7e-06,-0.796988,0.603995,3e-06,-0.796987,0.603997,3e-06,-0.796987,0.603997,3e-06,-0.796987,0.603997,-3.1e-05,-0.796991,0.603992,-3.1e-05,-0.796991,0.603992,-3.1e-05,-0.796991,0.603992,-6e-06,-0.796988,0.603996,-6e-06,-0.796988,0.603996,-6e-06,-0.796988,0.603996,1.6e-05,-0.796984,0.604,1.6e-05,-0.796984,0.604,1.6e-05,-0.796984,0.604,-0,-0.796988,0.603996,-0,-0.796988,0.603996,-0,-0.796988,0.603996,-4e-06,-0.79699,0.603992,-4e-06,-0.79699,0.603992,-4e-06,-0.79699,0.603992,-7e-06,-0.796988,0.603995,-7e-06,-0.796988,0.603995,-7e-06,-0.796988,0.603995,1e-06,-0.796988,0.603995,1e-06,-0.796988,0.603995,1e-06,-0.796988,0.603995,5e-06,-0.796987,0.603997,0,-0.796987,0.603997,0,-0.796987,0.603997,0,-0.796987,0.603997,3e-06,-0.796985,0.603998,3e-06,-0.796985,0.603998,3e-06,-0.796985,0.603998,-1e-05,-0.796981,0.604004,-1e-05,-0.796981,0.604004,-1e-05,-0.796981,0.604004,1e-06,-0.796988,0.603995,1e-06,-0.796987,0.603997,1e-06,-0.796987,0.603997,1e-06,-0.796987,0.603997,7e-06,-0.796992,0.603989,7e-06,-0.796992,0.603989,7e-06,-0.796992,0.603989,-1e-06,-0.796985,0.603999,-1e-06,-0.796985,0.603999,-1e-06,-0.796985,0.603999,-1e-06,-0.796986,0.603998,-1e-06,-0.796986,0.603998,-1e-06,-0.796986,0.603998,2e-06,-0.796986,0.603998,2e-06,-0.796986,0.603998,2e-06,-0.796986,0.603998,-1e-06,-0.796988,0.603995,-1e-06,-0.796988,0.603995,-1e-06,-0.796988,0.603995,1.6e-05,-0.796982,0.604003,1.6e-05,-0.796982,0.604003,1.6e-05,-0.796982,0.604003,1e-06,-0.796984,0.604001,1e-06,-0.796984,0.604001,1e-06,-0.796984,0.604001,-1e-06,-0.796992,0.60399,-1e-06,-0.796992,0.60399,-1e-06,-0.796992,0.60399,2e-06,-0.797,0.60398,2e-06,-0.797,0.60398,2e-06,-0.797,0.60398,3e-06,-0.796993,0.603989,3e-06,-0.796993,0.603989,3e-06,-0.796993,0.603989,1.4e-05,-0.796978,0.604008,1.4e-05,-0.796978,0.604008,1.4e-05,-0.796978,0.604008,2e-06,-0.797004,0.603974,2e-06,-0.797004,0.603974,2e-06,-0.797004,0.603974,-2e-06,-0.796985,0.603999,-2e-06,-0.796985,0.603999,-2e-06,-0.796985,0.603999,-2e-06,-0.796985,0.604,-2e-06,-0.796985,0.604,-2e-06,-0.796985,0.604,3e-06,-0.796989,0.603994,3e-06,-0.796989,0.603994,3e-06,-0.796989,0.603994,2e-06,-0.796981,0.604004,2e-06,-0.796981,0.604004,2e-06,-0.796981,0.604004,5.9e-05,-0.796904,0.604106,5.9e-05,-0.796904,0.604106,5.9e-05,-0.796904,0.604106,2e-06,-0.796979,0.604007,2e-06,-0.796979,0.604007,2e-06,-0.796979,0.604007,7e-06,-0.796984,0.604001,7e-06,-0.796984,0.604001,7e-06,-0.796984,0.604001,0,-0.796983,0.604002,0,-0.796983,0.604002,0,-0.796983,0.604002,1e-06,-0.796982,0.604003,1e-06,-0.796982,0.604003,1e-06,-0.796982,0.604003,1e-06,-0.796992,0.60399,1e-06,-0.796992,0.60399,1e-06,-0.796992,0.60399,1e-06,-0.796983,0.604002,1e-06,-0.796983,0.604002,1e-06,-0.796983,0.604002,1.4e-05,-0.796991,0.603991,1.4e-05,-0.796991,0.603991,1.4e-05,-0.796991,0.603991,-3e-06,-0.79699,0.603992,-3e-06,-0.79699,0.603992,-3e-06,-0.79699,0.603992,1e-06,-0.796983,0.604002,1e-06,-0.796983,0.604002,1e-06,-0.796983,0.604002,-0,-0.796973,0.604015,-0,-0.796973,0.604015,-0,-0.796973,0.604015,-2e-06,-0.79699,0.603992,-2e-06,-0.79699,0.603992,-2e-06,-0.79699,0.603992,-3e-06,-0.79699,0.603993,-3e-06,-0.79699,0.603993,-3e-06,-0.79699,0.603993,5e-06,-0.796989,0.603994,5e-06,-0.796989,0.603994,5e-06,-0.796989,0.603994,2e-06,-0.796983,0.604002,2e-06,-0.796983,0.604002,2e-06,-0.796983,0.604002,1.6e-05,-0.796994,0.603987,1.6e-05,-0.796994,0.603987,1.6e-05,-0.796994,0.603987,-5e-06,-0.796983,0.604001,-5e-06,-0.796983,0.604001,-5e-06,-0.796983,0.604001,1.8e-05,-0.796992,0.60399,1.8e-05,-0.796992,0.60399,1.8e-05,-0.796992,0.60399,3e-06,-0.79699,0.603993,3e-06,-0.79699,0.603993,3e-06,-0.79699,0.603993,-3e-06,-0.796985,0.603999,-3e-06,-0.796985,0.603999,-3e-06,-0.796985,0.603999,7e-06,-0.796984,0.604001,7e-06,-0.796984,0.604001,7e-06,-0.796984,0.604001,5e-06,-0.796974,0.604013,5e-06,-0.796974,0.604013,5e-06,-0.796974,0.604013,-3e-06,-0.796991,0.603991,-3e-06,-0.796991,0.603991,-3e-06,-0.796991,0.603991,4e-06,-0.796991,0.603992,4e-06,-0.796991,0.603992,4e-06,-0.796991,0.603992,2e-06,-0.796985,0.603999,2e-06,-0.796985,0.603999,2e-06,-0.796985,0.603999,3e-06,-0.796981,0.604004,3e-06,-0.796981,0.604004,3e-06,-0.796981,0.604004,-4e-06,-0.796987,0.603997,-4e-06,-0.796987,0.603997,-4e-06,-0.796987,0.603997,3e-06,-0.796997,0.603984,3e-06,-0.796997,0.603984,3e-06,-0.796997,0.603984,7e-06,-0.796984,0.604,7e-06,-0.796984,0.604,7e-06,-0.796984,0.604,-3e-06,-0.796985,0.603999,-3e-06,-0.796985,0.603999,-3e-06,-0.796985,0.603999,-0,-0.796983,0.604002,-0,-0.796983,0.604002,-0,-0.796983,0.604002,-3e-06,-0.796984,0.604,-3e-06,-0.796984,0.604,-3e-06,-0.796984,0.604,5e-06,-0.796979,0.604008,5e-06,-0.796979,0.604008,5e-06,-0.796979,0.604008,-2e-05,-0.797009,0.603968,-2e-05,-0.797009,0.603968,-2e-05,-0.797009,0.603968,-1e-06,-0.797009,0.603968,-1e-06,-0.797009,0.603968,-1e-06,-0.797009,0.603968,7e-06,-0.796993,0.603988,7e-06,-0.796993,0.603988,7e-06,-0.796993,0.603988,-3e-06,-0.796975,0.604012,-3e-06,-0.796975,0.604012,-3e-06,-0.796975,0.604012,-0,-0.796999,0.60398,-0,-0.796999,0.60398,-0,-0.796999,0.60398,-5e-06,-0.797001,0.603979,-5e-06,-0.797001,0.603979,-5e-06,-0.797001,0.603979,8e-06,-0.796909,0.604099,8e-06,-0.796909,0.604099,8e-06,-0.796909,0.604099,1.2e-05,-0.796992,0.60399,1.2e-05,-0.796992,0.60399,1.2e-05,-0.796992,0.60399,7e-06,-0.796888,0.604126,7e-06,-0.796888,0.604126,7e-06,-0.796888,0.604126,2e-06,-0.796991,0.603992,2e-06,-0.796991,0.603992,2e-06,-0.796991,0.603992,1.4e-05,-0.796997,0.603984,1.4e-05,-0.796997,0.603984,1.4e-05,-0.796997,0.603984,3e-06,-0.796993,0.603988,3e-06,-0.796993,0.603988,3e-06,-0.796993,0.603988,-3e-06,-0.797055,0.603906,-3e-06,-0.797055,0.603906,-3e-06,-0.797055,0.603906,3e-06,-0.796987,0.603996,3e-06,-0.796987,0.603996,3e-06,-0.796987,0.603996,1e-06,-0.796979,0.604007,1e-06,-0.796979,0.604007,1e-06,-0.796979,0.604007,1e-06,-0.796991,0.603992,1e-06,-0.796991,0.603992,1e-06,-0.796991,0.603992,1e-06,-0.796997,0.603984,1e-06,-0.796997,0.603984,1e-06,-0.796997,0.603984,-7e-06,-0.797007,0.60397,-7e-06,-0.797007,0.60397,-7e-06,-0.797007,0.60397,2e-06,-0.796977,0.60401,2e-06,-0.796977,0.60401,2e-06,-0.796977,0.60401,1e-06,-0.796985,0.603999,1e-06,-0.796985,0.603999,1e-06,-0.796985,0.603999,0,-0.797183,0.603738,0,-0.797183,0.603738,0,-0.797183,0.603738,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1e-06,-0.796981,0.604004,-1e-06,-0.796981,0.604004,-1e-06,-0.796981,0.604004,-3e-06,-0.797,0.60398,-3e-06,-0.797,0.60398,-3e-06,-0.797,0.60398,1e-06,-0.796955,0.604038,1e-06,-0.796955,0.604038,1e-06,-0.796955,0.604038,1.6e-05,-0.797045,0.603919,1.6e-05,-0.797045,0.603919,1.6e-05,-0.797045,0.603919,-2e-06,-0.79698,0.604006,-2e-06,-0.79698,0.604006,-2e-06,-0.79698,0.604006,-0,-0.796991,0.603992,-0,-0.796991,0.603992,-0,-0.796991,0.603992,-0,-0.796987,0.603997,-0,-0.796987,0.603997,-0,-0.796987,0.603997,-0,-0.796988,0.603996,-0,-0.796988,0.603996,-0,-0.796988,0.603996,-0,-0.796989,0.603994,-0,-0.796989,0.603994,-0,-0.796989,0.603994,0,-0.796987,0.603996,0,-0.796987,0.603996,0,-0.796987,0.603996,1e-06,-0.796961,0.604031,1e-06,-0.796961,0.604031,1e-06,-0.796961,0.604031,-2e-06,-0.797065,0.603893,-2e-06,-0.797065,0.603893,-2e-06,-0.797065,0.603893,1e-06,-0.796984,0.604001,1e-06,-0.796984,0.604001,1e-06,-0.796984,0.604001,-0,-0.79699,0.603992,-0,-0.79699,0.603992,-0,-0.79699,0.603992,0,-0.796992,0.603989,0,-0.796992,0.603989,0,-0.796992,0.603989,-1e-06,-0.796981,0.604004,-1e-06,-0.796981,0.604004,-1e-06,-0.796981,0.604004,-1e-06,-0.796986,0.603998,-1e-06,-0.796986,0.603998,-1e-06,-0.796986,0.603998,-1e-06,-0.796987,0.603997,-1e-06,-0.796987,0.603997,-1e-06,-0.796987,0.603997,-1e-06,-0.796985,0.603999,-1e-06,-0.796985,0.603999,-1e-06,-0.796985,0.603999,1e-06,-0.796991,0.603991,1e-06,-0.796991,0.603991,1e-06,-0.796991,0.603991,-1e-06,-0.796987,0.603996,-1e-06,-0.796987,0.603996,-1e-06,-0.796987,0.603996,2e-06,-0.79699,0.603993,2e-06,-0.79699,0.603993,2e-06,-0.79699,0.603993,1e-06,-0.796987,0.603996,1e-06,-0.796987,0.603996,1e-06,-0.796987,0.603996,0,-0.796986,0.603998,0,-0.796986,0.603998,0,-0.796986,0.603998,0,-0.796982,0.604003,0,-0.796982,0.604003,0,-0.796982,0.604003,-0,-0.796987,0.603997,-0,-0.796987,0.603997,-0,-0.796987,0.603997,-2e-06,-0.796994,0.603987,-2e-06,-0.796994,0.603987,-2e-06,-0.796994,0.603987,-4e-06,-0.796975,0.604012,-4e-06,-0.796975,0.604012,-4e-06,-0.796975,0.604012,-3e-06,-0.796983,0.604002,-3e-06,-0.796983,0.604002,-3e-06,-0.796983,0.604002,0,-0.796991,0.603992,0,-0.796991,0.603992,0,-0.796991,0.603992,-0,-0.796987,0.603997,7e-06,-0.796966,0.604025,7e-06,-0.796966,0.604025,7e-06,-0.796966,0.604025,-2e-06,-0.796988,0.603996,-2e-06,-0.796988,0.603996,-2e-06,-0.796988,0.603996,-8e-06,-0.796997,0.603984,-8e-06,-0.796997,0.603984,-8e-06,-0.796997,0.603984,6e-06,-0.796999,0.60398,6e-06,-0.796999,0.60398,6e-06,-0.796999,0.60398,0,-0.796989,0.603994,0,-0.796989,0.603994,0,-0.796989,0.603994,-6e-06,-0.796982,0.604004,-6e-06,-0.796982,0.604004,-6e-06,-0.796982,0.604004,3e-06,-0.796982,0.604003,3e-06,-0.796982,0.604003,3e-06,-0.796982,0.604003,-1e-06,-0.796984,0.604001,-1e-06,-0.796984,0.604001,-1e-06,-0.796984,0.604001,-6e-06,-0.796983,0.604002,-6e-06,-0.796983,0.604002,-6e-06,-0.796983,0.604002,4e-06,-0.79698,0.604005,4e-06,-0.79698,0.604005,4e-06,-0.79698,0.604005,1.1e-05,-0.796981,0.604005,1.1e-05,-0.796981,0.604005,1.1e-05,-0.796981,0.604005,6e-06,-0.796972,0.604017,6e-06,-0.796972,0.604017,6e-06,-0.796972,0.604017,-1e-06,-0.796959,0.604034,-1e-06,-0.796959,0.604034,-1e-06,-0.796959,0.604034,-3e-06,-0.797032,0.603937,-3e-06,-0.797032,0.603937,-3e-06,-0.797032,0.603937,1.4e-05,-0.797027,0.603944,1.4e-05,-0.797027,0.603944,1.4e-05,-0.797027,0.603944,-1e-06,-0.796984,0.604,-1e-06,-0.796984,0.604,-1e-06,-0.796984,0.604,-0,-0.796985,0.603999,-0,-0.796985,0.603999,-0,-0.796985,0.603999,4e-06,-0.796991,0.603991,4e-06,-0.796991,0.603991,4e-06,-0.796991,0.603991,7e-06,-0.796829,0.604205,7e-06,-0.796829,0.604205,7e-06,-0.796829,0.604205,1e-06,-0.796991,0.603991,1e-06,-0.796991,0.603991,1e-06,-0.796991,0.603991,-0,-0.796985,0.603999,-0,-0.796985,0.603999,-0,-0.796981,0.604004,-0,-0.796981,0.604004,-0,-0.796981,0.604004,-1e-06,-0.796987,0.603997,-1e-06,-0.796987,0.603997,-1e-06,-0.796987,0.603997,2e-06,-0.797,0.603979,2e-06,-0.797,0.603979,2e-06,-0.797,0.603979,-0,-0.796987,0.603996,-0,-0.796987,0.603996,-0,-0.796987,0.603996,0,-0.796981,0.604004,0,-0.796981,0.604004,0,-0.796981,0.604004,-1e-06,-0.796987,0.603996,-1e-06,-0.796987,0.603996,-1e-06,-0.796987,0.603996,0,-0.796981,0.604004,2e-06,-0.796986,0.603998,2e-06,-0.796986,0.603998,2e-06,-0.796986,0.603998,0,-0.796989,0.603993,0,-0.796989,0.603993,0,-0.796989,0.603993,2e-06,-0.796986,0.603998,1e-06,-0.796989,0.603994,1e-06,-0.796989,0.603994,1e-06,-0.796989,0.603994,-0,-0.796986,0.603998,-0,-0.796986,0.603998,-0,-0.796986,0.603998,0,-0.796982,0.604003,0,-0.796982,0.604003,0,-0.796982,0.604003,-2e-06,-0.796985,0.603999,-2e-06,-0.796985,0.603999,-2e-06,-0.796985,0.603999,2e-06,-0.796986,0.603997,2e-06,-0.796986,0.603997,2e-06,-0.796986,0.603997,0,-0.796985,0.603999,0,-0.796985,0.603999,0,-0.796985,0.603999,0,-0.796986,0.603998,0,-0.796986,0.603998,1e-06,-0.796986,0.603998,1e-06,-0.796986,0.603998,1e-06,-0.796986,0.603998,0,-0.796987,0.603996,0,-0.796987,0.603996,0,-0.796987,0.603996,1e-06,-0.796984,0.604,1e-06,-0.796984,0.604,1e-06,-0.796984,0.604,-2e-06,-0.796986,0.603998,-2e-06,-0.796986,0.603998,-2e-06,-0.796986,0.603998,-1e-06,-0.79699,0.603993,-1e-06,-0.79699,0.603993,-1e-06,-0.79699,0.603993,-2e-06,-0.796989,0.603994,-2e-06,-0.796989,0.603994,-2e-06,-0.796989,0.603994,4e-06,-0.796989,0.603994,4e-06,-0.796989,0.603994,4e-06,-0.796989,0.603994,1e-06,-0.796989,0.603994,1e-06,-0.796989,0.603994,1e-06,-0.796989,0.603994,1e-06,-0.796989,0.603993,1e-06,-0.796989,0.603993,1e-06,-0.796989,0.603993,-1e-06,-0.796987,0.603997,-1e-06,-0.796987,0.603997,-1e-06,-0.796987,0.603997,-1e-06,-0.796987,0.603997,-1e-06,-0.796987,0.603997,-1e-06,-0.796987,0.603997,1e-06,-0.796987,0.603997,1e-06,-0.796987,0.603997,1e-06,-0.796987,0.603997,-0,-0.797002,0.603976,-0,-0.797002,0.603976,-0,-0.797002,0.603976,-1e-06,-0.796985,0.603999,-1e-06,-0.796985,0.603999,-1e-06,-0.796985,0.603999,0,-0.796986,0.603997,0,-0.796986,0.603997,0,-0.796986,0.603997,-2e-06,-0.796985,0.603999,-2e-06,-0.796985,0.603999,-2e-06,-0.796985,0.603999,3e-06,-0.796988,0.603995,3e-06,-0.796988,0.603995,3e-06,-0.796988,0.603995,5e-06,-0.79699,0.603993,5e-06,-0.79699,0.603993,5e-06,-0.79699,0.603993,3e-06,-0.796988,0.603995,3e-06,-0.796987,0.603996,3e-06,-0.796987,0.603996,3e-06,-0.796987,0.603996,9e-06,-0.796986,0.603998,9e-06,-0.796986,0.603998,9e-06,-0.796986,0.603998,3e-06,-0.796989,0.603994,3e-06,-0.796989,0.603994,3e-06,-0.796989,0.603994,-4e-06,-0.796988,0.603995,-4e-06,-0.796988,0.603995,-4e-06,-0.796988,0.603995,-1e-06,-0.796987,0.603997,-1e-06,-0.796987,0.603997,-1e-06,-0.796987,0.603997,-0.002537,-0.796662,0.60442,-0.002537,-0.796662,0.60442,-0.002537,-0.796662,0.60442,1e-05,-0.796989,0.603993,1e-05,-0.796989,0.603993,1e-05,-0.796989,0.603993,-6e-06,-0.796989,0.603994,-6e-06,-0.796989,0.603994,-6e-06,-0.796989,0.603994,1e-06,-0.796988,0.603995,1e-06,-0.796988,0.603995,1e-06,-0.796988,0.603995,1e-06,-0.796986,0.603997,1e-06,-0.796986,0.603997,1e-06,-0.796986,0.603997,1.1e-05,-0.79699,0.603993,1.1e-05,-0.79699,0.603993,1.1e-05,-0.79699,0.603993,2e-06,-0.796987,0.603996,2e-06,-0.796987,0.603996,2e-06,-0.796987,0.603996,-1.8e-05,-0.796982,0.604003,-1.8e-05,-0.796982,0.604003,-1.8e-05,-0.796982,0.604003,-2.9e-05,-0.796993,0.603988,-2.9e-05,-0.796993,0.603988,-2.9e-05,-0.796993,0.603988,-0,-0.796987,0.603996,-0,-0.796987,0.603996,-0,-0.796987,0.603996,-0,-0.79699,0.603992,-0,-0.79699,0.603992,-0,-0.79699,0.603992,-0,-0.796987,0.603997,-0,-0.796987,0.603997,-0,-0.796987,0.603997,-1e-06,-0.796986,0.603997,-1e-06,-0.796986,0.603997,-1e-06,-0.796986,0.603997,3e-06,-0.796985,0.603999,3e-06,-0.796985,0.603999,3e-06,-0.796985,0.603999,0,-0.796981,0.604005,0,-0.796981,0.604005,0,-0.796981,0.604005,3e-06,-0.796983,0.604001,3e-06,-0.796983,0.604001,3e-06,-0.796983,0.604001,-2e-06,-0.796977,0.604009,-2e-06,-0.796977,0.604009,-2e-06,-0.796977,0.604009,0,-0.796984,0.604,0,-0.796984,0.604,0,-0.796984,0.604,-0,-0.796987,0.603997,0,-0.796986,0.603997,0,-0.796986,0.603997,0,-0.796986,0.603997,-0,-0.79699,0.603993,-0,-0.79699,0.603993,-0,-0.79699,0.603993,5e-06,-0.79699,0.603993,5e-06,-0.79699,0.603993,5e-06,-0.79699,0.603993,5e-06,-0.796983,0.604002,5e-06,-0.796983,0.604002,5e-06,-0.796983,0.604002,4e-06,-0.796989,0.603994,4e-06,-0.796989,0.603994,4e-06,-0.796989,0.603994,5e-06,-0.796983,0.604002,5e-06,-0.796983,0.604002,5e-06,-0.796983,0.604002,5e-06,-0.796983,0.604002,2e-06,-0.79698,0.604005,2e-06,-0.79698,0.604005,2e-06,-0.79698,0.604005,-1e-06,-0.796981,0.604004,-1e-06,-0.796981,0.604004,-1e-06,-0.796981,0.604004,-2e-06,-0.79699,0.603992,-2e-06,-0.79699,0.603992,-2e-06,-0.79699,0.603992,-5e-06,-0.796982,0.604003,-5e-06,-0.796982,0.604003,-5e-06,-0.796982,0.604003,5e-06,-0.79698,0.604006,5e-06,-0.79698,0.604006,5e-06,-0.79698,0.604006,0,-0.796988,0.603996,0,-0.796988,0.603996,0,-0.796988,0.603996,0,-0.79699,0.603993,0,-0.79699,0.603993,0,-0.79699,0.603993,-0,-0.796994,0.603987,-0,-0.796994,0.603987,-0,-0.796994,0.603987,-2e-06,-0.797,0.603979,-2e-06,-0.797,0.603979,-2e-06,-0.797,0.603979,-0,-0.796987,0.603997,-0,-0.796987,0.603997,-0,-0.796987,0.603997,-0,-0.796985,0.603999,-0,-0.796985,0.603999,-0,-0.796985,0.603999,2e-06,-0.797002,0.603976,2e-06,-0.797002,0.603976,2e-06,-0.797002,0.603976,-2.1e-05,-0.796992,0.60399,-2.1e-05,-0.796992,0.60399,-2.1e-05,-0.796992,0.60399,2e-06,-0.796979,0.604007,2e-06,-0.796979,0.604007,2e-06,-0.796979,0.604007,-9e-06,-0.796992,0.603989,-9e-06,-0.796992,0.603989,-9e-06,-0.796992,0.603989,-1e-06,-0.796985,0.603998,-1e-06,-0.796985,0.603998,-1e-06,-0.796985,0.603998,1e-06,-0.796983,0.604002,1e-06,-0.796983,0.604002,1e-06,-0.796983,0.604002,1.2e-05,-0.796983,0.604002,1.2e-05,-0.796983,0.604002,1.2e-05,-0.796983,0.604002,-9e-06,-0.796978,0.604009,-9e-06,-0.796978,0.604009,-9e-06,-0.796978,0.604009,1e-06,-0.796985,0.603999,1e-06,-0.796985,0.603999,1e-06,-0.796985,0.603999,6e-06,-0.797036,0.603932,6e-06,-0.797036,0.603932,6e-06,-0.797036,0.603932,1e-05,-0.796989,0.603994,1e-05,-0.796989,0.603994,1e-05,-0.796989,0.603994,-0,-0.796987,0.603996,-0,-0.796987,0.603996,-0,-0.796987,0.603996,-0,-0.79699,0.603992,-0,-0.79699,0.603992,-0,-0.79699,0.603992,-1e-06,-0.796985,0.603999,-1e-06,-0.796985,0.603999,-1e-06,-0.796985,0.603999,-3e-06,-0.796991,0.603992,-3e-06,-0.796991,0.603992,-3e-06,-0.796991,0.603992,-2e-06,-0.79699,0.603992,-2e-06,-0.79699,0.603992,-2e-06,-0.79699,0.603992,1.9e-05,-0.796989,0.603994,1.9e-05,-0.796989,0.603994,1.9e-05,-0.796989,0.603994,2e-06,-0.796986,0.603998,2e-06,-0.796986,0.603998,2e-06,-0.796986,0.603998,-7e-06,-0.796988,0.603996,-7e-06,-0.796988,0.603996,-7e-06,-0.796988,0.603996,0,-0.796986,0.603997,0,-0.796986,0.603997,0,-0.796986,0.603997,1e-06,-0.796994,0.603987,1e-06,-0.796994,0.603987,1e-06,-0.796994,0.603987,7e-06,-0.796984,0.604001,7e-06,-0.796984,0.604001,7e-06,-0.796984,0.604001,-1.4e-05,-0.797023,0.603948,-1.4e-05,-0.797023,0.603948,-1.4e-05,-0.797023,0.603948,-5e-06,-0.796983,0.604001,-5e-06,-0.796983,0.604001,-5e-06,-0.796983,0.604001,-2e-06,-0.796989,0.603994,-2e-06,-0.796989,0.603994,-2e-06,-0.796989,0.603994,7e-06,-0.796983,0.604002,7e-06,-0.796983,0.604002,7e-06,-0.796983,0.604002,-2.2e-05,-0.797017,0.603957,-2.2e-05,-0.797017,0.603957,-2.2e-05,-0.797017,0.603957,1e-06,-0.796982,0.604004,1e-06,-0.796982,0.604004,1e-06,-0.796982,0.604004,-3e-06,-0.79698,0.604005,-3e-06,-0.79698,0.604005,-3e-06,-0.79698,0.604005,-4e-06,-0.796982,0.604004,-4e-06,-0.796982,0.604004,-4e-06,-0.796982,0.604004,-2e-06,-0.797003,0.603975,-2e-06,-0.797003,0.603975,-2e-06,-0.797003,0.603975,0,-0.797017,0.603956,0,-0.797017,0.603956,0,-0.797017,0.603956,1.6e-05,-0.796997,0.603983,1.6e-05,-0.796997,0.603983,1.6e-05,-0.796997,0.603983,1e-06,-0.796972,0.604016,1e-06,-0.796972,0.604016,1e-06,-0.796972,0.604016,1e-06,-0.796992,0.60399,1e-06,-0.796992,0.60399,1e-06,-0.796992,0.60399,-7e-06,-0.796991,0.603991,-7e-06,-0.796991,0.603991,-7e-06,-0.796991,0.603991,-3e-06,-0.797011,0.603965,-3e-06,-0.797011,0.603965,-3e-06,-0.797011,0.603965,3e-06,-0.79699,0.603993,3e-06,-0.79699,0.603993,3e-06,-0.79699,0.603993,-2e-06,-0.79709,0.603861,-2e-06,-0.79709,0.603861,-2e-06,-0.79709,0.603861,-3e-06,-0.796974,0.604014,-3e-06,-0.796974,0.604014,-3e-06,-0.796974,0.604014,1e-06,-0.796962,0.604029,1e-06,-0.796962,0.604029,1e-06,-0.796962,0.604029,-0,-0.796975,0.604012,-0,-0.796975,0.604012,-0,-0.796975,0.604012,6e-06,-0.796949,0.604046,6e-06,-0.796949,0.604046,6e-06,-0.796949,0.604046,-1e-06,-0.796983,0.604001,-1e-06,-0.796983,0.604001,-1e-06,-0.796983,0.604001,-7e-06,-0.796992,0.603991,-7e-06,-0.796992,0.603991,-7e-06,-0.796992,0.603991,5e-06,-0.796976,0.604011,5e-06,-0.796976,0.604011,5e-06,-0.796976,0.604011,0,-0.796882,0.604135,0,-0.796882,0.604135,0,-0.796882,0.604135,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-0.796989,0.603994,0,-0.796989,0.603994,0,-0.796989,0.603994,0,-0.796989,0.603994,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1e-06,-0.82296,0.568099,-1e-06,-0.82296,0.568099,-1e-06,-0.82296,0.568099,-1e-06,-0.822965,0.568093,-1e-06,-0.822965,0.568093,-1e-06,-0.822965,0.568093,-1e-06,-0.822954,0.568108,-1e-06,-0.822954,0.568108,-1e-06,-0.822954,0.568108,-0,-0.822945,0.568121,-0,-0.822945,0.568121,-0,-0.822945,0.568121,-0,-0.822947,0.568118,-0,-0.822947,0.568118,-0,-0.822947,0.568118,1e-06,-0.822951,0.568112,1e-06,-0.822951,0.568112,1e-06,-0.822951,0.568112,-1e-06,-0.822936,0.568133,-1e-06,-0.822936,0.568133,-1e-06,-0.822936,0.568133,-1e-06,-0.82295,0.568114,-1e-06,-0.82295,0.568114,-1e-06,-0.82295,0.568114,3e-06,-0.822969,0.568086,3e-06,-0.822969,0.568086,3e-06,-0.822969,0.568086,-1e-06,-0.82295,0.568114,-2e-06,-0.822949,0.568115,-2e-06,-0.822949,0.568115,-2e-06,-0.822949,0.568115,-2e-06,-0.822949,0.568115,5e-06,-0.822954,0.568108,5e-06,-0.822954,0.568108,5e-06,-0.822954,0.568108,-3e-06,-0.822943,0.568124,-3e-06,-0.822943,0.568124,-3e-06,-0.822943,0.568124,-1e-06,-0.822947,0.568118,-1e-06,-0.822947,0.568118,-1e-06,-0.822947,0.568118,0,-0.822952,0.568111,0,-0.822952,0.568111,0,-0.822952,0.568111,-0,-0.822947,0.568118,-0,-0.822947,0.568118,-0,-0.822947,0.568118,-2e-06,-0.82296,0.5681,-2e-06,-0.82296,0.5681,-2e-06,-0.82296,0.5681,2e-06,-0.822949,0.568115,2e-06,-0.822949,0.568115,2e-06,-0.822949,0.568115,0,-0.822952,0.56811,0,-0.822952,0.56811,0,-0.822952,0.56811,1e-06,-0.822949,0.568116,1e-06,-0.822949,0.568116,1e-06,-0.822949,0.568116,-2e-06,-0.822902,0.568184,-2e-06,-0.822902,0.568184,-2e-06,-0.822902,0.568184,1e-06,-0.822964,0.568094,1e-06,-0.822964,0.568094,1e-06,-0.822964,0.568094,0,-0.822971,0.568083,0,-0.822971,0.568083,0,-0.822971,0.568083,-0,-0.822946,0.568119,-0,-0.822946,0.568119,-0,-0.822946,0.568119,1e-06,-0.822953,0.56811,1e-06,-0.822953,0.56811,1e-06,-0.822953,0.56811,0,-0.822942,0.568125,0,-0.822942,0.568125,0,-0.822942,0.568125,-0,-0.822956,0.568105,-0,-0.822956,0.568105,-0,-0.822956,0.568105,2e-06,-0.822945,0.568121,2e-06,-0.822945,0.568121,2e-06,-0.822945,0.568121,1e-06,-0.822935,0.568135,1e-06,-0.822935,0.568135,1e-06,-0.822935,0.568135,-3e-06,-0.822959,0.568101,-3e-06,-0.822959,0.568101,-3e-06,-0.822959,0.568101,1e-06,-0.822952,0.568111,1e-06,-0.822952,0.568111,1e-06,-0.822952,0.568111,-2e-06,-0.822939,0.568129,-2e-06,-0.822939,0.568129,-2e-06,-0.822939,0.568129,-1e-06,-0.82295,0.568114,-1e-06,-0.82295,0.568114,-1e-06,-0.82295,0.568114,2e-05,-0.822919,0.568158,2e-05,-0.822919,0.568158,2e-05,-0.822919,0.568158,0,-0.82294,0.568128,0,-0.82294,0.568128,0,-0.82294,0.568128,-1e-06,-0.822923,0.568152,-1e-06,-0.822923,0.568152,-1e-06,-0.822923,0.568152,-0,-0.822953,0.56811,-0,-0.822953,0.56811,-0,-0.822953,0.56811,-0,-0.822948,0.568116,-0,-0.822948,0.568116,-0,-0.822948,0.568116,-1e-06,-0.822949,0.568116,-1e-06,-0.822949,0.568116,-1e-06,-0.822949,0.568116,0,-0.822944,0.568122,0,-0.822944,0.568122,0,-0.822944,0.568122,-1e-06,-0.822961,0.568098,-1e-06,-0.822961,0.568098,-1e-06,-0.822961,0.568098,0,-0.822961,0.568098,0,-0.822961,0.568098,0,-0.822961,0.568098,-0,-0.822956,0.568105,-0,-0.822956,0.568105,-0,-0.822956,0.568105,1e-06,-0.822955,0.568106,1e-06,-0.822955,0.568106,1e-06,-0.822955,0.568106,0,-0.822948,0.568116,0,-0.822948,0.568116,0,-0.822948,0.568116,-1e-06,-0.82294,0.568129,-1e-06,-0.82294,0.568129,-1e-06,-0.82294,0.568129,1e-06,-0.822951,0.568112,1e-06,-0.822951,0.568112,1e-06,-0.822951,0.568112,-1e-06,-0.822959,0.5681,-1e-06,-0.822959,0.5681,-1e-06,-0.822959,0.5681,-1e-06,-0.822941,0.568127,-1e-06,-0.822941,0.568127,-1e-06,-0.822941,0.568127,0,-0.82295,0.568114,0,-0.82295,0.568114,0,-0.82295,0.568114,2e-06,-0.822911,0.56817,2e-06,-0.822911,0.56817,2e-06,-0.822911,0.56817,2e-06,-0.822914,0.568166,2e-06,-0.822914,0.568166,2e-06,-0.822914,0.568166,-4e-06,-0.822949,0.568115,-4e-06,-0.822949,0.568115,-4e-06,-0.822949,0.568115,1e-05,-0.82265,0.568548,1e-05,-0.82265,0.568548,1e-05,-0.82265,0.568548,-2e-06,-0.822946,0.56812,-2e-06,-0.822946,0.56812,-2e-06,-0.822946,0.56812,0,-0.822945,0.568122,0,-0.822945,0.568122,0,-0.822945,0.568122,3e-06,-0.822983,0.568065,3e-06,-0.822983,0.568065,3e-06,-0.822983,0.568065,2e-06,-0.82295,0.568114,2e-06,-0.82295,0.568114,2e-06,-0.82295,0.568114,7e-06,-0.822961,0.568097,7e-06,-0.822961,0.568097,7e-06,-0.822961,0.568097,-0,-0.82295,0.568114,-0,-0.82295,0.568114,-0,-0.822945,0.568121,-0,-0.822945,0.568121,-0,-0.822945,0.568121,0,-0.82295,0.568114,0,-0.82295,0.568114,0,-0.82295,0.568114,3e-06,-0.822956,0.568105,3e-06,-0.822956,0.568105,3e-06,-0.822956,0.568105,0,-0.822949,0.568115,0,-0.822949,0.568115,0,-0.822949,0.568115,-1e-06,-0.822946,0.568119,-1e-06,-0.822946,0.568119,-1e-06,-0.822946,0.568119,6e-06,-0.822958,0.568102,6e-06,-0.822958,0.568102,6e-06,-0.822958,0.568102,2e-06,-0.822949,0.568115,2e-06,-0.822949,0.568115,2e-06,-0.822949,0.568115,4e-06,-0.822947,0.568118,4e-06,-0.822947,0.568118,4e-06,-0.822947,0.568118,2e-06,-0.822949,0.568115,-0,-0.822951,0.568113,-0,-0.822951,0.568113,-0,-0.822951,0.568113,3e-06,-0.822949,0.568115,3e-06,-0.822949,0.568115,3e-06,-0.822949,0.568115,0,-0.82295,0.568114,0,-0.82295,0.568114,1e-06,-0.822951,0.568112,1e-06,-0.822951,0.568112,1e-06,-0.822951,0.568112,-1e-06,-0.822949,0.568116,-1e-06,-0.822949,0.568116,-1e-06,-0.822949,0.568116,-1e-06,-0.822949,0.568115,-1e-06,-0.822949,0.568115,-1e-06,-0.822949,0.568115,0,-0.822949,0.568115,0,-0.822949,0.568115,0,-0.822949,0.568115,-1e-06,-0.822949,0.568115,-1e-06,-0.822949,0.568115,-1e-06,-0.822949,0.568115,-2e-06,-0.822949,0.568115,-2e-06,-0.822949,0.568115,-2e-06,-0.822949,0.568115,-1e-06,-0.822949,0.568116,-3e-06,-0.822949,0.568115,-3e-06,-0.822949,0.568115,-3e-06,-0.822949,0.568115,-1e-06,-0.822952,0.568111,-1e-06,-0.822952,0.568111,-1e-06,-0.822952,0.568111,-1e-06,-0.822952,0.56811,-1e-06,-0.822952,0.56811,-1e-06,-0.822952,0.56811,-3e-06,-0.822944,0.568123,-3e-06,-0.822944,0.568123,-3e-06,-0.822944,0.568123,-4e-06,-0.822949,0.568115,-4e-06,-0.822949,0.568115,-4e-06,-0.822949,0.568115,-1e-06,-0.82295,0.568114,-1e-06,-0.82295,0.568114,-1e-06,-0.82295,0.568114,-4e-06,-0.822952,0.568111,-4e-06,-0.822952,0.568111,-4e-06,-0.822952,0.568111,-2e-06,-0.822946,0.568119,-2e-06,-0.822946,0.568119,-2e-06,-0.822946,0.568119,-0,-0.822943,0.568124,-0,-0.822943,0.568124,-0,-0.822943,0.568124,-0,-0.822949,0.568115,-0,-0.822949,0.568115,-0,-0.822949,0.568115,-2e-06,-0.822957,0.568104,-2e-06,-0.822957,0.568104,-2e-06,-0.822957,0.568104,2e-06,-0.822947,0.568118,2e-06,-0.822947,0.568118,2e-06,-0.822947,0.568118,-3e-06,-0.822954,0.568108,-3e-06,-0.822954,0.568108,-3e-06,-0.822954,0.568108,-1e-06,-0.822955,0.568107,-1e-06,-0.822955,0.568107,-1e-06,-0.822955,0.568107,-1e-06,-0.822939,0.56813,-1e-06,-0.822939,0.56813,-1e-06,-0.822939,0.56813,-2e-06,-0.822919,0.568159,-2e-06,-0.822919,0.568159,-2e-06,-0.822919,0.568159,-4e-06,-0.822953,0.56811,-4e-06,-0.822953,0.56811,-4e-06,-0.822953,0.56811,-3e-06,-0.822956,0.568105,-3e-06,-0.822956,0.568105,-3e-06,-0.822956,0.568105,-1e-06,-0.822944,0.568122,-1e-06,-0.822944,0.568122,-1e-06,-0.822944,0.568122,1e-06,-0.822951,0.568113,1e-06,-0.822951,0.568113,1e-06,-0.822951,0.568113,1e-06,-0.822951,0.568112,1e-06,-0.822951,0.568112,1e-06,-0.822951,0.568112,-1e-06,-0.822942,0.568125,-1e-06,-0.822942,0.568125,-1e-06,-0.822942,0.568125,2e-06,-0.822947,0.568118,2e-06,-0.822947,0.568118,2e-06,-0.822947,0.568118,4e-06,-0.822949,0.568116,4e-06,-0.822949,0.568116,4e-06,-0.822949,0.568116,-3e-06,-0.822954,0.568108,-3e-06,-0.822954,0.568108,-3e-06,-0.822954,0.568108,-1e-06,-0.822948,0.568117,-1e-06,-0.822948,0.568117,-1e-06,-0.822948,0.568117,3e-06,-0.822949,0.568115,3e-06,-0.822949,0.568115,3e-06,-0.822949,0.568115,2e-06,-0.822952,0.568111,2e-06,-0.822952,0.568111,2e-06,-0.822952,0.568111,2e-06,-0.822952,0.568111,2e-06,-0.822952,0.568111,2e-06,-0.822952,0.568111,1e-06,-0.82295,0.568114,1e-06,-0.82295,0.568114,1e-06,-0.82295,0.568114,-0,-0.82295,0.568114,-0,-0.82295,0.568114,-0,-0.82295,0.568114,1e-06,-0.82295,0.568114,-1e-06,-0.822942,0.568125,-1e-06,-0.822942,0.568125,-1e-06,-0.822942,0.568125,-1e-06,-0.822942,0.568126,-1e-06,-0.822942,0.568126,-1e-06,-0.822942,0.568126,2e-06,-0.822951,0.568112,2e-06,-0.822951,0.568112,2e-06,-0.822951,0.568112,0,-0.822949,0.568115,0,-0.822949,0.568115,0,-0.822949,0.568115,-0,-0.822954,0.568108,-0,-0.822954,0.568108,-0,-0.822954,0.568108,-3e-06,-0.822976,0.568076,-3e-06,-0.822976,0.568076,-3e-06,-0.822976,0.568076,-6e-06,-0.822941,0.568127,-6e-06,-0.822941,0.568127,-6e-06,-0.822941,0.568127,2e-06,-0.822945,0.56812,2e-06,-0.822945,0.56812,2e-06,-0.822945,0.56812,-0,-0.822952,0.56811,-0,-0.822952,0.56811,-0,-0.822952,0.56811,-1e-06,-0.822949,0.568116,-1e-06,-0.822949,0.568116,-1e-06,-0.822949,0.568116,2e-06,-0.822961,0.568098,2e-06,-0.822961,0.568098,2e-06,-0.822961,0.568098,1e-06,-0.822938,0.568131,1e-06,-0.822938,0.568131,1e-06,-0.822938,0.568131,-1e-06,-0.822943,0.568124,-1e-06,-0.822943,0.568124,-1e-06,-0.822943,0.568124,0,-0.822971,0.568084,0,-0.822971,0.568084,0,-0.822971,0.568084,-0,-0.822953,0.56811,-0,-0.822953,0.56811,-0,-0.822953,0.56811,0,-0.822948,0.568116,0,-0.822948,0.568116,0,-0.822948,0.568116,-0,-0.822945,0.568121,-0,-0.822945,0.568121,-0,-0.822945,0.568121,-0,-0.822953,0.56811,-0,-0.822953,0.56811,-0,-0.822953,0.56811,-0,-0.822951,0.568112,-0,-0.822951,0.568112,-0,-0.822951,0.568112,0,-0.822942,0.568126,0,-0.822942,0.568126,0,-0.822942,0.568126,-2e-06,-0.82295,0.568114,-2e-06,-0.82295,0.568114,-2e-06,-0.82295,0.568114,0,-0.822939,0.568129,0,-0.822939,0.568129,0,-0.822939,0.568129,-3e-06,-0.822964,0.568094,-3e-06,-0.822964,0.568094,-3e-06,-0.822964,0.568094,1e-06,-0.822948,0.568117,1e-06,-0.822948,0.568117,1e-06,-0.822948,0.568117,-1e-06,-0.822949,0.568115,-1e-06,-0.822949,0.568115,-1e-06,-0.822949,0.568115,4e-06,-0.822948,0.568117,4e-06,-0.822948,0.568117,4e-06,-0.822948,0.568117,-1e-06,-0.822947,0.568119,-1e-06,-0.822947,0.568119,-1e-06,-0.822947,0.568119,3e-06,-0.822956,0.568105,3e-06,-0.822956,0.568105,3e-06,-0.822956,0.568105,5e-06,-0.822952,0.568111,5e-06,-0.822952,0.568111,5e-06,-0.822952,0.568111,2e-06,-0.822949,0.568116,2e-06,-0.822949,0.568116,2e-06,-0.822949,0.568116,7e-06,-0.822947,0.568118,7e-06,-0.822947,0.568118,7e-06,-0.822947,0.568118,-1e-06,-0.822959,0.5681,-1e-06,-0.822959,0.5681,-1e-06,-0.822959,0.5681,9e-06,-0.822953,0.56811,9e-06,-0.822953,0.56811,9e-06,-0.822953,0.56811,-5e-06,-0.822941,0.568127,-5e-06,-0.822941,0.568127,-5e-06,-0.822941,0.568127,7e-06,-0.822959,0.5681,7e-06,-0.822959,0.5681,7e-06,-0.822959,0.5681,2e-06,-0.822965,0.568092,2e-06,-0.822965,0.568092,2e-06,-0.822965,0.568092,1e-06,-0.82294,0.568128,1e-06,-0.82294,0.568128,1e-06,-0.82294,0.568128,-2e-06,-0.822953,0.568109,-2e-06,-0.822953,0.568109,-2e-06,-0.822953,0.568109,-2e-06,-0.822954,0.568108,-2e-06,-0.822954,0.568108,-2e-06,-0.822954,0.568108,-1e-06,-0.822949,0.568115,-1e-06,-0.822949,0.568115,-1e-06,-0.822949,0.568115,-1e-06,-0.822953,0.56811,-1e-06,-0.822953,0.56811,-1e-06,-0.822953,0.56811,1e-06,-0.822928,0.568145,1e-06,-0.822928,0.568145,1e-06,-0.822928,0.568145,-2e-06,-0.822947,0.568118,-2e-06,-0.822947,0.568118,-2e-06,-0.822947,0.568118,-2e-06,-0.822947,0.568118,2e-06,-0.822944,0.568122,2e-06,-0.822944,0.568122,2e-06,-0.822944,0.568122,3e-06,-0.822947,0.568118,3e-06,-0.822947,0.568118,3e-06,-0.822947,0.568118,0,-0.822955,0.568106,0,-0.822955,0.568106,0,-0.822955,0.568106,2e-06,-0.822954,0.568108,2e-06,-0.822954,0.568108,2e-06,-0.822954,0.568108,-1e-05,-0.822939,0.56813,-1e-05,-0.822939,0.56813,-1e-05,-0.822939,0.56813,-0,-0.822948,0.568116,-0,-0.822948,0.568116,-0,-0.822948,0.568116,-0,-0.822948,0.568116,0,-0.82295,0.568114,0,-0.82295,0.568114,0,-0.82295,0.568114,0,-0.82295,0.568114,-3e-06,-0.822933,0.568138,-3e-06,-0.822933,0.568138,-3e-06,-0.822933,0.568138,1e-06,-0.82295,0.568113,1e-06,-0.82295,0.568113,1e-06,-0.82295,0.568113,-1e-06,-0.822898,0.56819,-1e-06,-0.822898,0.56819,-1e-06,-0.822898,0.56819,-2.1e-05,-0.822662,0.568531,-2.1e-05,-0.822662,0.568531,-2.1e-05,-0.822662,0.568531,1e-06,-0.822956,0.568105,1e-06,-0.822956,0.568105,1e-06,-0.822956,0.568105,1e-06,-0.822956,0.568105,1e-06,-0.822955,0.568106,1e-06,-0.822955,0.568106,1e-06,-0.822955,0.568106,0,-0.82295,0.568114,0,-0.82295,0.568114,0,-0.82295,0.568114,2e-06,-0.822948,0.568117,2e-06,-0.822948,0.568117,2e-06,-0.822948,0.568117,2e-06,-0.82294,0.568129,2e-06,-0.82294,0.568129,2e-06,-0.82294,0.568129,1e-06,-0.822947,0.568119,1e-06,-0.822947,0.568119,1e-06,-0.822947,0.568119,2e-06,-0.822941,0.568126,2e-06,-0.822941,0.568126,2e-06,-0.822941,0.568126,1e-06,-0.822946,0.568119,1e-06,-0.822946,0.568119,1e-06,-0.822946,0.568119,2e-06,-0.822962,0.568096,2e-06,-0.822962,0.568096,2e-06,-0.822962,0.568096,9e-06,-0.822988,0.568058,9e-06,-0.822988,0.568058,9e-06,-0.822988,0.568058,-1e-06,-0.822946,0.568119,-1e-06,-0.822946,0.568119,-1e-06,-0.822946,0.568119,1e-06,-0.822952,0.568111,1e-06,-0.822952,0.568111,1e-06,-0.822952,0.568111,-3e-06,-0.822948,0.568117,-3e-06,-0.822948,0.568117,-3e-06,-0.822948,0.568117,-2e-06,-0.82295,0.568114,-2e-06,-0.82295,0.568114,-2e-06,-0.82295,0.568114,-0,-0.822954,0.568107,-0,-0.822954,0.568107,-0,-0.822954,0.568107,7e-06,-0.822883,0.568211,7e-06,-0.822883,0.568211,7e-06,-0.822883,0.568211,0,-0.822957,0.568104,0,-0.822957,0.568104,0,-0.822957,0.568104,-0,-0.822955,0.568107,-0,-0.822955,0.568107,-0,-0.822955,0.568107,0,-0.822949,0.568115,0,-0.822949,0.568115,0,-0.822949,0.568115,-4e-06,-0.822949,0.568115,-4e-06,-0.822949,0.568115,-4e-06,-0.822949,0.568115,1e-06,-0.822948,0.568116,1e-06,-0.822948,0.568116,1e-06,-0.822948,0.568116,1e-06,-0.822951,0.568113,1e-06,-0.822951,0.568113,1e-06,-0.822951,0.568113,-3e-06,-0.822941,0.568127,-3e-06,-0.822941,0.568127,-3e-06,-0.822941,0.568127,-2e-06,-0.822948,0.568117,-2e-06,-0.822948,0.568117,-2e-06,-0.822948,0.568117,-3e-06,-0.822948,0.568117,-3e-06,-0.822948,0.568117,-3e-06,-0.822948,0.568117,3e-06,-0.822934,0.568137,3e-06,-0.822934,0.568137,3e-06,-0.822934,0.568137,1e-05,-0.822965,0.568092,1e-05,-0.822965,0.568092,1e-05,-0.822965,0.568092,5e-06,-0.822935,0.568135,5e-06,-0.822935,0.568135,5e-06,-0.822935,0.568135,-9e-06,-0.822971,0.568084,-9e-06,-0.822971,0.568084,-9e-06,-0.822971,0.568084,-1.1e-05,-0.822961,0.568098,-1.1e-05,-0.822961,0.568098,-1.1e-05,-0.822961,0.568098,8e-06,-0.82292,0.568157,8e-06,-0.82292,0.568157,8e-06,-0.82292,0.568157,-1e-06,-0.822944,0.568122,-1e-06,-0.822944,0.568122,-1e-06,-0.822944,0.568122,-1e-06,-0.82295,0.568114,-1e-06,-0.82295,0.568114,-1e-06,-0.82295,0.568114,3e-06,-0.822961,0.568098,3e-06,-0.822961,0.568098,3e-06,-0.822961,0.568098,1e-06,-0.822951,0.568112,1e-06,-0.822951,0.568112,1e-06,-0.822951,0.568112,5e-06,-0.822945,0.56812,5e-06,-0.822945,0.56812,5e-06,-0.822945,0.56812,-1e-06,-0.822955,0.568107,-1e-06,-0.822955,0.568107,-1e-06,-0.822955,0.568107,0,-0.822953,0.56811,0,-0.822953,0.56811,0,-0.822953,0.56811,-1e-06,-0.822948,0.568116,-1e-06,-0.822948,0.568116,-1e-06,-0.822948,0.568116,-2e-06,-0.822951,0.568112,-2e-06,-0.822951,0.568112,-2e-06,-0.822951,0.568112,1e-06,-0.822947,0.568119,1e-06,-0.822947,0.568119,1e-06,-0.822947,0.568119,-2e-06,-0.82295,0.568114,-2e-06,-0.82295,0.568114,-2e-06,-0.82295,0.568114,-9e-06,-0.822932,0.56814,-9e-06,-0.822932,0.56814,-9e-06,-0.822932,0.56814,2e-06,-0.822959,0.568101,2e-06,-0.822959,0.568101,2e-06,-0.822959,0.568101,2e-06,-0.822949,0.568115,2e-06,-0.822949,0.568115,2e-06,-0.822949,0.568115,2e-06,-0.822959,0.568101,-1e-06,-0.822945,0.568121,-1e-06,-0.822945,0.568121,-1e-06,-0.822945,0.568121,-2e-06,-0.822948,0.568117,-2e-06,-0.822948,0.568117,-2e-06,-0.822948,0.568117,-1e-06,-0.822951,0.568112,-1e-06,-0.822951,0.568112,-1e-06,-0.822951,0.568112,-2e-06,-0.822948,0.568116,-2e-06,-0.822948,0.568116,-2e-06,-0.822948,0.568116,1e-06,-0.82295,0.568114,1e-06,-0.82295,0.568114,1e-06,-0.82295,0.568114,-4e-06,-0.82295,0.568114,-4e-06,-0.82295,0.568114,-4e-06,-0.82295,0.568114,2e-06,-0.82295,0.568114,2e-06,-0.82295,0.568114,2e-06,-0.82295,0.568114,0,-0.822949,0.568115,0,-0.822949,0.568115,0,-0.822949,0.568115,-4e-06,-0.82295,0.568114,-1e-06,-0.82295,0.568114,-1e-06,-0.82295,0.568114,-1e-06,-0.82295,0.568114,-1e-06,-0.822946,0.56812,-1e-06,-0.822946,0.56812,-1e-06,-0.822946,0.56812,1e-06,-0.822947,0.568119,1e-06,-0.822947,0.568119,1e-06,-0.822947,0.568119,0,-0.822949,0.568115,0,-0.822949,0.568115,0,-0.822949,0.568115,-1e-06,-0.822949,0.568115,-1e-06,-0.822949,0.568115,-1e-06,-0.822949,0.568115,-2e-06,-0.822962,0.568096,-2e-06,-0.822962,0.568096,-2e-06,-0.822962,0.568096,2e-06,-0.822952,0.56811,2e-06,-0.822952,0.56811,2e-06,-0.822952,0.56811,-2e-06,-0.822957,0.568104,-2e-06,-0.822957,0.568104,-2e-06,-0.822957,0.568104,-2e-06,-0.822948,0.568117,-2e-06,-0.822948,0.568117,-2e-06,-0.822948,0.568117,2e-06,-0.82295,0.568114,2e-06,-0.82295,0.568114,2e-06,-0.82295,0.568114,-0,-0.822945,0.568121,-0,-0.822945,0.568121,-0,-0.822945,0.568121,-0,-0.822953,0.56811,-0,-0.822953,0.56811,-0,-0.822953,0.56811,-1e-06,-0.822953,0.568109,-1e-06,-0.822953,0.568109,-1e-06,-0.822953,0.568109,1e-06,-0.82295,0.568113,1e-06,-0.82295,0.568113,1e-06,-0.82295,0.568113,2e-06,-0.822947,0.568118,2e-06,-0.822947,0.568118,2e-06,-0.822947,0.568118,1e-06,-0.82295,0.568114,1e-06,-0.82295,0.568114,1e-06,-0.82295,0.568114,2e-06,-0.822949,0.568115,2e-06,-0.822949,0.568115,2e-06,-0.822949,0.568115,-4e-06,-0.822922,0.568155,-4e-06,-0.822922,0.568155,-4e-06,-0.822922,0.568155,1e-06,-0.822948,0.568117,1e-06,-0.822948,0.568117,1e-06,-0.822948,0.568117,1e-06,-0.822946,0.56812,1e-06,-0.822946,0.56812,1e-06,-0.822946,0.56812,1e-06,-0.822955,0.568107,1e-06,-0.822955,0.568107,1e-06,-0.822955,0.568107,-0,-0.822951,0.568112,-0,-0.822951,0.568112,-0,-0.822951,0.568112,-1e-06,-0.822946,0.56812,-1e-06,-0.822946,0.56812,-1e-06,-0.822946,0.56812,1e-06,-0.822958,0.568103,1e-06,-0.822958,0.568103,1e-06,-0.822958,0.568103,-1e-06,-0.822947,0.568118,-1e-06,-0.822947,0.568118,-1e-06,-0.822947,0.568118,-1e-06,-0.822946,0.568119,-1e-06,-0.822946,0.568119,-1e-06,-0.822946,0.568119,1e-06,-0.822956,0.568105,1e-06,-0.822956,0.568105,1e-06,-0.822956,0.568105,-0,-0.822952,0.568111,-0,-0.822952,0.568111,-0,-0.822952,0.568111,-2e-06,-0.822941,0.568128,-2e-06,-0.822941,0.568128,-2e-06,-0.822941,0.568128,1e-06,-0.82289,0.568201,1e-06,-0.82289,0.568201,1e-06,-0.82289,0.568201,-1e-06,-0.822951,0.568112,-1e-06,-0.822951,0.568112,-1e-06,-0.822951,0.568112,-1e-06,-0.822959,0.5681,-1e-06,-0.822959,0.5681,-1e-06,-0.822959,0.5681,-1e-06,-0.822951,0.568112,-1e-06,-0.822951,0.568112,-1e-06,-0.822944,0.568123,-1e-06,-0.822944,0.568123,-1e-06,-0.822944,0.568123,-0,-0.822949,0.568115,-0,-0.822949,0.568115,-0,-0.822949,0.568115,1e-06,-0.822955,0.568107,1e-06,-0.822955,0.568107,1e-06,-0.822955,0.568107,-0,-0.822946,0.568119,-0,-0.822946,0.568119,-0,-0.822946,0.568119,-0,-0.822947,0.568119,-0,-0.822947,0.568119,-0,-0.822947,0.568119,3e-06,-0.822961,0.568098,3e-06,-0.822961,0.568098,3e-06,-0.822961,0.568098,-1e-06,-0.822951,0.568112,-1e-06,-0.822951,0.568112,-1e-06,-0.822951,0.568112,-4e-06,-0.822949,0.568115,-4e-06,-0.822949,0.568115,-4e-06,-0.822949,0.568115,-4e-06,-0.822948,0.568117,-4e-06,-0.822948,0.568117,-4e-06,-0.822948,0.568117,5e-06,-0.822954,0.568108,5e-06,-0.822954,0.568108,5e-06,-0.822954,0.568108,-3e-06,-0.822943,0.568124,-3e-06,-0.822943,0.568124,-3e-06,-0.822943,0.568124,2e-06,-0.822956,0.568105,2e-06,-0.822956,0.568105,2e-06,-0.822956,0.568105,0,-0.822948,0.568116,0,-0.822948,0.568116,0,-0.822948,0.568116,0,-0.822947,0.568118,0,-0.822947,0.568118,0,-0.822947,0.568118,-1e-06,-0.822958,0.568103,-1e-06,-0.822958,0.568103,-1e-06,-0.822958,0.568103,1e-06,-0.82295,0.568114,1e-06,-0.82295,0.568114,1e-06,-0.82295,0.568114,0,-0.822952,0.56811,0,-0.822952,0.56811,0,-0.822952,0.56811,-1e-06,-0.822949,0.568116,-1e-06,-0.822949,0.568116,-1e-06,-0.822949,0.568116,-2e-06,-0.822905,0.568178,-2e-06,-0.822905,0.568178,-2e-06,-0.822905,0.568178,2e-06,-0.822966,0.568091,2e-06,-0.822966,0.568091,2e-06,-0.822966,0.568091,1e-06,-0.822973,0.568081,1e-06,-0.822973,0.568081,1e-06,-0.822973,0.568081,0,-0.822952,0.568111,0,-0.822952,0.568111,0,-0.822952,0.568111,-2e-06,-0.822942,0.568126,-2e-06,-0.822942,0.568126,-2e-06,-0.822942,0.568126,-0,-0.822959,0.568101,-0,-0.822959,0.568101,-0,-0.822959,0.568101,0,-0.822944,0.568123,0,-0.822944,0.568123,0,-0.822944,0.568123,0,-0.822946,0.56812,0,-0.822946,0.56812,0,-0.822946,0.56812,0,-0.822947,0.568118,0,-0.822947,0.568118,0,-0.822947,0.568118,-3e-06,-0.822956,0.568106,-3e-06,-0.822956,0.568106,-3e-06,-0.822956,0.568106,-0,-0.822949,0.568115,-0,-0.822949,0.568115,-0,-0.822949,0.568115,-0,-0.822948,0.568117,-0,-0.822948,0.568117,-0,-0.822948,0.568117,-0,-0.822948,0.568116,-0,-0.822948,0.568116,-0,-0.822948,0.568116,2.2e-05,-0.822916,0.568164,2.2e-05,-0.822916,0.568164,2.2e-05,-0.822916,0.568164,8e-06,-0.822913,0.568167,8e-06,-0.822913,0.568167,8e-06,-0.822913,0.568167,-3e-06,-0.822953,0.568109,-3e-06,-0.822953,0.568109,-3e-06,-0.822953,0.568109,1.1e-05,-0.822922,0.568154,1.1e-05,-0.822922,0.568154,1.1e-05,-0.822922,0.568154,-2e-06,-0.822958,0.568102,-2e-06,-0.822958,0.568102,-2e-06,-0.822958,0.568102,-4e-06,-0.82295,0.568113,-4e-06,-0.82295,0.568113,-4e-06,-0.82295,0.568113,-1e-06,-0.822941,0.568126,-1e-06,-0.822941,0.568126,-1e-06,-0.822941,0.568126,-3e-06,-0.822947,0.568118,-3e-06,-0.822947,0.568118,-3e-06,-0.822947,0.568118,1e-06,-0.82295,0.568114,1e-06,-0.82295,0.568114,1e-06,-0.82295,0.568114,0,-0.822954,0.568108,0,-0.822954,0.568108,0,-0.822954,0.568108,-2e-06,-0.822961,0.568098,-2e-06,-0.822961,0.568098,-2e-06,-0.822961,0.568098,0,-0.822944,0.568122,0,-0.822944,0.568122,0,-0.822944,0.568122,2e-06,-0.82295,0.568113,2e-06,-0.82295,0.568113,2e-06,-0.82295,0.568113,-0,-0.822951,0.568113,-0,-0.822951,0.568113,-0,-0.822951,0.568113,-7e-06,-0.822926,0.568148,-7e-06,-0.822926,0.568148,-7e-06,-0.822926,0.568148,2e-06,-0.822948,0.568117,2e-06,-0.822948,0.568117,2e-06,-0.822948,0.568117,1e-06,-0.82295,0.568114,1e-06,-0.82295,0.568114,1e-06,-0.82295,0.568114,2e-06,-0.822949,0.568115,2e-06,-0.822949,0.568115,2e-06,-0.822949,0.568115,-1.7e-05,-0.822981,0.56807,-1.7e-05,-0.822981,0.56807,-1.7e-05,-0.822981,0.56807,-3e-06,-0.822949,0.568115,-3e-06,-0.822949,0.568115,-3e-06,-0.822949,0.568115,6e-06,-0.822939,0.56813,6e-06,-0.822939,0.56813,6e-06,-0.822939,0.56813,-2e-06,-0.822949,0.568115,-2e-06,-0.822949,0.568115,-2e-06,-0.822949,0.568115,3e-06,-0.822949,0.568115,3e-06,-0.822949,0.568115,3e-06,-0.822949,0.568115,3e-06,-0.82295,0.568114,3e-06,-0.82295,0.568114,3e-06,-0.82295,0.568114,-2e-06,-0.822947,0.568118,-2e-06,-0.822947,0.568118,-2e-06,-0.822947,0.568118,-2e-06,-0.822951,0.568112,-2e-06,-0.822951,0.568112,-2e-06,-0.822951,0.568112,2e-06,-0.822949,0.568115,2e-06,-0.822949,0.568115,2e-06,-0.822949,0.568115,-2e-06,-0.82295,0.568114,-2e-06,-0.82295,0.568114,-2e-06,-0.82295,0.568114,-2e-06,-0.82295,0.568114,1e-06,-0.822946,0.56812,1e-06,-0.822946,0.56812,1e-06,-0.822946,0.56812,-3e-06,-0.822951,0.568112,-3e-06,-0.822951,0.568112,-3e-06,-0.822951,0.568112,-2e-06,-0.822948,0.568117,-2e-06,-0.822948,0.568117,-2e-06,-0.822948,0.568117,-3e-06,-0.822951,0.568113,-3e-06,-0.822951,0.568113,-3e-06,-0.822951,0.568113,1e-06,-0.822951,0.568112,1e-06,-0.822951,0.568112,1e-06,-0.822951,0.568112,-1e-06,-0.822944,0.568123,-1e-06,-0.822944,0.568123,-1e-06,-0.822944,0.568123,4e-06,-0.822956,0.568105,4e-06,-0.822956,0.568105,4e-06,-0.822956,0.568105,1e-06,-0.822955,0.568106,1e-06,-0.822955,0.568106,1e-06,-0.822955,0.568106,-5e-06,-0.822948,0.568116,-5e-06,-0.822948,0.568116,-5e-06,-0.822948,0.568116,5e-06,-0.822956,0.568106,5e-06,-0.822956,0.568106,5e-06,-0.822956,0.568106,2e-06,-0.822951,0.568113,2e-06,-0.822951,0.568113,2e-06,-0.822951,0.568113,-4e-06,-0.822928,0.568146,-4e-06,-0.822928,0.568146,-4e-06,-0.822928,0.568146,4e-06,-0.82293,0.568143,4e-06,-0.82293,0.568143,4e-06,-0.82293,0.568143,0,-0.822939,0.56813,0,-0.822939,0.56813,0,-0.822939,0.56813,0,-0.822917,0.568162,0,-0.822917,0.568162,0,-0.822917,0.568162,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-0,-0.82295,0.568114,-0,-0.82295,0.568114,-0,-0.82295,0.568114,-1e-06,-0.822936,0.568134,-1e-06,-0.822936,0.568134,-1e-06,-0.822936,0.568134,-1e-06,-0.822952,0.568111,-1e-06,-0.822952,0.568111,-1e-06,-0.822952,0.568111,-1e-06,-0.822948,0.568116,-1e-06,-0.822948,0.568116,-1e-06,-0.822948,0.568116,-1e-06,-0.822942,0.568125,-1e-06,-0.822942,0.568125,-1e-06,-0.822942,0.568125,-0,-0.822952,0.568111,-0,-0.822952,0.568111,-0,-0.822952,0.568111,-0,-0.822954,0.568107,-0,-0.822954,0.568107,-0,-0.822954,0.568107,-0,-0.822954,0.568109,-0,-0.822954,0.568109,-0,-0.822954,0.568109,-0,-0.822933,0.568138,-0,-0.822933,0.568138,-0,-0.822933,0.568138,0,-0.822938,0.568131,0,-0.822938,0.568131,0,-0.822938,0.568131,0,0,0,0,0,0,0,0,0,0,-0.822945,0.568121,0,-0.822945,0.568121,0,-0.822945,0.568121,0,0,0,1e-06,-0.822948,0.568116,1e-06,-0.822948,0.568116,1e-06,-0.822948,0.568116,1e-06,-0.822953,0.56811,1e-06,-0.822953,0.56811,1e-06,-0.822953,0.56811,-1e-06,-0.82295,0.568114,-1e-06,-0.82295,0.568114,-1e-06,-0.82295,0.568114,-1e-06,-0.822951,0.568113,-1e-06,-0.822951,0.568113,-1e-06,-0.822951,0.568113,1e-06,-0.822949,0.568116,1e-06,-0.822949,0.568116,1e-06,-0.822949,0.568116,0,-0.822948,0.568116,0,-0.822948,0.568116,0,-0.822948,0.568116,0,-0.822949,0.568116,0,-0.822949,0.568116,0,-0.822949,0.568116,0,-0.822949,0.568116,-3e-06,-0.822953,0.56811,-3e-06,-0.822953,0.56811,-3e-06,-0.822953,0.56811,-4e-06,-0.822949,0.568115,-4e-06,-0.822949,0.568115,-4e-06,-0.822949,0.568115,0,-0.822943,0.568123,0,-0.822943,0.568123,0,-0.822943,0.568123,0,-0.822947,0.568119,0,-0.822947,0.568119,0,-0.822947,0.568119,-1.2e-05,-0.82297,0.568084,-1.2e-05,-0.82297,0.568084,-1.2e-05,-0.82297,0.568084,-2e-06,-0.822935,0.568135,-2e-06,-0.822935,0.568135,-2e-06,-0.822935,0.568135,-2e-06,-0.822952,0.568111,-2e-06,-0.822952,0.568111,-2e-06,-0.822952,0.568111,-0,-0.822946,0.56812,-0,-0.822946,0.56812,-0,-0.822946,0.56812,-1e-06,-0.82295,0.568114,-1e-06,-0.82295,0.568114,-1e-06,-0.82295,0.568114,-1e-06,-0.822949,0.568116,-1e-06,-0.822949,0.568116,-1e-06,-0.822949,0.568116,-1e-06,-0.822955,0.568106,-1e-06,-0.822955,0.568106,-1e-06,-0.822955,0.568106,1e-06,-0.822941,0.568127,1e-06,-0.822941,0.568127,1e-06,-0.822941,0.568127,-1e-06,-0.822947,0.568118,-1e-06,-0.822947,0.568118,-1e-06,-0.822947,0.568118,-1e-06,-0.822953,0.568109,-1e-06,-0.822953,0.568109,-1e-06,-0.822953,0.568109,9e-06,-0.822927,0.568147,9e-06,-0.822927,0.568147,9e-06,-0.822927,0.568147,-1e-06,-0.822949,0.568115,-1e-06,-0.822949,0.568115,-1e-06,-0.822949,0.568115,4e-06,-0.822944,0.568122,4e-06,-0.822944,0.568122,4e-06,-0.822944,0.568122,-0,-0.822948,0.568116,-0,-0.822948,0.568116,-0,-0.822948,0.568116,2e-06,-0.822954,0.568108,2e-06,-0.822954,0.568108,2e-06,-0.822954,0.568108,2e-06,-0.822953,0.56811,2e-06,-0.822953,0.56811,2e-06,-0.822953,0.56811,-0,-0.822949,0.568115,-0,-0.822949,0.568115,-0,-0.822949,0.568115,-3e-06,-0.822944,0.568122,-3e-06,-0.822944,0.568122,-3e-06,-0.822944,0.568122,4e-06,-0.822942,0.568125,4e-06,-0.822942,0.568125,4e-06,-0.822942,0.568125,3e-06,-0.822949,0.568116,3e-06,-0.822949,0.568116,3e-06,-0.822949,0.568116,4e-06,-0.822947,0.568118,4e-06,-0.822947,0.568118,4e-06,-0.822947,0.568118,2e-06,-0.822946,0.568119,2e-06,-0.822946,0.568119,2e-06,-0.822946,0.568119,-4e-06,-0.822948,0.568116,-4e-06,-0.822948,0.568116,-4e-06,-0.822948,0.568116,-1e-06,-0.822952,0.568111,-1e-06,-0.822952,0.568111,-1e-06,-0.822952,0.568111,-2e-06,-0.822957,0.568104,-2e-06,-0.822957,0.568104,-2e-06,-0.822957,0.568104,-4e-06,-0.822947,0.568118,-4e-06,-0.822947,0.568118,-4e-06,-0.822947,0.568118,-5e-06,-0.822949,0.568116,-5e-06,-0.822949,0.568116,-5e-06,-0.822949,0.568116,-1e-06,-0.822947,0.568118,-1e-06,-0.822947,0.568118,-1e-06,-0.822947,0.568118,-5e-06,-0.822945,0.568121,-5e-06,-0.822945,0.568121,-5e-06,-0.822945,0.568121,4e-06,-0.82295,0.568114,4e-06,-0.82295,0.568114,4e-06,-0.82295,0.568114,-1e-06,-0.822954,0.568108,-1e-06,-0.822954,0.568108,-1e-06,-0.822954,0.568108,-0,-0.822951,0.568113,-0,-0.822951,0.568113,-0,-0.822951,0.568113,-1e-06,-0.822947,0.568118,-1e-06,-0.822947,0.568118,-1e-06,-0.822947,0.568118,1e-06,-0.822944,0.568123,1e-06,-0.822944,0.568123,1e-06,-0.822944,0.568123,-5e-06,-0.822868,0.568232,-5e-06,-0.822868,0.568232,-5e-06,-0.822868,0.568232,1e-06,-0.822941,0.568126,1e-06,-0.822941,0.568126,1e-06,-0.822941,0.568126,1e-06,-0.822951,0.568112,1e-06,-0.822951,0.568112,1e-06,-0.822951,0.568112,1e-06,-0.822948,0.568116,1e-06,-0.822948,0.568116,1e-06,-0.822948,0.568116,0,-0.822951,0.568113,0,-0.822951,0.568113,0,-0.822951,0.568113,-0,-0.82295,0.568114,-0,-0.82295,0.568114,-0,-0.82295,0.568114,0,-0.822951,0.568113,0,-0.822948,0.568116,0,-0.822948,0.568116,0,-0.822948,0.568116,4e-06,-0.82295,0.568113,4e-06,-0.82295,0.568113,4e-06,-0.82295,0.568113,-3e-06,-0.822947,0.568118,-3e-06,-0.822947,0.568118,-3e-06,-0.822947,0.568118,2e-06,-0.822948,0.568117,2e-06,-0.822948,0.568117,2e-06,-0.822948,0.568117,-3e-06,-0.822946,0.56812,-3e-06,-0.822946,0.56812,-3e-06,-0.822946,0.56812,-0,-0.822951,0.568113,-0,-0.822951,0.568113,-0,-0.822951,0.568113,1e-06,-0.822944,0.568122,1e-06,-0.822944,0.568122,1e-06,-0.822944,0.568122,-4e-06,-0.822965,0.568092,-4e-06,-0.822965,0.568092,-4e-06,-0.822965,0.568092,-2e-06,-0.822958,0.568102,-2e-06,-0.822958,0.568102,-2e-06,-0.822958,0.568102,-1.3e-05,-0.822935,0.568135,-1.3e-05,-0.822935,0.568135,-1.3e-05,-0.822935,0.568135,-2e-06,-0.822919,0.568159,-2e-06,-0.822919,0.568159,-2e-06,-0.822919,0.568159,-3e-06,-0.822939,0.56813,-3e-06,-0.822939,0.56813,-3e-06,-0.822939,0.56813,1e-06,-0.822953,0.56811,1e-06,-0.822953,0.56811,1e-06,-0.822953,0.56811,1e-06,-0.822952,0.568111,1e-06,-0.822952,0.568111,1e-06,-0.822952,0.568111,1e-06,-0.822951,0.568112,1e-06,-0.822951,0.568112,1e-06,-0.822951,0.568112,1e-06,-0.822951,0.568113,1e-06,-0.822951,0.568113,1e-06,-0.822951,0.568113,-1e-06,-0.822942,0.568125,-1e-06,-0.822942,0.568125,-1e-06,-0.822942,0.568125,2e-06,-0.822947,0.568118,2e-06,-0.822947,0.568118,2e-06,-0.822947,0.568118,2e-06,-0.822947,0.568118,-5e-06,-0.822967,0.56809,-5e-06,-0.822967,0.56809,-5e-06,-0.822967,0.56809,1e-06,-0.822951,0.568113,1e-06,-0.822951,0.568113,-3e-06,-0.822954,0.568108,-3e-06,-0.822954,0.568108,-3e-06,-0.822954,0.568108,-5e-06,-0.822941,0.568127,-5e-06,-0.822941,0.568127,-5e-06,-0.822941,0.568127,-1e-06,-0.822949,0.568115,-1e-06,-0.822949,0.568115,-1e-06,-0.822949,0.568115,-3e-06,-0.82295,0.568113,-3e-06,-0.82295,0.568113,-3e-06,-0.82295,0.568113,2e-06,-0.822951,0.568112,2e-06,-0.822951,0.568112,2e-06,-0.822951,0.568112,-1e-06,-0.822948,0.568117,-1e-06,-0.822948,0.568117,-1e-06,-0.822948,0.568117,-3e-06,-0.822934,0.568136,-3e-06,-0.822934,0.568136,-3e-06,-0.822934,0.568136,2e-06,-0.822943,0.568124,2e-06,-0.822943,0.568124,2e-06,-0.822943,0.568124,1e-06,-0.822951,0.568112,1e-06,-0.822951,0.568112,1e-06,-0.822951,0.568112,2e-06,-0.822951,0.568112,2e-06,-0.822949,0.568115,2e-06,-0.822949,0.568115,2e-06,-0.822949,0.568115,-1e-06,-0.822978,0.568073,-1e-06,-0.822978,0.568073,-1e-06,-0.822978,0.568073,-4e-06,-0.822943,0.568124,-4e-06,-0.822943,0.568124,-4e-06,-0.822943,0.568124,1e-06,-0.822953,0.568109,1e-06,-0.822953,0.568109,1e-06,-0.822953,0.568109,-0,-0.822951,0.568112,-0,-0.822951,0.568112,-0,-0.822951,0.568112,-0,-0.822951,0.568112,1e-06,-0.822956,0.568105,1e-06,-0.822956,0.568105,1e-06,-0.822956,0.568105,1e-06,-0.82294,0.568128,1e-06,-0.82294,0.568128,1e-06,-0.82294,0.568128,-1e-06,-0.822943,0.568124,-1e-06,-0.822943,0.568124,-1e-06,-0.822943,0.568124,1e-06,-0.822978,0.568073,1e-06,-0.822978,0.568073,1e-06,-0.822978,0.568073,-0,-0.822936,0.568134,-0,-0.822936,0.568134,-0,-0.822936,0.568134,-1e-06,-0.822948,0.568117,-1e-06,-0.822948,0.568117,-1e-06,-0.822948,0.568117,-0,-0.822958,0.568102,-0,-0.822958,0.568102,-0,-0.822958,0.568102,0,-0.822942,0.568125,0,-0.822942,0.568125,0,-0.822942,0.568125,1e-06,-0.822953,0.56811,1e-06,-0.822953,0.56811,1e-06,-0.822953,0.56811,0,-0.82296,0.568099,0,-0.82296,0.568099,0,-0.82296,0.568099,-2e-06,-0.822948,0.568116,-2e-06,-0.822948,0.568116,-2e-06,-0.822948,0.568116,0,-0.822941,0.568126,0,-0.822941,0.568126,0,-0.822941,0.568126,-3e-06,-0.822963,0.568094,-3e-06,-0.822963,0.568094,-3e-06,-0.822963,0.568094,1e-06,-0.822949,0.568116,1e-06,-0.822949,0.568116,1e-06,-0.822949,0.568116,1e-06,-0.822949,0.568116,-0,-0.822948,0.568117,-0,-0.822948,0.568117,-0,-0.822948,0.568117,1e-06,-0.82295,0.568113,1e-06,-0.82295,0.568113,1e-06,-0.82295,0.568113,-1e-06,-0.822945,0.56812,-1e-06,-0.822945,0.56812,-1e-06,-0.822945,0.56812,3e-06,-0.822961,0.568098,3e-06,-0.822961,0.568098,3e-06,-0.822961,0.568098,-1e-06,-0.822945,0.56812,8e-06,-0.822948,0.568117,8e-06,-0.822948,0.568117,8e-06,-0.822948,0.568117,-4e-06,-0.822959,0.568101,-4e-06,-0.822959,0.568101,-4e-06,-0.822959,0.568101,8e-06,-0.822948,0.568116,8e-06,-0.822948,0.568116,8e-06,-0.822948,0.568116,-6e-06,-0.82295,0.568113,-6e-06,-0.82295,0.568113,-6e-06,-0.82295,0.568113,6e-06,-0.822956,0.568105,6e-06,-0.822956,0.568105,6e-06,-0.822956,0.568105,-0,-0.822953,0.568109,-0,-0.822953,0.568109,-0,-0.822953,0.568109,-1e-06,-0.822939,0.568129,-1e-06,-0.822939,0.568129,-1e-06,-0.822939,0.568129,-1e-06,-0.822935,0.568135,-1e-06,-0.822935,0.568135,-1e-06,-0.822935,0.568135,-0,-0.822944,0.568123,-0,-0.822944,0.568123,-0,-0.822944,0.568123,-0,-0.822962,0.568096,-0,-0.822962,0.568096,-0,-0.822962,0.568096,-0,-0.822962,0.568096,-0,-0.822945,0.568121,-0,-0.822945,0.568121,-0,-0.822945,0.568121,0,-0.822946,0.56812,0,-0.822946,0.56812,0,-0.822946,0.56812,0,-0.822939,0.56813,0,-0.822939,0.56813,0,-0.822939,0.56813,0,-0.822938,0.568131,0,-0.822938,0.568131,0,-0.822938,0.568131,0,0,0,0,0,0,0,0,0,0,-0.822937,0.568132,0,-0.822937,0.568132,0,-0.822937,0.568132,0,0,0,5e-06,-0.822955,0.568107,5e-06,-0.822955,0.568107,5e-06,-0.822955,0.568107,5e-06,-0.822955,0.568106,5e-06,-0.822955,0.568106,5e-06,-0.822955,0.568106,0,-0.822948,0.568117,0,-0.822948,0.568117,0,-0.822948,0.568117,-0,-0.822949,0.568115,-0,-0.822949,0.568115,-0,-0.822949,0.568115,1e-06,-0.822949,0.568116,1e-06,-0.822949,0.568116,1e-06,-0.822949,0.568116,0,-0.822948,0.568117,0,-0.822948,0.568117,0,-0.822948,0.568117,-0,-0.822949,0.568115,-0,-0.822949,0.568115,-0,-0.822949,0.568115,1e-06,-0.82295,0.568113,1e-06,-0.82295,0.568113,1e-06,-0.82295,0.568113,-1e-06,-0.822952,0.568111,-1e-06,-0.822952,0.568111,-1e-06,-0.822952,0.568111,-1e-06,-0.822949,0.568116,-1e-06,-0.822949,0.568116,-1e-06,-0.822949,0.568116,2e-06,-0.822945,0.568122,2e-06,-0.822945,0.568122,2e-06,-0.822945,0.568122,2e-06,-0.822944,0.568122,2e-06,-0.822944,0.568122,2e-06,-0.822944,0.568122,-1.2e-05,-0.82297,0.568084,-1.2e-05,-0.82297,0.568084,-1.2e-05,-0.82297,0.568084,-4e-06,-0.822982,0.568067,-4e-06,-0.822982,0.568067,-4e-06,-0.822982,0.568067,1e-06,-0.822945,0.568121,1e-06,-0.822945,0.568121,1e-06,-0.822945,0.568121,1e-06,-0.82294,0.568129,1e-06,-0.82294,0.568129,1e-06,-0.82294,0.568129,-0,-0.822947,0.568119,-0,-0.822947,0.568119,-0,-0.822947,0.568119,-0,-0.822949,0.568115,-0,-0.822949,0.568115,-0,-0.822949,0.568115,-1e-06,-0.822953,0.568109,-1e-06,-0.822953,0.568109,-1e-06,-0.822953,0.568109,-0,-0.822959,0.568101,-0,-0.822959,0.568101,-0,-0.822959,0.568101,1e-06,-0.822928,0.568146,1e-06,-0.822928,0.568146,1e-06,-0.822928,0.568146,2e-06,-0.822959,0.5681,2e-06,-0.822959,0.5681,2e-06,-0.822959,0.5681,-2e-06,-0.822945,0.568121,-2e-06,-0.822945,0.568121,-2e-06,-0.822945,0.568121,1e-06,-0.822945,0.568121,1e-06,-0.822945,0.568121,1e-06,-0.822945,0.568121,-2e-06,-0.822947,0.568118,-2e-06,-0.822947,0.568118,-2e-06,-0.822947,0.568118,2e-06,-0.822941,0.568127,2e-06,-0.822941,0.568127,2e-06,-0.822941,0.568127,1e-06,-0.822958,0.568103,1e-06,-0.822958,0.568103,1e-06,-0.822958,0.568103,-1e-06,-0.822945,0.568122,-1e-06,-0.822945,0.568122,-1e-06,-0.822945,0.568122,1e-06,-0.822955,0.568107,1e-06,-0.822955,0.568107,1e-06,-0.822955,0.568107,-2e-06,-0.822944,0.568122,-2e-06,-0.822944,0.568122,-2e-06,-0.822944,0.568122,-2e-06,-0.822955,0.568107,-2e-06,-0.822955,0.568107,-2e-06,-0.822955,0.568107,-5e-06,-0.822947,0.568118,-5e-06,-0.822947,0.568118,-5e-06,-0.822947,0.568118,-2e-06,-0.822949,0.568116,-2e-06,-0.822949,0.568116,-2e-06,-0.822949,0.568116,-3e-06,-0.822946,0.56812,-3e-06,-0.822946,0.56812,-3e-06,-0.822946,0.56812,-5e-06,-0.822937,0.568133,-5e-06,-0.822937,0.568133,-5e-06,-0.822937,0.568133,-2e-06,-0.822955,0.568106,-2e-06,-0.822955,0.568106,-2e-06,-0.822955,0.568106,0,-0.822945,0.568122,0,-0.822945,0.568122,0,-0.822945,0.568122,2e-06,-0.822949,0.568116,2e-06,-0.822949,0.568116,2e-06,-0.822949,0.568116,2e-06,-0.822948,0.568117,2e-06,-0.822948,0.568117,2e-06,-0.822948,0.568117,1e-06,-0.822957,0.568104,1e-06,-0.822957,0.568104,1e-06,-0.822957,0.568104,-0,-0.822951,0.568112,-0,-0.822951,0.568112,-0,-0.822951,0.568112,-1e-06,-0.82295,0.568114,-1e-06,-0.82295,0.568114,-1e-06,-0.82295,0.568114,-1e-06,-0.82295,0.568115,-1e-06,-0.82295,0.568115,-1e-06,-0.82295,0.568115,-1e-06,-0.822948,0.568117,-1e-06,-0.822948,0.568117,-1e-06,-0.822948,0.568117,-1e-06,-0.822951,0.568113,-1e-06,-0.822951,0.568113,-1e-06,-0.822951,0.568113,-1e-06,-0.822952,0.568111,-1e-06,-0.822952,0.568111,-1e-06,-0.822952,0.568111,2e-06,-0.822937,0.568132,2e-06,-0.822937,0.568132,2e-06,-0.822937,0.568132,-1e-06,-0.822956,0.568105,-1e-06,-0.822956,0.568105,-1e-06,-0.822956,0.568105,1e-06,-0.822954,0.568108,1e-06,-0.822954,0.568108,1e-06,-0.822954,0.568108,-1e-06,-0.822958,0.568103,-1e-06,-0.822958,0.568103,-1e-06,-0.822958,0.568103,-1e-06,-0.822958,0.568102,-1e-06,-0.822958,0.568102,-1e-06,-0.822958,0.568102,-1e-06,-0.822948,0.568117,-1e-06,-0.822948,0.568117,-1e-06,-0.822948,0.568117,2e-06,-0.82294,0.568128,2e-06,-0.82294,0.568128,2e-06,-0.82294,0.568128,-3e-06,-0.822943,0.568124,-3e-06,-0.822943,0.568124,-3e-06,-0.822943,0.568124,1e-06,-0.82295,0.568114,1e-06,-0.82295,0.568114,1e-06,-0.82295,0.568114,3e-06,-0.822952,0.568111,3e-06,-0.822952,0.568111,3e-06,-0.822952,0.568111,-4e-06,-0.822962,0.568097,-4e-06,-0.822962,0.568097,-4e-06,-0.822962,0.568097,1e-06,-0.822947,0.568118,1e-06,-0.822947,0.568118,1e-06,-0.822947,0.568118,3e-06,-0.822935,0.568136,3e-06,-0.822935,0.568136,3e-06,-0.822935,0.568136,0,-0.822944,0.568122,0,-0.822944,0.568122,0,-0.822944,0.568122,-0,-0.822969,0.568087,-0,-0.822969,0.568087,-0,-0.822969,0.568087,1e-06,-0.822951,0.568112,1e-06,-0.822951,0.568112,1e-06,-0.822951,0.568112,1e-06,-0.822951,0.568113,1e-06,-0.822951,0.568113,1e-06,-0.822951,0.568113,0,-0.822953,0.568109,0,-0.822953,0.568109,0,-0.822953,0.568109,-0,-0.822941,0.568127,-0,-0.822941,0.568127,-0,-0.822941,0.568127,-1e-06,-0.822945,0.568121,-1e-06,-0.822945,0.568121,-1e-06,-0.822945,0.568121,-0,-0.822953,0.568109,-0,-0.822953,0.568109,-0,-0.822953,0.568109,0,-0.822953,0.56811,0,-0.822953,0.56811,0,-0.822953,0.56811,-0,-0.82295,0.568114,-0,-0.82295,0.568114,-0,-0.82295,0.568114,-3e-06,-0.822942,0.568126,-3e-06,-0.822942,0.568126,-3e-06,-0.822942,0.568126,-3e-06,-0.822953,0.56811,-3e-06,-0.822953,0.56811,-3e-06,-0.822953,0.56811,-2e-06,-0.822949,0.568115,-2e-06,-0.822949,0.568115,-2e-06,-0.822949,0.568115,-1e-06,-0.822956,0.568105,-1e-06,-0.822956,0.568105,-1e-06,-0.822956,0.568105,0,-0.822944,0.568122,0,-0.822944,0.568122,0,-0.822944,0.568122,1e-06,-0.822947,0.568118,1e-06,-0.822947,0.568118,1e-06,-0.822947,0.568118,1e-06,-0.82295,0.568113,1e-06,-0.82295,0.568113,1e-06,-0.82295,0.568113,5.2e-05,-0.823172,0.567792,5.2e-05,-0.823172,0.567792,5.2e-05,-0.823172,0.567792,-1e-06,-0.822947,0.568118,-1e-06,-0.822947,0.568118,-1e-06,-0.822947,0.568118,-1e-06,-0.822944,0.568122,-1e-06,-0.822944,0.568122,-1e-06,-0.822944,0.568122,7e-06,-0.822974,0.568079,7e-06,-0.822974,0.568079,7e-06,-0.822974,0.568079,-1e-06,-0.822949,0.568115,-1e-06,-0.822949,0.568115,-1e-06,-0.822949,0.568115,-0,-0.822953,0.56811,-0,-0.822953,0.56811,-0,-0.822953,0.56811,3e-06,-0.822943,0.568123,3e-06,-0.822943,0.568123,3e-06,-0.822943,0.568123,-0,-0.822951,0.568112,-0,-0.822951,0.568112,-0,-0.822951,0.568112,1e-06,-0.822947,0.568118,1e-06,-0.822947,0.568118,1e-06,-0.822947,0.568118,3e-06,-0.822955,0.568107,3e-06,-0.822955,0.568107,3e-06,-0.822955,0.568107,3e-06,-0.822949,0.568115,3e-06,-0.822949,0.568115,3e-06,-0.822949,0.568115,0,-0.822945,0.568121,0,-0.822945,0.568121,0,-0.822945,0.568121,2e-06,-0.82295,0.568114,2e-06,-0.82295,0.568114,2e-06,-0.82295,0.568114,1e-06,-0.822948,0.568117,1e-06,-0.822948,0.568117,1e-06,-0.822948,0.568117,-1e-06,-0.822948,0.568117,-1e-06,-0.822948,0.568117,-1e-06,-0.822948,0.568117,-0,-0.822949,0.568115,-0,-0.822949,0.568115,-0,-0.822949,0.568115,3e-06,-0.822953,0.56811,3e-06,-0.822953,0.56811,3e-06,-0.822953,0.56811,0,-0.82295,0.568114,0,-0.82295,0.568114,0,-0.82295,0.568114,2e-06,-0.822948,0.568117,2e-06,-0.822948,0.568117,2e-06,-0.822948,0.568117,0,-0.82295,0.568113,0,-0.82295,0.568113,0,-0.82295,0.568113,0,-0.822952,0.568111,0,-0.822952,0.568111,0,-0.822952,0.568111,-1e-06,-0.82295,0.568114,-1e-06,-0.82295,0.568114,-1e-06,-0.82295,0.568114,0,-0.82295,0.568114,0,-0.82295,0.568114,0,-0.82295,0.568114,-1e-06,-0.822945,0.568121,-1e-06,-0.822945,0.568121,-1e-06,-0.822945,0.568121,-1e-06,-0.822945,0.568121,2e-06,-0.822946,0.56812,2e-06,-0.822946,0.56812,2e-06,-0.822946,0.56812,1e-06,-0.822951,0.568112,1e-06,-0.822951,0.568112,1e-06,-0.822951,0.568112,1e-06,-0.822954,0.568108,1e-06,-0.822954,0.568108,1e-06,-0.822954,0.568108,1e-06,-0.822949,0.568115,1e-06,-0.822949,0.568115,1e-06,-0.822949,0.568115,-1e-06,-0.822954,0.568108,-1e-06,-0.822954,0.568108,-1e-06,-0.822954,0.568108,-1e-06,-0.822947,0.568117,-1e-06,-0.822947,0.568117,-1e-06,-0.822947,0.568117,1e-06,-0.822943,0.568123,1e-06,-0.822943,0.568123,1e-06,-0.822943,0.568123,-0,-0.82294,0.568128,-0,-0.82294,0.568128,-0,-0.82294,0.568128,-0,-0.822936,0.568134,-0,-0.822936,0.568134,-0,-0.822936,0.568134,-0,-0.822952,0.568111,-0,-0.822952,0.568111,-0,-0.822952,0.568111,-1e-06,-0.822947,0.568118,-1e-06,-0.822947,0.568118,-1e-06,-0.822947,0.568118,-1e-06,-0.822944,0.568122,-1e-06,-0.822944,0.568122,-1e-06,-0.822944,0.568122,0,-0.822955,0.568107,0,-0.822955,0.568107,0,-0.822955,0.568107,0,-0.822953,0.568109,0,-0.822953,0.568109,0,-0.822953,0.568109,0,-0.822952,0.56811,0,-0.822952,0.56811,0,-0.822952,0.56811,0,-0.822939,0.56813,0,-0.822939,0.56813,0,-0.822939,0.56813,0,-0.822938,0.568131,0,-0.822938,0.568131,0,-0.822938,0.568131,0,0,0,0,0,0,0,0,0,0,-0.822954,0.568108,0,-0.822954,0.568108,0,-0.822954,0.568108,0,0,0,0,-0.822955,0.568107,0,-0.822955,0.568107,0,-0.822955,0.568107,1e-06,-0.822951,0.568113,1e-06,-0.822951,0.568113,1e-06,-0.822951,0.568113,-1e-06,-0.822947,0.568117,-1e-06,-0.822947,0.568117,-1e-06,-0.822947,0.568117,-1e-06,-0.822948,0.568116,-1e-06,-0.822948,0.568116,-1e-06,-0.822948,0.568116,-1e-06,-0.822948,0.568116,-1e-06,-0.82295,0.568114,-1e-06,-0.82295,0.568114,-1e-06,-0.82295,0.568114,-2e-06,-0.822951,0.568113,-2e-06,-0.822951,0.568113,-2e-06,-0.822951,0.568113,-2e-06,-0.82295,0.568113,-2e-06,-0.82295,0.568113,-2e-06,-0.82295,0.568113,-1e-06,-0.822949,0.568115,-1e-06,-0.822949,0.568115,-1e-06,-0.822949,0.568115,-1e-06,-0.822948,0.568117,-1e-06,-0.822948,0.568117,-1e-06,-0.822948,0.568117,0,-0.822946,0.56812,0,-0.822946,0.56812,0,-0.822946,0.56812,0,-0.822943,0.568124,0,-0.822943,0.568124,0,-0.822943,0.568124,-1.2e-05,-0.822966,0.56809,-1.2e-05,-0.822966,0.56809,-1.2e-05,-0.822966,0.56809,-5e-06,-0.822961,0.568097,-5e-06,-0.822961,0.568097,-5e-06,-0.822961,0.568097,-3e-06,-0.822939,0.56813,-3e-06,-0.822939,0.56813,-3e-06,-0.822939,0.56813,-4e-06,-0.822964,0.568093,-4e-06,-0.822964,0.568093,-4e-06,-0.822964,0.568093,5e-06,-0.822951,0.568112,5e-06,-0.822951,0.568112,5e-06,-0.822951,0.568112,-1e-06,-0.822951,0.568112,-1e-06,-0.822951,0.568112,-1e-06,-0.822951,0.568112,-1e-06,-0.822949,0.568116,-1e-06,-0.822949,0.568116,-1e-06,-0.822949,0.568116,5e-06,-0.822953,0.56811,5e-06,-0.822953,0.56811,5e-06,-0.822953,0.56811,2e-06,-0.822949,0.568115,2e-06,-0.822949,0.568115,2e-06,-0.822949,0.568115,-1e-06,-0.822948,0.568117,-1e-06,-0.822948,0.568117,-1e-06,-0.822948,0.568117,1e-06,-0.822952,0.568111,1e-06,-0.822952,0.568111,1e-06,-0.822952,0.568111,1e-06,-0.82295,0.568114,1e-06,-0.82295,0.568114,1e-06,-0.82295,0.568114,-1e-06,-0.822948,0.568117,-1e-06,-0.822948,0.568117,-1e-06,-0.822948,0.568117,2e-06,-0.822949,0.568115,2e-06,-0.822949,0.568115,2e-06,-0.822949,0.568115,-1e-06,-0.822948,0.568117,1.3e-05,-0.822906,0.568177,1.3e-05,-0.822906,0.568177,1.3e-05,-0.822906,0.568177,2e-06,-0.82295,0.568114,2e-06,-0.82295,0.568114,2e-06,-0.82295,0.568114,7e-06,-0.822962,0.568096,7e-06,-0.822962,0.568096,7e-06,-0.822962,0.568096,3e-06,-0.822952,0.568111,3e-06,-0.822952,0.568111,3e-06,-0.822952,0.568111,0,-0.822956,0.568105,0,-0.822956,0.568105,0,-0.822956,0.568105,1e-06,-0.82294,0.568128,1e-06,-0.82294,0.568128,1e-06,-0.82294,0.568128,2e-06,-0.822949,0.568115,2e-06,-0.822949,0.568115,2e-06,-0.822949,0.568115,-3e-06,-0.823002,0.568038,-3e-06,-0.823002,0.568038,-3e-06,-0.823002,0.568038,-1e-06,-0.822924,0.568152,-1e-06,-0.822924,0.568152,-1e-06,-0.822924,0.568152,-0,-0.822956,0.568106,-0,-0.822956,0.568106,-0,-0.822956,0.568106,0,-0.822948,0.568117,0,-0.822948,0.568117,0,-0.822948,0.568117,0,-0.822948,0.568117,1e-06,-0.822946,0.56812,1e-06,-0.822946,0.56812,1e-06,-0.822946,0.56812,1e-06,-0.822953,0.56811,1e-06,-0.822953,0.56811,1e-06,-0.822953,0.56811,0,-0.822948,0.568117,0,-0.822948,0.568117,1e-06,-0.82295,0.568114,1e-06,-0.82295,0.568114,1e-06,-0.82295,0.568114,1e-06,-0.822942,0.568125,1e-06,-0.822942,0.568125,1e-06,-0.822942,0.568125,0,-0.822892,0.568198,0,-0.822892,0.568198,0,-0.822892,0.568198,-1e-06,-0.822952,0.568111,-1e-06,-0.822952,0.568111,-1e-06,-0.822952,0.568111,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-1e-06,-0.822952,0.568111,-1e-06,-0.822951,0.568112,-1e-06,-0.822951,0.568112,-1e-06,-0.822951,0.568112,-3e-06,-0.822947,0.568118,-3e-06,-0.822947,0.568118,-3e-06,-0.822947,0.568118,-2e-06,-0.822945,0.568121,-2e-06,-0.822945,0.568121,-2e-06,-0.822945,0.568121,-1e-06,-0.822951,0.568112,0,-0.822958,0.568103,0,-0.822958,0.568103,0,-0.822958,0.568103,-2e-06,-0.822961,0.568097,-2e-06,-0.822961,0.568097,-2e-06,-0.822961,0.568097,0,-0.822949,0.568116,0,-0.822949,0.568116,0,-0.822949,0.568116,-1e-06,-0.822947,0.568118,-1e-06,-0.822947,0.568118,-1e-06,-0.822947,0.568118,-0,-0.822947,0.568118,-0,-0.822947,0.568118,-0,-0.822947,0.568118,-3e-06,-0.822942,0.568125,-3e-06,-0.822942,0.568125,-3e-06,-0.822942,0.568125,-4e-06,-0.822959,0.568101,-4e-06,-0.822959,0.568101,-4e-06,-0.822959,0.568101,2e-06,-0.822949,0.568116,2e-06,-0.822949,0.568116,2e-06,-0.822949,0.568116,3e-06,-0.823037,0.567988,3e-06,-0.823037,0.567988,3e-06,-0.823037,0.567988,0,-0.823051,0.567967,0,-0.823051,0.567967,0,-0.823051,0.567967,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,-2e-06,-0.822969,0.568086,-2e-06,-0.822969,0.568086,-2e-06,-0.822969,0.568086,-2e-06,-0.822943,0.568123,-2e-06,-0.822943,0.568123,-2e-06,-0.822943,0.568123,-1e-06,-0.822948,0.568117,-1e-06,-0.822948,0.568117,-1e-06,-0.822948,0.568117,-1e-06,-0.822953,0.56811,-1e-06,-0.822953,0.56811,-1e-06,-0.822953,0.56811,0,-0.822948,0.568117,0,-0.822948,0.568117,0,-0.822948,0.568117,0,-0.822949,0.568115,0,-0.822949,0.568115,0,-0.822949,0.568115,-1e-06,-0.822946,0.568119,-1e-06,-0.822946,0.568119,-1e-06,-0.822946,0.568119,-1e-06,-0.822949,0.568115,-1e-06,-0.822949,0.568115,-1e-06,-0.822949,0.568115,-0,-0.822948,0.568117,-0,-0.822948,0.568117,-0,-0.822948,0.568117,-1e-06,-0.822949,0.568116,-1e-06,-0.822949,0.568116,-1e-06,-0.822949,0.568116,-0,-0.822944,0.568122,-0,-0.822944,0.568122,-0,-0.822944,0.568122,-3e-06,-0.822942,0.568125,-3e-06,-0.822942,0.568125,-3e-06,-0.822942,0.568125,-1e-06,-0.822948,0.568117,-1e-06,-0.822948,0.568117,-1e-06,-0.822948,0.568117,-1e-06,-0.822951,0.568112,-1e-06,-0.822951,0.568112,-1e-06,-0.822951,0.568112,2e-06,-0.822947,0.568118,2e-06,-0.822947,0.568118,2e-06,-0.822947,0.568118,2e-06,-0.822948,0.568117,2e-06,-0.822948,0.568117,2e-06,-0.822948,0.568117,1e-06,-0.82295,0.568113,1e-06,-0.82295,0.568113,1e-06,-0.82295,0.568113,0,-0.82295,0.568114,0,-0.82295,0.568114,0,-0.82295,0.568114,1.5e-05,-0.822961,0.568098,1.5e-05,-0.822961,0.568098,1.5e-05,-0.822961,0.568098,0,-0.822943,0.568124,0,-0.822943,0.568124,0,-0.822943,0.568124,1e-06,-0.822951,0.568112,1e-06,-0.822951,0.568112,1e-06,-0.822951,0.568112,0,-0.822952,0.568111,0,-0.822952,0.568111,0,-0.822952,0.568111,3e-06,-0.822953,0.568109,3e-06,-0.822953,0.568109,3e-06,-0.822953,0.568109,2e-06,-0.822955,0.568107,2e-06,-0.822955,0.568107,2e-06,-0.822955,0.568107,2e-06,-0.822955,0.568106,2e-06,-0.822955,0.568106,2e-06,-0.822955,0.568106,-3e-06,-0.823033,0.567993,-3e-06,-0.823033,0.567993,-3e-06,-0.823033,0.567993,-0,-0.822947,0.568118,-0,-0.822947,0.568118,-0,-0.822947,0.568118,-0,-0.822945,0.568121,-0,-0.822945,0.568121,-0,-0.822945,0.568121,-0,-0.822947,0.568118,-0,-0.822947,0.568118,-1e-06,-0.822949,0.568115,-1e-06,-0.822949,0.568115,-1e-06,-0.822949,0.568115,-1e-06,-0.822949,0.568115,0,-0.822943,0.568123,0,-0.822943,0.568123,0,-0.822943,0.568123,1e-06,-0.82296,0.5681,1e-06,-0.82296,0.5681,1e-06,-0.82296,0.5681,-6e-06,-0.822936,0.568134,-6e-06,-0.822936,0.568134,-6e-06,-0.822936,0.568134,-3e-06,-0.822959,0.568101,-3e-06,-0.822959,0.568101,-3e-06,-0.822959,0.568101,0,-0.822951,0.568113,0,-0.822951,0.568113,0,-0.822951,0.568113,-4e-06,-0.822941,0.568126,-4e-06,-0.822941,0.568126,-4e-06,-0.822941,0.568126,-5e-06,-0.822952,0.568111,-5e-06,-0.822952,0.568111,-5e-06,-0.822952,0.568111,-7e-06,-0.822982,0.568068,-7e-06,-0.822982,0.568068,-7e-06,-0.822982,0.568068,1e-06,-0.822951,0.568112,1e-06,-0.822951,0.568112,1e-06,-0.822951,0.568112,0,-0.822949,0.568115,0,-0.822949,0.568115,0,-0.822949,0.568115,-3e-06,-0.822941,0.568127,-3e-06,-0.822941,0.568127,-3e-06,-0.822941,0.568127,-5e-06,-0.822948,0.568117,-5e-06,-0.822948,0.568117,-5e-06,-0.822948,0.568117,1e-06,-0.822949,0.568115,1e-06,-0.822949,0.568115,1e-06,-0.822949,0.568115,-3e-06,-0.82295,0.568114,-3e-06,-0.82295,0.568114,-3e-06,-0.82295,0.568114,1e-06,-0.822948,0.568116,1e-06,-0.822948,0.568116,1e-06,-0.822948,0.568116,-0,-0.82295,0.568114,-0,-0.82295,0.568114,-0,-0.82295,0.568114,-1e-06,-0.82295,0.568115,-1e-06,-0.82295,0.568115,-1e-06,-0.82295,0.568115,3e-06,-0.822952,0.568111,3e-06,-0.822952,0.568111,3e-06,-0.822952,0.568111,4e-06,-0.822951,0.568113,4e-06,-0.822951,0.568113,4e-06,-0.822951,0.568113,1e-06,-0.822947,0.568119,1e-06,-0.822947,0.568119,1e-06,-0.822947,0.568119,1e-06,-0.822948,0.568117,1e-06,-0.822948,0.568117,1e-06,-0.822948,0.568117,1e-06,-0.822946,0.568119,1e-06,-0.822946,0.568119,1e-06,-0.822946,0.568119,5e-06,-0.82295,0.568113,5e-06,-0.82295,0.568113,5e-06,-0.82295,0.568113,-5e-06,-0.822926,0.568148,-5e-06,-0.822926,0.568148,-5e-06,-0.822926,0.568148,2e-06,-0.822941,0.568126,2e-06,-0.822941,0.568126,2e-06,-0.822941,0.568126,3e-06,-0.82296,0.568099,3e-06,-0.82296,0.568099,3e-06,-0.82296,0.568099,2e-06,-0.822954,0.568108,2e-06,-0.822954,0.568108,2e-06,-0.822954,0.568108,-2e-06,-0.822947,0.568118,-2e-06,-0.822947,0.568118,-2e-06,-0.822947,0.568118,-2e-06,-0.822948,0.568117,-2e-06,-0.822948,0.568117,-2e-06,-0.822948,0.568117,-2e-06,-0.822951,0.568113,-2e-06,-0.822951,0.568113,-2e-06,-0.822951,0.568113,-2e-06,-0.822953,0.568109,-2e-06,-0.822953,0.568109,-2e-06,-0.822953,0.568109,-1e-06,-0.822951,0.568112,-1e-06,-0.822951,0.568112,-1e-06,-0.822951,0.568112,1e-06,-0.822959,0.568101,1e-06,-0.822959,0.568101,1e-06,-0.822959,0.568101,-3e-06,-0.822965,0.568093,-3e-06,-0.822965,0.568093,-3e-06,-0.822965,0.568093,-2e-06,-0.822957,0.568104,-2e-06,-0.822957,0.568104,-2e-06,-0.822957,0.568104,-1e-06,-0.822959,0.568101,-1e-06,-0.822959,0.568101,-1e-06,-0.822959,0.568101,-0,-0.822951,0.568113,-0,-0.822951,0.568113,-0,-0.822951,0.568113,-1e-06,-0.822948,0.568117,-1e-06,-0.822948,0.568117,-1e-06,-0.822948,0.568117,-1e-06,-0.822947,0.568118,-1e-06,-0.822947,0.568118,-1e-06,-0.822947,0.568118,-1e-06,-0.822948,0.568117,-1e-06,-0.822948,0.568117,-0,-0.822945,0.568121,-0,-0.822945,0.568121,-0,-0.822945,0.568121,1e-06,-0.822953,0.56811,1e-06,-0.822953,0.56811,1e-06,-0.822953,0.56811,1e-06,-0.822952,0.568111,1e-06,-0.822952,0.568111,1e-06,-0.822952,0.568111,0,-0.822946,0.56812,0,-0.822946,0.56812,0,-0.822946,0.56812,-0,-0.822949,0.568116,-0,-0.822949,0.568116,-0,-0.822949,0.568116,0,-0.822946,0.568119,0,-0.822946,0.568119,0,-0.822946,0.568119,-0,-0.822951,0.568112,-0,-0.822951,0.568112,-0,-0.822951,0.568112,-1e-06,-0.822957,0.568104,-1e-06,-0.822957,0.568104,-1e-06,-0.822957,0.568104,4e-06,-0.822959,0.568101,4e-06,-0.822959,0.568101,4e-06,-0.822959,0.568101,-3e-06,-0.822953,0.56811,-3e-06,-0.822953,0.56811,-3e-06,-0.822953,0.56811,3e-06,-0.822949,0.568115,3e-06,-0.822949,0.568115,3e-06,-0.822949,0.568115,1e-06,-0.822951,0.568112,1e-06,-0.822951,0.568112,1e-06,-0.822951,0.568112,0,-0.822949,0.568116,0,-0.822949,0.568116,0,-0.822949,0.568116,0,-0.822945,0.568122,0,-0.822945,0.568122,0,-0.822945,0.568122,-0,-0.822947,0.568119,-0,-0.822947,0.568119,-0,-0.822947,0.568119,-2e-06,-0.82295,0.568113,-2e-06,-0.82295,0.568113,-2e-06,-0.82295,0.568113,3e-06,-0.822948,0.568116,3e-06,-0.822948,0.568116,3e-06,-0.822948,0.568116,-3e-06,-0.822953,0.568109,-3e-06,-0.822953,0.568109,-3e-06,-0.822953,0.568109,-1e-06,-0.822952,0.56811,-1e-06,-0.822952,0.56811,-1e-06,-0.822952,0.56811,0,-0.822946,0.568119,0,-0.822946,0.568119,0,-0.822946,0.568119,-2e-06,-0.822949,0.568115,-2e-06,-0.822949,0.568115,-2e-06,-0.822949,0.568115,-1e-06,-0.822943,0.568123,-1e-06,-0.822943,0.568123,-1e-06,-0.822943,0.568123,-6e-06,-0.822936,0.568135,-6e-06,-0.822936,0.568135,-6e-06,-0.822936,0.568135,-1e-06,-0.822948,0.568116,-1e-06,-0.822948,0.568116,-1e-06,-0.822948,0.568116,-1e-06,-0.82297,0.568085,-1e-06,-0.82297,0.568085,-1e-06,-0.82297,0.568085,0,-0.822947,0.568119,0,-0.822947,0.568119,0,-0.822947,0.568119,-0,-0.822948,0.568117,-0,-0.822948,0.568117,-0,-0.822948,0.568117,0,-0.822954,0.568108,0,-0.822954,0.568108,0,-0.822954,0.568108,0,-0.822954,0.568109,0,-0.822954,0.568109,0,-0.822954,0.568109,-0,-0.822946,0.568119,-0,-0.822946,0.568119,-0,-0.822946,0.568119,-2e-06,-0.822953,0.56811,-2e-06,-0.822953,0.56811,-2e-06,-0.822953,0.56811,-0,-0.822936,0.568135,-0,-0.822936,0.568135,-0,-0.822936,0.568135,-1e-06,-0.822952,0.56811,-1e-06,-0.822952,0.56811,-1e-06,-0.822952,0.56811,-1e-06,-0.82295,0.568114,-1e-06,-0.82295,0.568114,-1e-06,-0.82295,0.568114,-1e-06,-0.822952,0.568111,-1e-06,-0.822952,0.568111,-1e-06,-0.822952,0.568111,-1e-06,-0.822942,0.568125,-1e-06,-0.822942,0.568125,-1e-06,-0.822942,0.568125,1e-06,-0.82296,0.568099,1e-06,-0.82296,0.568099,1e-06,-0.82296,0.568099,1e-06,-0.82295,0.568113,1e-06,-0.82295,0.568113,1e-06,-0.82295,0.568113,0,-0.822944,0.568122,0,-0.822944,0.568122,0,-0.822944,0.568122,0,-0.822939,0.56813,0,-0.822939,0.56813,0,-0.822939,0.56813,0,-0.822932,0.56814,0,-0.822932,0.56814,0,-0.822932,0.56814,0,0,0,0,0,0,0,0,0,0,-0.822947,0.568118,0,-0.822947,0.568118,0,-0.822947,0.568118,0,0,0,2e-06,-0.822954,0.568108,2e-06,-0.822954,0.568108,2e-06,-0.822954,0.568108,2e-06,-0.822953,0.568109,2e-06,-0.822953,0.568109,2e-06,-0.822953,0.568109,-2e-06,-0.822947,0.568118,-2e-06,-0.822947,0.568118,-2e-06,-0.822947,0.568118,-2e-06,-0.822952,0.568111,-2e-06,-0.822952,0.568111,-2e-06,-0.822952,0.568111,2e-06,-0.822949,0.568116,2e-06,-0.822949,0.568116,2e-06,-0.822949,0.568116,1e-06,-0.822948,0.568116,1e-06,-0.822948,0.568116,1e-06,-0.822948,0.568116,1e-06,-0.822949,0.568116,1e-06,-0.822949,0.568116,1e-06,-0.822949,0.568116,3e-06,-0.822951,0.568113,3e-06,-0.822951,0.568113,3e-06,-0.822951,0.568113,2e-06,-0.822951,0.568112,2e-06,-0.822951,0.568112,2e-06,-0.822951,0.568112,1e-06,-0.822946,0.56812,1e-06,-0.822946,0.56812,1e-06,-0.822946,0.56812,-5e-06,-0.822955,0.568107,-5e-06,-0.822955,0.568107,-5e-06,-0.822955,0.568107,-5e-06,-0.822957,0.568104,-5e-06,-0.822957,0.568104,-5e-06,-0.822957,0.568104,1.2e-05,-0.822926,0.568149,1.2e-05,-0.822926,0.568149,1.2e-05,-0.822926,0.568149,1e-06,-0.822926,0.568149,1e-06,-0.822926,0.568149,1e-06,-0.822926,0.568149,-3e-06,-0.822944,0.568123,-3e-06,-0.822944,0.568123,-3e-06,-0.822944,0.568123,-3e-06,-0.822945,0.568121,-3e-06,-0.822945,0.568121,-3e-06,-0.822945,0.568121,0,-0.822959,0.568101,0,-0.822959,0.568101,0,-0.822959,0.568101,0,-0.822949,0.568116,0,-0.822949,0.568116,0,-0.822949,0.568116,-0,-0.822951,0.568112,-0,-0.822951,0.568112,-0,-0.822951,0.568112,1e-06,-0.822938,0.568131,1e-06,-0.822938,0.568131,1e-06,-0.822938,0.568131,-0,-0.822948,0.568116,-0,-0.822948,0.568116,-0,-0.822948,0.568116,5e-06,-0.822966,0.568091,5e-06,-0.822966,0.568091,5e-06,-0.822966,0.568091,-1e-06,-0.822946,0.56812,-1e-06,-0.822946,0.56812,-1e-06,-0.822946,0.56812,1.7e-05,-0.822874,0.568224,1.7e-05,-0.822874,0.568224,1.7e-05,-0.822874,0.568224,-0,-0.822909,0.568173,-0,-0.822909,0.568173,-0,-0.822909,0.568173,-2e-06,-0.822963,0.568095,-2e-06,-0.822963,0.568095,-2e-06,-0.822963,0.568095,1e-06,-0.822952,0.568111,1e-06,-0.822952,0.568111,1e-06,-0.822952,0.568111,-0,-0.82296,0.568099,-0,-0.82296,0.568099,-0,-0.82296,0.568099,-2e-06,-0.822952,0.568111,-2e-06,-0.822952,0.568111,-2e-06,-0.822952,0.568111,-2e-06,-0.822954,0.568109,-2e-06,-0.822954,0.568109,-2e-06,-0.822954,0.568109,-2e-06,-0.822952,0.568111,-2e-06,-0.822955,0.568106,-2e-06,-0.822955,0.568106,-2e-06,-0.822955,0.568106,8e-06,-0.822921,0.568156,8e-06,-0.822921,0.568156,8e-06,-0.822921,0.568156,1.3e-05,-0.822941,0.568127,1.3e-05,-0.822941,0.568127,1.3e-05,-0.822941,0.568127,-1e-06,-0.822942,0.568126,-1e-06,-0.822942,0.568126,-1e-06,-0.822942,0.568126,-2e-06,-0.822947,0.568118,-2e-06,-0.822947,0.568118,-2e-06,-0.822947,0.568118,-1e-06,-0.822946,0.56812,-1e-06,-0.822946,0.56812,-1e-06,-0.822946,0.56812,0,-0.822946,0.56812,0,-0.822946,0.56812,0,-0.822946,0.56812,-1e-06,-0.822948,0.568117,-1e-06,-0.822948,0.568117,-1e-06,-0.822948,0.568117,-1e-06,-0.822949,0.568115,-1e-06,-0.822949,0.568115,-1e-06,-0.822949,0.568115,1e-06,-0.822953,0.56811,1e-06,-0.822953,0.56811,1e-06,-0.822953,0.56811,0,-0.822949,0.568115,0,-0.822949,0.568115,0,-0.822949,0.568115,1e-06,-0.82295,0.568113,1e-06,-0.82295,0.568113,1e-06,-0.82295,0.568113,2e-06,-0.822955,0.568107,2e-06,-0.822955,0.568107,2e-06,-0.822955,0.568107,0,-0.822949,0.568115,3e-06,-0.822952,0.568112,3e-06,-0.822952,0.568112,3e-06,-0.822952,0.568112,-1e-06,-0.822943,0.568123,-1e-06,-0.822943,0.568123,-1e-06,-0.822943,0.568123,0,-0.822948,0.568117,0,-0.822948,0.568117,0,-0.822948,0.568117,1e-06,-0.82295,0.568114,1e-06,-0.82295,0.568114,1e-06,-0.82295,0.568114,5e-06,-0.822954,0.568108,5e-06,-0.822954,0.568108,5e-06,-0.822954,0.568108,-1e-06,-0.822951,0.568113,-1e-06,-0.822951,0.568113,-1e-06,-0.822951,0.568113,3e-06,-0.82295,0.568114,3e-06,-0.82295,0.568114,3e-06,-0.82295,0.568114,1e-06,-0.822947,0.568119,1e-06,-0.822947,0.568119,1e-06,-0.822947,0.568119,3e-06,-0.822946,0.56812,3e-06,-0.822946,0.56812,3e-06,-0.822946,0.56812,-0,-0.822949,0.568115,-0,-0.822949,0.568115,-0,-0.822949,0.568115,-1e-06,-0.822964,0.568093,-1e-06,-0.822964,0.568093,-1e-06,-0.822964,0.568093,-1.2e-05,-0.822937,0.568133,-1.2e-05,-0.822937,0.568133,-1.2e-05,-0.822937,0.568133,-1e-06,-0.822949,0.568115,-1e-06,-0.822949,0.568115,-1e-06,-0.822949,0.568115,2e-06,-0.822952,0.568111,2e-06,-0.822952,0.568111,2e-06,-0.822952,0.568111,2e-06,-0.82295,0.568113,2e-06,-0.82295,0.568113,2e-06,-0.82295,0.568113,3e-06,-0.822937,0.568132,3e-06,-0.822937,0.568132,3e-06,-0.822937,0.568132,-6e-06,-0.822956,0.568105,-6e-06,-0.822956,0.568105,-6e-06,-0.822956,0.568105,-3e-06,-0.822965,0.568093,-3e-06,-0.822965,0.568093,-3e-06,-0.822965,0.568093,-1e-06,-0.822953,0.568109,-1e-06,-0.822953,0.568109,-1e-06,-0.822953,0.568109,-1e-06,-0.822958,0.568102,-1e-06,-0.822958,0.568102,-1e-06,-0.822958,0.568102,1e-06,-0.822946,0.56812,1e-06,-0.822946,0.56812,1e-06,-0.822946,0.56812,1e-06,-0.822946,0.568119,1e-06,-0.822946,0.568119,1e-06,-0.822946,0.568119,0,-0.822954,0.568108,0,-0.822954,0.568108,0,-0.822954,0.568108,-1e-06,-0.822947,0.568118,-1e-06,-0.822947,0.568118,-1e-06,-0.822947,0.568118,-1e-06,-0.822947,0.568118,-1e-06,-0.822948,0.568116,-1e-06,-0.822948,0.568116,-1e-06,-0.822948,0.568116,0,-0.822954,0.568108,0,-0.822954,0.568108,0,-0.822954,0.568108,-1e-06,-0.822944,0.568123,-1e-06,-0.822944,0.568123,-1e-06,-0.822944,0.568123,0,-0.822953,0.568109,0,-0.822953,0.568109,0,-0.822953,0.568109,-3e-06,-0.822964,0.568093,-3e-06,-0.822964,0.568093,-3e-06,-0.822964,0.568093,-2e-06,-0.822948,0.568117,-2e-06,-0.822948,0.568117,-2e-06,-0.822948,0.568117,-1e-06,-0.822949,0.568115,-1e-06,-0.822949,0.568115,-1e-06,-0.822949,0.568115,1e-06,-0.822952,0.568111,1e-06,-0.822952,0.568111,1e-06,-0.822952,0.568111,-1e-06,-0.822946,0.568119,-1e-06,-0.822946,0.568119,-1e-06,-0.822946,0.568119,1e-06,-0.822951,0.568112,1e-06,-0.822951,0.568112,1e-06,-0.822951,0.568112,2e-06,-0.822949,0.568115,2e-06,-0.822949,0.568115,2e-06,-0.822949,0.568115,-3e-06,-0.822948,0.568116,-3e-06,-0.822948,0.568116,-3e-06,-0.822948,0.568116,-3e-06,-0.822946,0.568119,-3e-06,-0.822946,0.568119,-3e-06,-0.822946,0.568119,3e-06,-0.822951,0.568112,3e-06,-0.822951,0.568112,3e-06,-0.822951,0.568112,3e-06,-0.822951,0.568112,0,-0.822951,0.568112,0,-0.822951,0.568112,0,-0.822951,0.568112,-1e-06,-0.822952,0.568111,-1e-06,-0.822952,0.568111,-1e-06,-0.822952,0.568111,0,-0.822942,0.568125,0,-0.822942,0.568125,0,-0.822942,0.568125,-1e-06,-0.822948,0.568117,-1e-06,-0.822948,0.568117,-1e-06,-0.822948,0.568117,-1e-06,-0.822951,0.568112,-1e-06,-0.822951,0.568112,-1e-06,-0.822951,0.568112,1e-06,-0.822953,0.56811,1e-06,-0.822953,0.56811,1e-06,-0.822953,0.56811,-5e-06,-0.822937,0.568132,-5e-06,-0.822937,0.568132,-5e-06,-0.822937,0.568132,-0,-0.822948,0.568117,-0,-0.822948,0.568117,-0,-0.822948,0.568117,1e-06,-0.82295,0.568114,1e-06,-0.82295,0.568114,1e-06,-0.82295,0.568114,1e-06,-0.822945,0.568122,1e-06,-0.822945,0.568122,1e-06,-0.822945,0.568122,-1e-06,-0.822955,0.568107,-1e-06,-0.822955,0.568107,-1e-06,-0.822955,0.568107,-1e-06,-0.822953,0.568109,-1e-06,-0.822953,0.568109,-1e-06,-0.822953,0.568109,-0,-0.822949,0.568115,-0,-0.822949,0.568115,-0,-0.822949,0.568115,-0,-0.822948,0.568116,-0,-0.822948,0.568116,-0,-0.822948,0.568116,-1e-06,-0.822951,0.568112,-1e-06,-0.822951,0.568112,-1e-06,-0.822951,0.568112,-3e-06,-0.822932,0.568139,-3e-06,-0.822932,0.568139,-3e-06,-0.822932,0.568139,5e-06,-0.822958,0.568102,5e-06,-0.822958,0.568102,5e-06,-0.822958,0.568102,6e-06,-0.822955,0.568107,6e-06,-0.822955,0.568107,6e-06,-0.822955,0.568107,-1.9e-05,-0.82297,0.568085,-1.9e-05,-0.82297,0.568085,-1.9e-05,-0.82297,0.568085,-9e-06,-0.822947,0.568118,-9e-06,-0.822947,0.568118,-9e-06,-0.822947,0.568118,-9e-06,-0.822955,0.568106,-9e-06,-0.822955,0.568106,-9e-06,-0.822955,0.568106,2e-06,-0.822947,0.568118,2e-06,-0.822947,0.568118,2e-06,-0.822947,0.568118,-4e-06,-0.822944,0.568123,-4e-06,-0.822944,0.568123,-4e-06,-0.822944,0.568123,4e-06,-0.822956,0.568105,4e-06,-0.822956,0.568105,4e-06,-0.822956,0.568105,2e-06,-0.822949,0.568115,2e-06,-0.822949,0.568115,2e-06,-0.822949,0.568115,-0,-0.822947,0.568119,-0,-0.822947,0.568119,-0,-0.822947,0.568119,-3e-06,-0.822934,0.568136,-3e-06,-0.822934,0.568136,-3e-06,-0.822934,0.568136,-2e-06,-0.822949,0.568115,-2e-06,-0.822949,0.568115,-2e-06,-0.822949,0.568115,1e-06,-0.822954,0.568109,1e-06,-0.822954,0.568109,1e-06,-0.822954,0.568109,1e-06,-0.822951,0.568112,1e-06,-0.822951,0.568112,1e-06,-0.822951,0.568112,1e-06,-0.822951,0.568112,1e-06,-0.822951,0.568112,-1e-06,-0.822947,0.568118,-1e-06,-0.822947,0.568118,-1e-06,-0.822947,0.568118,-1e-06,-0.822948,0.568117,-1e-06,-0.822948,0.568117,-1e-06,-0.822948,0.568117,1e-06,-0.82295,0.568113,1e-06,-0.82295,0.568113,1e-06,-0.82295,0.568113,1e-06,-0.822951,0.568113,1e-06,-0.822951,0.568113,1e-06,-0.822951,0.568113,1e-06,-0.822944,0.568123,1e-06,-0.822944,0.568123,1e-06,-0.822944,0.568123,-0,-0.822969,0.568086,-0,-0.822969,0.568086,-0,-0.822969,0.568086,2e-06,-0.822932,0.56814,2e-06,-0.822932,0.56814,2e-06,-0.822932,0.56814,0,-0.82295,0.568114,0,-0.82295,0.568114,0,-0.82295,0.568114,0,-0.82295,0.568114,-1e-06,-0.822952,0.568111,-1e-06,-0.822952,0.568111,-1e-06,-0.822952,0.568111,0,-0.822956,0.568105,0,-0.822956,0.568105,0,-0.822956,0.568105,-1e-06,-0.82295,0.568114,-1e-06,-0.82295,0.568114,-1e-06,-0.82295,0.568114,-1e-06,-0.822946,0.56812,-1e-06,-0.822946,0.56812,-1e-06,-0.822946,0.56812,-4e-06,-0.822948,0.568116,-4e-06,-0.822948,0.568116,-4e-06,-0.822948,0.568116,-2e-06,-0.82295,0.568114,-2e-06,-0.82295,0.568114,-2e-06,-0.82295,0.568114,-2e-06,-0.822948,0.568116,-2e-06,-0.822948,0.568116,-2e-06,-0.822948,0.568116,-2e-06,-0.822953,0.568109,-2e-06,-0.822953,0.568109,-2e-06,-0.822953,0.568109,-4e-06,-0.82295,0.568114,-4e-06,-0.82295,0.568114,-4e-06,-0.82295,0.568114,-2e-06,-0.822953,0.56811,-2e-06,-0.822953,0.56811,-2e-06,-0.822953,0.56811,-1e-06,-0.822943,0.568124,-1e-06,-0.822943,0.568124,-1e-06,-0.822943,0.568124,-3e-06,-0.822951,0.568112,-3e-06,-0.822951,0.568112,-3e-06,-0.822951,0.568112,-3e-06,-0.822937,0.568132,-3e-06,-0.822937,0.568132,-3e-06,-0.822937,0.568132,-1.6e-05,-0.822952,0.568111,-1.6e-05,-0.822952,0.568111,-1.6e-05,-0.822952,0.568111,2e-06,-0.822944,0.568123,2e-06,-0.822944,0.568123,2e-06,-0.822944,0.568123,2e-06,-0.822963,0.568096,2e-06,-0.822963,0.568096,2e-06,-0.822963,0.568096,-1e-06,-0.822952,0.568111,-1e-06,-0.822952,0.568111,-1e-06,-0.822952,0.568111,-1e-06,-0.822947,0.568118,-1e-06,-0.822947,0.568118,-1e-06,-0.822947,0.568118,-1e-06,-0.822949,0.568115,-1e-06,-0.822949,0.568115,-1e-06,-0.822949,0.568115,-1e-06,-0.822949,0.568116,-1e-06,-0.822949,0.568116,-1e-06,-0.822949,0.568116,0,-0.822954,0.568108,0,-0.822954,0.568108,0,-0.822954,0.568108,0,-0.822949,0.568115,0,-0.822949,0.568115,0,-0.822949,0.568115,4e-06,-0.822934,0.568138,4e-06,-0.822934,0.568138,4e-06,-0.822934,0.568138,-1e-06,-0.822947,0.568118,-1e-06,-0.822947,0.568118,-1e-06,-0.822947,0.568118,4e-06,-0.822918,0.568161,4e-06,-0.822918,0.568161,4e-06,-0.822918,0.568161,-3e-06,-0.822942,0.568125,-3e-06,-0.822942,0.568125,-3e-06,-0.822942,0.568125,-2e-06,-0.822945,0.568121,-2e-06,-0.822945,0.568121,-2e-06,-0.822945,0.568121,-2e-06,-0.822951,0.568112,-2e-06,-0.822951,0.568112,-2e-06,-0.822951,0.568112,1e-06,-0.822947,0.568118,1e-06,-0.822947,0.568118,1e-06,-0.822947,0.568118,3e-06,-0.822952,0.568111,3e-06,-0.822952,0.568111,3e-06,-0.822952,0.568111,4e-06,-0.82295,0.568113,4e-06,-0.82295,0.568113,4e-06,-0.82295,0.568113,3e-06,-0.822949,0.568115,3e-06,-0.822949,0.568115,3e-06,-0.822949,0.568115,1.5e-05,-0.822961,0.568098,1.5e-05,-0.822961,0.568098,1.5e-05,-0.822961,0.568098,2e-06,-0.822945,0.568122,2e-06,-0.822945,0.568122,2e-06,-0.822945,0.568122,2e-06,-0.822945,0.568122,2e-06,-0.822945,0.568122,2e-06,-0.822945,0.568122,-1e-06,-0.822952,0.568111,-1e-06,-0.822952,0.568111,-1e-06,-0.822952,0.568111,2e-06,-0.822947,0.568119,2e-06,-0.822947,0.568119,2e-06,-0.822947,0.568119,3e-06,-0.822957,0.568104,3e-06,-0.822957,0.568104,3e-06,-0.822957,0.568104,-0,-0.822953,0.56811,-0,-0.822953,0.56811,-0,-0.822953,0.56811,-4e-06,-0.823015,0.56802,-4e-06,-0.823015,0.56802,-4e-06,-0.823015,0.56802,-1e-06,-0.822942,0.568125,-1e-06,-0.822942,0.568125,-1e-06,-0.822942,0.568125,-0,-0.822956,0.568106,-0,-0.822956,0.568106,-0,-0.822956,0.568106,1e-06,-0.822944,0.568122,1e-06,-0.822944,0.568122,1e-06,-0.822944,0.568122,-1e-06,-0.82295,0.568114,-1e-06,-0.82295,0.568114,-1e-06,-0.82295,0.568114,-1e-06,-0.822948,0.568116,-1e-06,-0.822948,0.568116,-1e-06,-0.822948,0.568116,-1e-06,-0.822951,0.568112,-1e-06,-0.822951,0.568112,-1e-06,-0.822951,0.568112,-1e-06,-0.82295,0.568114,-1e-06,-0.82295,0.568114,-1e-06,-0.82295,0.568114,-6e-06,-0.822934,0.568137,-6e-06,-0.822934,0.568137,-6e-06,-0.822934,0.568137,-4e-06,-0.822952,0.568111,-4e-06,-0.822952,0.568111,-4e-06,-0.822952,0.568111,-4e-06,-0.822948,0.568116,-4e-06,-0.822948,0.568116,-4e-06,-0.822948,0.568116,-1e-06,-0.822964,0.568094,-1e-06,-0.822964,0.568094,-1e-06,-0.822964,0.568094,-0,-0.822947,0.568118,-0,-0.822947,0.568118,-0,-0.822947,0.568118,-0,-0.822947,0.568118,-0,-0.822946,0.56812,-0,-0.822946,0.56812,-0,-0.822946,0.56812,2e-06,-0.822954,0.568108,2e-06,-0.822954,0.568108,2e-06,-0.822954,0.568108,3e-06,-0.822872,0.568227,3e-06,-0.822872,0.568227,3e-06,-0.822872,0.568227,-3e-06,-0.822971,0.568083,-3e-06,-0.822971,0.568083,-3e-06,-0.822971,0.568083,-4e-06,-0.82295,0.568115,-4e-06,-0.82295,0.568115,-4e-06,-0.82295,0.568115,-2e-06,-0.82295,0.568114,-2e-06,-0.82295,0.568114,-2e-06,-0.82295,0.568114,0,-0.822948,0.568117,0,-0.822948,0.568117,0,-0.822948,0.568117,0,-0.822948,0.568117,0,-0.82295,0.568114,0,-0.82295,0.568114,0,-0.82295,0.568114,3e-06,-0.822953,0.568109,3e-06,-0.822953,0.568109,3e-06,-0.822953,0.568109,3e-06,-0.822952,0.568111,3e-06,-0.822952,0.568111,3e-06,-0.822952,0.568111,2e-06,-0.822949,0.568115,2e-06,-0.822949,0.568115,2e-06,-0.822949,0.568115,-1e-06,-0.822958,0.568103,-1e-06,-0.822958,0.568103,-1e-06,-0.822958,0.568103,-4e-06,-0.822942,0.568125,-4e-06,-0.822942,0.568125,-4e-06,-0.822942,0.568125,-6e-06,-0.822948,0.568117,-6e-06,-0.822948,0.568117,-6e-06,-0.822948,0.568117,-3e-06,-0.822948,0.568117,-3e-06,-0.822948,0.568117,-3e-06,-0.822948,0.568117,-2e-06,-0.822949,0.568115,-2e-06,-0.822949,0.568115,-2e-06,-0.822949,0.568115,-2e-06,-0.822931,0.568141,-2e-06,-0.822931,0.568141,-2e-06,-0.822931,0.568141,0,-0.822953,0.56811,0,-0.822953,0.56811,0,-0.822953,0.56811,-1e-06,-0.822962,0.568097,-1e-06,-0.822962,0.568097,-1e-06,-0.822962,0.568097,-1e-06,-0.822944,0.568122,-1e-06,-0.822944,0.568122,-1e-06,-0.822944,0.568122,-0,-0.822949,0.568116,-0,-0.822949,0.568116,-0,-0.822949,0.568116,0,-0.82289,0.568201,0,-0.82289,0.568201,0,-0.82289,0.568201,0,-0.82289,0.568201,-8e-06,-0.822936,0.568134,-8e-06,-0.822936,0.568134,-8e-06,-0.822936,0.568134,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,3e-06,-0.822951,0.568112,3e-06,-0.822951,0.568112,3e-06,-0.822951,0.568112,3e-06,-0.822951,0.568112,3e-06,-0.822949,0.568115,3e-06,-0.822949,0.568115,3e-06,-0.822949,0.568115,-0,-0.82295,0.568114,-0,-0.82295,0.568114,-0,-0.82295,0.568114,-3e-06,-0.822926,0.568149,-3e-06,-0.822926,0.568149,-3e-06,-0.822926,0.568149,-0,-0.822954,0.568107,-0,-0.822954,0.568107,-0,-0.822954,0.568107,-0,-0.82295,0.568113,-0,-0.82295,0.568113,-0,-0.82295,0.568113,-2e-06,-0.822945,0.56812,-2e-06,-0.822945,0.56812,-2e-06,-0.822945,0.56812,-1e-06,-0.822951,0.568112,-1e-06,-0.822951,0.568112,-1e-06,-0.822951,0.568112,-1e-06,-0.822957,0.568103,-1e-06,-0.822957,0.568103,-1e-06,-0.822957,0.568103,0,-0.822944,0.568123,0,-0.822944,0.568123,0,-0.822944,0.568123,2e-06,-0.822953,0.56811,2e-06,-0.822953,0.56811,2e-06,-0.822953,0.56811,0,-0.822959,0.568101,0,-0.822959,0.568101,0,-0.822959,0.568101,-0,-0.822943,0.568123,-0,-0.822943,0.568123,-0,-0.822943,0.568123,2e-06,-0.82296,0.568099,2e-06,-0.82296,0.568099,2e-06,-0.82296,0.568099,1e-06,-0.822954,0.568108,1e-06,-0.822954,0.568108,1e-06,-0.822954,0.568108,0,-0.822944,0.568123,0,-0.822944,0.568123,0,-0.822944,0.568123,-0,-0.822949,0.568116,-0,-0.822949,0.568116,-0,-0.822949,0.568116,-0,-0.82295,0.568115,-0,-0.82295,0.568115,-0,-0.82295,0.568115,-0,-0.822949,0.568115,-0,-0.822949,0.568115,-0,-0.822949,0.568115,-0,-0.822949,0.568115,-0,-0.822957,0.568103,-0,-0.822957,0.568103,-0,-0.822957,0.568103,-1e-06,-0.822954,0.568108,-1e-06,-0.822954,0.568108,-1e-06,-0.822954,0.568108,5e-06,-0.822921,0.568156,5e-06,-0.822921,0.568156,5e-06,-0.822921,0.568156,-2e-06,-0.822951,0.568112,-2e-06,-0.822951,0.568112,-2e-06,-0.822951,0.568112,7e-06,-0.822973,0.56808,7e-06,-0.822973,0.56808,7e-06,-0.822973,0.56808,-3e-06,-0.822944,0.568122,-3e-06,-0.822944,0.568122,-3e-06,-0.822944,0.568122,-3e-06,-0.822945,0.568121,-3e-06,-0.822945,0.568121,-3e-06,-0.822945,0.568121,-1e-06,-0.822949,0.568116,-1e-06,-0.822949,0.568116,-1e-06,-0.822949,0.568116,-1e-06,-0.822948,0.568116,-1e-06,-0.822948,0.568116,-1e-06,-0.822948,0.568116,-0,-0.822949,0.568116,-0,-0.822949,0.568116,-0,-0.822949,0.568116,-1e-06,-0.82295,0.568115,-1e-06,-0.82295,0.568115,-1e-06,-0.82295,0.568115,5e-06,-0.822953,0.568109,5e-06,-0.822953,0.568109,5e-06,-0.822953,0.568109,5e-06,-0.822951,0.568113,5e-06,-0.822951,0.568113,5e-06,-0.822951,0.568113,-8e-06,-0.822951,0.568112,-8e-06,-0.822951,0.568112,-8e-06,-0.822951,0.568112,-5e-06,-0.822944,0.568123,-5e-06,-0.822944,0.568123,-5e-06,-0.822944,0.568123,-2e-06,-0.822943,0.568123,-2e-06,-0.822943,0.568123,-2e-06,-0.822943,0.568123,-2e-06,-0.82295,0.568114,-2e-06,-0.82295,0.568114,-2e-06,-0.82295,0.568114,-1e-06,-0.822944,0.568122,-1e-06,-0.822944,0.568122,-1e-06,-0.822944,0.568122,2e-06,-0.822953,0.568109,2e-06,-0.822953,0.568109,2e-06,-0.822953,0.568109,0,-0.82296,0.5681,0,-0.82296,0.5681,0,-0.82296,0.5681,1e-06,-0.822963,0.568096,1e-06,-0.822963,0.568096,1e-06,-0.822963,0.568096,1e-06,-0.822968,0.568088,1e-06,-0.822968,0.568088,1e-06,-0.822968,0.568088,1e-06,-0.822944,0.568123,1e-06,-0.822944,0.568123,1e-06,-0.822944,0.568123,-1e-06,-0.822949,0.568115,-1e-06,-0.822949,0.568115,-1e-06,-0.822949,0.568115,-1e-06,-0.822949,0.568116,-1e-06,-0.822949,0.568116,-1e-06,-0.822949,0.568116,-1e-06,-0.822949,0.568115,-1e-06,-0.822949,0.568115,1e-06,-0.822963,0.568095,1e-06,-0.822963,0.568095,1e-06,-0.822963,0.568095,1e-06,-0.822939,0.56813,1e-06,-0.822939,0.56813,1e-06,-0.822939,0.56813,-2e-06,-0.822952,0.568111,-2e-06,-0.822952,0.568111,-2e-06,-0.822952,0.568111,-1e-06,-0.82296,0.5681,-1e-06,-0.82296,0.5681,-1e-06,-0.82296,0.5681}; +const GLushort gameover_indices[] = {0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,42,51,43,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,136,145,137,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,136,161,145,162,163,164,165,161,136,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,178,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,256,257,258,259,260,261,262,263,264,265,266,267,268,269,270,271,272,273,274,275,258,276,259,277,278,279,280,281,282,283,250,249,284,285,286,287,288,289,290,291,292,293,294,295,296,297,298,299,300,301,302,303,304,305,306,307,308,309,310,311,312,313,314,315,316,317,318,319,320,321,322,323,324,325,326,327,328,329,330,331,332,333,334,335,330,329,336,337,338,339,340,341,342,343,344,345,346,347,348,349,350,351,352,353,354,355,356,357,358,359,360,361,362,363,364,365,366,367,368,369,370,371,372,373,374,375,376,377,378,379,380,381,382,383,384,385,386,387,388,389,390,391,392,393,394,395,396,397,398,399,400,401,402,403,404,405,406,407,408,409,410,411,412,413,414,415,416,417,418,419,420,421,422,423,424,425,426,427,428,429,430,431,432,433,434,435,436,437,438,439,440,441,442,443,444,445,446,447,448,449,450,451,452,453,454,455,456,457,458,459,460,461,462,463,464,465,466,467,468,469,470,471,472,473,474,475,476,477,478,479,474,480,475,481,482,483,484,485,486,487,488,489,490,491,492,493,494,495,496,497,498,499,500,501,502,503,504,505,506,507,508,509,510,511,512,513,514,515,516,517,518,519,520,521,522,523,524,525,526,527,528,529,530,531,532,533,534,535,536,537,538,539,540,541,542,543,544,545,546,547,548,549,550,551,552,553,554,555,556,557,558,559,560,561,562,563,564,565,566,567,568,569,570,571,572,573,574,575,576,577,578,579,580,581,582,583,584,585,586,587,588,589,590,591,592,593,594,595,596,597,598,599,600,601,602,603,604,605,606,607,608,609,610,611,612,613,614,615,616,617,618,619,620,621,622,623,624,625,626,627,628,629,630,631,632,633,634,635,636,637,638,639,640,641,642,643,644,645,646,647,648,649,650,651,652,653,654,655,656,657,658,659,660,661,662,663,664,665,666,667,668,669,670,671,672,673,674,675,676,677,678,679,680,681,682,683,684,685,686,687,688,689,690,691,692,693,694,695,696,697,698,699,700,701,702,703,704,705,706,707,708,709,710,711,712,713,714,715,716,717,718,719,720,712,721,713,722,723,724,725,726,727,728,729,730,731,732,733,734,735,736,737,738,739,740,741,742,743,744,745,746,747,748,749,750,751,752,753,754,755,756,757,758,759,760,761,762,763,764,765,766,767,768,769,770,771,772,773,774,775,773,776,774,777,778,779,780,781,782,781,783,782,784,785,786,787,788,789,790,791,792,793,794,795,796,797,798,799,800,801,802,803,804,805,806,807,808,809,810,811,812,813,814,815,816,817,818,819,820,821,822,823,824,825,826,827,828,829,830,831,832,833,834,835,836,837,838,839,840,841,842,843,844,845,846,847,848,849,850,851,852,853,854,855,856,857,858,859,860,861,862,863,864,865,866,867,868,869,870,871,872,873,874,875,876,877,878,879,880,881,882,883,884,885,886,887,888,889,890,891,892,893,894,895,896,897,898,899,900,901,902,903,904,905,906,907,908,909,910,911,912,913,914,915,916,917,918,919,920,921,922,923,924,925,926,927,928,929,930,931,932,933,934,935,936,937,938,939,940,941,942,937,943,938,944,945,946,947,948,949,950,951,952,953,954,955,956,957,958,959,960,961,962,881,880,963,964,965,963,966,964,967,968,969,970,971,972,973,974,975,976,977,978,979,980,981,982,983,984,985,986,987,988,989,990,991,992,993,994,995,996,997,998,999,1000,1001,1002,1003,1004,1005,1006,1007,1008,1009,1010,1011,1012,1013,1014,1015,1016,1017,1018,1019,1020,1021,1022,1023,1024,1025,1026,1027,1028,1029,1030,1031,1032,1033,1034,1035,1036,1037,1038,1039,1040,1041,1042,1043,1044,1045,1046,1047,1048,1049,1050,1051,1052,1053,1054,1055,1056,1057,1058,1059,994,1060,995,1061,1062,1063,1064,1065,1066,1067,1049,1048,1068,1069,1070,1071,1062,1061,1072,1073,1074,1075,1076,1077,1078,1079,1080,1081,1082,1083,1084,1085,1086,1087,1088,1089,1090,1091,1092,1093,1094,1095,1096,1097,1098,1099,1100,1101,1102,1103,1104,1105,1106,1107,1108,1109,1110,1111,1112,1113,1114,1115,1116,1117,1118,1119,1120,1121,1122,1123,1124,1125,1126,1127,1128,1129,1130,1131,1132,1133,1134,1135,1136,1137,1138,1139,1140,1141,1142,1143,1144,1145,1146,1147,1148,1149,1150,1151,1152,1153,1154,1155,1156,1157,1158,1159,1160,1161,1162,1163,1164,1165,1166,1167,1168,1169,1170,1171,1172,1173,1174,1175,1176,1165,1177,1166,1178,1179,1180,1181,1182,1183,1184,1185,1186,1187,1188,1189,1190,1191,1192,1193,1194,1195,1196,1197,1198,1199,1200,1201,1202,1203,1204,1205,1206,1207,1208,1209,1210,1211,1212,1213,1214,1215,1216,1217,1218,1219,1220,1221,1222,1223,1224,1225,1226,1227,1228,1229,1230,1231,1232,1233,1234,1235,1236,1237,1238,1239,1240,1241,1242,1243,1244,1245,1246,1247,1248,1249,1250,1251,1252,1253,1254,1255,1256,1257,1258,1259,1260,1261,1262,1263,1264,1265,1266,1267,1268,1269,1270,1271,1272,1273,1274,1275,1276,1277,1278,1279,1280,1281,1282,1283,1281,1280,1284,1285,1286,1287,1288,1289,1290,1291,1292,1293,1294,1295,1296,1297,1298,1299,1300,1301,1302,1303,1304,1305,1306,1307,1308,1309,1310,1311,1312,1313,1314,1315,1316,1317,1318,1319,1320,1321,1322,1323,1324,1325,1323,1326,1324,1327,1328,1329,1330,1331,1332,1333,1334,1335,1336,1337,1338,1339,1340,1341,1342,1343,1344,1345,1346,1347,1348,1349,1350,1351,1352,1353,1354,1355,1356,1357,1358,1359,1360,1361,1362,1363,1364,1365,1366,1367,1368,1369,1370,1371,1372,1373,1374,1375,1376,1377,1378,1379,1380,1381,1382,1383,1384,1385,1386,1387,1388,1389,1390,1391,1392,1393,1394,1395,1396,1397,1398,1399,1400,1401,1402,1403,1404,1405,1406,1407,1408,1409,1410,1411,1412,1413,1414,1415,1416,1417,1418,1419,1420,1421,1422,1421,1423,1422,1424,1425,1426,1427,1428,1429,1427,1430,1428,1431,1432,1433,1434,1435,1436,1437,1438,1439,1440,1441,1442,1443,1444,1445,1446,1447,1448,1449,1450,1451,1452,1453,1454,1455,1456,1457,1458,1459,1460,1461,1462,1463,1461,1464,1462,1465,1466,1467,1468,1469,1470,1471,1466,1465,1472,1473,1474,1475,1476,1477,1478,1479,1480,1478,1481,1479,1482,1483,1484,1485,1486,1487,1488,1489,1490,1491,1492,1493,1494,1495,1496,1497,1498,1499,1500,1501,1502,1503,1504,1505,1506,1507,1508,1509,1510,1511,1512,1513,1514,1515,1516,1517,1518,1519,1520,1521,1522,1523,1524,1525,1526,1527,1528,1529,1530,1531,1532,1533,1534,1535,1536,1537,1538,1539,1540,1541,1542,1543,1544,1545,1546,1547,1548,1549,1550,1551,1552,1553,1554,1555,1556,1557,1558,1559,1560,1561,1562,1563,1564,1565,1566,1567,1568,1569,1570,1571,1506,1572,1507,1573,1574,1575,1576,1577,1578,1579,1561,1560,1580,1581,1582,1583,1574,1573,1584,1585,1586,1587,1588,1589,1590,1591,1592,1593,1594,1595,1596,1597,1598,1599,1600,1601,1602,1603,1604,1605,1606,1607,1608,1609,1610,1611,1612,1613,1614,1615,1616,1617,1618,1619,1620,1621,1622,1623,1624,1625,1626,1627,1628,1629,1630,1631,1632,1633,1634,1635,1636,1637,1638,1639,1640,1641,1642,1643,1644,1645,1646,1647,1648,1649,1650,1651,1652,1653,1654,1655,1656,1657,1658,1659,1660,1661,1662,1663,1664,1665,1666,1667,1668,1669,1670,1671,1672,1673,1674,1675,1676,1677,1678,1679,1680,1681,1682,1683,1684,1685,1686,1687,1688,1689,1690,1691,1692,1693,1694,1695,1696,1697,1698,1699,1700,1701,1702,1703,1704,1705,1706,1707,1708,1709,1710,1711,1712,1713,1714,1715,1716,1717,1718,1719,1720,1721,1722,1723,1724,1725,1726,1727,1719,1728,1720,1729,1730,1731,1732,1733,1734,1735,1736,1737,1738,1739,1740,1735,1741,1736,1742,1743,1744,1745,1746,1747,1748,1749,1750,1751,1752,1753,1754,1755,1756,1757,1758,1759,1760,1761,1762,1763,1764,1765,1766,1767,1768,1769,1770,1771,1772,1773,1774,1775,1776,1777,1778,1779,1780,1781,1782,1783,1784,1785,1786,1787,1788,1789,1790,1791,1792,1793,1794,1795,1796,1797,1798,1799,1800,1801,1802,1803,1804,1805,1806,1807,1808,1809,1810,1811,1812,1813,1814,1815,1816,1817,1818,1819,1820,1821,1822,1823,1824,1825,1826,1827,1828,1829,1830,1831,1832,1833,1834,1835,1836,1837,1838,1839,1840,1841,1842,1843,1844,1845,1846,1847,1848,1849,1850,1851,1852,1853,1854,1855,1856,1857,1858,1859,1860,1861,1862,1863,1864,1865,1866,1867,1868,1869,1870,1871,1872,1873,1874,1875,1876,1877,1878,1879,1880,1881,1882,1883,1884,1885,1886,1887,1888,1889,1890,1891,1892,1887,1886,1893,1894,1895,1896,1897,1898,1899,1900,1901,1902,1903,1904,1905,1906,1907,1908,1909,1910,1911,1912,1913,1914,1915,1916,1917,1918,1919,1920,1921,1922,1923,1924,1925,1926,1927,1928,1917,1929,1918,1930,1931,1932,1933,1934,1935,1936,1937,1938,1939,1940,1941,1942,1943,1944,1945,1946,1947,1948,1949,1950,1951,1952,1953,1954,1955,1956,1957,1958,1959,1960,1961,1962,1963,1964,1965,1966,1967,1968,1969,1970,1971,1972,1973,1974,1975,1976,1977,1978,1979,1980,1981,1982,1983,1984,1985,1986,1987,1988,1989,1990,1991,1992,1993,1994,1995,1996,1997,1998,1999,2000,2001,2002,2003,2004,2005,2006,2007,2008,2009,2010,2011,2012,2013,2014,2015,2016,2017,2018,2019,2020,2021,2022,2023,2024,2025,2026,2027,2028,2029,2030,2031,1930,2032,2033,2034,2035,2036,2037,2038,2039,2040,2041,2042,2043,2044,2045,2046,2047,2048,2049,2050,2051,2052,2053,2054,2055,2056,2057,2058,2059,2060,2061,2062,2063,2064,2065,2066,2067,2068,2069,2070,2071,2072,2073,2074,2075,2076,2077,2078,2077,2079,2078,2080,2081,2082,2083,2084,2085,2086,2087,2088,2089,2090,2091,2090,2092,2091,2093,2094,2095,2096,2097,2098,2099,2100,2101,2102,2103,2104,2105,2106,2107,2108,2109,2110,2108,2111,2109,2112,2113,2114,2115,2116,2117,2118,2119,2120,2121,2122,2123,2124,2125,2126,2127,2128,2129,2130,2131,2132,2133,2134,2135,2136,2137,2138,2139,2140,2141,2142,2143,2144,2145,2146,2147,2148,2149,2150,2151,2152,2153,2154,2155,2156,2157,2158,2159,2160,2161,2162,2139,2163,2164,2165,2166,2167,2168,2169,2170,2171,2172,2173,2174,2175,2176,2177,2178,2179,2180,2181,2182,2183,2184,2185,2186,2187,2188,2189,2190,2191,2192,2193,2194,2195,2196,2197,2198,2199,2200,2201,2202,2203,2204,2181,2180,2205,2206,2207,2208,2209,2210,2211,2212,2213,2214,2215,2216,2217,2218,2219,2220,2221,2222,2223,2224,2225,2226,2227,2228,2229,2230,2214,2231,2232,2233,2234,2235,2236,2237,2238,2239,2240,2241,2242,2243,2244,2245,2246,2247,2248,2240,2249,2241,2250,2251,2252,2253,2254,2255,2256,2257,2258,2259,2260,2261,2262,2263,2264,2265,2266,2267,2268,2269,2270,2271,2272,2273,2274,2275,2276,2277,2278,2279,2280,2281,2282,2283,2284,2285,2286,2287,2288,2289,2290,2291,2292,2293,2294,2295,2296,2297,2298,2299,2300,2301,2302,2303,2304,2305,2306,2307,2308,2309,2310,2311,2312,2313,2314,2315,2316,2317,2318,2319,2320,2321,2073,2322,2074,2323,2324,2325,2326,2327,2328,2329,2330,2331,2332,2317,2316,2333,2334,2335,2336,2337,2338,2339,2340,2341,2342,2343,2344,2345,2346,2347,2348,2349,2350,2351,2352,2353,2354,2355,2356,2357,2358,2359,2360,2361,2362,2363,2364,2365,2366,2367,2368,2369,2370,2371,2372,2373,2374,2375,2376,2377,2378,2379,2380,2381,2382,2383,2384,2385,2386,2387,2385,2384,2388,2389,2390,2391,2392,2393,2394,2395,2396,2397,2398,2399,2400,2401,2402,2403,2404,2405,2406,2407,2408,2409,2410,2411,2412,2413,2414,2415,2416,2417,2418,2419,2420,2421,2422,2423,2424,2425,2426,2427,2428,2429,2430,2431,2432,2433,2434,2435,2436,2437,2438,2439,2440,2441,2442,2443,2444,2445,2446,2447,2448,2449,2450,2451,2452,2453,2454,2455,2456,2457,2458,2459,2460,2461,2462,2463,2464,2465,2466,2467,2468,2469,2470,2471,2472,2473,2474,2475,2476,2477,2478,2479,2480,2481,2482,2483,2448,2484,2449,2485,2486,2487,2488,2489,2490,2491,2492,2493,2494,2495,2496,2497,2498,2499,2500,2501,2502,2503,2504,2505,2506,2507,2508,2509,2510,2511,2512,2513,2514,2515,2516,2517,2518,2519,2520,2521,2522,2523,2522,2524,2523,2525,2526,2527,2528,2529,2530,2531,2532,2533,2534,2535,2536,2537,2538,2539,2540,2541,2542,2543,2544,2545,2546,2547,2548,2549,2550,2551,2552,2553,2554,2555,2556,2557,2558,2559,2560,2561,2562,2563,2564,2565,2566,2567,2568,2569,2570,2571,2572,2573,2574,2575,2576,2577,2578,2579,2580,2581,2582,2583,2584,2585,2586,2587,2588,2589,2590,2591,2592,2593,2594,2595,2596,2597,2598,2599,2600,2601,2602,2603,2604,2605,2606,2607,2608,2609,2610,2611,2612,2613,2614,2615,2616,2617,2618,2619,2620,2621,2622,2623,2624,2625,2626,2627,2628,2629,2630,2631,2632,2633,2634,2635,2636,2637,2638,2639,2640,2641,2642,2643,2644,2645,2646,2647,2648,2649,2650,2651,2652,2653,2654,2655,2656,2657,2658,2659,2660,2661,2662,2663,2664,2665,2643,2666,2644,2667,2668,2640,2669,2670,2671,2672,2673,2674,2675,2676,2677,2678,2679,2680,2681,2682,2683,2684,2685,2686,2687,2688,2689,2690,2691,2692,2693,2694,2695,2696,2697,2698,2699,2700,2701,2702,2703,2704,2705,2706,2707,2708,2709,2710,2711,2703,2702,2712,2713,2714,2715,2716,2717,2718,2719,2720,2721,2722,2723,2724,2725,2726,2727,2728,2729,2730,2731,2732,2733,2734,2735,2736,2737,2738,2739,2740,2741,2518,2742,2519,2743,2744,2745,2746,2747,2748,2749,2750,2751,2518,2752,2742,2753,2754,2755,2756,2757,2758,2759,2760,2761,2762,2763,2764,2765,2766,2767,2768,2769,2770,2771,2772,2773,2774,2775,2776,2774,2777,2775,2778,2779,2780,2781,2782,2783,2784,2785,2786,2787,2788,2789,2790,2791,2792,2793,2794,2795,2796,2797,2798,2799,2800,2801,2802,2803,2804,2805,2806,2807,2808,2809,2810,2811,2812,2813,2814,2815,2816,2817,2818,2819,2820,2821,2822,2823,2824,2825,2826,2827,2828,2829,2830,2831,2832,2833,2834,2835,2836,2837,2838,2839,2840,2841,2842,2843,2844,2845,2846,2847,2848,2849,2850,2851,2852,2853,2854,2855,2856,2857,2858,2859,2860,2861,2862,2863,2864,2865,2866,2867,2868,2869,2870,2871,2872,2873,2874,2875,2876,2877,2878,2879,2880,2878,2877,2881,2882,2883,2884,2885,2886,2887,2888,2889,2890,2891,2892,2893,2894,2895,2896,2897,2898,2899,2900,2901,2902,2903,2904,2905,2906,2907,2908,2909,2910,2911,2912,2913,2914,2915,2916,2917,2918,2919,2920,2921,2922,2923,2924,2925,2926,2927,2928,2929,2930,2931,2932,2933,2934,2935,2936,2937,2938,2939,2940,2941,2942,2943,2944,2945,2946,2947,2948,2949,2950,2951,2952,2953,2954,2955,2956,2957,2958,2959,2960,2961,2962,2963,2964,2965,2966,2967,2968,2969,2970,2971,2972,2973,2974,2975,2976,2977,2978,2979,2980,2981,2982,2983,2984,2985,2986,2987,2988,2989,2990,2991,2992,2993,2994,2995,2996,2997,2998,2999,3000,3001,3002,3003,3004,3005,3006,3007,3008,3009,3010,3011,3012,3013,3014,3015,3016,3017,3018,3019,3020,3021,3022,3023,3024,3025,3026,3027,3028,3029,3030,3031,3032,3033,3034,3035,3036,3037,3038,3039,3040,3041,3042,3043,3044,3045,3046,3047,3048,3049,3050,3051,3052,3053,3054,3055,3056,3057,3058,3059,3060,3061,3062,3063,3064,3065,3066,3067,3068,3069,3070,3071,3072,3073,3074,3075,3076,3077,3078,3079,3080,3081,3082,3083,3084,3085,3086,3087,3088,3089,3090,3091,3092,3093,3094,3095,3096,3097,3098,3099,3100,3101,3102,3103,3101,3100,3104,3101,3103,3105,3101,3104,3106,3101,3105,3107,3101,3106,3108,3101,3107,3109,3101,3108,3110,3101,3109,3111,3101,3110,3112,3101,3111,3113,3114,3115,3116,3117,3118,3119,3120,3121,3122,3123,3124,3125,3126,3127,3128,3129,3130,3131,3132,3133,3134,3135,3136,3134,3137,3135,3138,3139,3140,3141,3142,3143,3144,3145,3146,3147,3148,3149,3150,3151,3152,3153,3154,3155,3156,3157,3158,3156,3159,3157,3160,3161,3162,3163,3164,3165,3166,3167,3168,3169,3170,3171,3172,3173,3174,3175,3176,3177,3178,3179,3180,3181,3182,3183,3184,3185,3186,3187,3188,3189,3190,3191,3192,3193,3194,3195,3196,3197,3198,3199,3200,3201,3202,3203,3204,3205,3206,3207,3208,3209,3210,3211,3212,3213,3214,3215,3216,3217,3218,3219,3220,3221,3222,3223,3224,3225,3226,3227,3228,3229,3230,3231,3232,3233,3234,3235,3236,3237,3238,3239,3240,3241,3242,3243,3244,3245,3246,3247,3248,3249,3250,3251,3252,3253,3254,3255,3256,3257,3258,3259,3260,3261,3262,3254,3253,3259,3263,3260,3264,3265,3266,3267,3268,3269,3270,3271,3272,3273,3274,3275,3276,3277,3278,3279,3280,3281,3282,3283,3284,3285,3286,3287,3288,3289,3290,3291,3292,3293,3294,3295,3296,3297,3298,3299,3300,3301,3302,3303,3304,3305,3306,3307,3308,3309,3310,3311,3312,3313,3314,3315,3316,3317,3318,3319,3320,3321,3322,3323,3324,3325,3326,3327,3328,3329,3330,3331,3332,3333,3334,3335,3336,3337,3338,3339,3340,3341,3342,3343,3344,3345,3346,3347,3348,3349,3350,3351,3352,3353,3354,3355,3356,3357,3358,3359,3360,3361,3362,3363,3364,3365,3366,3367,3368,3357,3369,3358,3370,3371,3372,3373,3374,3375,3376,3377,3378,3379,3380,3381,3382,3383,3384,3385,3386,3387,3388,3389,3390,3391,3392,3393,3394,3395,3396,3397,3398,3399,3400,3401,3402,3403,3404,3405,3406,3407,3408,3409,3410,3411,3412,3413,3414,3415,3416,3417,3418,3419,3420,3421,3422,3423,3424,3425,3426,3427,3428,3429,3430,3431,3432,3433,3434,3435,3436,3437,3438,3439,3440,3441,3442,3443,3444,3445,3446,3447,3448,3449,3450,3451,3452,3453,3454,3455,3456,3457,3458,3459,3460,3461,3462,3463,3464,3465,3466,3467,3468,3469,3470,3471,3472,3473,3474,3475,3476,3477,3478,3479,3480,3481,3482,3483,3484,3485,3486,3487,3488,3489,3490,3491,3492,3493,3494,3495,3496,3497,3498,3499,3500,3501,3502,3503,3504,3505,3506,3507,3508,3509,3510,3511,3512,3513,3514,3515,3516,3517,3518,3519,3520,3521,3522,3523,3524,3525,3526,3527,3528,3529,3530,3531,3532,3533,3534,3535,3536,3537,3538,3539,3540,3541,3542,3543,3544,3545,3546,3547,3548,3549,3550,3551,3552,3553,3554,3555,3556,3557,3558,3559,3557,3556,3560,3557,3559,3561,3557,3560,3562,3557,3561,3563,3557,3562,3564,3557,3563,3565,3557,3564,3566,3557,3565,3567,3557,3566,3568,3557,3567,3569,3570,3571,3572,3573,3574,3575,3576,3577,3578,3576,3575,3579,3576,3578,3580,3576,3579,3581,3576,3580,3582,3576,3581,3583,3576,3582,3584,3576,3583,3585,3576,3584,3586,3576,3585,3587,3576,3586,3588,3576,3587,3589,3576,3588,3590,3576,3589,3591,3576,3590,3592,3576,3591,3593,3576,3592,3594,3576,3593,3595,3576,3594,3596,3576,3595,3597,3576,3596,3598,3576,3597,3599,3576,3598,3600,3601,3602,3603,3604,3605,3606,3607,3608,3609,3610,3611,3612,3613,3614,3615,3616,3617,3618,3619,3620,3621,3622,3623,3624,3625,3626,3627,3628,3629,3630,3631,3632,3633,3634,3635,3636,3637,3638,3639,3640,3641,3642,3643,3615,3644,3645,3646,3647,3648,3649,3650,3651,3652,3653,3654,3655,3656,3657,3658,3659,3660,3661,3662,3663,3664,3665,3666,3667,3668,3669,3670,3671,3672,3673,3674,3675,3676,3677,3678,3679,3680,3681,3682,3683,3684,3685,3686,3687,3688,3689,3690,3691,3692,3693,3694,3695,3696,3697,3698,3699,3700,3701,3702,3703,3704,3705,3706,3707,3708,3709,3710,3711,3712,3713,3714,3715,3692,3716,3693,3717,3718,3719,3720,3721,3722,3723,3724,3725,3726,3727,3728,3729,3730,3731,3732,3733,3734,3735,3736,3737,3738,3739,3740,3741,3742,3743,3744,3745,3746,3747,3748,3749,3750,3751,3752,3753,3754,3755,3756,3757,3758,3759,3760,3761,3762,3763,3764,3765,3766,3767,3768,3769,3770,3771,3772,3773,3774,3775,3776,3777,3778,3779,3780,3781,3782,3783,3784,3785,3786,3787,3788,3756,3789,3757,3790,3791,3792,3793,3794,3795,3796,3797,3798,3799,3800,3801,3793,3802,3794,3803,3804,3805,3806,3807,3808,3809,3810,3811,3812,3813,3814,3815,3816,3817,3818,3819,3820,3821,3822,3823,3824,3825,3826,3827,3828,3829,3830,3831,3832,3833,3834,3835,3836,3837,3838,3839,3840,3841,3842,3843,3844,3845,3846,3847,3848,3849,3850,3851,3852,3853,3854,3855,3856,3857,3858,3859,3744,3860,3745,3861,3862,3863,3864,3865,3866,3867,3868,3869,3870,3871,3872,3873,3874,3875,3876,3877,3878,3879,3880,3881,3882,3846,3845,3883,3884,3885,3886,3880,3879,3887,3888,3889,3890,3891,3892,3893,3894,3895,3896,3897,3898,3899,3900,3901,3902,3903,3904,3905,3906,3907,3908,3909,3910,3911,3912,3913,3914,3915,3916,3917,3918,3919,3887,3920,3888,3921,3922,3923,3924,3925,3926,3927,3928,3929,3930,3931,3932,3933,3934,3935,3936,3937,3938,3939,3940,3941,3942,3943,3944,3945,3946,3947,3948,3949,3950,3951,3952,3953,3954,3955,3956,3957,3952,3951,3958,3959,3960,3961,3962,3963,3964,3965,3966,3967,3968,3969,3970,3971,3972,3973,3974,3975,3976,3977,3978,3979,3980,3981,3982,3983,3984,3985,3986,3987,3988,3989,3990,3991,3992,3993,3994,3980,3979,3995,3996,3997,3998,3999,4000,4001,4002,4003,4004,4005,4006,4007,4008,4009,4010,4011,4012,4013,4014,4015,4016,4017,4018,4019,4020,4021,4022,3999,3998,4023,4014,4013,4024,4025,4026,4027,4028,4029,4030,4031,4032,4033,4034,4035,4036,4037,4038,4039,4040,4041,4042,4043,4044,4045,4046,4047,4048,4049,4050,4051,4052,4053,4054,4055,4056,4057,4058,4059,4060,4061,4062,4063,4064,4065,4066,4067,4068,4069,4070,4071,4072,4073,4074,4075,4076,4077,4078,4079,4080,4081,4082,4083,4084,4085,4086,4087,4088,4089,4090,4091,4092,4093,4094,4095,4096,4097,4098,4099,4100,4101,4102,4103,4104,4105,4106,4107,4108,4109,4110,4111,4112,4113,4114,4115,3999,4116,4117,4118,4119,4120,4121,4122,4123,4124,4125,4126,4127,4128,4129,4130,4131,4132,4133,4134,4135,4136,4137,4138,4139,4140,4141,4142,4143,4144,4145,4146,4147,4148,4149,4150,4151,4152,4153,4154,4155,4156,4157,4158,4159,4160,4161,4162,4163,4164,4165,4166,4167,4168,4169,4170,4171,4172,4173,4174,4175,4176,4177,4178,4179,4180,4181,4182,4183,4184,4185,4186,4187,4188,4189,4190,4191,4192,4193,4194,4195,4196,4197,4198,4199,4200,4201,4202,4203,4204,4205,4206,4207,4208,4206,4209,4207,4210,4211,4212,4213,4214,4215,4216,4217,4218,4219,4220,4221,4222,4223,4224,4225,4226,4227,4228,4229,4230,4231,4232,4233,4234,4235,4236,4237,4238,4239,4240,4241,4242,4243,4244,4245,4246,4247,4248,4249,4250,4251,4252,4253,4254,4255,4256,4257,4258,4259,4260,4261,4262,4263,4264,4265,4266,4267,4268,4269,4270,4271,4272,4273,4274,4275,4276,4277,4278,4279,4280,4281,4282,4283,4284,4285,4286,4287,4288,4289,4290,4291,4292,4293,4294,4295,4296,4297,4298,4299,4300,4301,4302,4303,4304,4305,4306,4307,4308,4309,4310,4311,4312,4313,4314,4315,4316,4317,4318,4319,4320,4321,4322,4323,4324,4325,4326,4327,4328,4329,4330,4331,4332,4333,4334,4335,4336,4337,4338,4339,4340,4341,4342,4343,4344,4345,4346,4347,4348,4349,4350,4351,4352,4353,4354,4355,4356,4357,4358,4359,4360,4361,4362,4363,4364,4365,4366,4367,4368,4369,4370,4371,4372,4373,4374,4375,4376,4377,4378,4379,4380,4381,4382,4383,4384,4385,4386,4387,4388,4389,4390,4391,4392,4393,4394,4395,4396,4397,4398,4399,4400,4401,4402,4403,4404,4405,4406,4407,4408,4409,4410,4411,4412,4413,4414,4415,4416,4417,4418,4419,4420,4421,4422,4423,4424,4425,4426,4427,4428,4429,4430,4431,4432,4433,4434,4435,4436,4437,4438,4439,4440,4441,4442,4443,4444,4445,4446,4447,4448,4449,4450,4451,4452,4453,4454,4455,4456,4457,4458,4459,4460,4461,4462,4463,4464,4465,4466,4467,4468,4469,4470,4471,4472,4473,4474,4475,4476,4477,4478,4479,4480,4481,4482,4483,4484,4485,4486,4487,4488,4489,4490,4491,4492,4493,4494,4495,4496,4497,4498,4499,4500,4501,4502,4503,4504,4505,4506,4507,4508,4509,4510,4511,4512,4513,4514,4515,4516,4517,4518,4519,4520,4521,4522,4523,4524,4525,4526,4527,4528,4529,4530,4531,4532,4533,4534,4535,4536,4537,4538,4539,4540,4541,4542,4543,4544,4545,4546,4547,4548,4549,4550,4551,4552,4553,4554,4555,4556,4557,4558,4559,4560,4561,4562,4563,4564,4565,4566,4567,4568,4569,4570,4571,4572,4573,4574,4575,4576,4577,4578,4579,4580,4581,4582,4583,4584,4585,4586,4587,4588,4589,4590,4591,4592,4593,4594,4595,4596,4597,4598,4599,4600,4601,4602,4603,4604,4605,4606,4607,4608,4609,4610,4611,4612,4613,4614,4615,4616,4617,4618,4619,4620,4621,4622,4623,4624,4625,4626,4627,4628,4629,4630,4631,4632,4633,4634,4635,4636,4637,4638,4639,4640,4641,4642,4643,4644,4645,4646,4647,4648,4649,4650,4651,4652,4653,4654,4655,4656,4657,4658,4659,4660,4661,4662,4663,4664,4665,4666,4667,4668,4669,4670,4671,4672,4673,4674,4675,4676,4677,4678,4679,4680,4681,4682,4683,4684,4685,4686,4687,4688,4689,4690,4691,4692,4693,4694,4695,4696,4697,4698,4699,4700,4701,4702,4703,4704,4705,4706,4707,4708,4709,4710,4711,4712,4713,4714,4715,4716,4717,4718,4719,4720,4721,4722,4723,4724,4725,4726,4727,4728,4729,4730,4731,4732,4733,4734,4735,4736,4737,4738,4739,4740,4741,4742,4743,4744,4745,4746,4747,4748,4749,4750,4751,4752,4753,4754,4755,4756,4757,4758,4759,4760,4761,4762,4763,4764,4765,4766,4767,4768,4769,4770,4771,4772,4773,4774,4775,4776,4777,4778,4779,4780,4781,4782,4783,4784,4785,4786,4787,4788,4789,4790,4791,4792,4793,4794,4795,4796,4797,4798,4799,4800,4801,4802,4803,4804,4805,4806,4807,4808,4809,4810,4811,4812,4813,4793,4792,4814,4815,4816,4817,4818,4819,4820,4821,4822,4823,4824,4825,4826,4827,4828,4829,4830,4831,4832,4833,4834,4835,4836,4837,4838,4839,4840,4841,4842,4843,4844,4842,4841,4845,4842,4844,4846,4842,4845,4847,4842,4846,4848,4842,4847,4849,4842,4848,4850,4842,4849,4851,4842,4850,4852,4842,4851,4853,4842,4852,4854,4855,4856,4857,4858,4859,4860,4861,4862,4863,4864,4865,4866,4867,4868,4869,4870,4871,4872,4873,4874,4875,4876,4877,4878,4879,4880,4881,4882,4883,4884,4885,4886,4887,4888,4889,4890,4891,4892,4893,4894,4895,4896,4897,4898,4897,4899,4898,4900,4897,4896,4901,4902,4903,4904,4905,4906,4907,4908,4909,4910,4911,4912,4913,4914,4915,4916,4917,4918,4919,4897,4900,4920,4921,4922,4923,4924,4925,4926,4927,4928,4929,4930,4931,4932,4933,4934,4935,4936,4937,4938,4939,4940,4941,4942,4943,4944,4945,4946,4947,4948,4949,4950,4951,4952,4953,4954,4955,4956,4957,4958,4959,4960,4961,4962,4963,4964,4965,4966,4967,4968,4969,4970,4971,4972,4973,4974,4975,4976,4977,4978,4979,4980,4981,4982,4983,4984,4985,4986,4987,4988,4989,4990,4991,4989,4992,4990,4993,4994,4995,4996,4997,4998,4999,5000,5001,5002,5003,5004,5005,5006,5007,5008,5009,5010,5011,5012,5013,5014,5009,5008,5015,5016,4897,5017,5018,5019,5020,5021,5022,5023,5024,5025,5026,5027,5028,5029,5030,5031,5026,5032,5027,5033,5034,5035,5036,5037,5038,5039,5040,5041,5042,5043,5044,5045,5046,5047,5048,5049,5050,5051,5052,5053,5054,5055,5056,5057,5058,5059,5060,5061,5062,5063,5046,5045,5064,5065,5066,5067,5068,5069,5070,5071,5072,5073,5074,5075,5076,5077,5078,5079,5080,5081,5082,5083,5084,5085,5086,5087,5088,5089,5090,5091,5092,5093,5094,5095,5096,5097,5098,5099,5100,5101,5102,5103,5104,5105,5106,5107,5108,5109,5110,5111,5112,5113,5016,5114,5115,5116,5117,5118,5119,5120,5121,5122,5123,5124,5125,5126,5127,5128,5129,5130,5131,5132,5133,5134,5135,5136,5137,5138,5139,5140,5141,5142,5143,5144,5145,5146,5147,5148,5149,5150,5151,5152,5153,5154,5155,5156,5157,5158,5159,5160,5161,5162,5163,5164,5165,5166,5167,5168,5169,5170,5171,5165,5167,5172,5173,5174,5175,5176,5177,5178,5179,5180,5181,5182,5183,5184,5185,5186,5187,5188,5189,5190,5191,5192,5193,5194,5195,5196,5197,5198,5199,5200,5201,5202,5203,5204,5205,5206,5207,5208,5209,5210,5211,5212,5213,5214,5215,5216,5217,5218,5219,5220,5221,5222,5223,5224,5225,5226,5227,5228,5229,5230,5231,5232,5233,5234,5235,5236,5237,5238,5239,5240,5241,5242,5243,5244,5245,5246,5247,5248,5249,5250,5251,5252,5253,5254,5255,5256,5257,5258,5259,5260,5261,5262,5263,5264,5265,5266,5267,5268,5269,5270,5271,5272,5273,5274,5275,5276,5277,5278,5279,5280,5281,5282,5283,5284,5285,5286,5287,5288,5289,5290,5244,5291,5292,5293,5294,5295,5296,5297,5298,5299,5300,5301,5302,5303,5304,5305,5306,5307,5308,5309,5310,5311,5312,5313,5314,5315,5316,5317,5318,5319,5320,5321,5322,5323,5324,5325,5326,5327,5328,5329,5330,5331,5332,5333,5334,5335,5336,5334,5333,5337,5334,5336,5338,5334,5337,5339,5334,5338,5340,5334,5339,5341,5334,5340,5342,5334,5341,5343,5334,5342,5344,5334,5343,5345,5334,5344,5346,5334,5345,5347,5348,5349,5350,5351,5352,5353,5354,5355,5356,5357,5358,5359,5360,5361,5362,5363,5364,5365,5366,5367,5368,5369,5370,5371,5372,5373,5374,5375,5376,5377,5378,5379,5380,5381,5382,5383,5381,5380,5384,5381,5383,5385,5381,5384,5386,5381,5385,5387,5381,5386,5388,5381,5387,5389,5381,5388,5390,5381,5389,5391,5381,5390,5392,5381,5391,5393,5394,5395,5396,5397,5398,5399,5400,5401,5402,5400,5399,5403,5400,5402,5404,5400,5403,5405,5400,5404,5406,5400,5405,5407,5400,5406,5408,5400,5407,5409,5400,5408,5410,5400,5409,5411,5400,5410,5412,5400,5411,5413,5400,5412,5414,5400,5413,5415,5400,5414,5416,5400,5415,5417,5400,5416,5418,5400,5417,5419,5400,5418,5420,5400,5419,5421,5400,5420,5422,5400,5421,5423,5400,5422,5424,5425,5426,5427,5428,5429,5430,5431,5432,5433,5434,5435,5436,5437,5438,5439,5440,5441,5442,5443,5444,5445,5446,5447,5448,5449,5450,5451,5452,5453,5454,5455,5456,5457,5458,5459,5460,5461,5462,5463,5464,5465,5466,5467,5468,5469,5470,5471,5472,5473,5474,5475,5470,5469,5476,5477,5478,5479,5480,5481,5482,5483,5484,5485,5486,5487,5488,5489,5490,5491,5492,5493,5494,5495,5496,5497,5498,5499,5500,5501,5502,5503,5504,5505,5506,5507,5508,5509,5510,5511,5512,5513,5514,5515,5516,5517,5518,5519,5520,5521,5522,5523,5524,5525,5526,5527,5528,5529,5530,5531,5532,5533,5534,5535,5536,5537,5538,5539,5540,5541,5542,5543,5544,5545,5546,5547,5548,5549,5550,5551,5552,5553,5554,5555,5556,5557,5558,5559,5560,5561,5441,5562,5563,5564,5565,5566,5567,5568,5569,5570,5571,5569,5568,5572,5573,5574,5575,5576,5577,5578,5579,5580,5581,5582,5583,5584,5585,5586,5587,5588,5589,5590,5591,5592,5593,5594,5595,5596,5597,5598,5599,5600,5601,5602,5603,5604,5605,5606,5607,5608,5609,5610,5611,5612,5613,5614,5615,5616,5617,5618,5619,5620,5621,5622,5623,5624,5625,5626,5627,5628,5629,5630,5631,5632,5633,5634,5635,5636,5637,5638,5639,5640,5641,5642,5643,5644,5645,5646,5647,5648,5649,5650,5651,5652,5653,5654,5655,5656,5615,5614,5657,5658,5659,5660,5661,5662,5663,5664,5665,5653,5666,5654,5667,5668,5669,5670,5671,5672,5673,5674,5675,5676,5677,5678,5679,5680,5681,5682,5683,5684,5685,5686,5687,5688,5689,5690,5691,5692,5693,5694,5695,5696,5697,5698,5699,5700,5701,5702,5703,5704,5705,5706,5707,5708,5709,5710,5711,5712,5713,5714,5715,5716,5717,5718,5719,5720,5721,5722,5723,5724,5725,5726,5727,5728,5729,5730,5731,5732,5733,5734,5735,5736,5737,5738,5739,5740,5741,5742,5743,5744,5745,5746,5747,5748,5749,5750,5751,5752,5753,5754,5755,5756,5757,5758,5759,5760,5761,5762,5763,5764,5765,5766,5767,5768,5769,5770,5771,5772,5773,5774,5775,5776,5777,5778,5779,5780,5781,5782,5783,5784,5785,5786,5787,5788,5789,5790,5791,5792,5793,5794,5795,5796,5797,5798,5799,5800,5801,5802,5803,5804,5805,5806,5807,5808,5809,5810,5811,5812,5813,5814,5815,5816,5817,5818,5819,5820,5821,5822,5823,5824,5825,5826,5827,5828,5829,5830,5831,5832,5833,5834,5835,5836,5837,5838,5839,5840,5841,5842,5843,5844,5845,5846,5847,5848,5849,5850,5851,5852,5853,5854,5855,5856,5857,5858,5859,5860,5861,5862,5863,5864,5865,5866,5867,5868,5869,5870,5871,5872,5873,5874,5875,5876,5877,5878,5879,5880,5881,5882,5883,5881,5880,5884,5881,5883,5885,5881,5884,5886,5881,5885,5887,5881,5886,5888,5881,5887,5889,5881,5888,5890,5881,5889,5891,5881,5890,5892,5881,5891,5893,5894,5895,5896,5897,5898,5899,5900,5901,5902,5903,5904,5905,5906,5907,5908,5909,5910,5911,5912,5913,5914,5915,5916,5917,5918,5919,5920,5921,5922,5923,5924,5925,5926,5927,5928,5929,5930,5931,5932,5933,5934,5935,5936,5937,5938,5939,5940,5941,5942,5943,5944,5945,5946,5947,5948,5949,5950,5951,5952,5953,5954,5955,5956,5957,5958,5959,5960,5961,5962,5963,5964,5965,5966,5967,5968,5969,5970,5971,5972,5973,5974,5975,5976,5977,5978,5979,5980,5981,5982,5968,5983,5969,5984,5985,5986,5987,5988,5989,5990,5991,5992,5993,5994,5995,5996,5997,5998,5999,6000,6001,6002,6003,6004,6005,6006,6007,6008,6009,6010,6011,6012,6013,6014,6015,6016,6017,6018,6019,6020,6021,6022,6023,6024,6025,6026,6027,6028,6029,6030,6031,6032,6033,6034,6035,6036,6037,6038,6039,6040,6041,6042,6043,6032,6044,6045,6046,6047,6048,6049,6050,6051,6052,6053,6054,6055,6056,6057,6058,6059,6060,6061,6062,6063,6064,6060,6059,6065,6066,6067,6068,6069,6070,6071,6066,6065,6072,6073,6074,6075,6076,6077,6078,6079,6080,6081,6082,6083,6084,6085,6086,6087,6088,6089,6090,6091,6076,6092,6093,6094,6095,6096,6097,6098,6099,6100,6101,6102,6103,6104,6105,6106,6107,6108,6109,6110,6111,6112,6113,6114,6115,6116,6117,6118,6119,6120,6121,6122,6123,6124,6125,6126,6127,6128,6129,6130,6131,6132,6133,6134,6135,6136,6137,6138,6139,6140,6141,6142,6143,6144,6145,6146,6142,6141,6147,6148,6149,6150,6151,6152,6153,6154,6155,6156,6157,6158,6159,6160,6161,6162,6163,6164,6165,6166,6167,6168,6169,6170,6171,6172,6173,6174,6175,6176,6177,6178,6179,6180,6181,6182,6183,6184,6185,6186,6187,6188,6189,6190,6191,6192,6193,6194,6195,6196,6197,6198,6199,6200,6201,6202,6203,6204,6205,6206,6207,6208,6209,6210,6211,6212,6213,6214,6215,6195,6216,6196,6217,6218,6219,6220,6221,6222,6223,6224,6225,6226,6227,6228,6229,6230,6231,6226,6232,6227,6233,6234,6235,6236,6237,6238,6239,6240,6241,6242,6243,6244,6245,6246,6247,6248,6249,6250,6251,6252,6253,6254,6255,6256,6257,6258,6259,6260,6261,6262,6263,6264,6265,6266,6267,6268,6269,6270,6271,6272,6273,6274,6275,6276,6277,6278,6279,6280,6281,6282,6283,6284,6285,6286,6287,6288,6289,6290,6291,6292,6293,6294,6295,6296,6297,6298,6299,6300,6301,6302,6303,6304,6305,6306,6307,6308,6309,6310,6311,6312,6313,6314,6315,6316,6317,6318,6319,6320,6321,6322,6323,6324,6325,6326,6327,6328,6329,6330,6331,6332,6333,6334,6335,6336,6337,6338,6339,6340,6341,6342,6343,6344,6345,6346,6347,6348,6349,6350,6351,6352,6353,6354,6355,6356,6357,6358,6359,6360,6361,6362,6363,6364,6365,6366,6367,6368,6369,6370,6371,6372,6373,6374,6375,6376,6377,6378,6379,6380,6381,6382,6383,6384,6385,6386,6387,6388,6389,6390,6391,6392,6393,6394,6395,6396,6397,6398,6399,6400,6401,6402,6403,6404,6405,6406,6407,6408,6409,6410,6411,6412,6413,6411,6410,6414,6411,6413,6415,6411,6414,6416,6411,6415,6417,6411,6416,6418,6411,6417,6419,6411,6418,6420,6411,6419,6421,6411,6420,6422,6411,6421,6423,6424,6425,6426,6424,6423,6427,6428,6429,6430,6428,6427,6431,6428,6430,6432,6428,6431,6433,6428,6432,6434,6428,6433,6435,6428,6434,6436,6428,6435,6437,6428,6436,6438,6428,6437,6439,6428,6438,6440,6428,6439,6441,6428,6440,6442,6428,6441,6443,6428,6442,6444,6428,6443,6445,6428,6444,6446,6428,6445,6447,6428,6446,6448,6428,6447,6449,6428,6448,6450,6428,6449,6451,6428,6450,6452,6453,6454,6455,6456,6457,6458,6459,6460,6461,6462,6463,6464,6465,6466,6467,6468,6469,6470,6471,6472,6473,6474,6475,6476,6477,6478,6479,6474,6473,6480,6481,6482,6483,6481,6480,6484,6485,6486,6487,6488,6489,6490,6491,6492,6493,6494,6495,6496,6497,6498,6499,6500,6501,6502,6503,6504,6505,6506,6507,6508,6509,6510,6511,6512,6513,6514,6515,6516,6517,6518,6519,6520,6521,6522,6523,6524,6525,6526,6527,6528,6529,6530,6531,6532,6533,6534,6535,6536,6537,6538,6539,6540,6541,6542,6543,6544,6545,6546,6547,6548,6549,6550,6551,6552,6553,6554,6555,6556,6557,6558,6559,6560,6561,6562,6563,6564,6565,6566,6567,6568,6569,6570,6571,6572,6573,6574,6575,6576,6577,6578,6579,6580,6581,6582,6583,6584,6585,6586,6587,6588,6589,6590,6591,6592,6593,6594,6595,6596,6597,6598,6599,6600,6601,6602,6603,6604,6605,6606,6607,6608,6609,6610,6611,6612,6613,6614,6615,6616,6617,6618,6619,6620,6621,6622,6623,6624,6625,6626,6627,6628,6629,6598,6630,6631,6632,6633,6634,6635,6636,6637,6638,6639,6640,6641,6642,6643,6644,6645,6646,6647,6648,6649,6650,6651,6652,6653,6654,6649,6648,6655,6656,6657,6658,6659,6660,6661,6634,6662,6663,6664,6665,6666,6667,6668,6669,6670,6671,6672,6673,6674,6675,6676,6677,6678,6679,6680,6681,6667,6666,6682,6683,6684,6685,6686,6687,6688,6689,6690,6691,6692,6693,6694,6695,6696,6697,6698,6699,6700,6701,6702,6703,6704,6705,6706,6707,6708,6709,6710,6711,6712,6713,6714,6715,6716,6717,6718,6719,6720,6721,6722,6723,6724,6725,6726,6727,6728,6729,6730,6731,6732,6733,6734,6735,6736,6737,6738,6739,6740,6741,6742,6743,6744,6745,6746,6747,6748,6749,6750,6751,6752,6753,6754,6755,6756,6757,6758,6759,6760,6761,6762,6763,6764,6765,6766,6767,6768,6769,6770,6771,6772,6773,6774,6775,6770,6769,6776,6777,6778,6779,6780,6781,6782,6783,6784,6785,6786,6787,6788,6789,6790,6791,6792,6793,6794,6795,6796,6797,6798,6799,6800,6801,6802,6803,6804,6805,6806,6807,6808,6809,6810,6811,6812,6813,6814,6815,6816,6817,6818,6819,6820,6821,6822,6823,6824,6825,6826,6827,6828,6829,6830,6831,6832,6833,6834,6835,6836,6837,6838,6839,6840,6841,6842,6843,6844,6845,6846,6847,6848,6849,6850,6851,6852,6853,6854,6855,6856,6857,6858,6859,6860,6861,6862,6863,6864,6865,6866,6867,6868,6869,6870,6871,6872,6873,6874,6875,6876,6877,6878,6879,6880,6881,6882,6883,6884,6885,6886,6887,6888,6889,6890,6891,6892,6893,6894,6895,6896,6897,6898,6899,6900,6901,6902,6903,6904,6902,6905,6903,6906,6907,6908,6909,6910,6911,6912,6913,6914,6915,6916,6917,6918,6919,6920,6921,6922,6923,6924,6922,6921,6925,6926,6927,6928,6926,6925,6929,6930,6931,6932,6933,6934,6935,6936,6937,6938,6939,6940,6941,6942,6943,6944,6942,6941,6945,6946,6947,6948,6949,6950,6951,6952,6953,6954,6955,6956,6957,6958,6959,6960,6961,6962,6963,6964,6965,6966,6967,6968,6969,6970,6971,6972,6973,6974,6975,6976,6977,6978,6979,6980,6981,6982,6983,6984,6985,6986,6987,6988,6989,6990,6991,6992,6993,6994,6995,6996,6997,6998,6999,7000,7001,7002,7003,7004,7005,7006,7007,7008,7009,7010,7011,7012,7013,7014,7015,7016,7017,7018,7019,7020,7021,7022,7023,7024,7025,7026,7027,7028,7029,7030,7031,7032,7033,7034,7035,7036,7037,7038,7039,7040,7041,7042,7043,7044,7045,7046,7047,7048,7049,7050,7051,7052,7053,7054,7055,7056,7057,7058,7059,7060,7061,7062,7063,7064,7065,7066,7067,7068,7069,7070,7071,7072,7073,7074,7075,7076,7077,7072,7071,7078,7079,7080,7081,7082,7083,7084,7085,7086,7087,7088,7089,7090,7091,7092,7093,7094,7095,7096,7097,7098,7099,7100,7101,7093,7102,7094,7103,7104,7105,7106,7107,7108,7109,7110,7111,7112,7113,7114,7115,7116,7117,7118,7119,7120,7121,7122,7123,7124,7125,7126,7127,7128,7129,7130,7131,7132,7133,7134,7135,7136,7137,7138,7139,7140,7141,7142,7143,7144,7145,7146,7147,7148,7149,7150,7151,7152,7153,7154,7155,7156,7157,7158,7159,7160,7161,7162,7163,7164,7165,7166,7167,7168,7169,7170,7171,7172,7173,7174,7175,7176,7177,7178,7179,7180,7181,7182,7183,7184,7185,7186,7187,7188,7189,7190,7191,7192,7193,7194,7195,7196,7197,7198,7199,7200,7194,7201,7202,7203,7204,7205,7206,7207,7208,7209,7210,7211,7212,7213,7214,7215,7216,7217,7218,7219,7220,7221,7222,7223,7224,7225,7226,7227,7228,7229,7230,7231,7232,7233,7234,7235,7236,7237,7238,7239,7240,7241,7242,7243,7244,7245,7246,7247,7248,7249,7250,7251,7252,7253,7254,7255,7256,7257,7258,7259,7260,7261,7262,7263,7264,7265,7266,7267,7268,7269,7270,7271,7272,7273,7274,7275,7276,7277,7278,7279,7280,7281,7282,7283,7284,7285,7286,7287,7288,7289,7290,7291,7292,7293,7294,7295,7296,7297,7298,7299,7300,7301,7302,7303,7304,7305,7306,7307,7308,7309,7310,7311,7312,7313,7314,7315,7316,7317,7318,7319,7320,7321,7322,7323,7324,7325,7326,7327,7328,7329,7330,7331,7332,7333,7334,7335,7336,7337,7338,7339,7340,7341,7342,7343,7344,7345,7346,7347,7348,7349,7350,7351,7352,7353,7354,7355,7356,7357,7358,7359,7360,7361,7362,7363,7364,7365,7366,7367,7368,7369,7370,7371,7372,7373,7374,7375,7376,7377,7378,7376,7375,7379,7380,7381,7382,7383,7384,7385,7386,7387,7388,7389,7390,7391,7392,7393,7394,7395,7396,7397,7398,7399,7400,7401,7402,7403,7404,7405,7406,7407,7408,7409,7410,7411,7412,7413,7414,7415,7416,7417,7418,7419,7420,7421,7422,7423,7424,7425,7426,7427,7425,7424,7428,7425,7427,7429,7425,7428,7430,7425,7429,7431,7425,7430,7432,7425,7431,7433,7425,7432,7434,7425,7433,7435,7425,7434,7436,7425,7435,7437,7438,7439,7440,7438,7437,7441,7438,7440,7442,7438,7441,7443,7438,7442,7444,7438,7443,7445,7438,7444,7446,7438,7445,7447,7438,7446,7448,7438,7447,7449,7438,7448,7450,7451,7452,7453,7454,7455,7456,7457,7458,7459,7460,7461,7462,7463,7464,7465,7466,7467,7468,7469,7470,7471,7472,7473,7474,7475,7476,7477,7478,7479,7480,7481,7482,7483,7484,7485,7486,7481,7480,7487,7488,7489,7490,7491,7492,7493,7494,7495,7496,7497,7498,7499,7500,7501,7502,7503,7504,7505,7506,7507,7505,7508,7506,7509,7510,7511,7512,7513,7514,7515,7516,7517,7518,7519,7520,7521,7522,7523,7524,7525,7526,7527,7528,7529,7530,7531,7532,7533,7534,7535,7536,7537,7538,7539,7540,7541,7542,7543,7544,7545,7546,7547,7548,7549,7550,7551,7552,7553,7554,7555,7556,7557,7558,7559,7560,7561,7562,7563,7564,7565,7566,7567,7568,7569,7570,7571,7572,7573,7574,7575,7576,7577,7578,7579,7580,7581,7582,7583,7584,7585,7586,7587,7588,7589,7590,7591,7592,7593,7594,7595,7596,7597,7598,7599,7600,7601,7602,7603,7604,7605,7606,7607,7608,7609,7610,7611,7612,7613,7614,7615,7616,7617,7618,7619,7620,7621,7622,7623,7624,7625,7626,7627,7628,7629,7630,7631,7632,7633,7634,7635,7636,7637,7638,7639,7640,7641,7635,7637,7642,7643,7644,7645,7646,7647,7648,7649,7650,7651,7652,7653,7654,7655,7656,7657,7658,7659,7660,7661,7662,7663,7664,7665,7666,7667,7668,7669,7670,7671,7672,7673,7674,7675,7676,7677,7678,7679,7680,7681,7682,7683,7684,7685,7686,7687,7688,7689,7690,7691,7692,7693,7694,7695,7694,7696,7695,7697,7698,7699,7700,7701,7687,7702,7703,7704,7705,7706,7707,7708,7709,7710,7711,7712,7713,7714,7715,7716,7717,7718,7719,7720,7721,7722,7723,7724,7725,7726,7727,7728,7729,7715,7714,7730,7731,7732,7733,7734,7735,7736,7737,7738,7739,7740,7741,7742,7743,7744,7742,7745,7743,7746,7747,7748,7749,7750,7751,7752,7753,7754,7755,7756,7757,7758,7759,7760,7761,7762,7763,7764,7765,7766,7767,7768,7769,7770,7771,7772,7773,7774,7775,7776,7777,7778,7779,7780,7781,7782,7783,7784,7785,7786,7787,7788,7786,7785,7789,7790,7791,7792,7793,7794,7795,7796,7797,7798,7799,7800,7795,7801,7796,7802,7803,7804,7805,7806,7807,7808,7809,7810,7811,7812,7813,7814,7815,7816,7817,7818,7819,7820,7821,7822,7823,7824,7825,7826,7827,7828,7829,7830,7831,7829,7832,7830,7833,7834,7835,7836,7837,7838,7839,7840,7841,7842,7843,7844,7845,7846,7847,7848,7849,7850,7851,7846,7845,7852,7853,7854,7855,7856,7857,7858,7859,7860,7861,7862,7863,7864,7865,7866,7867,7868,7869,7870,7871,7872,7873,7874,7875,7876,7877,7878,7879,7880,7881,7882,7883,7884,7885,7886,7887,7888,7889,7890,7891,7892,7893,7894,7895,7896,7897,7898,7899,7900,7901,7902,7903,7904,7905,7906,7907,7908,7909,7910,7911,7912,7913,7914,7915,7916,7917,7918,7919,7920,7921,7922,7923,7924,7925,7926,7927,7928,7929,7930,7931,7932,7933,7934,7935,7936,7937,7938,7939,7940,7941,7942,7943,7944,7945,7946,7947,7948,7949,7950,7951,7952,7953,7954,7955,7956,7957,7958,7959,7960,7961,7962,7963,7964,7965,7966,7967,7968,7969,7970,7971,7972,7973,7974,7975,7976,7977,7978,7979,7980,7981,7982,7983,7984,7985,7986,7987,7988,7989,7990,7991,7992,7993,7994,7995,7996,7997,7998,7999,8000,8001,8002,8003,8004,8005,8006,8007,8008,8009,8010,8011,8012,8013,8014,8015,8016,8017,8018,8019,8020,8021,8022,8023,8024,8025,8026,8027,8028,8029,8030,8031,8032,8033,8034,8035,8036,8037,8038,8039,8040,8041,8042,8043,8044,8045,8046,8047,8048,8049,8050,8051,8052,8053,8054,8055,8056,8057,8058,8059,8060,8061,8062,8063,8064,8065,8066,8067,8068,8069,8070,8071,8072,8073,8074,8075,8076,8077,8078,8079,8080,8081,8082,8083,8084,8085,8086,8087,8088,8089,8090,8091,8092,8093,8094,8095,8096,8097,8098,8099,8100,8101,8102,8103,8104,8105,8106,8107,8108,8109,8110,8111,8112,8113,8114,8115,8116,8117,8118,8119,8120,8121,8122,8123,8124,8125,8126,8127,8128,8129,8130,8131,8132,8133,8134,8135,8136,8137,8138,8139,8140,8141,8142,8143,8144,8145,8146,8147,8132,8148,8147,8146,8149,8150,8151,8149,8152,8150,8153,8154,8155,8156,8157,8158,8159,8160,8161,8162,8163,8164,8165,8166,8167,8168,8169,8170,8171,8172,8173,8174,8175,8176,8177,8178,8179,8180,8181,8182,8183,8184,8185,8186,8187,8188,8189,8190,8191,8192,8193,8194,8195,8196,8197,8198,8199,8200,8201,8202,8203,8204,8205,8206,8207,8208,8209,8210,8205,8204,8211,8212,8213,8214,8215,8216,8217,8218,8219,8220,8221,8222,8220,8223,8221,8224,8225,8226,8227,8228,8229,8230,8231,8232,8233,8234,8235,8236,8237,8238,8239,8240,8241,8242,8243,8244,8245,8246,8247,8248,8249,8250,8251,8252,8253,8254,8255,8256,8257,8258,8259,8260,8261,8262,8263,8264,8265,8266,8267,8268,8269,8270,8271,8272,8273,8274,8275,8276,8277,8278,8279,8280,8281,8282,8283,8284,8285,8286,8287,8282,8281,8288,8289,8290,8291,8292,8293,8294,8295,8296,8297,8298,8299,8300,8301,8302,8303,8304,8305,8306,8307,8308,8309,8310,8311,8312,8313,8314,8315,8316,8317,8318,8319,8320,8318,8321,8319,8322,8323,8324,8325,8326,8327,8328,8329,8321,8330,8331,8332,8333,8334,8335,8336,8337,8338,8339,8340,8341,8342,8343,8344,8345,8343,8342,8346,8343,8345,8347,8343,8346,8348,8343,8347,8349,8343,8348,8350,8343,8349,8351,8343,8350,8352,8343,8351,8353,8343,8352,8354,8343,8353,8355,8340,8339,8356,8357,8358,8359,8360,8361,8362,8363,8364,8356,8365,8357,8366,8367,8368,8369,8370,8371,8372,8373,8374,8375,8376,8377,8378,8379,8380,8381,8382,8383,8384,8385,8386,8387,8388,8389,8390,8391,8392,8393,8394,8395,8396,8397,8398,8399,8397,8396,8400,8397,8399,8401,8397,8400,8402,8397,8401,8403,8397,8402,8404,8397,8403,8405,8397,8404,8406,8397,8405,8407,8397,8406,8408,8397,8407,8409,8410,8411,8412,8413,8414,8415,8416,8417,8418,8419,8420,8421,8422,8423,8424,8425,8426,8427,8428,8429,8430,8431,8432,8433,8434,8435,8436,8437,8438,8439,8440,8441,8442,8443,8444,8445,8446,8447,8448,8449,8450,8451,8452,8453,8454,8455,8456,8457,8458,8459,8460,8461,8462,8463,8464,8465,8466,8467,8468,8469,8470,8471,8472,8473,8474,8475,8476,8477,8478,8479,8480,8481,8482,8483,8484,8485,8486,8487,8488,8489,8490,8491,8492,8487,8493,8494,8495,8496,8497,8495,8498,8496,8499,8500,8501,8502,8503,8504,8505,8506,8507,8508,8509,8510,8511,8512,8513,8514,8515,8516,8517,8518,8519,8520,8521,8522,8523,8524,8525,8526,8527,8528,8529,8530,8531,8532,8533,8534,8535,8536,8537,8538,8539,8540,8541,8542,8543,8544,8545,8546,8547,8548,8549,8550,8551,8552,8553,8554,8555,8556,8557,8558,8559,8560,8561,8562,8563,8564,8565,8566,8567,8568,8569,8570,8571,8572,8573,8574,8575,8576,8577,8578,8579,8580,8581,8582,8583,8584,8585,8586,8587,8588,8589,8590,8591,8592,8593,8594,8595,8596,8597,8598,8599,8600,8601,8602,8603,8604,8605,8606,8607,8608,8609,8610,8611,8612,8613,8614,8615,8616,8617,8611,8618,8619,8620,8621,8622,8623,8624,8625,8626,8627,8628,8629,8630,8631,8632,8633,8634,8635,8636,8637,8638,8639,8640,8641,8642,8643,8644,8645,8646,8647,8648,8649,8650,8651,8652,8653,8654,8655,8656,8657,8658,8659,8660,8661,8662,8663,8664,8665,8666,8667,8668,8669,8670,8671,8672,8673,8674,8675,8676,8677,8678,8679,8680,8681,8682,8683,8684,8685,8686,8687,8688,8689,8690,8691,8692,8693,8694,8695,8696,8697,8698,8699,8700,8701,8702,8703,8704,8705,8706,8707,8708,8709,8710,8711,8712,8713,8714,8715,8716,8717,8718,8719,8720,8721,8722,8723,8724,8725,8726,8727,8728,8729,8730,8731,8732,8733,8734,8735,8736,8737,8738,8739,8740,8741,8742,8743,8744,8745,8746,8747,8742,8741,8748,8749,8750,8751,8752,8753,8754,8755,8756,8757,8758,8759,8760,8761,8762,8763,8764,8765,8766,8767,8768,8769,8770,8771,8772,8773,8774,8775,8776,8777,8778,8779,8780,8781,8782,8783,8784,8785,8786,8787,8788,8789,8790,8791,8792,8793,8794,8795,8796,8797,8798,8799,8800,8801,8802,8803,8804,8805,8806,8807,8808,8809,8810,8811,8812,8813,8814,8815,8816,8817,8818,8819,8820,8821,8822,8823,8824,8825,8826,8827,8828,8829,8830,8831,8832,8833,8834,8835,8836,8837,8838,8833,8832,8839,8840,8841,8842,8843,8844,8845,8846,8847,8848,8849,8850,8851,8852,8853,8854,8855,8856,8857,8858,8859,8860,8861,8862,8863,8864,8865,8866,8867,8868,8869,8870,8871,8872,8873,8874,8875,8876,8877,8878,8870,8869,8879,8880,8881,8882,8883,8884,8885,8886,8887,8888,8889,8890,8891,8892,8893,8894,8895,8896,8897,8898,8899,8900,8901,8902,8903,8904,8905,8906,8907,8908,8909,8910,8911,8912,8913,8914,8915,8916,8917,8918,8919,8920,8921,8922,8923,8924,8925,8926,8927,8928,8929,8930,8931,8932,8933,8934,8935,8936,8937,8938,8939,8940,8941,8942,8943,8944,8945,8946,8947,8948,8949,8950,8951,8949,8948,8952,8953,8954,8955,8956,8957,8958,8959,8960,8961,8962,8963,8964,8965,8966,8967,8968,8969,8970,8971,8972,8973,8974,8975,8976,8977,8978,8979,8980,8981,8982,8983,8984,8985,8986,8987,8988,8989,8990,8991,8992,8993,8994,8992,8991,8995,8996,8997,8998,8999,9000,9001,9002,9003,9004,9005,9006,9007,9008,9009,9010,9011,9012,9013,9014,9015,9016,9017,9018,9019,9020,9021,9022,9023,9024,9025,9026,9027,9028,9029,9030,9031,9032,9033,9034,9035,9036,9037,9038,9039,9040,9041,9042,9043,9044,9045,9046,9047,9048,9049,9050,9051,9052,9053,9054,9055,9056,9057,9058,9059,9060,9061,9062,9063,9064,9065,9066,9067,9068,9069,9070,9071,9072,9073,9074,9075,9076,9077,9078,9079,9080,9081,9082,9083,9084,9082,9085,9083,9082,9086,9085,9087,9088,9089,9090,9091,9092,9093,9094,9095,9096,9097,9098,9099,9100,9101,9102,9103,9104,9105,9106,9107,9108,9109,9110,9111,9109,9108,9112,9113,9114,9115,9116,9117,9118,9119,9120,9121,9122,9123,9124,9125,9126,9127,9128,9129,9130,9131,9132,9133,9134,9135,9136,9137,9138,9139,9140,9141,9142,9143,9144,9145,9146,9147,9148,9149,9150,9151,9152,9153,9154,9155,9156,9157,9158,9159,9160,9161,9162,9163,9164,9165,9166,9167,9168,9169,9170,9171,9172,9173,9174,9175,9176,9177,9178,9179,9180,9181,9182,9183,9184,9185,9186,9187,9188,9189,9190,9191,9192,9193,9194,9195,9196,9197,9198,9199,9200,9201,9202,9203,9204,9205,9206,9207,9208,9209,9210,9211,9212,9213,9214,9215,9216,9217,9218,9219,9220,9221,9222,9223,9224,9225,9226,9227,9228,9229,9230,9231,9232,9233,9234,9235,9236,9237,9238,9239,9240,9241,9242,9243,9244,9245,9246,9247,9248,9249,9250,9251,9252,9253,9254,9255,9256,9257,9258,9259,9260,9261,9262,9263,9264,9265,9266,9267,9268,9266,9265,9269,9270,9271,9272,9273,9274,9275,9276,9277,9278,9279,9280,9281,9282,9283,9284,9285,9286,9287,9288,9289,9287,9290,9288,9291,9292,9293,9294,9295,9296,9297,9298,9299,9300,9301,9302,9303,9304,9305,9306,9307,9308,9309,9310,9311,9312,9313,9314,9315,9316,9317,9318,9319,9320,9321,9322,9323,9324,9325,9326,9327,9328,9329,9330,9331,9332,9333,9334,9335,9334,9336,9335,9337,9338,9339,9340,9341,9342,9343,9341,9340,9344,9341,9343,9345,9346,9347,9345,9348,9346,9349,9350,9351,9352,9353,9354,9355,9356,9357,9358,9359,9360,9361,9362,9363,9364,9365,9366,9367,9368,9369,9370,9371,9372,9373,9374,9375,9376,9377,9378,9379,9380,9381,9382,9383,9384,9385,9386,9387,9388,9389,9390,9391,9392,9393,9394,9395,9396,9397,9398,9399,9400,9401,9402,9400,9403,9401,9404,9405,9406,9407,9408,9409,9410,9411,9412,9413,9414,9415,9416,9417,9418,9419,9420,9421,9422,9423,9424,9425,9426,9427,9428,9429,9430,9431,9432,9433,9434,9435,9436,9437,9438,9439,9440,9441,9442,9443,9444,9445,9446,9447,9448,9449,9450,9451,9452,9453,9454,9455,9456,9457,9458,9459,9460,9461,9462,9463,9464,9465,9466,9467,9468,9469,9470,9471,9472,9473,9474,9475,9476,9477,9478,9479,9480,9473,9481,9482,9483,9484,9485,9486,9487,9488,9489,9490,9491,9492}; +const GLsizeiptr gameover_numind = 10131; +const GLsizeiptr gameover_numvert = 9493; #endif diff --git a/assets/rx.h b/assets/rx.h new file mode 100644 index 0000000..3a29d8b --- /dev/null +++ b/assets/rx.h @@ -0,0 +1,11 @@ + +#ifndef rx_H +#define rx_H + +const GLfloat rx_vertices[] = {3.86308,2.58964,0.21425,3.90734,2.68805,0.421922,3.86857,2.79312,0.421922,3.86308,2.58964,0.21425,3.90396,2.54503,0.277209,3.90734,2.68805,0.421922,4.03714,2.33623,0.421922,3.99768,2.44318,0.421922,3.90396,2.54503,0.277209,3.90219,2.48363,0.21425,4.03714,2.33623,0.421922,3.86308,2.58964,0.21425,3.7245,2.73997,0,3.90219,2.48363,0.21425,3.86308,2.58964,0.21425,3.86096,2.52917,0.151291,3.86096,2.52917,0.151291,3.89756,2.27087,0,3.7245,2.73997,0,3.76326,2.63489,0,3.86096,2.52917,0.151291,3.8581,2.37783,0,3.89756,2.27087,0,3.86096,2.52917,0.151291,2.83094,4.08781,0.477715,2.80836,4.32734,0.940763,2.61746,4.48834,0.940763,2.83094,4.08781,0.477715,2.95933,4.04637,0.618096,2.80836,4.32734,0.940763,2.95933,4.04637,0.618096,3.44751,3.78825,0.940763,3.25321,3.95213,0.940763,2.95933,4.04637,0.618096,3.02354,3.92537,0.477715,3.44751,3.78825,0.940763,2.83094,4.08781,0.477715,2.3967,4.2266,-0,2.3967,4.2266,-0,2.89344,3.96825,0.337334,3.02354,3.92537,0.477715,2.89344,3.96825,0.337334,3.24891,3.50782,-0,3.02354,3.92537,0.477715,2.58759,4.0656,-0,2.89344,3.96825,0.337334,3.0546,3.6717,-0,3.24891,3.50782,-0,2.89344,3.96825,0.337334,-3.00428,3.92705,0.477715,-3.24409,3.94641,0.940763,-3.4358,3.78638,0.940763,-3.00428,3.92705,0.477715,-2.94117,4.0463,0.618096,-3.24409,3.94641,0.940763,-2.94117,4.0463,0.618096,-2.6022,4.48224,0.940763,-2.79734,4.31935,0.940763,-2.94117,4.0463,0.618096,-2.81086,4.08852,0.477715,-2.6022,4.48224,0.940763,-3.00428,3.92705,0.477715,-2.81086,4.08852,0.477715,-2.94117,4.0463,0.618096,-3.21637,3.52352,-0,-2.81086,4.08852,0.477715,-3.00428,3.92705,0.477715,-3.21637,3.52352,-0,-2.87569,3.96785,0.337334,-2.81086,4.08852,0.477715,-2.87569,3.96785,0.337334,-2.36052,4.23796,0,-2.81086,4.08852,0.477715,-3.21637,3.52352,-0,-3.02466,3.68355,-0,-2.87569,3.96785,0.337334,-2.55566,4.07507,0,-2.36052,4.23796,0,-2.87569,3.96785,0.337334,-3.9208,2.49622,0.21425,-4.01795,2.44929,0.421922,-4.0558,2.34387,0.421922,-3.9208,2.49622,0.21425,-3.92344,2.55667,0.277209,-4.01795,2.44929,0.421922,-3.92344,2.55667,0.277209,-3.89124,2.80223,0.421922,-3.92976,2.69494,0.421922,-3.92344,2.55667,0.277209,-3.88261,2.60257,0.21425,-3.89124,2.80223,0.421922,-3.9208,2.49622,0.21425,-3.88261,2.60257,0.21425,-3.92344,2.55667,0.277209,-3.91126,2.29198,-0,-3.88261,2.60257,0.21425,-3.9208,2.49622,0.21425,-3.88031,2.54118,0.15129,-3.88031,2.54118,0.15129,-3.74232,2.76257,-0,-3.88261,2.60257,0.21425,-3.91126,2.29198,-0,-3.87342,2.3974,-0,-3.88031,2.54118,0.15129,-3.78084,2.65528,-0,-3.74232,2.76257,-0,-3.88031,2.54118,0.15129}; +const GLfloat rx_normals[] = {-0.881605,-0.325261,0.342021,-0.881605,-0.325261,0.342021,-0.881605,-0.325261,0.342021,-0.881606,-0.325259,0.342021,-0.881606,-0.325259,0.342021,-0.881606,-0.325259,0.342021,-0.881606,-0.325259,0.342021,-0.881606,-0.325259,0.342021,-0.881606,-0.32526,0.34202,-0.881606,-0.32526,0.34202,-0.881606,-0.32526,0.34202,-0.881606,-0.32526,0.34202,-0.881605,-0.32526,0.34202,-0.881605,-0.32526,0.34202,-0.881605,-0.32526,0.34202,-0.881605,-0.32526,0.34202,-0.881606,-0.32526,0.34202,-0.881606,-0.32526,0.34202,-0.881606,-0.325261,0.342019,-0.881606,-0.325261,0.342019,-0.881606,-0.325261,0.342019,-0.881605,-0.325261,0.342021,-0.881605,-0.325261,0.342021,-0.881605,-0.325261,0.342021,-0.605849,-0.71831,0.34202,-0.605849,-0.71831,0.34202,-0.605849,-0.71831,0.34202,-0.60585,-0.71831,0.34202,-0.60585,-0.71831,0.34202,-0.60585,-0.71831,0.34202,-0.605849,-0.71831,0.342019,-0.605849,-0.71831,0.342019,-0.605849,-0.71831,0.342019,-0.60585,-0.718309,0.342021,-0.60585,-0.718309,0.342021,-0.60585,-0.718309,0.342021,-0.60585,-0.718309,0.342021,-0.60585,-0.718309,0.342021,-0.605849,-0.718311,0.342018,-0.605849,-0.718311,0.342018,-0.605849,-0.718311,0.342018,-0.60585,-0.718309,0.34202,-0.60585,-0.718309,0.34202,-0.60585,-0.718309,0.34202,-0.60585,-0.718309,0.342021,-0.60585,-0.718309,0.342021,-0.605852,-0.718309,0.342017,-0.605852,-0.718309,0.342017,-0.605852,-0.718309,0.342017,0.602193,-0.721378,0.34202,0.602193,-0.721378,0.34202,0.602193,-0.721378,0.34202,0.602194,-0.721376,0.342021,0.602194,-0.721376,0.342021,0.602194,-0.721376,0.342021,0.602193,-0.721378,0.342018,0.602193,-0.721378,0.342018,0.602193,-0.721378,0.342018,0.602192,-0.721379,0.34202,0.602192,-0.721379,0.34202,0.602192,-0.721379,0.34202,0.602193,-0.721377,0.342022,0.602193,-0.721377,0.342022,0.602193,-0.721377,0.342022,0.602194,-0.721378,0.342019,0.602194,-0.721378,0.342019,0.602194,-0.721378,0.342019,0.602186,-0.72138,0.342028,0.602186,-0.72138,0.342028,0.602186,-0.72138,0.342028,0.602194,-0.721376,0.342022,0.602194,-0.721376,0.342022,0.602194,-0.721376,0.342022,0.602194,-0.721378,0.342018,0.602194,-0.721378,0.342018,0.602194,-0.721378,0.342018,0.602193,-0.721377,0.342021,0.602193,-0.721377,0.342021,0.602193,-0.721377,0.342021,0.884422,-0.317521,0.342021,0.884422,-0.317521,0.342021,0.884422,-0.317521,0.342021,0.884422,-0.317523,0.34202,0.884422,-0.317523,0.34202,0.884422,-0.317523,0.34202,0.884422,-0.317521,0.342019,0.884422,-0.317521,0.342019,0.884422,-0.317521,0.342019,0.884422,-0.317522,0.342021,0.884422,-0.317522,0.342021,0.884422,-0.317522,0.342021,0.884421,-0.317523,0.34202,0.884421,-0.317523,0.34202,0.884421,-0.317523,0.34202,0.884421,-0.317523,0.342022,0.884421,-0.317523,0.342022,0.884421,-0.317523,0.342022,0.884421,-0.317523,0.342022,0.884422,-0.317521,0.34202,0.884422,-0.317521,0.34202,0.884422,-0.317521,0.34202,0.884422,-0.317522,0.34202,0.884422,-0.317522,0.34202,0.884422,-0.317522,0.34202,0.884422,-0.31752,0.342021,0.884422,-0.31752,0.342021,0.884422,-0.31752,0.342021}; +const GLubyte rx_indices[] = {0,1,2,3,4,5,4,6,7,8,9,10,11,9,8,12,13,14,12,15,13,16,17,9,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,34,33,37,34,36,38,39,40,41,42,43,37,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,94,97,95,98,99,100,101,102,103,104,105,106}; +const GLsizeiptr rx_numind = 120; +const GLsizeiptr rx_numvert = 107; + +#endif diff --git a/assets/sa.h b/assets/sa.h new file mode 100644 index 0000000..691b11a --- /dev/null +++ b/assets/sa.h @@ -0,0 +1,11 @@ + +#ifndef sa_H +#define sa_H + +const GLfloat sa_vertices[] = {1.84721,5.018,1.05554,1.57984,5.74322,1.79551,1.35791,5.2293,1.05554,1.35791,5.2293,1.05554,2.07521,4.89568,1.02659,1.84721,5.018,1.05554,2.07521,4.89568,1.02659,1.11254,5.3114,1.02659,1.43533,4.7364,0.497958,-1.36071,5.22131,1.05554,-2.06257,5.54506,1.79551,-1.8561,5.02473,1.05554,-1.8561,5.02473,1.05554,-1.11299,5.29603,1.02659,-1.36071,5.22131,1.05554,-1.11299,5.29603,1.02659,-2.08766,4.90928,1.02659,-1.45282,4.73094,0.497959,1.84721,5.018,1.05554,2.06914,5.53193,1.79551,1.57984,5.74322,1.79551,1.35791,5.2293,1.05554,1.11254,5.3114,1.02659,2.07521,4.89568,1.02659,-1.56718,5.74163,1.79551,-1.8561,5.02473,1.05554,-2.08766,4.90928,1.02659,-1.11299,5.29603,1.02659}; +const GLfloat sa_normals[] = {-0.316169,-0.732149,0.60332,-0.316169,-0.732149,0.60332,-0.316169,-0.732149,0.60332,-0.316168,-0.732146,0.603325,-0.316168,-0.732146,0.603325,-0.316168,-0.732146,0.603325,-0.316169,-0.732149,0.60332,-0.316169,-0.732149,0.60332,-0.316169,-0.732149,0.60332,0.294142,-0.741273,0.60332,0.294142,-0.741273,0.60332,0.294142,-0.741273,0.60332,0.294143,-0.741276,0.603316,0.294143,-0.741276,0.603316,0.294143,-0.741276,0.603316,0.294142,-0.741273,0.60332,0.294142,-0.741273,0.60332,0.294142,-0.741273,0.60332,-0.31617,-0.732149,0.60332,-0.31617,-0.732149,0.60332,-0.31617,-0.732149,0.60332,-0.31617,-0.73215,0.603319,-0.31617,-0.73215,0.603319,-0.31617,-0.73215,0.603319,0.294142,-0.741273,0.60332,0.294143,-0.741275,0.603317,0.294143,-0.741275,0.603317,0.294143,-0.741275,0.603317}; +const GLubyte sa_indices[] = {0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,9,24,10,25,26,27}; +const GLsizeiptr sa_numind = 30; +const GLsizeiptr sa_numvert = 28; + +#endif diff --git a/compile.sh b/compile.sh deleted file mode 100755 index c83a959..0000000 --- a/compile.sh +++ /dev/null @@ -1,2 +0,0 @@ -clang main.c glad_gl.c -I inc -Ofast -lglfw -lm -o tux -./tux \ No newline at end of file diff --git a/deb/DEBIAN/control b/deb/DEBIAN/control new file mode 100644 index 0000000..c4954eb --- /dev/null +++ b/deb/DEBIAN/control @@ -0,0 +1,7 @@ +Package: TuxPusher +Version: 1.0 +Section: games +Priority: optional +Architecture: amd64 +Description: A fun coin pusher game featuring Tux! +Maintainer: James William Fletcher diff --git a/deb/usr/share/applications/tuxpusher.desktop b/deb/usr/share/applications/tuxpusher.desktop new file mode 100644 index 0000000..48d00cc --- /dev/null +++ b/deb/usr/share/applications/tuxpusher.desktop @@ -0,0 +1,10 @@ +[Desktop Entry] +Encoding=UTF-8 +Name=TuxPusher +Comment=A fun coin pusher game featuring Tux! +StartupNotify=false +Exec=tuxpusher +Icon=/usr/share/icons/hicolor/192x192/tuxpusher.png +Terminal=false +Type=Application +Categories=Application;Game;ArcadeGame; \ No newline at end of file diff --git a/deb/usr/share/icons/hicolor/192x192/tuxpusher.png b/deb/usr/share/icons/hicolor/192x192/tuxpusher.png new file mode 100644 index 0000000..b6bee4c Binary files /dev/null and b/deb/usr/share/icons/hicolor/192x192/tuxpusher.png differ diff --git a/TuxPusher_SDL/flatpak/README.md b/flatpak/README.md similarity index 100% rename from TuxPusher_SDL/flatpak/README.md rename to flatpak/README.md diff --git a/TuxPusher_SDL/flatpak/com.tuxpusher.TuxPusher.yaml b/flatpak/com.tuxpusher.TuxPusher.yaml similarity index 81% rename from TuxPusher_SDL/flatpak/com.tuxpusher.TuxPusher.yaml rename to flatpak/com.tuxpusher.TuxPusher.yaml index f193d6c..10b7b87 100644 --- a/TuxPusher_SDL/flatpak/com.tuxpusher.TuxPusher.yaml +++ b/flatpak/com.tuxpusher.TuxPusher.yaml @@ -14,14 +14,13 @@ finish-args: modules: - name: tuxpusher buildsystem: simple - subdir: TuxPusher_SDL build-commands: - - make;make PREFIX=${FLATPAK_DEST} install + - cc main.c -I inc -lSDL2 -lGLESv2 -lEGL -Ofast -lm -o tuxpusher + - install -Dm 0755 tuxpusher -t ${FLATPAK_DEST}/bin - install -Dm 0644 flatpak/tuxpusher.desktop ${FLATPAK_DEST}/share/applications/tuxpusher.desktop - install -Dm 0644 flatpak/tuxpusher.appdata.xml ${FLATPAK_DEST}/share/metainfo/tuxpusher.appdata.xml - install -Dm 0644 flatpak/tuxpusher.png ${FLATPAK_DEST}/share/icons/hicolor/128x128/apps/tuxpusher.png sources: - type: git url: https://github.com/mrbid/TuxPusher.git - tag: 1.0.3 - commit: 8a129f15bcd37c9b91bfa43246a59307807e27e4 + commit: 2838ffb462a9285cc247791544301d7b9d82d201 \ No newline at end of file diff --git a/TuxPusher_SDL/flatpak/tuxpusher.appdata.xml b/flatpak/tuxpusher.appdata.xml similarity index 97% rename from TuxPusher_SDL/flatpak/tuxpusher.appdata.xml rename to flatpak/tuxpusher.appdata.xml index bbc6e44..0784bfe 100644 --- a/TuxPusher_SDL/flatpak/tuxpusher.appdata.xml +++ b/flatpak/tuxpusher.appdata.xml @@ -30,7 +30,7 @@ https://github.com/mrbid/TuxPusher - + - + \ No newline at end of file diff --git a/TuxPusher_SDL/flatpak/tuxpusher.desktop b/flatpak/tuxpusher.desktop similarity index 69% rename from TuxPusher_SDL/flatpak/tuxpusher.desktop rename to flatpak/tuxpusher.desktop index ed6477f..04e2fbb 100644 --- a/TuxPusher_SDL/flatpak/tuxpusher.desktop +++ b/flatpak/tuxpusher.desktop @@ -4,7 +4,7 @@ Name=TuxPusher Comment=A fun coin pusher game featuring Tux! StartupNotify=false Exec=tuxpusher -Icon=com.tuxpusher.TuxPusher +Icon=tuxpusher Terminal=false Type=Application -Categories=Application;Game;ArcadeGame; +Categories=Application;Game;ArcadeGame; \ No newline at end of file diff --git a/TuxPusher_SDL/flatpak/tuxpusher.png b/flatpak/tuxpusher.png similarity index 100% rename from TuxPusher_SDL/flatpak/tuxpusher.png rename to flatpak/tuxpusher.png diff --git a/getdeps.sh b/getdeps.sh new file mode 100755 index 0000000..1ba9183 --- /dev/null +++ b/getdeps.sh @@ -0,0 +1,4 @@ +rm -f appimagetool-x86_64.AppImage +apt install libsdl2-2.0-0 libsdl2-dev libglfw3 libglfw3-dev gcc-mingw-w64-i686-win32 upx-ucl zip wget +wget https://github.com/AppImage/AppImageKit/releases/download/13/appimagetool-x86_64.AppImage +chmod 0755 appimagetool-x86_64.AppImage \ No newline at end of file diff --git a/inc/esAux2.h b/inc/esAux2.h index e509fa8..581ed1f 100644 --- a/inc/esAux2.h +++ b/inc/esAux2.h @@ -163,7 +163,7 @@ GLuint esLoadTextureA(const GLuint w, const GLuint h, const unsigned char* data) return textureId; } -#ifdef GL_DEBUG +#if defined(GL_DEBUG) && !defined(__MINGW32__) // https://registry.khronos.org/OpenGL-Refpages/gl4/html/glDebugMessageControl.xhtml // https://registry.khronos.org/OpenGL-Refpages/es3/html/glDebugMessageControl.xhtml // OpenGL ES 3.2 or OpenGL 4.3 and above only. @@ -640,4 +640,4 @@ void shadeLambert3(GLint* position, GLint* projection, GLint* modelview, GLint* glUseProgram(shdLambert3); } -#endif +#endif \ No newline at end of file diff --git a/lib/glfw3.dll b/lib/glfw3.dll new file mode 100644 index 0000000..28a308f Binary files /dev/null and b/lib/glfw3.dll differ diff --git a/main.c b/main.c index a1c473e..877cdb3 100644 --- a/main.c +++ b/main.c @@ -11,12 +11,6 @@ the code can actually seem kind of confusing to initially understand. - The only niggle is the inability to remove depth buffering - when rendering the game over text due to the way I exported - the mesh, disabling depth results in the text layers inverting - causing the shadow to occlude the text face. It's not the - end of the world, but could be fixed. - Unlike the CoinPusher/SeaPusher release; https://github.com/mrbid/coinpusher this version does not allow custom framerates, just whatever your screen refresh @@ -34,23 +28,23 @@ #include #include #include -#include - -#define uint GLushort // it's a short don't forget that -#define sint GLshort // and this. -#define f32 GLfloat -#define forceinline __attribute__((always_inline)) inline -#include "inc/gl.h" -#define GLFW_INCLUDE_NONE -#include "inc/glfw3.h" +#ifdef BUILD_GLFW + #include "inc/gl.h" + #define GLFW_INCLUDE_NONE + #include "inc/glfw3.h" + #define GL_DEBUG +#else + #include + #include +#endif #ifndef __x86_64__ #define NOSSE #endif #include "esAux2.h" -#include "inc/res.h" +#include "res.h" #include "assets/scene.h" #include "assets/coin.h" @@ -61,23 +55,42 @@ #include "assets/surf.h" #include "assets/trip.h" #include "assets/gameover.h" +#include "assets/rx.h" +#include "assets/sa.h" +#include "assets/ga.h" + +#define uint GLushort // it's a short don't forget that +#define sint GLshort // and this. +#define f32 GLfloat +#define forceinline __attribute__((always_inline)) inline //************************************* // globals //************************************* -GLFWwindow* window; +char appTitle[] = "TuxPusher.com"; +#ifdef BUILD_GLFW + GLFWwindow* wnd; +#else + SDL_Window* wnd; + SDL_GLContext glc; + SDL_Surface* s_icon = NULL; + SDL_Cursor* cross_cursor; + SDL_Cursor* beam_cursor; +#endif +uint cursor_state = 0; uint winw = 1024, winh = 768; -double t = 0; // time -f32 dt = 0; // delta time -double fc = 0; // frame count -double lfct = 0;// last frame count time f32 aspect; -double x,y,lx,ly; -double rww, ww, rwh, wh, ww2, wh2; -double uw, uh, uw2, uh2; // normalised pixel dpi -double touch_margin = 120.0; -double mx=0, my=0; -uint md=0, ortho=0; +f32 t = 0.f; +f32 dt = 0; // delta time +f32 fc = 0; // frame count +f32 lfct = 0; // last frame count time +f32 rww, ww, rwh, wh, ww2, wh2; +f32 uw, uh, uw2, uh2; // normalised pixel dpi +f32 touch_margin = 120.f; +f32 mx=0, my=0; +uint md=0; +f32 rst = 0.f; +uint ortho = 0; // render state id's GLint projection_id; @@ -89,15 +102,15 @@ GLint color_id; GLint opacity_id; GLint normal_id; -// render state inputs -vec lightpos = {0.f, 10.f, 13.f}; - // render state matrices mat projection; mat view; mat model; mat modelview; +// render state inputs +vec lightpos = {0.f, 10.f, 13.f}; + // models ESModel mdlGameover; ESModel mdlScene; @@ -108,15 +121,18 @@ ESModel mdlKing; ESModel mdlSurf; ESModel mdlNinja; ESModel mdlTrip; +ESModel mdlRX; +ESModel mdlSA; +ESModel mdlGA; // game vars f32 gold_stack = 64.f; // line 740+ defining these as float32 eliminates the need to cast in mTranslate() f32 silver_stack = 64.f;// function due to the use of a float32 also in the for(f32 i;) loop. uint active_coin = 0; uint inmotion = 0; -double gameover = 0; +f32 gameover = 0; uint isnewcoin = 0; -f32 PUSH_SPEED; +f32 PUSH_SPEED = 1.6f; typedef struct { @@ -137,6 +153,15 @@ void timestamp(char* ts) strftime(ts, 16, "%H:%M:%S", localtime(&tt)); } +forceinline f32 f32Time() +{ +#ifdef BUILD_GLFW + return glfwGetTime(); +#else + return ((f32)SDL_GetTicks())*0.001f; +#endif +} + void setActiveCoin(const uint color) { for(int i=0; i < MAX_COINS; i++) @@ -195,19 +220,19 @@ void injectFigure() if(inmotion != 0) return; - int fc = -1; + int fcn = -1; for(int i=0; i < 3; i++) { if(coins[i].color == -1) { active_coin = i; - fc = i; + fcn = i; coins[i].color = esRand(1, 6); break; } } - if(fc != -1) + if(fcn != -1) { coins[active_coin].x = esRandFloat(-1.90433f, 1.90433f); coins[active_coin].y = -4.54055f; @@ -497,7 +522,7 @@ void newGame() } // coins - const double lt = glfwGetTime(); + const f32 lt = f32Time(); for(int i=3; i < MAX_COINS; i++) { coins[i].x = esRandFloat(-3.40863f, 3.40863f); @@ -507,7 +532,7 @@ void newGame() { coins[i].x = esRandFloat(-3.40863f, 3.40863f); coins[i].y = esRandFloat(-4.03414f, 1.45439f-coins[i].r); - if(glfwGetTime()-lt > 0.033){tl=1;break;} // 33ms timeout + if(f32Time()-lt > 0.033){tl=1;break;} // 33ms timeout } if(tl==1){break;} coins[i].color = esRand(0, 4); @@ -527,6 +552,8 @@ void newGame() // coins[i].color = esRand(0, 4); // if(coins[i].color > 1){coins[i].color = 0;} // } + + rst = f32Time(); // round start time } //************************************* @@ -562,9 +589,38 @@ forceinline void modelBind3(const ESModel* mdl) glBindBuffer(GL_ELEMENT_ARRAY_BUFFER, mdl->iid); } -//************************************* -// update & render -//************************************* +void doPerspective() +{ + glViewport(0, 0, winw, winh); + + ww = winw; + wh = winh; + if(ortho == 1){touch_margin = ww*0.3076923192f;} + else{touch_margin = ww*0.2058590651f;} + rww = 1.f/(ww-touch_margin*2.f); + rwh = 1.f/wh; + ww2 = ww/2.f; + wh2 = wh/2.f; + uw = aspect / ww; + uh = 1.f / wh; + uw2 = aspect / ww2; + uh2 = 1.f / wh2; + + mIdent(&projection); + + if(ortho == 1) + mOrtho(&projection, -5.0f, 5.0f, -3.2f, 3.4f, 0.01f, 320.f); + else + { + if(winw > winh) + aspect = ww / wh; + else + aspect = wh / ww; + mPerspective(&projection, 30.0f, aspect, 0.1f, 320.f); + } + +} + //************************************* // update & render //************************************* @@ -573,10 +629,111 @@ void main_loop() //************************************* // time delta for interpolation //************************************* - static float lt = 0; + static f32 lt = 0; + t = f32Time(); dt = t-lt; lt = t; +//************************************* +// input handling +//************************************* +#ifdef BUILD_GLFW + double tmx, tmy; + glfwGetCursorPos(wnd, &tmx, &tmy); + mx = (f32)tmx; + my = (f32)tmy; +#else + SDL_Event event; + while(SDL_PollEvent(&event)) + { + if(event.type == SDL_MOUSEMOTION) + { + mx = (f32)event.motion.x; + my = (f32)event.motion.y; + } + else if(event.type == SDL_MOUSEBUTTONDOWN) + { + if(inmotion == 0 && event.button.button == SDL_BUTTON_LEFT) + { + if(gameover > 0) + { + if(f32Time() > gameover+3.0) + { + newGame(); + if(PUSH_SPEED < 32.f) + { + PUSH_SPEED += 1.f; + char titlestr[256]; + sprintf(titlestr, "TuxPusher [%.1f]", PUSH_SPEED); + SDL_SetWindowTitle(wnd, titlestr); + } + } + return; + } + takeStack(); + md = 1; + } + + if(event.button.button == SDL_BUTTON_RIGHT) + { + static uint cs = 1; + cs = 1 - cs; + if(cs == 0) + SDL_ShowCursor(0); + else + SDL_ShowCursor(1); + } + } + else if(event.type == SDL_MOUSEBUTTONUP) + { + if(event.button.button == SDL_BUTTON_LEFT) + { + inmotion = 1; + md = 0; + } + } + else if(event.type == SDL_KEYDOWN) + { + if(event.key.keysym.sym == SDLK_f) + { + if(t-lfct > 2.0) + { + char strts[16]; + timestamp(&strts[0]); + const f32 nfps = fc/(t-lfct); + printf("[%s] FPS: %g\n", strts, nfps); + lfct = t; + fc = 0; + } + } + else if(event.key.keysym.sym == SDLK_c) + { + ortho = 1 - ortho; + doPerspective(); + } + } + else if(event.type == SDL_WINDOWEVENT) + { + if(event.window.event == SDL_WINDOWEVENT_RESIZED) + { + winw = event.window.data1; + winh = event.window.data2; + doPerspective(); + } + } + else if(event.type == SDL_QUIT) + { + SDL_GL_DeleteContext(glc); + SDL_FreeSurface(s_icon); + SDL_FreeCursor(cross_cursor); + SDL_FreeCursor(beam_cursor); + SDL_DestroyWindow(wnd); + SDL_Quit(); + exit(0); + } + } +#endif + //************************************* // begin render //************************************* @@ -586,9 +743,25 @@ void main_loop() // main render //************************************* - // mouse pos - glfwGetCursorPos(window, &mx, &my); - +#ifndef BUILD_GLFW + // cursor + if(cursor_state == 0 && mx < touch_margin-1.f) + { + SDL_SetCursor(beam_cursor); + cursor_state = 1; + } + else if(cursor_state == 0 && mx > ww-touch_margin+1.f) + { + SDL_SetCursor(beam_cursor); + cursor_state = 1; + } + else if(cursor_state == 1 && mx > touch_margin && mx < ww-touch_margin) + { + SDL_SetCursor(cross_cursor); + cursor_state = 0; + } +#endif + // camera mIdent(&view); mTranslate(&view, 0.f, 0.f, -13.f); @@ -624,20 +797,84 @@ void main_loop() gameover = t+3.0; } - // render game over - if(gameover > 0 && t > gameover) - { - modelBind3(&mdlGameover); - glDrawElements(GL_TRIANGLES, gameover_numind, GL_UNSIGNED_SHORT, 0); - } - // prep pieces for rendering shadeLambert1(&position_id, &projection_id, &modelview_id, &lightpos_id, &normal_id, &color_id, &opacity_id); glUniformMatrix4fv(projection_id, 1, GL_FALSE, (f32*) &projection.m[0][0]); glUniform3f(lightpos_id, lightpos.x, lightpos.y, lightpos.z); - glUniform1f(opacity_id, 0.148f); + + // render scene props + const f32 std = t-rst; + if(std < 6.75f) + { + glUniformMatrix4fv(modelview_id, 1, GL_FALSE, (f32*) &view.m[0][0]); + glUniform1f(opacity_id, 0.f); + + // if((std > 0.5f && std < 1.f) || (std > 1.5f && std < 2.f)) + // { + // glUniform3f(color_id, 0.89f, 0.f, 0.157f); + // modelBind1(&mdlRX); + // glDrawElements(GL_TRIANGLES, rx_numind, GL_UNSIGNED_BYTE, 0); + // } + + // if((std > 2.5f && std < 3.f) || (std > 3.5f && std < 4.f)) + // { + // glUniform3f(color_id, 0.714f, 0.741f, 0.8f); + // modelBind1(&mdlSA); + // glDrawElements(GL_TRIANGLES, sa_numind, GL_UNSIGNED_BYTE, 0); + // } + + // if((std > 4.5f && std < 5.f) || (std > 5.5f && std < 6.f)) + // { + // glUniform3f(color_id, 0.698f, 0.667f, 0.263f); + // modelBind1(&mdlGA); + // glDrawElements(GL_TRIANGLES, ga_numind, GL_UNSIGNED_BYTE, 0); + // } + + if((std > 1.5f && std < 2.f) || (std > 2.5f && std < 3.f) || (std > 3.5f && std < 4.f)) + { + glUniform3f(color_id, 0.89f, 0.f, 0.157f); + modelBind1(&mdlRX); + glDrawElements(GL_TRIANGLES, rx_numind, GL_UNSIGNED_BYTE, 0); + } + + if((std > 4.5f && std < 4.75f) || (std > 5.f && std < 5.25f)) + { + modelBind1(&mdlSA); + + mIdent(&model); + mTranslate(&model, -0.01f, 0.01f, 0.f); + mMul(&modelview, &model, &view); + glUniformMatrix4fv(modelview_id, 1, GL_FALSE, (f32*) &modelview.m[0][0]); + glUniform3f(color_id, 0.f, 0.f, 0.f); + glDrawElements(GL_TRIANGLES, sa_numind, GL_UNSIGNED_BYTE, 0); + + glUniformMatrix4fv(modelview_id, 1, GL_FALSE, (f32*) &view.m[0][0]); + glUniform3f(color_id, 0.714f, 0.741f, 0.8f); + glDrawElements(GL_TRIANGLES, sa_numind, GL_UNSIGNED_BYTE, 0); + } + + // if((std > 5.f && std < 5.25f) || (std > 5.5f && std < 6.25f)) // || (std > 7.5f && std < 8.f)) + // { + // //0.52941f, 0.80784f, 0.92157f + // f32 step = (std-5.75f)*2.f; + // if(step < 0.f){step = 0.f;} + // glUniform3f(color_id, 0.698f - (0.16859f * step), 0.667f + (0.14084f * step), 0.263f + (0.65857f * step)); + // modelBind1(&mdlGA); + // glDrawElements(GL_TRIANGLES, ga_numind, GL_UNSIGNED_BYTE, 0); + // } + + if((std > 5.5f && std < 5.75f) || (std > 6.f && std < 6.75f)) // || (std > 7.5f && std < 8.f)) + { + f32 step = (std-6.25f)*2.f; + if(step < 0.f){step = 0.f;} + glUniform3f(color_id, 0.698f - (0.16859f * step), 0.667f + (0.14084f * step), 0.263f + (0.65857f * step)); + modelBind1(&mdlGA); + glDrawElements(GL_TRIANGLES, ga_numind, GL_UNSIGNED_BYTE, 0); + } + } // coin + glUniform1f(opacity_id, 0.148f); modelBind1(&mdlCoin); // targeting coin @@ -958,15 +1195,53 @@ void main_loop() glDrawElements(GL_TRIANGLES, trip_numind, GL_UNSIGNED_SHORT, 0); } + // render game over + if(gameover > 0 && t > gameover) + { + shadeLambert1(&position_id, &projection_id, &modelview_id, &lightpos_id, &normal_id, &color_id, &opacity_id); + glUniformMatrix4fv(projection_id, 1, GL_FALSE, (f32*) &projection.m[0][0]); + glUniform3f(lightpos_id, lightpos.x, lightpos.y, lightpos.z); + + modelBind1(&mdlGameover); + + glDisable(GL_DEPTH_TEST); + + mIdent(&model); + mTranslate(&model, -0.01f, 0.01f, 0.01f); + mMul(&modelview, &model, &view); + glUniformMatrix4fv(modelview_id, 1, GL_FALSE, (f32*) &modelview.m[0][0]); + glUniform3f(color_id, 0.f, 0.f, 0.f); + glDrawElements(GL_TRIANGLES, gameover_numind, GL_UNSIGNED_SHORT, 0); + + mIdent(&model); + mTranslate(&model, 0.005f, -0.005f, -0.005f); + mMul(&modelview, &model, &view); + glUniformMatrix4fv(modelview_id, 1, GL_FALSE, (f32*) &modelview.m[0][0]); + glUniform3f(color_id, 0.2f, 0.2f, 0.2f); + glDrawElements(GL_TRIANGLES, gameover_numind, GL_UNSIGNED_SHORT, 0); + + const f32 ts = t*0.3f; + glUniform3f(color_id, fabsf(cosf(ts)), fabsf(sinf(ts)), fabsf(cosf(ts))); + glUniformMatrix4fv(modelview_id, 1, GL_FALSE, (f32*) &view.m[0][0]); + glDrawElements(GL_TRIANGLES, gameover_numind, GL_UNSIGNED_SHORT, 0); + + glEnable(GL_DEPTH_TEST); + } + //************************************* // swap buffers / display render //************************************* - glfwSwapBuffers(window); +#ifdef BUILD_GLFW + glfwSwapBuffers(wnd); +#else + SDL_GL_SwapWindow(wnd); +#endif } //************************************* -// Input Handelling +// GLFW Input Handelling //************************************* +#ifdef BUILD_GLFW void mouse_button_callback(GLFWwindow* window, int button, int action, int mods) { if(action == GLFW_PRESS) @@ -978,7 +1253,7 @@ void mouse_button_callback(GLFWwindow* window, int button, int action, int mods) if(glfwGetTime() > gameover+3.0) { newGame(); - if(PUSH_SPEED < 32.f) // why not + if(PUSH_SPEED < 32.f) { PUSH_SPEED += 1.f; char titlestr[256]; @@ -1068,10 +1343,25 @@ static void key_callback(GLFWwindow* window, int key, int scancode, int action, } } } +#endif //************************************* // Process Entry Point //************************************* +#ifndef BUILD_GLFW +SDL_Surface* surfaceFromData(const Uint32* data, Uint32 w, Uint32 h) +{ + SDL_Surface* s = SDL_CreateRGBSurfaceWithFormat(0, w, h, 32, SDL_PIXELFORMAT_RGBA32); + memcpy(s->pixels, data, s->pitch*h); + return s; +} +void printAttrib(SDL_GLattr attr, char* name) +{ + int i; + SDL_GL_GetAttribute(attr, &i); + printf("%s: %i\n", name, i); +} +#endif int main(int argc, char** argv) { // allow custom msaa level @@ -1095,35 +1385,79 @@ int main(int argc, char** argv) printf("Tux 3D model by Andy Cuccaro:\n"); printf("https://sketchfab.com/3d-models/tux-157de95fa4014050a969a8361a83d366\n"); printf("----\n"); + printf("Fonts used in the End Game screen from top to bottom order:\n"); + printf("1. Fontasy Penguin by FontasyLand\n"); + printf(" https://www.fontspace.com/fontasy-penguin-font-f4848\n"); + printf("2. Plastic Love by Azkarizki\n"); + printf(" https://www.fontspace.com/plastic-love-font-f49676\n"); + printf("3. Allay Font by Abahrozi (https://twinletter.com/)\n"); + printf(" https://www.fontspace.com/allay-font-f66225\n"); + printf("----\n"); printf("Rules:\n"); printf("Getting a gold coin in a silver slot rewards you 2x silver coins.\n"); printf("Getting a gold coin in a gold slot rewards you 2x gold coins.\n"); printf("Getting a tux in a slot when you already have the tux gives you 6x gold coins and 6x silver coins.\n"); printf("----\n"); - // init glfw - if(!glfwInit()){printf("glfwInit() failed.\n"); exit(EXIT_FAILURE);} - glfwWindowHint(GLFW_CONTEXT_VERSION_MAJOR, 2); - glfwWindowHint(GLFW_CONTEXT_VERSION_MINOR, 0); - glfwWindowHint(GLFW_SAMPLES, msaa); - window = glfwCreateWindow(winw, winh, "TuxPusher", NULL, NULL); - if(!window) - { - printf("glfwCreateWindow() failed.\n"); - glfwTerminate(); - exit(EXIT_FAILURE); - } - const GLFWvidmode* desktop = glfwGetVideoMode(glfwGetPrimaryMonitor()); - glfwSetWindowPos(window, (desktop->width/2)-(winw/2), (desktop->height/2)-(winh/2)); // center window on desktop - glfwSetWindowSizeCallback(window, window_size_callback); - glfwSetKeyCallback(window, key_callback); - glfwSetMouseButtonCallback(window, mouse_button_callback); - glfwMakeContextCurrent(window); - gladLoadGL(glfwGetProcAddress); - glfwSwapInterval(1); // 0 for immediate updates, 1 for updates synchronized with the vertical retrace, -1 for adaptive vsync - - // set icon - glfwSetWindowIcon(window, 1, &(GLFWimage){16, 16, (unsigned char*)&icon_image.pixel_data}); +#ifdef BUILD_GLFW + // init glfw + if(!glfwInit()){printf("glfwInit() failed.\n"); exit(EXIT_FAILURE);} + glfwWindowHint(GLFW_CONTEXT_VERSION_MAJOR, 2); + glfwWindowHint(GLFW_CONTEXT_VERSION_MINOR, 0); + glfwWindowHint(GLFW_SAMPLES, msaa); + wnd = glfwCreateWindow(winw, winh, "TuxPusher", NULL, NULL); + if(!wnd) + { + printf("glfwCreateWindow() failed.\n"); + glfwTerminate(); + exit(EXIT_FAILURE); + } + const GLFWvidmode* desktop = glfwGetVideoMode(glfwGetPrimaryMonitor()); + glfwSetWindowPos(wnd, (desktop->width/2)-(winw/2), (desktop->height/2)-(winh/2)); // center window on desktop + glfwSetWindowSizeCallback(wnd, window_size_callback); + glfwSetKeyCallback(wnd, key_callback); + glfwSetMouseButtonCallback(wnd, mouse_button_callback); + glfwMakeContextCurrent(wnd); + gladLoadGL(glfwGetProcAddress); + glfwSwapInterval(1); // 0 for immediate updates, 1 for updates synchronized with the vertical retrace, -1 for adaptive vsync + + // set icon + glfwSetWindowIcon(wnd, 1, &(GLFWimage){16, 16, (unsigned char*)&icon_image.pixel_data}); +#else + // init sdl + if(SDL_Init(SDL_INIT_VIDEO|SDL_INIT_EVENTS) < 0) // SDL_INIT_AUDIO + { + printf("ERROR: SDL_Init(): %s\n", SDL_GetError()); + return 1; + } + SDL_GL_SetAttribute(SDL_GL_MULTISAMPLEBUFFERS, 1); + SDL_GL_SetAttribute(SDL_GL_MULTISAMPLESAMPLES, msaa); + SDL_GL_SetAttribute(SDL_GL_CONTEXT_MAJOR_VERSION, 2); + SDL_GL_SetAttribute(SDL_GL_CONTEXT_MINOR_VERSION, 0); + SDL_GL_SetAttribute(SDL_GL_CONTEXT_PROFILE_MASK, SDL_GL_CONTEXT_PROFILE_ES); + wnd = SDL_CreateWindow(appTitle, SDL_WINDOWPOS_CENTERED, SDL_WINDOWPOS_CENTERED, winw, winh, SDL_WINDOW_RESIZABLE | SDL_WINDOW_OPENGL | SDL_WINDOW_SHOWN); + if(wnd == NULL) + { + printf("ERROR: SDL_CreateWindow(): %s\n", SDL_GetError()); + return 1; + } + SDL_GL_SetSwapInterval(1); // 0 for immediate updates, 1 for updates synchronized with the vertical retrace, -1 for adaptive vsync + glc = SDL_GL_CreateContext(wnd); + if(glc == NULL) + { + printf("ERROR: SDL_GL_CreateContext(): %s\n", SDL_GetError()); + return 1; + } + + // set cursors + cross_cursor = SDL_CreateSystemCursor(SDL_SYSTEM_CURSOR_CROSSHAIR); + beam_cursor = SDL_CreateSystemCursor(SDL_SYSTEM_CURSOR_IBEAM); + SDL_SetCursor(cross_cursor); + + // set icon + s_icon = surfaceFromData((Uint32*)&icon_image.pixel_data[0], 16, 16); + SDL_SetWindowIcon(wnd, s_icon); +#endif // set game push speed PUSH_SPEED = 1.6f; @@ -1133,9 +1467,63 @@ int main(int argc, char** argv) if(PUSH_SPEED > 32.f){PUSH_SPEED = 32.f;} char titlestr[256]; sprintf(titlestr, "TuxPusher [%.1f]", PUSH_SPEED); - glfwSetWindowTitle(window, titlestr); +#ifdef BUILD_GLFW + glfwSetWindowTitle(wnd, titlestr); +#else + SDL_SetWindowTitle(wnd, titlestr); +#endif } + // debug (cant do this on ES unless >= ES 3.2) +#if defined(GL_DEBUG) && !defined(__MINGW32__) // no need to debug the windows release + esDebug(1); +#endif + +#ifndef BUILD_GLFW + // dump some info + printAttrib(SDL_GL_DOUBLEBUFFER, "GL_DOUBLEBUFFER"); + printAttrib(SDL_GL_DEPTH_SIZE, "GL_DEPTH_SIZE"); + printAttrib(SDL_GL_RED_SIZE, "GL_RED_SIZE"); + printAttrib(SDL_GL_GREEN_SIZE, "GL_GREEN_SIZE"); + printAttrib(SDL_GL_BLUE_SIZE, "GL_BLUE_SIZE"); + printAttrib(SDL_GL_ALPHA_SIZE, "GL_ALPHA_SIZE"); + printAttrib(SDL_GL_BUFFER_SIZE, "GL_BUFFER_SIZE"); + printAttrib(SDL_GL_DOUBLEBUFFER, "GL_DOUBLEBUFFER"); + printAttrib(SDL_GL_DEPTH_SIZE, "GL_DEPTH_SIZE"); + printAttrib(SDL_GL_STENCIL_SIZE, "GL_STENCIL_SIZE"); + printAttrib(SDL_GL_ACCUM_RED_SIZE, "GL_ACCUM_RED_SIZE"); + printAttrib(SDL_GL_ACCUM_GREEN_SIZE, "GL_ACCUM_GREEN_SIZE"); + printAttrib(SDL_GL_ACCUM_BLUE_SIZE, "GL_ACCUM_BLUE_SIZE"); + printAttrib(SDL_GL_ACCUM_ALPHA_SIZE, "GL_ACCUM_ALPHA_SIZE"); + printAttrib(SDL_GL_STEREO, "GL_STEREO"); + printAttrib(SDL_GL_MULTISAMPLEBUFFERS, "GL_MULTISAMPLEBUFFERS"); + printAttrib(SDL_GL_MULTISAMPLESAMPLES, "GL_MULTISAMPLESAMPLES"); + printAttrib(SDL_GL_ACCELERATED_VISUAL, "GL_ACCELERATED_VISUAL"); + printAttrib(SDL_GL_RETAINED_BACKING, "GL_RETAINED_BACKING"); + printAttrib(SDL_GL_CONTEXT_MAJOR_VERSION, "GL_CONTEXT_MAJOR_VERSION"); + printAttrib(SDL_GL_CONTEXT_MINOR_VERSION, "GL_CONTEXT_MINOR_VERSION"); + printAttrib(SDL_GL_CONTEXT_FLAGS, "GL_CONTEXT_FLAGS"); + printAttrib(SDL_GL_CONTEXT_PROFILE_MASK, "GL_CONTEXT_PROFILE_MASK"); + printAttrib(SDL_GL_SHARE_WITH_CURRENT_CONTEXT, "GL_SHARE_WITH_CURRENT_CONTEXT"); + printAttrib(SDL_GL_FRAMEBUFFER_SRGB_CAPABLE, "GL_FRAMEBUFFER_SRGB_CAPABLE"); + printAttrib(SDL_GL_CONTEXT_RELEASE_BEHAVIOR, "GL_CONTEXT_RELEASE_BEHAVIOR"); + printAttrib(SDL_GL_CONTEXT_EGL, "GL_CONTEXT_EGL"); + + printf("----\n"); + + SDL_version compiled; + SDL_version linked; + SDL_VERSION(&compiled); + SDL_GetVersion(&linked); + printf("Compiled against SDL version %u.%u.%u.\n", compiled.major, compiled.minor, compiled.patch); + printf("Linked against SDL version %u.%u.%u.\n", linked.major, linked.minor, linked.patch); + + printf("----\n"); +#else + printf("%s\n", glfwGetVersionString()); + printf("----\n"); +#endif + //************************************* // bind vertex and index buffers //************************************* @@ -1147,7 +1535,6 @@ int main(int argc, char** argv) esBind(GL_ELEMENT_ARRAY_BUFFER, &mdlScene.iid, scene_indices, sizeof(scene_indices), GL_STATIC_DRAW); // ***** BIND GAMEOVER ***** - esBind(GL_ARRAY_BUFFER, &mdlGameover.cid, gameover_colors, sizeof(gameover_colors), GL_STATIC_DRAW); esBind(GL_ARRAY_BUFFER, &mdlGameover.vid, gameover_vertices, sizeof(gameover_vertices), GL_STATIC_DRAW); esBind(GL_ARRAY_BUFFER, &mdlGameover.nid, gameover_normals, sizeof(gameover_normals), GL_STATIC_DRAW); esBind(GL_ELEMENT_ARRAY_BUFFER, &mdlGameover.iid, gameover_indices, sizeof(gameover_indices), GL_STATIC_DRAW); @@ -1193,9 +1580,23 @@ int main(int argc, char** argv) esBind(GL_ARRAY_BUFFER, &mdlTrip.nid, trip_normals, sizeof(trip_normals), GL_STATIC_DRAW); esBind(GL_ELEMENT_ARRAY_BUFFER, &mdlTrip.iid, trip_indices, sizeof(trip_indices), GL_STATIC_DRAW); + // ***** BIND SCENE PROP - RED X ***** + esBind(GL_ARRAY_BUFFER, &mdlRX.vid, rx_vertices, sizeof(rx_vertices), GL_STATIC_DRAW); + esBind(GL_ARRAY_BUFFER, &mdlRX.nid, rx_normals, sizeof(rx_normals), GL_STATIC_DRAW); + esBind(GL_ELEMENT_ARRAY_BUFFER, &mdlRX.iid, rx_indices, sizeof(rx_indices), GL_STATIC_DRAW); + + // ***** BIND SCENE PROP - SILVER ARROW ***** + esBind(GL_ARRAY_BUFFER, &mdlSA.vid, sa_vertices, sizeof(sa_vertices), GL_STATIC_DRAW); + esBind(GL_ARRAY_BUFFER, &mdlSA.nid, sa_normals, sizeof(sa_normals), GL_STATIC_DRAW); + esBind(GL_ELEMENT_ARRAY_BUFFER, &mdlSA.iid, sa_indices, sizeof(sa_indices), GL_STATIC_DRAW); + + // ***** BIND SCENE PROP - GOLD ARROW ***** + esBind(GL_ARRAY_BUFFER, &mdlGA.vid, ga_vertices, sizeof(ga_vertices), GL_STATIC_DRAW); + esBind(GL_ARRAY_BUFFER, &mdlGA.nid, ga_normals, sizeof(ga_normals), GL_STATIC_DRAW); + esBind(GL_ELEMENT_ARRAY_BUFFER, &mdlGA.iid, ga_indices, sizeof(ga_indices), GL_STATIC_DRAW); //************************************* -// compile & link shader programs +// compile & link shader program //************************************* makeLambert1(); @@ -1214,25 +1615,25 @@ int main(int argc, char** argv) //************************************* // new game - window_size_callback(window, winw, winh); + doPerspective(); newGame(); // init - t = glfwGetTime(); - lfct = t; - - // adaptive event loop - while(!glfwWindowShouldClose(window)) + t = f32Time(); + + // event loop +#ifdef BUILD_GLFW + while(!glfwWindowShouldClose(wnd)) { - t = glfwGetTime(); glfwPollEvents(); main_loop(); fc++; } +#else + lfct = t; + while(1){main_loop();fc++;} +#endif - // done - glfwDestroyWindow(window); - glfwTerminate(); - exit(EXIT_SUCCESS); return 0; } + diff --git a/makefile b/makefile index 947dcd4..fee4bad 100644 --- a/makefile +++ b/makefile @@ -1,11 +1,69 @@ -all: - gcc main.c glad_gl.c -I inc -Ofast -lglfw -lm -o tuxpusher +CC ?= cc +INCLUDE_HEADERS = -I inc +LINK_DEPS = -lSDL2 -lGLESv2 -lEGL +CFLAGS ?= -Ofast +LDFLAGS = -lm +PRJ_NAME = tuxpusher + +ifeq ($(PREFIX),) + PREFIX := /usr/local +endif + +ifneq ($(LDFLAGS),) +LINK_DEPS += $(LDFLAGS) +endif + +.PHONY: all +all: release + +plygame: + mkdir -p release + $(CC) $(CFLAGS) $(LDFLAGS) main.c $(INCLUDE_HEADERS) $(LINK_DEPS) -o release/$(PRJ_NAME) + +test: plygame + ./release/$(PRJ_NAME) + +minify: + strip --strip-unneeded release/$(PRJ_NAME) + upx --lzma --best release/$(PRJ_NAME) + strip --strip-unneeded release/$(PRJ_NAME)_glfw + upx --lzma --best release/$(PRJ_NAME)_glfw + +debify: + cp release/$(PRJ_NAME) deb/usr/games/$(PRJ_NAME) + dpkg-deb --build deb release/$(PRJ_NAME).deb + +appimage: + cp release/$(PRJ_NAME) $(PRJ_NAME).AppDir/usr/bin/$(PRJ_NAME) + ./appimagetool-x86_64.AppImage $(PRJ_NAME).AppDir release/$(PRJ_NAME)-x86_64.AppImage + +glfw: + mkdir -p release + cc -DBUILD_GLFW main.c glad_gl.c -I inc -Ofast -lglfw -lm -o release/$(PRJ_NAME)_glfw + +release: plygame glfw minify debify appimage + i686-w64-mingw32-gcc -DBUILD_GLFW main.c glad_gl.c -Ofast -I inc -Llib -lglfw3dll -lm -o release/$(PRJ_NAME).exe + strip --strip-unneeded release/$(PRJ_NAME).exe + upx --lzma --best release/$(PRJ_NAME).exe + cp lib/glfw3.dll release/glfw3.dll + strip --strip-unneeded release/glfw3.dll + upx --lzma --best release/glfw3.dll + zip release/$(PRJ_NAME)_win.zip release/glfw3.dll release/$(PRJ_NAME).exe + rm -f release/glfw3.dll release/$(PRJ_NAME).exe install: - cp tuxpusher $(DESTDIR) + install -Dm 0755 release/$(PRJ_NAME) -t $(DESTDIR)$(PREFIX)/bin uninstall: - rm $(DESTDIR)/tuxpusher + rm -f $(DESTDIR)$(PREFIX)/bin/$(PRJ_NAME) clean: - rm tuxpusher \ No newline at end of file + rm -f release/$(PRJ_NAME) + rm -f release/$(PRJ_NAME)_glfw + rm -f release/$(PRJ_NAME).deb + rm -f release/$(PRJ_NAME)-x86_64.AppImage + rm -f release/glfw3.dll + rm -f release/$(PRJ_NAME).exe + rm -f release/$(PRJ_NAME)_win.zip + rm -f tuxpusher.AppDir/usr/bin/$(PRJ_NAME) + rm -f deb/usr/games/$(PRJ_NAME) diff --git a/release.sh b/release.sh deleted file mode 100755 index 5aa5b4c..0000000 --- a/release.sh +++ /dev/null @@ -1,6 +0,0 @@ -clang main.c glad_gl.c -I inc -Ofast -lglfw -lm -o tux -i686-w64-mingw32-gcc main.c glad_gl.c -Ofast -I inc -Llib -lglfw3dll -lm -o tux.exe -strip --strip-unneeded tux -strip --strip-unneeded tux.exe -upx --lzma --best tux -upx --lzma --best tux.exe \ No newline at end of file diff --git a/snap/makefile b/snap/makefile new file mode 100644 index 0000000..59e5f9d --- /dev/null +++ b/snap/makefile @@ -0,0 +1,11 @@ +all: + gcc -DBUILD_GLFW ../main.c ../glad_gl.c -I ../inc -Ofast -lglfw -lm -o tuxpusher + +install: + cp tuxpusher $(DESTDIR) + +uninstall: + rm $(DESTDIR)/tuxpusher + +clean: + rm tuxpusher \ No newline at end of file diff --git a/snap/snapcraft.yaml b/snap/snapcraft.yaml index c5e571c..7149d05 100644 --- a/snap/snapcraft.yaml +++ b/snap/snapcraft.yaml @@ -1,6 +1,6 @@ name: tuxpusher base: core20 -version: '1.0' +version: '1.2' summary: A fun coin pusher game featuring Tux! description: | Just move around your mouse and click to release a coin. @@ -42,6 +42,7 @@ parts: source: https://github.com/mrbid/tuxpusher source-type: git plugin: make + source-subdir: snap build-packages: - libglfw3-dev stage-packages: diff --git a/tuxpusher.AppDir/.DirIcon b/tuxpusher.AppDir/.DirIcon new file mode 120000 index 0000000..c6b32a4 --- /dev/null +++ b/tuxpusher.AppDir/.DirIcon @@ -0,0 +1 @@ +tuxpusher.png \ No newline at end of file diff --git a/tuxpusher.AppDir/AppRun b/tuxpusher.AppDir/AppRun new file mode 100755 index 0000000..4ce9482 --- /dev/null +++ b/tuxpusher.AppDir/AppRun @@ -0,0 +1,2 @@ +#!/bin/sh +exec "$APPDIR/usr/bin/tuxpusher" diff --git a/tuxpusher.AppDir/tuxpusher.desktop b/tuxpusher.AppDir/tuxpusher.desktop new file mode 100644 index 0000000..522a84d --- /dev/null +++ b/tuxpusher.AppDir/tuxpusher.desktop @@ -0,0 +1,9 @@ +[Desktop Entry] +Name=TuxPusher +Comment=A fun coin pusher game featuring Tux! +StartupNotify=false +Exec=tuxpusher +Icon=tuxpusher +Terminal=false +Type=Application +Categories=Application;Game;ArcadeGame; \ No newline at end of file diff --git a/tuxpusher.AppDir/tuxpusher.png b/tuxpusher.AppDir/tuxpusher.png new file mode 100644 index 0000000..b6bee4c Binary files /dev/null and b/tuxpusher.AppDir/tuxpusher.png differ