From b139c5e8fc8f0e61785ab9985d702cdb8d8762be Mon Sep 17 00:00:00 2001 From: Jens Keiner Date: Mon, 22 Jun 2026 11:02:24 +0000 Subject: [PATCH] Blocked recurrence for nfft direct forward/adjoint transform. --- benchmarks/bench_nfft_direct.cpp | 4 + kernel/nfft/nfft.c | 86 +- tests/data/Makefile.am | 4 + tests/data/generated/nfft_testcases.h | 8 + tests/data/nfft_1d_1024_50.txt | 1133 ++++++++++++++++++++++++ tests/data/nfft_1d_512_50.txt | 621 +++++++++++++ tests/data/nfft_adjoint_1d_1024_50.txt | 1133 ++++++++++++++++++++++++ tests/data/nfft_adjoint_1d_512_50.txt | 621 +++++++++++++ tests/refgen/grids.py | 2 + 9 files changed, 3604 insertions(+), 8 deletions(-) create mode 100644 tests/data/nfft_1d_1024_50.txt create mode 100644 tests/data/nfft_1d_512_50.txt create mode 100644 tests/data/nfft_adjoint_1d_1024_50.txt create mode 100644 tests/data/nfft_adjoint_1d_512_50.txt diff --git a/benchmarks/bench_nfft_direct.cpp b/benchmarks/bench_nfft_direct.cpp index a29f7ceb..d21afac1 100644 --- a/benchmarks/bench_nfft_direct.cpp +++ b/benchmarks/bench_nfft_direct.cpp @@ -166,6 +166,8 @@ static void nfft_adjoint_direct_3d(benchmark::State& state) { // Register benchmarks for direct transforms BENCH(nfft_forward_direct_1d, SUFFIX) + ->Args({8, 25}) + ->Args({16, 50}) ->Args({32, 100}) ->Args({64, 200}) ->Args({128, 400}) @@ -176,6 +178,8 @@ BENCH(nfft_forward_direct_1d, SUFFIX) ->Complexity(); BENCH(nfft_adjoint_direct_1d, SUFFIX) + ->Args({8, 25}) + ->Args({16, 50}) ->Args({32, 100}) ->Args({64, 200}) ->Args({128, 400}) diff --git a/kernel/nfft/nfft.c b/kernel/nfft/nfft.c index 4ae7b392..94e9554b 100644 --- a/kernel/nfft/nfft.c +++ b/kernel/nfft/nfft.c @@ -142,6 +142,17 @@ static inline void sort(const X(plan) *ths) * for k in I_N^d * f_hat[k] = sum_{j=0}^{M_total-1} f[j] * exp(-2(pi) k x[j]) */ +/* Block size for the phase recurrence in the direct transforms */ +#define NFFT_DIRECT_RECURRENCE_BLOCK 32 + +/* Accurate phase for exp(+-i 2pi k x): reduce k*x modulo 1 into ~[-1/2,1/2) so COS/SIN see a + * small argument, error does not grow with N. Requires FMA single-rounding semantics. */ +static inline R X(reduced_omega)(const R k, const R x) +{ + const R n = RINT(k * x); // Nearest integer to k * x. + return K2PI * FFMA(k, x, -n); // Calculate k * x - n witha single rounding, then multiply 2 * pi. +} + void X(trafo_direct)(const X(plan) *ths) { C *f_hat = (C*)ths->f_hat, *f = (C*)ths->f; @@ -149,6 +160,7 @@ void X(trafo_direct)(const X(plan) *ths) if (ths->d == 1) { /* specialize for univariate case, rationale: faster */ + const INT B = NFFT_DIRECT_RECURRENCE_BLOCK; INT j; #ifdef _OPENMP #pragma omp parallel for default(shared) private(j) @@ -156,11 +168,21 @@ void X(trafo_direct)(const X(plan) *ths) for (j = 0; j < ths->M_total; j++) { C v = K(0.0); - INT k_L; - for (k_L = 0; k_L < ths->N_total; k_L++) + const R x = ths->x[j]; + const R dphi = K2PI * x; /* |dphi| <= pi: accurate without reduction */ + const C dw = COS(dphi) - II * SIN(dphi); /* per-step phase factor exp(-i 2pi x) */ + INT k_L = 0; + while (k_L < ths->N_total) { - R omega = K2PI * ((R)(k_L - ths->N_total/2)) * ths->x[j]; - v += f_hat[k_L] * (COS(omega) - II * SIN(omega)); + /* Accurate seed exp(-i 2pi (k_L - N/2) x), then recur within the block. */ + const R omega = X(reduced_omega)((R)(k_L - ths->N_total/2), x); + C w = COS(omega) - II * SIN(omega); + INT kend = k_L + B; if (kend > ths->N_total) kend = ths->N_total; + for (; k_L < kend; k_L++) + { + v += f_hat[k_L] * w; + w *= dw; + } } f[j] = v; @@ -217,7 +239,45 @@ void X(adjoint_direct)(const X(plan) *ths) if (ths->d == 1) { /* specialize for univariate case, rationale: faster */ + const INT B = NFFT_DIRECT_RECURRENCE_BLOCK; #ifdef _OPENMP + if (ths->N_total > B) + { + /* Give each thread a disjoint, contiguous range of frequencies [klo,khi) (so the + * f_hat[k] writes are race-free) and run the phase recurrence within it, re-seeded + * every B steps. */ + #pragma omp parallel default(shared) + { + const int nt = omp_get_num_threads(); + const int tid = omp_get_thread_num(); + const INT klo = (INT)(((long long)ths->N_total * tid) / nt); + const INT khi = (INT)(((long long)ths->N_total * (tid + 1)) / nt); + INT j; + for (j = 0; j < ths->M_total; j++) + { + const R x = ths->x[j]; + const R dphi = K2PI * x; + const C dw = COS(dphi) + II * SIN(dphi); + INT k_L = klo; + while (k_L < khi) + { + const R omega = X(reduced_omega)((R)(k_L - ths->N_total/2), x); + C w = COS(omega) + II * SIN(omega); + INT kend = k_L + B; if (kend > khi) kend = khi; + for (; k_L < kend; k_L++) + { + f_hat[k_L] += f[j] * w; + w *= dw; + } + } + } + } + } + else + { + /* N <= B: the recurrence spans at most one block per thread-range, so its per-block + * seed/setup costs more than it saves once threaded. Use the plain per-k + * parallelisation. At these tiny N the per-entry phase error is in check. */ INT k_L; #pragma omp parallel for default(shared) private(k_L) for (k_L = 0; k_L < ths->N_total; k_L++) @@ -229,15 +289,25 @@ void X(adjoint_direct)(const X(plan) *ths) f_hat[k_L] += f[j] * (COS(omega) + II * SIN(omega)); } } + } #else INT j; for (j = 0; j < ths->M_total; j++) { - INT k_L; - for (k_L = 0; k_L < ths->N_total; k_L++) + const R x = ths->x[j]; + const R dphi = K2PI * x; + const C dw = COS(dphi) + II * SIN(dphi); + INT k_L = 0; + while (k_L < ths->N_total) { - R omega = K2PI * ((R)(k_L - ths->N_total / 2)) * ths->x[j]; - f_hat[k_L] += f[j] * (COS(omega) + II * SIN(omega)); + const R omega = X(reduced_omega)((R)(k_L - ths->N_total/2), x); + C w = COS(omega) + II * SIN(omega); + INT kend = k_L + B; if (kend > ths->N_total) kend = ths->N_total; + for (; k_L < kend; k_L++) + { + f_hat[k_L] += f[j] * w; + w *= dw; + } } } #endif diff --git a/tests/data/Makefile.am b/tests/data/Makefile.am index 42326f8e..6b0a248f 100644 --- a/tests/data/Makefile.am +++ b/tests/data/Makefile.am @@ -64,6 +64,7 @@ nfct_adjoint_2d_25_10_50.txt \ nfct_adjoint_2d_25_25_25.txt \ nfct_adjoint_2d_25_25_50.txt \ nfct_adjoint_3d_10_10_10_10.txt \ +nfft_1d_1024_50.txt \ nfft_1d_10_1.txt \ nfft_1d_10_10.txt \ nfft_1d_10_20.txt \ @@ -88,6 +89,7 @@ nfft_1d_50_1.txt \ nfft_1d_50_10.txt \ nfft_1d_50_20.txt \ nfft_1d_50_50.txt \ +nfft_1d_512_50.txt \ nfft_2d_10_10_20.txt \ nfft_2d_10_10_50.txt \ nfft_2d_10_20_20.txt \ @@ -97,6 +99,7 @@ nfft_2d_20_10_50.txt \ nfft_2d_20_20_20.txt \ nfft_2d_20_20_50.txt \ nfft_3d_10_10_10_10.txt \ +nfft_adjoint_1d_1024_50.txt \ nfft_adjoint_1d_10_1.txt \ nfft_adjoint_1d_10_10.txt \ nfft_adjoint_1d_10_20.txt \ @@ -121,6 +124,7 @@ nfft_adjoint_1d_50_1.txt \ nfft_adjoint_1d_50_10.txt \ nfft_adjoint_1d_50_20.txt \ nfft_adjoint_1d_50_50.txt \ +nfft_adjoint_1d_512_50.txt \ nfft_adjoint_2d_10_10_20.txt \ nfft_adjoint_2d_10_10_50.txt \ nfft_adjoint_2d_10_20_20.txt \ diff --git a/tests/data/generated/nfft_testcases.h b/tests/data/generated/nfft_testcases.h index 6b627741..5c5f639f 100644 --- a/tests/data/generated/nfft_testcases.h +++ b/tests/data/generated/nfft_testcases.h @@ -28,6 +28,8 @@ static const testcase_delegate_file_t nfft_1d_50_1 = {setup_file, destroy_file, static const testcase_delegate_file_t nfft_1d_50_10 = {setup_file, destroy_file, ABSPATH("data/nfft_1d_50_10.txt")}; static const testcase_delegate_file_t nfft_1d_50_20 = {setup_file, destroy_file, ABSPATH("data/nfft_1d_50_20.txt")}; static const testcase_delegate_file_t nfft_1d_50_50 = {setup_file, destroy_file, ABSPATH("data/nfft_1d_50_50.txt")}; +static const testcase_delegate_file_t nfft_1d_512_50 = {setup_file, destroy_file, ABSPATH("data/nfft_1d_512_50.txt")}; +static const testcase_delegate_file_t nfft_1d_1024_50 = {setup_file, destroy_file, ABSPATH("data/nfft_1d_1024_50.txt")}; static const testcase_delegate_file_t *testcases_1d_file[] = { @@ -55,6 +57,8 @@ static const testcase_delegate_file_t *testcases_1d_file[] = &nfft_1d_50_10, &nfft_1d_50_20, &nfft_1d_50_50, + &nfft_1d_512_50, + &nfft_1d_1024_50, }; static const testcase_delegate_t **testcases_1d_file_ = (const testcase_delegate_t**)testcases_1d_file; @@ -112,6 +116,8 @@ static const testcase_delegate_file_t nfft_adjoint_1d_50_1 = {setup_file, destro static const testcase_delegate_file_t nfft_adjoint_1d_50_10 = {setup_file, destroy_file, ABSPATH("data/nfft_adjoint_1d_50_10.txt")}; static const testcase_delegate_file_t nfft_adjoint_1d_50_20 = {setup_file, destroy_file, ABSPATH("data/nfft_adjoint_1d_50_20.txt")}; static const testcase_delegate_file_t nfft_adjoint_1d_50_50 = {setup_file, destroy_file, ABSPATH("data/nfft_adjoint_1d_50_50.txt")}; +static const testcase_delegate_file_t nfft_adjoint_1d_512_50 = {setup_file, destroy_file, ABSPATH("data/nfft_adjoint_1d_512_50.txt")}; +static const testcase_delegate_file_t nfft_adjoint_1d_1024_50 = {setup_file, destroy_file, ABSPATH("data/nfft_adjoint_1d_1024_50.txt")}; static const testcase_delegate_file_t *testcases_adjoint_1d_file[] = { @@ -139,6 +145,8 @@ static const testcase_delegate_file_t *testcases_adjoint_1d_file[] = &nfft_adjoint_1d_50_10, &nfft_adjoint_1d_50_20, &nfft_adjoint_1d_50_50, + &nfft_adjoint_1d_512_50, + &nfft_adjoint_1d_1024_50, }; static const testcase_delegate_t **testcases_adjoint_1d_file_ = (const testcase_delegate_t**)testcases_adjoint_1d_file; diff --git a/tests/data/nfft_1d_1024_50.txt b/tests/data/nfft_1d_1024_50.txt new file mode 100644 index 00000000..270c7857 --- /dev/null +++ b/tests/data/nfft_1d_1024_50.txt @@ -0,0 +1,1133 @@ +1 + +1024 + +50 + +-0.11990661919116973876953125 +0.3492099344730377197265625 +0.466487109661102294921875 +-0.2993853986263275146484375 +0.11083729565143585205078125 +-0.12684874236583709716796875 +-0.15695421397686004638671875 +0.3674943745136260986328125 +-0.20589081943035125732421875 +0.4823261201381683349609375 +-0.4903799593448638916015625 +-0.1862180233001708984375 +0.293517649173736572265625 +-0.376036703586578369140625 +-0.3525093495845794677734375 +-0.19099728763103485107421875 +-0.4019052982330322265625 +-0.354398906230926513671875 +0.1414467990398406982421875 +0.3664208948612213134765625 +-0.14858353137969970703125 +-0.372609674930572509765625 +0.480059325695037841796875 +-0.4780595004558563232421875 +0.35911083221435546875 +-0.1609121859073638916015625 +-0.2311937808990478515625 +-0.389322936534881591796875 +-0.323764324188232421875 +-0.14807055890560150146484375 +-0.361179530620574951171875 +0.0963051021099090576171875 +0.2435763180255889892578125 +0.16600556671619415283203125 +0.3517910540103912353515625 +0.10797144472599029541015625 +0.124671719968318939208984375 +0.2739887535572052001953125 +0.24612937867641448974609375 +0.470657169818878173828125 +-0.16056549549102783203125 +-0.0527649223804473876953125 +0.1330103576183319091796875 +-0.1560878753662109375 +0.24360741674900054931640625 +-0.406453907489776611328125 +-0.352475225925445556640625 +-0.3685554563999176025390625 +-0.4178833663463592529296875 +-0.274707257747650146484375 + +-0.30038547515869140625 0.18824328482151031494140625 +-0.921606600284576416015625 0.817782461643218994140625 +0.9153766632080078125 -0.592750847339630126953125 +-0.52109086513519287109375 -0.279889047145843505859375 +-0.664077699184417724609375 0.346719920635223388671875 +0.076560847461223602294921875 -0.5959224700927734375 +-0.076935350894927978515625 0.90454638004302978515625 +0.956201076507568359375 0.24060101807117462158203125 +0.086195468902587890625 0.0387213192880153656005859375 +-0.013825568370521068572998046875 -0.3547014296054840087890625 +-0.4425465166568756103515625 -0.83825170993804931640625 +0.71128714084625244140625 -0.058443270623683929443359375 +-0.68223059177398681640625 -0.3621852397918701171875 +-0.086548961699008941650390625 0.70246601104736328125 +-0.74143218994140625 0.096851341426372528076171875 +-0.590100586414337158203125 0.23732902109622955322265625 +-0.96442902088165283203125 -0.562026500701904296875 +-0.2076683938503265380859375 -0.04887427389621734619140625 +-0.849078714847564697265625 0.28269875049591064453125 +0.72965562343597412109375 0.95400631427764892578125 +0.720252513885498046875 0.780444681644439697265625 +-0.2679474353790283203125 0.2829094827175140380859375 +0.63258564472198486328125 0.9390523433685302734375 +0.4939396083354949951171875 0.423805177211761474609375 +0.4835934937000274658203125 -0.0626172125339508056640625 +-0.290883004665374755859375 0.4048065841197967529296875 +0.376431941986083984375 0.699935019016265869140625 +-0.0475335456430912017822265625 0.19156430661678314208984375 +-0.93113744258880615234375 0.561151027679443359375 +0.39299476146697998046875 0.668099880218505859375 +-0.8623273372650146484375 0.14777474105358123779296875 +0.444471418857574462890625 0.097516246140003204345703125 +0.3211123943328857421875 0.7800753116607666015625 +-0.505283296108245849609375 -0.9654405117034912109375 +0.4098317623138427734375 -0.3972108662128448486328125 +0.0589628256857395172119140625 -0.15020120143890380859375 +0.0284323729574680328369140625 -0.5504219532012939453125 +0.013311219401657581329345703125 0.15793955326080322265625 +0.53077304363250732421875 0.2113677561283111572265625 +0.897999107837677001953125 -0.845306396484375 +-0.630493938922882080078125 0.8896739482879638671875 +0.02804872207343578338623046875 -0.254136741161346435546875 +-0.3060198724269866943359375 -0.14681629836559295654296875 +0.0056363553740084171295166015625 -0.4671926200389862060546875 +0.885639369487762451171875 -0.550283133983612060546875 +0.01958694122731685638427734375 -0.423362433910369873046875 +-0.01691645197570323944091796875 0.16685639321804046630859375 +-0.64353466033935546875 0.062907360494136810302734375 +-0.3972059190273284912109375 -0.70843160152435302734375 +0.1970265805721282958984375 -0.641154825687408447265625 +-0.59514391422271728515625 -0.0425084866583347320556640625 +0.913260161876678466796875 0.91214668750762939453125 +0.2942385971546173095703125 0.3234491050243377685546875 +-0.982365667819976806640625 0.0427302159368991851806640625 +-0.9278528690338134765625 -0.919725716114044189453125 +-0.2371691763401031494140625 -0.24185864627361297607421875 +-0.88903009891510009765625 -0.3958400189876556396484375 +0.70850884914398193359375 -0.627579629421234130859375 +-0.3136513233184814453125 0.35027253627777099609375 +-0.16255865991115570068359375 -0.2359921038150787353515625 +0.7450377941131591796875 -0.3316528797149658203125 +0.06709243357181549072265625 0.991500377655029296875 +0.02461185865104198455810546875 -0.633977949619293212890625 +0.39144361019134521484375 -0.783083975315093994140625 +-0.4929431974887847900390625 -0.933602631092071533203125 +-0.96331036090850830078125 0.813998639583587646484375 +0.4752999246120452880859375 0.2228259742259979248046875 +0.743478119373321533203125 -0.2783071994781494140625 +-0.01123675517737865447998046875 0.050516985356807708740234375 +0.20589585602283477783203125 -0.3724300563335418701171875 +-0.965663969516754150390625 -0.53577899932861328125 +-0.476176440715789794921875 0.832437992095947265625 +0.3356403410434722900390625 -0.789926588535308837890625 +-0.667268097400665283203125 0.5934126377105712890625 +-0.70166778564453125 0.2446463406085968017578125 +-0.730453789234161376953125 -0.78450858592987060546875 +-0.72151279449462890625 0.791864216327667236328125 +-0.72534930706024169921875 -0.930254876613616943359375 +0.3746979534626007080078125 0.672619283199310302734375 +-0.797922790050506591796875 -0.02279180847108364105224609375 +0.08113376796245574951171875 0.490597903728485107421875 +0.82137000560760498046875 -0.486619651317596435546875 +0.91048717498779296875 0.92380106449127197265625 +-0.72136628627777099609375 0.623999774456024169921875 +-0.611071527004241943359375 0.69509565830230712890625 +0.36261498928070068359375 -0.693396627902984619140625 +-0.87319529056549072265625 -0.4581910669803619384765625 +0.666189253330230712890625 0.658279240131378173828125 +0.0059196627698838710784912109375 0.53875839710235595703125 +0.5557804107666015625 0.11932258307933807373046875 +-0.25197017192840576171875 -0.67907428741455078125 +0.3615264892578125 0.0067891492508351802825927734375 +0.52311646938323974609375 -0.365096867084503173828125 +0.223796308040618896484375 -0.64594614505767822265625 +-0.66869294643402099609375 0.4229871332645416259765625 +0.418120324611663818359375 -0.858705341815948486328125 +-0.7748868465423583984375 -0.1448160707950592041015625 +-0.4269904196262359619140625 -0.03052727878093719482421875 +0.428865253925323486328125 0.095319010317325592041015625 +0.798821389675140380859375 -0.0578246451914310455322265625 +0.5310165882110595703125 0.7175271511077880859375 +-0.3951030075550079345703125 -0.23086099326610565185546875 +0.642503261566162109375 -0.4572707712650299072265625 +-0.762560904026031494140625 -0.0201613008975982666015625 +0.96303236484527587890625 -0.02151560597121715545654296875 +0.757123470306396484375 -0.427076816558837890625 +-0.81676256656646728515625 0.7758052349090576171875 +-0.217918574810028076171875 -0.747828185558319091796875 +-0.6464607715606689453125 -0.7904126644134521484375 +0.707911014556884765625 0.3202475011348724365234375 +-0.90534687042236328125 -0.002831357531249523162841796875 +-0.4233514964580535888671875 0.967531144618988037109375 +0.72778737545013427734375 -0.00930765457451343536376953125 +0.10518653690814971923828125 0.3497477471828460693359375 +-0.591652214527130126953125 -0.5091297626495361328125 +0.7653214931488037109375 0.709505736827850341796875 +-0.2385503351688385009765625 -0.12747395038604736328125 +-0.007007175125181674957275390625 -0.123181097209453582763671875 +0.481974184513092041015625 -0.28141725063323974609375 +0.15091829001903533935546875 0.1251407563686370849609375 +0.02191607095301151275634765625 -0.4647209346294403076171875 +-0.623385608196258544921875 -0.912431895732879638671875 +-0.829239785671234130859375 0.885330021381378173828125 +-0.028803147375583648681640625 -0.98275434970855712890625 +0.120719961822032928466796875 -0.352129757404327392578125 +0.592762768268585205078125 0.8267910480499267578125 +0.5468404293060302734375 0.85102713108062744140625 +0.103004761040210723876953125 -0.651481688022613525390625 +-0.72676372528076171875 -0.9483082294464111328125 +0.681801736354827880859375 0.3862241208553314208984375 +-0.988350927829742431640625 -0.4504181444644927978515625 +-0.884181916713714599609375 0.4748568832874298095703125 +0.3146869242191314697265625 -0.4540234506130218505859375 +-0.74675357341766357421875 0.93988549709320068359375 +-0.787461698055267333984375 -0.2810586988925933837890625 +0.62480533123016357421875 0.9575631618499755859375 +0.4301364719867706298828125 -0.08480490744113922119140625 +-0.4640946090221405029296875 -0.21620734035968780517578125 +-0.24100412428379058837890625 0.943956673145294189453125 +-0.489626944065093994140625 -0.14069832861423492431640625 +-0.64427483081817626953125 0.91339194774627685546875 +0.4675273597240447998046875 0.561948299407958984375 +0.0077852332033216953277587890625 -0.79906857013702392578125 +0.4512276351451873779296875 -0.7926051616668701171875 +0.8884460926055908203125 -0.784158766269683837890625 +0.897045910358428955078125 -0.629314601421356201171875 +-0.2210547029972076416015625 0.952658474445343017578125 +-0.515858232975006103515625 0.999088346958160400390625 +0.23797166347503662109375 0.3283681571483612060546875 +0.662004292011260986328125 -0.3936331272125244140625 +-0.636498868465423583984375 0.47727298736572265625 +-0.941403687000274658203125 0.887532293796539306640625 +0.044491045176982879638671875 0.01647471822798252105712890625 +-0.666292011737823486328125 0.31136906147003173828125 +-0.01695412956178188323974609375 0.709354817867279052734375 +-0.61100161075592041015625 -0.8031768798828125 +0.0975259840488433837890625 -0.665635526180267333984375 +-0.562668621540069580078125 -0.21342198550701141357421875 +0.0065113012678921222686767578125 0.6545565128326416015625 +0.122427873313426971435546875 0.22397361695766448974609375 +-0.4718206822872161865234375 0.14291059970855712890625 +-0.939567267894744873046875 -0.19473119080066680908203125 +0.598031938076019287109375 0.09895606338977813720703125 +0.36933147907257080078125 -0.084352619946002960205078125 +-0.70334994792938232421875 -0.5318267345428466796875 +0.093151271343231201171875 -0.7100560665130615234375 +-0.915605127811431884765625 -0.38561141490936279296875 +-0.1645636260509490966796875 -0.1660972535610198974609375 +0.4705647528171539306640625 -0.846420466899871826171875 +0.3228033483028411865234375 -0.109440498054027557373046875 +-0.820710003376007080078125 -0.14744506776332855224609375 +-0.910821974277496337890625 -0.00999053381383419036865234375 +-0.1805863082408905029296875 0.507618129253387451171875 +-0.1765782833099365234375 -0.616465389728546142578125 +0.1325285732746124267578125 0.09950792789459228515625 +-0.053856931626796722412109375 0.3983941376209259033203125 +-0.970928132534027099609375 0.8592412471771240234375 +0.87438869476318359375 0.114964939653873443603515625 +-0.1629993021488189697265625 0.88364827632904052734375 +0.422406971454620361328125 0.885318934917449951171875 +0.3686635792255401611328125 -0.72184145450592041015625 +0.646153032779693603515625 0.00181893655098974704742431640625 +-0.334770739078521728515625 0.71456301212310791015625 +0.890857756137847900390625 0.26356709003448486328125 +0.857718288898468017578125 0.62987983226776123046875 +0.710627019405364990234375 -0.490429401397705078125 +0.064013786613941192626953125 0.647996246814727783203125 +-0.82007634639739990234375 -0.1606124937534332275390625 +0.5327260494232177734375 -0.959568202495574951171875 +-0.979915142059326171875 0.488162338733673095703125 +0.0184182487428188323974609375 0.181197822093963623046875 +0.363416135311126708984375 -0.768944203853607177734375 +0.82026898860931396484375 -0.3646903336048126220703125 +0.926563322544097900390625 -0.719408452510833740234375 +0.836383998394012451171875 -0.68349349498748779296875 +0.0953300893306732177734375 0.895226657390594482421875 +-0.4806152880191802978515625 0.355006873607635498046875 +-0.877543270587921142578125 0.70144307613372802734375 +-0.692770183086395263671875 0.507755696773529052734375 +0.800159394741058349609375 -0.82650554180145263671875 +-0.30913937091827392578125 -0.92665958404541015625 +0.536790072917938232421875 0.756529510021209716796875 +-0.66075122356414794921875 0.709540188312530517578125 +-0.8057448863983154296875 0.4217269122600555419921875 +0.59545481204986572265625 0.98042452335357666015625 +0.77194309234619140625 -0.084047190845012664794921875 +-0.1814354956150054931640625 0.4366948306560516357421875 +0.6432197093963623046875 0.265618383884429931640625 +0.281969845294952392578125 -0.569634914398193359375 +0.728729546070098876953125 -0.976149260997772216796875 +-0.980757415294647216796875 -0.792915403842926025390625 +-0.02979222126305103302001953125 0.762593328952789306640625 +0.162551701068878173828125 -0.0390863381326198577880859375 +0.305421650409698486328125 0.00047909686691127717494964599609375 +-0.983392059803009033203125 0.69217479228973388671875 +-0.2525145709514617919921875 -0.01281356625258922576904296875 +-0.99471294879913330078125 -0.3240530192852020263671875 +-0.4137254655361175537109375 -0.20544247329235076904296875 +-0.55744731426239013671875 -0.431979000568389892578125 +0.844946920871734619140625 -0.20164991915225982666015625 +0.165496647357940673828125 -0.52783966064453125 +-0.85205185413360595703125 -0.17506916821002960205078125 +-0.4436805546283721923828125 0.145743668079376220703125 +0.27995860576629638671875 -0.746343553066253662109375 +0.8372881412506103515625 0.8308422565460205078125 +-0.940517902374267578125 0.19267053902149200439453125 +0.3190681636333465576171875 0.20629978179931640625 +0.316111147403717041015625 0.033130578696727752685546875 +-0.6819622516632080078125 0.18677358329296112060546875 +0.1535940468311309814453125 0.2907016277313232421875 +0.884597599506378173828125 -0.0216202102601528167724609375 +-0.2482850849628448486328125 -0.4017772972583770751953125 +-0.967375934123992919921875 -0.31897413730621337890625 +0.390132486820220947265625 0.92005884647369384765625 +-0.981644332408905029296875 0.099296905100345611572265625 +-0.17684291303157806396484375 -0.83267056941986083984375 +0.444178283214569091796875 0.775257587432861328125 +0.557182729244232177734375 -0.084171079099178314208984375 +0.4054959118366241455078125 -0.679773747920989990234375 +-0.065844811499118804931640625 0.74478876590728759765625 +-0.4038985073566436767578125 -0.6761529445648193359375 +0.469452202320098876953125 0.870335638523101806640625 +-0.739410877227783203125 -0.3934099972248077392578125 +-0.85019910335540771484375 0.8885037899017333984375 +-0.29655468463897705078125 0.47996997833251953125 +-0.705413281917572021484375 -0.70471441745758056640625 +0.520593941211700439453125 0.0027970634400844573974609375 +-0.372245490550994873046875 -0.478847324848175048828125 +0.616302490234375 0.384369432926177978515625 +-0.720020592212677001953125 0.623049557209014892578125 +0.44096863269805908203125 -0.4481987655162811279296875 +0.075582079589366912841796875 -0.12742231786251068115234375 +-0.073730312287807464599609375 0.15394638478755950927734375 +-0.0574074648320674896240234375 0.88316667079925537109375 +-0.699120104312896728515625 -0.319432914257049560546875 +0.990607678890228271484375 -0.67277514934539794921875 +-0.055846691131591796875 0.98879802227020263671875 +-0.966316401958465576171875 -0.33934032917022705078125 +0.914976060390472412109375 0.594630718231201171875 +-0.781699120998382568359375 -0.505273342132568359375 +-0.55296695232391357421875 -0.65261423587799072265625 +0.515511453151702880859375 0.563683569431304931640625 +0.0620434470474720001220703125 -0.23212485015392303466796875 +-0.3575623929500579833984375 0.0050547332502901554107666015625 +-0.248587429523468017578125 -0.4175814092159271240234375 +0.580415189266204833984375 0.09610845148563385009765625 +0.514781177043914794921875 0.24676726758480072021484375 +-0.853655993938446044921875 -0.3056593239307403564453125 +-0.95293700695037841796875 -0.153792440891265869140625 +-0.51417958736419677734375 0.845277309417724609375 +-0.823977530002593994140625 -0.19281251728534698486328125 +0.2173264324665069580078125 -0.15970928966999053955078125 +0.1537802219390869140625 0.09550632536411285400390625 +-0.36777007579803466796875 0.1675797402858734130859375 +0.862929284572601318359375 -0.4857326447963714599609375 +0.3884978592395782470703125 0.200655281543731689453125 +0.1562641561031341552734375 -0.4380741417407989501953125 +-0.899082958698272705078125 -0.989005267620086669921875 +-0.1540895998477935791015625 -0.980755388736724853515625 +0.9917528629302978515625 -0.2587444782257080078125 +-0.84421288967132568359375 0.2932280600070953369140625 +0.930487930774688720703125 0.741106331348419189453125 +0.17782028019428253173828125 -0.4450261890888214111328125 +0.3396653831005096435546875 0.858503818511962890625 +0.86251914501190185546875 0.22057868540287017822265625 +-0.0054894289933145046234130859375 0.56695663928985595703125 +-0.66668546199798583984375 -0.73628902435302734375 +0.394316017627716064453125 0.51192057132720947265625 +-0.724967896938323974609375 0.788198173046112060546875 +-0.31763350963592529296875 0.63634932041168212890625 +-0.28814923763275146484375 -0.9514033794403076171875 +-0.012536284513771533966064453125 -0.3302653133869171142578125 +0.85981404781341552734375 -0.3905203044414520263671875 +-0.883596241474151611328125 0.687321245670318603515625 +0.916973888874053955078125 0.75761544704437255859375 +-0.24084006249904632568359375 -0.59296286106109619140625 +-0.117077715694904327392578125 0.71865749359130859375 +0.4939570724964141845703125 0.67625141143798828125 +0.777894318103790283203125 -0.9092388153076171875 +-0.601971924304962158203125 0.419411182403564453125 +0.039966404438018798828125 -0.2768993079662322998046875 +-0.104048006236553192138671875 -0.423209130764007568359375 +0.952902853488922119140625 0.24608807265758514404296875 +-0.693546235561370849609375 -0.93749713897705078125 +-0.15582941472530364990234375 -0.066535197198390960693359375 +0.088755004107952117919921875 -0.772052109241485595703125 +0.296891272068023681640625 -0.6889646053314208984375 +0.1325220763683319091796875 0.3436287343502044677734375 +-0.36824238300323486328125 0.1695109307765960693359375 +-0.402128696441650390625 -0.077744908630847930908203125 +-0.464982807636260986328125 0.0930458605289459228515625 +-0.975128471851348876953125 -0.830498635768890380859375 +0.12975800037384033203125 0.01000108756124973297119140625 +-0.441115915775299072265625 0.10346210002899169921875 +0.612111151218414306640625 -0.63896715641021728515625 +-0.96423709392547607421875 0.12826849520206451416015625 +-0.26614272594451904296875 -0.749908864498138427734375 +0.676118075847625732421875 -0.965902626514434814453125 +0.443736493587493896484375 0.387259900569915771484375 +0.3625896275043487548828125 -0.05327142775058746337890625 +0.3306107223033905029296875 -0.837501227855682373046875 +-0.947740733623504638671875 0.293578088283538818359375 +0.982834994792938232421875 -0.908142268657684326171875 +-0.2771001160144805908203125 0.2884773910045623779296875 +0.435071170330047607421875 0.6228978633880615234375 +-0.3884641826152801513671875 0.6155884265899658203125 +0.854078769683837890625 -0.837597310543060302734375 +0.69915139675140380859375 -0.2969947159290313720703125 +-0.550354659557342529296875 0.33089923858642578125 +-0.509744584560394287109375 0.71565377712249755859375 +-0.72487640380859375 -0.1686539351940155029296875 +0.099525608122348785400390625 0.696523010730743408203125 +-0.373313128948211669921875 -0.41673338413238525390625 +0.668248474597930908203125 0.0558636225759983062744140625 +0.383148252964019775390625 0.74903261661529541015625 +0.119467221200466156005859375 -0.03952966630458831787109375 +-0.5330483913421630859375 -0.92437469959259033203125 +0.89110887050628662109375 0.116910971701145172119140625 +0.84236443042755126953125 0.767721116542816162109375 +0.3157405555248260498046875 0.775573074817657470703125 +0.039799876511096954345703125 -0.0562054850161075592041015625 +0.4243500232696533203125 -0.689441025257110595703125 +0.776769340038299560546875 -0.0390242636203765869140625 +-0.2595883309841156005859375 0.01682136766612529754638671875 +0.7830669879913330078125 0.17815800011157989501953125 +-0.4172557294368743896484375 -0.18237803876399993896484375 +-0.3483498990535736083984375 -0.3031031191349029541015625 +0.32065379619598388671875 -0.16969271004199981689453125 +-0.046713285148143768310546875 -0.358353435993194580078125 +0.07182244956493377685546875 0.4065352976322174072265625 +-0.0194306671619415283203125 -0.330982983112335205078125 +-0.64720821380615234375 -0.922530829906463623046875 +-0.971785247325897216796875 0.872294485569000244140625 +-0.928875029087066650390625 -0.37114679813385009765625 +0.470839202404022216796875 -0.16729514300823211669921875 +-0.819629728794097900390625 -0.930797636508941650390625 +-0.2725086510181427001953125 0.3433272838592529296875 +0.4284401237964630126953125 0.57766377925872802734375 +-0.743288815021514892578125 -0.009181552566587924957275390625 +-0.643558084964752197265625 -0.113985382020473480224609375 +0.2699253559112548828125 -0.8044030666351318359375 +-0.6849267482757568359375 -0.95194530487060546875 +-0.7183554172515869140625 0.17798076570034027099609375 +0.6102778911590576171875 0.49320316314697265625 +0.605589807033538818359375 0.905809700489044189453125 +-0.00814203731715679168701171875 -0.3803994655609130859375 +-0.06354661285877227783203125 0.943069040775299072265625 +0.65687274932861328125 0.3193137943744659423828125 +-0.4178678095340728759765625 -0.1905888020992279052734375 +-0.546887576580047607421875 0.14850462973117828369140625 +-0.197702586650848388671875 -0.96329677104949951171875 +-0.8018748760223388671875 0.894201219081878662109375 +-0.98207437992095947265625 -0.087781608104705810546875 +0.50585496425628662109375 0.51185703277587890625 +0.4916879236698150634765625 0.718582093715667724609375 +0.60555732250213623046875 0.440577685832977294921875 +0.13575424253940582275390625 0.94468724727630615234375 +-0.898114681243896484375 0.300424277782440185546875 +-0.24908988177776336669921875 -0.0638362467288970947265625 +0.2084819972515106201171875 0.3982678949832916259765625 +0.720317423343658447265625 0.964316904544830322265625 +-0.774241149425506591796875 0.3434988558292388916015625 +-0.81571483612060546875 0.460390269756317138671875 +0.825465261936187744140625 -0.497444629669189453125 +-0.08991159498691558837890625 -0.0478265620768070220947265625 +0.4916576445102691650390625 0.403996884822845458984375 +0.844558179378509521484375 -0.94369602203369140625 +0.23567521572113037109375 0.534131705760955810546875 +-0.64566195011138916015625 -0.3463428020477294921875 +0.586372911930084228515625 0.941891133785247802734375 +-0.54899132251739501953125 -0.321566402912139892578125 +0.437391459941864013671875 -0.6665508747100830078125 +0.651582241058349609375 0.19155581295490264892578125 +-0.589280605316162109375 0.72229969501495361328125 +-0.0627898275852203369140625 -0.42506945133209228515625 +-0.2816951572895050048828125 0.612338840961456298828125 +-0.113012589514255523681640625 -0.4718537628650665283203125 +0.531426370143890380859375 -0.0007660741102881729602813720703125 +-0.40925657749176025390625 -0.63258647918701171875 +0.148452937602996826171875 -0.044534884393215179443359375 +-0.385939121246337890625 -0.18342815339565277099609375 +-0.972652912139892578125 -0.58125841617584228515625 +0.120452709496021270751953125 0.2660086154937744140625 +0.3128854334354400634765625 0.4007731378078460693359375 +-0.31674158573150634765625 0.925525367259979248046875 +0.7361404895782470703125 -0.4154257476329803466796875 +0.659486949443817138671875 -0.6206362247467041015625 +0.888261973857879638671875 0.1756537854671478271484375 +-0.0508623085916042327880859375 0.4192371070384979248046875 +0.21364890038967132568359375 0.3724501132965087890625 +0.89370632171630859375 -0.66755831241607666015625 +0.2996111214160919189453125 -0.19559489190578460693359375 +-0.2098865807056427001953125 -0.99808990955352783203125 +0.18742431700229644775390625 -0.4247113168239593505859375 +0.037670634686946868896484375 0.73334181308746337890625 +-0.2762201130390167236328125 -0.707306206226348876953125 +0.804235398769378662109375 -0.709488689899444580078125 +0.741266310214996337890625 0.57273006439208984375 +-0.23806045949459075927734375 -0.675599992275238037109375 +0.5255753993988037109375 0.23341907560825347900390625 +-0.51838767528533935546875 0.64144992828369140625 +-0.804684221744537353515625 -0.642446935176849365234375 +0.83955442905426025390625 0.85790455341339111328125 +0.778832256793975830078125 -0.6579992771148681640625 +-0.605109155178070068359375 -0.474309027194976806640625 +0.628187716007232666015625 0.84532177448272705078125 +-0.703371703624725341796875 0.727025210857391357421875 +0.3687651157379150390625 0.58722531795501708984375 +0.2615371644496917724609375 -0.4696919023990631103515625 +-0.4964673519134521484375 -0.385779440402984619140625 +-0.02641796506941318511962890625 0.84158456325531005859375 +0.2003438770771026611328125 0.5536746978759765625 +0.0428897552192211151123046875 0.868147313594818115234375 +-0.72309398651123046875 -0.899601042270660400390625 +-0.19083259999752044677734375 -0.74800431728363037109375 +0.0358331911265850067138671875 0.477958023548126220703125 +0.895386397838592529296875 0.76365411281585693359375 +0.984681606292724609375 0.0309002362191677093505859375 +0.312868773937225341796875 -0.657149851322174072265625 +-0.826111316680908203125 0.636434853076934814453125 +-0.582932770252227783203125 -0.642923176288604736328125 +-0.73861920833587646484375 -0.0435908399522304534912109375 +-0.90939581394195556640625 -0.09700167179107666015625 +0.0486256815493106842041015625 -0.2649898529052734375 +0.90294039249420166015625 -0.960968792438507080078125 +0.20394863188266754150390625 -0.77907359600067138671875 +0.2152574360370635986328125 0.22549577057361602783203125 +0.028896234929561614990234375 0.640174448490142822265625 +0.293262183666229248046875 -0.069710187613964080810546875 +0.60587489604949951171875 -0.762972354888916015625 +0.518740832805633544921875 0.4676632583141326904296875 +0.0565350092947483062744140625 -0.3854523599147796630859375 +-0.2465497553348541259765625 0.976488530635833740234375 +-0.4752609729766845703125 -0.1649895012378692626953125 +0.551750123500823974609375 0.3926441371440887451171875 +0.34052860736846923828125 0.53515040874481201171875 +0.9276740550994873046875 -0.02953897602856159210205078125 +-0.3626263141632080078125 0.5816500186920166015625 +-0.883357346057891845703125 0.6452014446258544921875 +-0.1528312265872955322265625 -0.500026285648345947265625 +-0.8146421909332275390625 0.7719900608062744140625 +-0.19373233616352081298828125 0.0540516376495361328125 +0.4205195605754852294921875 0.3426401317119598388671875 +-0.610822200775146484375 -0.8195531368255615234375 +-0.930740654468536376953125 0.019922561943531036376953125 +-0.744989871978759765625 0.4008711278438568115234375 +-0.0573888756334781646728515625 0.26164567470550537109375 +0.49451625347137451171875 0.96809661388397216796875 +0.11957500874996185302734375 -0.741156101226806640625 +-0.18742664158344268798828125 0.632958352565765380859375 +-0.552887499332427978515625 0.0601966269314289093017578125 +0.4480032026767730712890625 -0.4902577698230743408203125 +-0.751035511493682861328125 0.58968555927276611328125 +0.318438053131103515625 -0.4911557137966156005859375 +-0.926660716533660888671875 0.729834735393524169921875 +0.580395758152008056640625 -0.7614123821258544921875 +0.416916370391845703125 -0.0422668866813182830810546875 +-0.16311435401439666748046875 0.79975068569183349609375 +0.0387831218540668487548828125 -0.258711159229278564453125 +-0.4663452804088592529296875 -0.96288454532623291015625 +-0.3446495234966278076171875 0.14493845403194427490234375 +0.401174843311309814453125 -0.18718303740024566650390625 +-0.893937289714813232421875 -0.585570037364959716796875 +0.05339814722537994384765625 -0.364254474639892578125 +0.68876445293426513671875 -0.797749102115631103515625 +0.13189311325550079345703125 -0.674870550632476806640625 +-0.628245055675506591796875 0.346239387989044189453125 +-0.613683879375457763671875 0.694459021091461181640625 +-0.777856528759002685546875 -0.710694253444671630859375 +0.596733748912811279296875 -0.737740576267242431640625 +-0.84161436557769775390625 0.50317347049713134765625 +-0.496958434581756591796875 -0.580837905406951904296875 +-0.01578188501298427581787109375 -0.4375632107257843017578125 +0.51455700397491455078125 0.500176906585693359375 +0.91261577606201171875 -0.3287727832794189453125 +-0.86461293697357177734375 0.518742144107818603515625 +-0.4846999943256378173828125 0.1772519052028656005859375 +-0.6897041797637939453125 0.104882873594760894775390625 +-0.88376224040985107421875 -0.70231139659881591796875 +-0.780515253543853759765625 0.608891069889068603515625 +-0.1354061663150787353515625 -0.50549542903900146484375 +-0.630971968173980712890625 -0.113141022622585296630859375 +0.79921400547027587890625 -0.2699983119964599609375 +-0.916792929172515869140625 -0.4992120563983917236328125 +-0.988667547702789306640625 0.122813038527965545654296875 +0.996760547161102294921875 -0.20725722610950469970703125 +-0.0809933245182037353515625 0.940914690494537353515625 +-0.254759013652801513671875 0.92360401153564453125 +0.3313783705234527587890625 -0.8748452663421630859375 +-0.801589310169219970703125 0.548344671726226806640625 +0.62018215656280517578125 0.763661324977874755859375 +-0.089343614876270294189453125 0.22533597052097320556640625 +-0.964120090007781982421875 0.1516304314136505126953125 +-0.407672882080078125 -0.747202455997467041015625 +-0.925523817539215087890625 -0.22627867758274078369140625 +0.870887458324432373046875 -0.68425071239471435546875 +0.21404083073139190673828125 0.545210421085357666015625 +0.693586528301239013671875 -0.3442490100860595703125 +0.824093341827392578125 -0.644731104373931884765625 +0.823360264301300048828125 -0.75961029529571533203125 +0.2354204654693603515625 0.07457892596721649169921875 +-0.70236623287200927734375 0.798114597797393798828125 +0.165234148502349853515625 -0.9032342433929443359375 +0.97355687618255615234375 -0.14477317035198211669921875 +0.768693983554840087890625 -0.693098366260528564453125 +0.987324416637420654296875 0.8670673370361328125 +-0.910656452178955078125 -0.6916649341583251953125 +-0.49117743968963623046875 0.5009729862213134765625 +0.5118300914764404296875 0.900306522846221923828125 +0.729051649570465087890625 0.728107035160064697265625 +0.0049493177793920040130615234375 -0.73103427886962890625 +-0.43360805511474609375 -0.0459517650306224822998046875 +-0.12377624213695526123046875 -0.582557260990142822265625 +-0.24170674383640289306640625 -0.12977834045886993408203125 +0.49828255176544189453125 -0.2293120920658111572265625 +0.82317435741424560546875 -0.528832912445068359375 +-0.649873912334442138671875 0.103961043059825897216796875 +0.539859712123870849609375 0.753652274608612060546875 +-0.2390198409557342529296875 -0.94845354557037353515625 +-0.491964161396026611328125 0.7036397457122802734375 +0.22889702022075653076171875 0.22838653624057769775390625 +-0.036355197429656982421875 -0.4615724086761474609375 +0.56980717182159423828125 -0.3116194903850555419921875 +0.9350450038909912109375 0.0449726097285747528076171875 +0.0364827774465084075927734375 0.122862316668033599853515625 +-0.2696242630481719970703125 -0.73062074184417724609375 +0.90256774425506591796875 0.566955745220184326171875 +-0.725239455699920654296875 0.2963733673095703125 +-0.217841207981109619140625 0.98357689380645751953125 +-0.75418961048126220703125 0.87724411487579345703125 +0.22518612444400787353515625 0.832797110080718994140625 +-0.673653781414031982421875 -0.748446643352508544921875 +0.982393801212310791015625 -0.4146502912044525146484375 +0.2568968236446380615234375 0.22168593108654022216796875 +0.107383407652378082275390625 0.597869873046875 +0.865116655826568603515625 0.3029952943325042724609375 +-0.584667980670928955078125 -0.895775258541107177734375 +0.76153814792633056640625 -0.725051820278167724609375 +-0.659169971942901611328125 0.571797311305999755859375 +0.3814921081066131591796875 -0.428224027156829833984375 +-0.4906652271747589111328125 0.787499606609344482421875 +-0.1947246491909027099609375 0.24040661752223968505859375 +-0.617465198040008544921875 -0.88261353969573974609375 +0.2506249248981475830078125 -0.2917643487453460693359375 +-0.674241244792938232421875 0.3464788496494293212890625 +-0.82282245159149169921875 0.367927253246307373046875 +-0.123831011354923248291015625 0.64843165874481201171875 +0.2173642218112945556640625 0.939190387725830078125 +-0.45998513698577880859375 -0.30311048030853271484375 +0.2187678813934326171875 0.80210793018341064453125 +0.13607220351696014404296875 0.67937600612640380859375 +-0.15412424504756927490234375 0.86287009716033935546875 +-0.9084606170654296875 0.681882679462432861328125 +-0.475338995456695556640625 0.917927682399749755859375 +-0.1829970777034759521484375 -0.57056128978729248046875 +-0.523652970790863037109375 -0.3774133622646331787109375 +-0.541087687015533447265625 -0.3197855651378631591796875 +-0.816506445407867431640625 -0.1960084736347198486328125 +0.89193737506866455078125 0.0001476821489632129669189453125 +-0.967315137386322021484375 0.9354436397552490234375 +-0.28854978084564208984375 0.30488049983978271484375 +-0.683986365795135498046875 0.841837942600250244140625 +-0.921501696109771728515625 0.275337696075439453125 +-0.56874740123748779296875 -0.008134636096656322479248046875 +0.432201564311981201171875 -0.627395927906036376953125 +0.10460758209228515625 -0.4688930809497833251953125 +-0.2501873672008514404296875 -0.605081021785736083984375 +0.1409431993961334228515625 0.37965643405914306640625 +-0.589070618152618408203125 -0.42283642292022705078125 +0.74223816394805908203125 0.17014966905117034912109375 +0.938312530517578125 -0.790864646434783935546875 +-0.871235370635986328125 -0.608624398708343505859375 +-0.4732886254787445068359375 -0.952590048313140869140625 +0.18206535279750823974609375 -0.3809130191802978515625 +-0.0189060531556606292724609375 -0.810759007930755615234375 +-0.05471868813037872314453125 0.3372510969638824462890625 +0.341638743877410888671875 0.70273768901824951171875 +-0.790449321269989013671875 0.00232557416893541812896728515625 +0.1251651346683502197265625 -0.8652765750885009765625 +-0.682093679904937744140625 0.984546005725860595703125 +-0.3351657390594482421875 0.4352573454380035400390625 +-0.447323381900787353515625 0.2201066315174102783203125 +0.3105469644069671630859375 0.4820413291454315185546875 +0.0417246557772159576416015625 0.3112640380859375 +-0.37384593486785888671875 -0.353249490261077880859375 +0.22837479412555694580078125 -0.35356056690216064453125 +0.1930299699306488037109375 0.57798922061920166015625 +-0.2897911369800567626953125 -0.3622858822345733642578125 +0.0189159102737903594970703125 -0.918117105960845947265625 +0.9381160736083984375 0.8398406505584716796875 +0.901128947734832763671875 0.2262361347675323486328125 +-0.732393205165863037109375 -0.326444804668426513671875 +-0.48831069469451904296875 -0.925738155841827392578125 +-0.0442113019526004791259765625 -0.9627172946929931640625 +-0.4621396362781524658203125 -0.2586062252521514892578125 +-0.864935696125030517578125 0.19448335468769073486328125 +-0.2006737291812896728515625 0.4425852596759796142578125 +0.768210709095001220703125 -0.652643620967864990234375 +0.710291445255279541015625 -0.530731499195098876953125 +-0.907329976558685302734375 -0.41422939300537109375 +-0.3033309280872344970703125 -0.64835846424102783203125 +0.926109254360198974609375 -0.2975493371486663818359375 +0.73434054851531982421875 -0.1346453130245208740234375 +0.4060877859592437744140625 -0.7625138759613037109375 +-0.143367588520050048828125 -0.40029013156890869140625 +0.0393322594463825225830078125 0.658825695514678955078125 +0.43439924716949462890625 0.829722702503204345703125 +0.654169023036956787109375 -0.0595177523791790008544921875 +-0.792841374874114990234375 -0.192105829715728759765625 +0.3421337604522705078125 0.5789477825164794921875 +0.7453181743621826171875 -0.2989728152751922607421875 +0.20933602750301361083984375 -0.56111872196197509765625 +0.389144837856292724609375 0.659831941127777099609375 +-0.408539593219757080078125 0.4655201137065887451171875 +-0.1649837195873260498046875 0.520417273044586181640625 +0.3715805709362030029296875 0.97899532318115234375 +0.631627619266510009765625 0.371006071567535400390625 +0.86103832721710205078125 -0.4864426553249359130859375 +0.57097232341766357421875 -0.971133410930633544921875 +0.795143604278564453125 -0.54625284671783447265625 +0.445976793766021728515625 -0.0084618143737316131591796875 +0.383637845516204833984375 -0.4535133540630340576171875 +0.0189906619489192962646484375 0.14943943917751312255859375 +0.85237538814544677734375 0.854078948497772216796875 +0.536339104175567626953125 0.306661546230316162109375 +0.891046822071075439453125 0.4165384471416473388671875 +0.1692928373813629150390625 -0.9615726470947265625 +-0.97838509082794189453125 -0.4442953169345855712890625 +0.735282957553863525390625 0.441662847995758056640625 +-0.571324825286865234375 -0.0397454164922237396240234375 +0.383856236934661865234375 0.499679744243621826171875 +-0.845376074314117431640625 -0.613989353179931640625 +-0.795208990573883056640625 0.4552197158336639404296875 +0.97204875946044921875 -0.4458843171596527099609375 +-0.701495349407196044921875 -0.4367965161800384521484375 +-0.366854608058929443359375 -0.59438669681549072265625 +-0.63324058055877685546875 -0.83392512798309326171875 +0.710017025470733642578125 -0.76406657695770263671875 +0.2215308248996734619140625 0.71882212162017822265625 +0.099351964890956878662109375 -0.89154851436614990234375 +-0.2628350555896759033203125 -0.188071548938751220703125 +0.3587507307529449462890625 -0.2241264283657073974609375 +0.912667334079742431640625 0.7879974842071533203125 +-0.89772510528564453125 0.2816781103610992431640625 +-0.366364538669586181640625 0.1870396137237548828125 +0.884621679782867431640625 -0.18347419798374176025390625 +-0.51957929134368896484375 -0.982136309146881103515625 +-0.0763735473155975341796875 0.919197022914886474609375 +0.3810113966464996337890625 -0.03503894805908203125 +0.8707637786865234375 0.3834634721279144287109375 +0.153015434741973876953125 -0.957555294036865234375 +0.1479123532772064208984375 -0.1758606731891632080078125 +0.099478296935558319091796875 0.3310392200946807861328125 +-0.762366354465484619140625 -0.1387320458889007568359375 +0.103455431759357452392578125 0.75962889194488525390625 +-0.607009828090667724609375 0.3320515155792236328125 +-0.670016109943389892578125 -0.7619228363037109375 +0.698374688625335693359375 0.0231759659945964813232421875 +0.608745634555816650390625 -0.14783258736133575439453125 +0.2515461742877960205078125 0.57609951496124267578125 +0.26102447509765625 -0.8983380794525146484375 +0.2901282012462615966796875 0.12283806502819061279296875 +-0.448894560337066650390625 -0.0771892964839935302734375 +-0.904959738254547119140625 0.015918172895908355712890625 +-0.4607667028903961181640625 -0.117614679038524627685546875 +-0.7599546909332275390625 0.954440534114837646484375 +0.271862447261810302734375 0.63907682895660400390625 +-0.20464573800563812255859375 0.828886210918426513671875 +-0.912301123142242431640625 0.4741327762603759765625 +0.645213305950164794921875 0.701520442962646484375 +0.50523984432220458984375 0.240605413913726806640625 +-0.682504177093505859375 0.0431455075740814208984375 +0.0613390840590000152587890625 -0.503406524658203125 +-0.91344892978668212890625 -0.980110228061676025390625 +-0.4994080066680908203125 -0.794690310955047607421875 +0.957160055637359619140625 0.87524998188018798828125 +0.824070632457733154296875 0.053194291889667510986328125 +0.46887505054473876953125 0.3290088474750518798828125 +-0.55980336666107177734375 0.3875944614410400390625 +-0.03111081384122371673583984375 0.9362270832061767578125 +-0.9615342617034912109375 -0.24391792714595794677734375 +0.825141370296478271484375 -0.916438519954681396484375 +-0.567440330982208251953125 0.3551216423511505126953125 +-0.4389565289020538330078125 0.3789136409759521484375 +-0.579541862010955810546875 -0.4872737824916839599609375 +-0.4224612414836883544921875 0.75663959980010986328125 +0.3833213150501251220703125 -0.87735521793365478515625 +-0.963580191135406494140625 -0.01828563027083873748779296875 +0.87607443332672119140625 -0.907316267490386962890625 +0.979435384273529052734375 -0.0896623134613037109375 +0.6619799137115478515625 0.4988122284412384033203125 +0.6599886417388916015625 0.292407333850860595703125 +-0.910610616207122802734375 0.316108882427215576171875 +-0.5051753520965576171875 0.762217998504638671875 +-0.4440057575702667236328125 0.848459720611572265625 +0.930673658847808837890625 0.08364431560039520263671875 +-0.0674324929714202880859375 -0.0434595383703708648681640625 +0.19252215325832366943359375 -0.82286465167999267578125 +0.2958133518695831298828125 -0.501847088336944580078125 +0.5291454792022705078125 0.67639577388763427734375 +-0.897985517978668212890625 -0.062259018421173095703125 +-0.87345612049102783203125 -0.093940339982509613037109375 +0.32855522632598876953125 -0.905154705047607421875 +0.913652598857879638671875 0.4391083419322967529296875 +-0.50902521610260009765625 -0.459751904010772705078125 +0.953436672687530517578125 0.8683376312255859375 +0.24443899095058441162109375 0.235964596271514892578125 +0.001510530826635658740997314453125 -0.809986174106597900390625 +0.825691401958465576171875 0.4606278836727142333984375 +-0.69149363040924072265625 0.089476980268955230712890625 +0.99270915985107421875 -0.898963451385498046875 +-0.774586975574493408203125 -0.748033821582794189453125 +-0.2115809619426727294921875 0.117865361273288726806640625 +0.4896605908870697021484375 -0.789466440677642822265625 +0.708596289157867431640625 -0.1776203811168670654296875 +-0.43073689937591552734375 0.801687180995941162109375 +0.814696013927459716796875 -0.415684401988983154296875 +-0.3551236093044281005859375 0.849463045597076416015625 +0.4344914257526397705078125 -0.49625861644744873046875 +-0.030166514217853546142578125 0.810575187206268310546875 +-0.94888436794281005859375 -0.7276132106781005859375 +-0.031913697719573974609375 -0.30808353424072265625 +-0.4208880364894866943359375 0.4293562471866607666015625 +-0.596214592456817626953125 -0.92156541347503662109375 +0.32177639007568359375 0.05209799110889434814453125 +-0.272394597530364990234375 -0.4314535558223724365234375 +-0.21744048595428466796875 -0.747940957546234130859375 +0.449388325214385986328125 0.6217873096466064453125 +-0.943240702152252197265625 -0.1869021356105804443359375 +0.298732578754425048828125 -0.613935887813568115234375 +-0.05047051608562469482421875 0.570006549358367919921875 +-0.15968157351016998291015625 0.82362592220306396484375 +-0.38194739818572998046875 0.28603327274322509765625 +0.4272666871547698974609375 -0.296912372112274169921875 +-0.434923231601715087890625 0.101923607289791107177734375 +0.70925462245941162109375 -0.5204608440399169921875 +0.94311249256134033203125 0.00238280161283910274505615234375 +0.1972403228282928466796875 0.86293447017669677734375 +0.655567586421966552734375 -0.17406268417835235595703125 +-0.2387662827968597412109375 0.865710914134979248046875 +-0.5103733539581298828125 0.97240889072418212890625 +0.057823739945888519287109375 0.3975621759891510009765625 +0.530698239803314208984375 -0.72170364856719970703125 +-0.1629385650157928466796875 -0.4067516028881072998046875 +0.918631494045257568359375 -0.514136016368865966796875 +-0.18234388530254364013671875 -0.682099044322967529296875 +0.631902217864990234375 0.196023643016815185546875 +-0.15052251517772674560546875 -0.907373607158660888671875 +-0.3647297918796539306640625 0.933718740940093994140625 +0.113018445670604705810546875 0.16025127470493316650390625 +-0.431686341762542724609375 0.89402782917022705078125 +-0.517528593540191650390625 0.01579104550182819366455078125 +0.729018390178680419921875 0.086929224431514739990234375 +-0.59686577320098876953125 -0.667493879795074462890625 +0.931590378284454345703125 0.100423239171504974365234375 +-0.0641517341136932373046875 -0.841027319431304931640625 +-0.792813479900360107421875 0.6804487705230712890625 +0.658879220485687255859375 -0.88596689701080322265625 +0.075187824666500091552734375 0.54032266139984130859375 +0.2747242152690887451171875 -0.93471014499664306640625 +-0.0025570332072675228118896484375 -0.77565085887908935546875 +0.608255088329315185546875 0.4215780794620513916015625 +-0.2326377928256988525390625 0.759757936000823974609375 +-0.995295822620391845703125 -0.2188653647899627685546875 +-0.840470969676971435546875 -0.59674799442291259765625 +-0.52257931232452392578125 -0.8678562641143798828125 +-0.38689959049224853515625 -0.1066200435161590576171875 +0.513044297695159912109375 0.669599056243896484375 +-0.82293426990509033203125 -0.715856254100799560546875 +-0.18109123408794403076171875 -0.336874544620513916015625 +-0.57414495944976806640625 0.9961926937103271484375 +0.20739443600177764892578125 -0.0576110370457172393798828125 +-0.394023954868316650390625 0.034607909619808197021484375 +0.98860657215118408203125 0.040449194610118865966796875 +0.520787060260772705078125 -0.1730434000492095947265625 +0.608115136623382568359375 0.987813413143157958984375 +0.622269570827484130859375 -0.730918943881988525390625 +0.744312345981597900390625 -0.90989148616790771484375 +-0.517891228199005126953125 0.854820549488067626953125 +-0.16665689647197723388671875 0.984287261962890625 +-0.80755388736724853515625 -0.309644043445587158203125 +0.945411860942840576171875 0.1330300867557525634765625 +-0.797153055667877197265625 0.15008978545665740966796875 +-0.72547054290771484375 0.2808636128902435302734375 +0.046868510544300079345703125 0.64839541912078857421875 +-0.689215600490570068359375 0.023859106004238128662109375 +-0.871832549571990966796875 0.66408193111419677734375 +0.045946829020977020263671875 -0.90283358097076416015625 +0.0253592766821384429931640625 0.33273422718048095703125 +-0.4211227893829345703125 0.103342533111572265625 +-0.58435642719268798828125 0.93959987163543701171875 +-0.0374719798564910888671875 0.562298476696014404296875 +-0.654338359832763671875 0.1397700607776641845703125 +-0.36588764190673828125 -0.3981668055057525634765625 +-0.233316123485565185546875 0.7542285919189453125 +-0.82884013652801513671875 0.563909113407135009765625 +0.23814828693866729736328125 0.646746695041656494140625 +0.0271320827305316925048828125 0.0051537998951971530914306640625 +-0.4148582518100738525390625 0.3872419893741607666015625 +0.619720041751861572265625 -0.2457738220691680908203125 +-0.6537227630615234375 -0.233348846435546875 +-0.17271077632904052734375 -0.78418600559234619140625 +-0.015595027245581150054931640625 0.571576058864593505859375 +-0.55762183666229248046875 -0.8817212581634521484375 +-0.11089853942394256591796875 0.648242771625518798828125 +0.48171627521514892578125 0.75425434112548828125 +0.91870129108428955078125 -0.94835662841796875 +0.3710875213146209716796875 -0.943231403827667236328125 +-0.8345339298248291015625 -0.012163554318249225616455078125 +-0.454649627208709716796875 -0.13900129497051239013671875 +0.73986136913299560546875 -0.957855224609375 +0.804991185665130615234375 0.5184085369110107421875 +-0.67462062835693359375 -0.613960087299346923828125 +-0.299141228199005126953125 0.44835484027862548828125 +0.563580930233001708984375 0.3592252433300018310546875 +0.987156331539154052734375 -0.08653913438320159912109375 +-0.86965847015380859375 -0.7036716938018798828125 +0.02238922007381916046142578125 0.07018375396728515625 +0.566857993602752685546875 -0.2344097793102264404296875 +0.4000356197357177734375 0.883771479129791259765625 +-0.606783807277679443359375 -0.4785631597042083740234375 +0.395646154880523681640625 -0.747721374034881591796875 +-0.09805499017238616943359375 0.15331120789051055908203125 +0.10886299610137939453125 0.455554485321044921875 +-0.91213548183441162109375 -0.806488573551177978515625 +0.16460521519184112548828125 0.83230483531951904296875 +-0.574470818042755126953125 0.878939151763916015625 +0.67933380603790283203125 -0.52493190765380859375 +-0.937918365001678466796875 0.3501198291778564453125 +-0.620704710483551025390625 0.323190212249755859375 +-0.596135437488555908203125 -0.23901779949665069580078125 +-0.808000266551971435546875 0.4447372257709503173828125 +-0.665529668331146240234375 -0.270874917507171630859375 +-0.4635436534881591796875 0.759240090847015380859375 +-0.223916828632354736328125 -0.54037511348724365234375 +0.307629764080047607421875 0.847053229808807373046875 +0.073525734245777130126953125 -0.566021144390106201171875 +0.568895280361175537109375 -0.251186668872833251953125 +0.178952872753143310546875 0.88673627376556396484375 +-0.748961389064788818359375 0.951596915721893310546875 +0.1541506946086883544921875 0.611769020557403564453125 +-0.1937255859375 0.252240955829620361328125 +0.48659503459930419921875 0.401562035083770751953125 +0.0505248010158538818359375 -0.35312235355377197265625 +0.372872412204742431640625 0.0599931180477142333984375 +0.851054668426513671875 0.3309974372386932373046875 +-0.70925199985504150390625 -0.3618459999561309814453125 +0.393443167209625244140625 0.970158278942108154296875 +0.908798754215240478515625 -0.766930282115936279296875 +0.139909446239471435546875 -0.28665769100189208984375 +0.5518786907196044921875 -0.97403132915496826171875 +0.15528996288776397705078125 0.827065527439117431640625 +-0.975749790668487548828125 -0.3476177155971527099609375 +-0.909979760646820068359375 -0.3000425398349761962890625 +0.2294790446758270263671875 0.684350073337554931640625 +-0.926867783069610595703125 0.28896749019622802734375 +-0.76681053638458251953125 0.2483322918415069580078125 +0.833770334720611572265625 0.9331035614013671875 +0.281731903553009033203125 0.0240151546895503997802734375 +-0.68550240993499755859375 -0.765766620635986328125 +-0.617766082286834716796875 0.85709249973297119140625 +0.3827701508998870849609375 0.15199382603168487548828125 +-0.4403728544712066650390625 -0.191692173480987548828125 +0.02499323897063732147216796875 0.992783367633819580078125 +0.79720020294189453125 -0.275135517120361328125 +0.108705200254917144775390625 -0.631463468074798583984375 +0.9879229068756103515625 -0.26897180080413818359375 +-0.072589211165904998779296875 0.919394969940185546875 +0.311628043651580810546875 -0.0059813014231622219085693359375 +-0.3404779732227325439453125 0.7529423236846923828125 +0.917901337146759033203125 -0.643234193325042724609375 +-0.678425312042236328125 0.063002340495586395263671875 +0.21198518574237823486328125 0.836401164531707763671875 +-0.944505393505096435546875 0.4639364182949066162109375 +-0.717792332172393798828125 0.58602988719940185546875 +0.369837701320648193359375 -0.892718791961669921875 +-0.111899755895137786865234375 0.644505977630615234375 +0.22406136989593505859375 0.17036831378936767578125 +0.53953135013580322265625 -0.987881362438201904296875 +0.33536016941070556640625 -0.3712385594844818115234375 +0.644141256809234619140625 -0.063006542623043060302734375 +0.6403315067291259765625 0.71327507495880126953125 +0.0623099394142627716064453125 -0.52584552764892578125 +-0.94548094272613525390625 -0.567126691341400146484375 +0.18350456655025482177734375 0.843868076801300048828125 +-0.58807551860809326171875 0.20244328677654266357421875 +0.674004852771759033203125 0.638720095157623291015625 +0.14418017864227294921875 0.09515757858753204345703125 +0.114815644919872283935546875 -0.2641020119190216064453125 +-0.905399382114410400390625 0.741640388965606689453125 +0.6707990169525146484375 0.78938782215118408203125 +0.970325648784637451171875 0.980082035064697265625 +-0.3346164524555206298828125 0.929430902004241943359375 +-0.6197497844696044921875 -0.80292212963104248046875 +0.73385703563690185546875 -0.74916112422943115234375 +-0.5860607624053955078125 -0.3690334856510162353515625 +-0.866303145885467529296875 -0.51289272308349609375 +0.871138155460357666015625 -0.981525123119354248046875 +0.970037281513214111328125 0.52074396610260009765625 +-0.16407556831836700439453125 0.7854397296905517578125 +-0.646795690059661865234375 0.524247586727142333984375 +-0.49482548236846923828125 -0.687009394168853759765625 +-0.980128824710845947265625 0.712966859340667724609375 +0.530418932437896728515625 0.4824903309345245361328125 +0.037979878485202789306640625 -0.624494731426239013671875 +-0.767220556735992431640625 0.4595384299755096435546875 +-0.1700067222118377685546875 0.3819846808910369873046875 +-0.335169613361358642578125 -0.29656302928924560546875 +-0.888631880283355712890625 -0.293765962123870849609375 +-0.134811103343963623046875 -0.744837462902069091796875 +0.639165937900543212890625 0.64029490947723388671875 +0.62176549434661865234375 0.0329474098980426788330078125 +0.3889947235584259033203125 0.3951523602008819580078125 +-0.632993161678314208984375 -0.84823894500732421875 +0.2295870482921600341796875 0.930137932300567626953125 +0.96474754810333251953125 -0.560725390911102294921875 +0.010451036505401134490966796875 0.3698136508464813232421875 +-0.24748836457729339599609375 -0.4972121715545654296875 +-0.1371867954730987548828125 0.572367489337921142578125 +-0.125619947910308837890625 0.7024943828582763671875 +-0.542155206203460693359375 -0.880473196506500244140625 +-0.6699883937835693359375 0.0490017272531986236572265625 +0.0364554263651371002197265625 -0.4539881646633148193359375 +-0.818482577800750732421875 0.50381767749786376953125 +-0.649878799915313720703125 -0.9832713603973388671875 +-0.8369045257568359375 0.1740571558475494384765625 +0.25808417797088623046875 -0.3974122107028961181640625 +-0.656457126140594482421875 0.22883506119251251220703125 +0.699533760547637939453125 -0.198373734951019287109375 +-0.22167909145355224609375 0.71873569488525390625 +0.11711959540843963623046875 0.880292415618896484375 +0.4857114255428314208984375 0.374884665012359619140625 +0.78636455535888671875 -0.960490763187408447265625 +0.16360346972942352294921875 0.980615437030792236328125 +0.819631874561309814453125 -0.292867720127105712890625 +-0.63443982601165771484375 -0.358665168285369873046875 +-0.5225849151611328125 0.008959810249507427215576171875 +-0.3869948089122772216796875 0.536448001861572265625 +-0.14057482779026031494140625 -0.3835181891918182373046875 +-0.110555171966552734375 -0.08127237856388092041015625 +-0.0517435967922210693359375 -0.3530977666378021240234375 +-0.43660843372344970703125 0.06805060803890228271484375 +-0.539734661579132080078125 -0.4577992856502532958984375 +0.8084762096405029296875 0.18455804884433746337890625 +0.21998785436153411865234375 0.2545349895954132080078125 +0.812070906162261962890625 -0.121651299297809600830078125 +-0.95184624195098876953125 0.035440333187580108642578125 +0.33723580837249755859375 -0.83201515674591064453125 +-0.5246946811676025390625 0.80866396427154541015625 +0.2583516538143157958984375 0.70713102817535400390625 +0.78461182117462158203125 0.625045716762542724609375 +0.64977347850799560546875 -0.921139776706695556640625 +0.4708508551120758056640625 0.44168961048126220703125 +-0.51078879833221435546875 0.963447093963623046875 +0.9861900806427001953125 -0.31672203540802001953125 +0.3460507690906524658203125 -0.602541863918304443359375 +0.787524878978729248046875 -0.07969735562801361083984375 +0.039891473948955535888671875 -0.4156131446361541748046875 +-0.07579280436038970947265625 -0.4160176217555999755859375 +0.972056925296783447265625 -0.617185115814208984375 +0.7150828838348388671875 0.757080256938934326171875 +0.50528633594512939453125 0.1993438899517059326171875 +0.8747069835662841796875 0.439964115619659423828125 +-0.431037724018096923828125 -0.89868390560150146484375 +-0.11969201266765594482421875 -0.25318825244903564453125 +-0.051713861525058746337890625 0.3082154095172882080078125 +-0.06289951503276824951171875 0.4258078038692474365234375 +-0.009596855379641056060791015625 0.9721052646636962890625 +0.02588013745844364166259765625 -0.629037320613861083984375 +0.096937067806720733642578125 0.670320332050323486328125 +0.4693515300750732421875 0.579498469829559326171875 +-0.17625032365322113037109375 0.2326281070709228515625 +0.937239587306976318359375 0.974126160144805908203125 +0.867039859294891357421875 0.704600811004638671875 +-0.913811385631561279296875 -0.564508914947509765625 +-0.2179921567440032958984375 -0.0459545738995075225830078125 +0.60614168643951416015625 0.4698508083820343017578125 +-0.3350023925304412841796875 0.341024696826934814453125 +0.988392531871795654296875 0.4358855783939361572265625 +0.21450655162334442138671875 0.460723698139190673828125 +0.876715183258056640625 0.4867936670780181884765625 +0.797071039676666259765625 0.71738564968109130859375 +0.65826237201690673828125 -0.7074410915374755859375 +-0.77479016780853271484375 0.710066378116607666015625 +-0.60803878307342529296875 -0.827389180660247802734375 +0.697145164012908935546875 0.937358677387237548828125 +0.88917672634124755859375 -0.898805141448974609375 +-0.678971350193023681640625 -0.005905248224735260009765625 +0.33639633655548095703125 0.04647187888622283935546875 +0.98269557952880859375 -0.30954444408416748046875 +-0.708567321300506591796875 -0.501415252685546875 +-0.4090327918529510498046875 0.927828848361968994140625 +-0.79572975635528564453125 0.51373291015625 +0.961012542247772216796875 -0.579929769039154052734375 +-0.924573421478271484375 -0.96412384510040283203125 +0.4606282711029052734375 0.861189424991607666015625 +0.3996732532978057861328125 -0.730925500392913818359375 +-0.618284702301025390625 -0.817951381206512451171875 +0.703580081462860107421875 -0.562805652618408203125 +-0.4792263805866241455078125 -0.456116259098052978515625 +0.9174535274505615234375 0.19891922175884246826171875 +-0.20871375501155853271484375 0.86203539371490478515625 +-0.6017863750457763671875 0.873544156551361083984375 +0.348378837108612060546875 0.698531448841094970703125 + +-13.92314741118408719667067765686655091436318617093802625032082658 -15.13117638321403974388628303284817289359852773835843127426635478 +17.41269178327132471915818283937266515610678769430425315455403831 -15.45355702599626770737975396911518177689546449948065563125871546 +-26.74237265907932523365087806256460509968923805599413213470070891 30.51199910495036797645430615577061109120535162091654703199900826 +-8.877105884743258953652575723447865873164424940923130393206723258 24.64922365900823826278761820116155314359853399081013910985634533 +-17.26761213602862346785663937459461371177730122637146448238288769 8.275814089705889246316125857199255509452669812390299810510302456 +-7.347009923684190906243173765954850594735454803774340176011481058 -21.06030000218307641682322986226159259460617840931559884817793010 +37.84883818625160665992535123626073644336831528340067958695199430 -11.34229612185966106735009441322035432813091558903012489474888573 +-14.12526211186407411070134417882013773338677169007642868881411460 11.67435396812359595880077823527398471516652881149019134324407833 +-31.46970383192454169365256543796430458537373231541168723233845521 2.744554509688952777607688234868971653680370235260990520931115559 +-33.57004823947653494232358878942892818533038409719680541303956832 -24.40660362551385608602958955416337272866755963319934343298398991 +-2.524299950544681074949062490478027368366885499036968800909289702 -8.781315033208497161339557158429655074149251399193989192292113011 +-1.129631374600852597201872028523653488453825505158457546343583868 55.88207628172807489948628349266309439316638433094623713282621092 +-12.52720143110444869472514701114678707330413269354688929412386843 11.03151901475448856705891086223854602277531908682233109969300628 +-15.15103133560084168367556837527792154898445272519757659464512200 21.08682996962346885799972289279350703064392081570272853146892468 +-7.209967675899197025826352997353330763615157466885465145092852220 -3.764840858660045006695439441320177464121409469904572306693598660 +16.34974550471550469897195145025400978900968189403875603772593844 -7.197795661643319564769395825561124473787717206799692378216285214 +-7.326701439578587317690751190585046740568402766560186770071838962 23.10425431682710264185998207326931478782640501998248470005799044 +0.6476870349583592162117214859119255395344435465050235539921050665 11.24312108712872364812449762916545029793143315246808732713121704 +32.10976593334522201567985265897910850926953563890703218432470902 10.20818613821376451294002961326676478666699950443807601369678696 +-7.280557973169287611826377526548357540543829199955878559421046877 20.98802312509492862427576711540887084923330926329101010336276329 +-32.99505033525801094244339559482157967924000767920247285700011842 -7.831450869701241370793596261069391360643107932660527168942326878 +1.980239800256554231155024412483830510543885470228059365636300187 4.630503279780069427038047871053062137165144152130761559492912448 +-13.14634318745376219349973363688517256629900231382636402085187112 4.017586615200100523867827663658175030031712951871199774049626539 +-28.44494994651496403715562140671488663878888713375541102091554409 20.35168321793318795427981406252071541227530133123285069382888203 +-27.91023610150868768125610490792083001797861968221102888360090475 6.777845976735582909527028802730263367094367632035691458314728366 +-16.76086586827854153714312339858169308511209298508101664193716250 -29.00672522206261775964924903947263328797736205350416330544617870 +-31.84256465004577873226514435027645765566686695793383741023183546 1.871247294408362664590381170606097106657659182861189062140639844 +11.56574219750048927333116054749351351381682812350654679260614494 14.90846000349252918790403322184919876523229025456894485457449178 +-11.16896672284208867678624852530580463388915694544463793503476500 0.2370553020394149633664513744113813856632680596099973713152132133 +-25.50816595587326732205458093193366760699216134585861850889862717 6.072300928401744456479649265392567406167731400933984069957424200 +-21.46268860079873300167346311268938773780592154551111133614201230 -30.71943808316357875636485753090558362389310165317784585634244707 +-2.574055427606653775105395960945593768004692829194694473635167594 -15.30835587508882102387185202057396137913446624052139550044235656 +-11.78835224512405470968138327025078219100827591666041222459317956 -3.241650141682838086487628562870703052309509119680585562712463335 +-6.774018960210018498203177232535853528377893351560679237175282715 -21.62933992773197263253167810508883422245962308413393644397084283 +-8.945460809238912853379683195406904679549727027010067912612487649 12.50406365164575191530365796555016490318393201832598376512259645 +-2.785778635004418769867272086781971666620314698769540388884590692 7.673915447164644986448362982086311424746752807152154103287772392 +-14.31551509703328409577299850249648995139401785317177338957788259 5.228588769979122992596085800993183669280310502613217892186743790 +15.85271205162317843047799218102122946922604635259945670132451485 -15.63560897164484201829276521733968650149604882819827819610873882 +0.3814522427845990805235982679503111007850046748301634090599295318 -1.969902158283186078036471454608493952834234998384274813738917991 +-13.84421179520386205802843764137436335835552733225275729933553115 0.4492838031273231780291053321302620152439424528822710446161161274 +-2.569254924870546129317847205019749605851230457021089540184362544 -19.45486984459153609623123649875181585686290079987601095491495531 +-0.2116786957177819225743261371330601155224396434264905651609973321 16.64952695393359846162730289931584966089266378667761813309301215 +-17.82659334736265125701364050765940879118118792786161439121729510 13.88369929793635177184453034716402254082103653815611346777189136 +8.819371666195127064252024575382480979679204015338315029005640234 22.92222777337043549222995187962338816583893711129200142871209554 +-13.03527019201107198978911503277496953006925364350698617604968738 -4.342104780667865213922587146706929941405520458978700040347551983 +-16.18864299031721407745801963049961341633330837993133362117415701 -12.85028445652278463603841024167598737685873718006012840556240814 +-7.142770658012911646691348386692201876185711850683883252411996121 -3.495092955258095409779395775007941626817858560707248987088436753 +-28.76776524715288615394911360992334800624457239261608032619212737 10.60450446504489741468769969659972365269475843617947744291068003 +3.765868267840016759477178399344748747298344142712557743735196243 -7.690955639592341380458022744648230701581821488610075220959964983 +-23.43053324666760440646590234348936792443769249909728936134338790 0.2056230733080549514995468699453688367374399014910365354270429025 + diff --git a/tests/data/nfft_1d_512_50.txt b/tests/data/nfft_1d_512_50.txt new file mode 100644 index 00000000..5a19c490 --- /dev/null +++ b/tests/data/nfft_1d_512_50.txt @@ -0,0 +1,621 @@ +1 + +512 + +50 + +0.41241323947906494140625 +-0.21536575257778167724609375 +-0.4288342893123626708984375 +0.3810662329196929931640625 +-0.3687086403369903564453125 +0.37647378444671630859375 +0.46259105205535888671875 +-0.03096302412450313568115234375 +0.10998027026653289794921875 +0.3514420092105865478515625 +0.2241802215576171875 +-0.42293179035186767578125 +0.070744536817073822021484375 +0.4086129367351531982421875 +0.4284131228923797607421875 +0.43440091609954833984375 +0.4865505993366241455078125 +-0.1835229098796844482421875 +-0.138554990291595458984375 +-0.050045430660247802734375 +0.485870301723480224609375 +-0.4988246262073516845703125 +-0.410219669342041015625 +-0.078855432569980621337890625 +0.1840828359127044677734375 +-0.08352468907833099365234375 +0.23177908360958099365234375 +-0.163596332073211669921875 +-0.24376200139522552490234375 +-0.2192619144916534423828125 +0.47247350215911865234375 +0.49200499057769775390625 +-0.2894830405712127685546875 +0.1841680705547332763671875 +-0.07133619487285614013671875 +0.2498519420623779296875 +0.097307704389095306396484375 +-0.24307675659656524658203125 +-0.013816754333674907684326171875 +-0.094684548676013946533203125 +0.024468719959259033203125 +0.2132489383220672607421875 +-0.101299755275249481201171875 +-0.4238289892673492431640625 +0.4910818040370941162109375 +-0.4199942052364349365234375 +-0.443721473217010498046875 +-0.306182801723480224609375 +-0.0379564203321933746337890625 +0.0168931484222412109375 + +0.767546594142913818359375 0.648726880550384521484375 +0.822788774967193603515625 -0.85891544818878173828125 +0.6002266407012939453125 -0.767850458621978759765625 +-0.702569544315338134765625 0.284292399883270263671875 +-0.988288342952728271484375 0.9487230777740478515625 +-0.51936113834381103515625 -0.254956901073455810546875 +-0.59812343120574951171875 0.46204507350921630859375 +0.4849205315113067626953125 -0.01161294989287853240966796875 +0.12384550273418426513671875 0.871901929378509521484375 +0.454726994037628173828125 -0.852986872196197509765625 +0.2667606174945831298828125 0.0417249388992786407470703125 +-0.5498988628387451171875 0.6983964443206787109375 +-0.96700227260589599609375 0.6097772121429443359375 +-0.588014423847198486328125 0.12500910460948944091796875 +0.110428392887115478515625 -0.813253462314605712890625 +-0.0515757165849208831787109375 0.56662750244140625 +0.02481257356703281402587890625 -0.280945837497711181640625 +0.393012702465057373046875 -0.67448270320892333984375 +0.012347965501248836517333984375 -0.19168834388256072998046875 +-0.5478494167327880859375 -0.12053211033344268798828125 +-0.1635417640209197998046875 -0.51893985271453857421875 +0.99940907955169677734375 0.26097548007965087890625 +0.141844570636749267578125 -0.0877203643321990966796875 +0.282728374004364013671875 0.0315455757081508636474609375 +-0.69671666622161865234375 0.96912920475006103515625 +-0.988363564014434814453125 0.001819558558054268360137939453125 +-0.1370390951633453369140625 -0.51405179500579833984375 +-0.76431906223297119140625 0.809909343719482421875 +-0.9771044254302978515625 -0.82394886016845703125 +0.96330726146697998046875 -0.924896419048309326171875 +0.2778289020061492919921875 0.00512280501425266265869140625 +0.55775058269500732421875 0.531694889068603515625 +-0.825030863285064697265625 -0.088016249239444732666015625 +-0.01998041011393070220947265625 -0.690135955810546875 +0.4486157000064849853515625 0.51898193359375 +-0.692480385303497314453125 0.177591621875762939453125 +-0.010936771519482135772705078125 -0.114270798861980438232421875 +0.4339528381824493408203125 0.20923508703708648681640625 +-0.412164390087127685546875 -0.126710355281829833984375 +0.6984560489654541015625 -0.62479197978973388671875 +0.6067445278167724609375 -0.4675064980983734130859375 +-0.890550434589385986328125 -0.081970982253551483154296875 +0.0323605351150035858154296875 0.453970491886138916015625 +-0.878510534763336181640625 -0.744080007076263427734375 +-0.202445924282073974609375 -0.682257592678070068359375 +-0.071883819997310638427734375 -0.661194860935211181640625 +-0.821481883525848388671875 -0.5787765979766845703125 +0.26994049549102783203125 0.725924193859100341796875 +0.23982580006122589111328125 -0.0166527889668941497802734375 +0.409084260463714599609375 -0.13321773707866668701171875 +-0.24794542789459228515625 0.682756125926971435546875 +0.653477251529693603515625 0.69998681545257568359375 +-0.847339451313018798828125 0.109506428241729736328125 +-0.09060831367969512939453125 -0.7763092517852783203125 +0.711411178112030029296875 0.40651953220367431640625 +-0.9078006744384765625 0.8647906780242919921875 +-0.73095142841339111328125 -0.662479937076568603515625 +-0.4638189375400543212890625 0.2542924582958221435546875 +0.861066758632659912109375 0.012916155159473419189453125 +0.739001095294952392578125 -0.4271689951419830322265625 +-0.4220071732997894287109375 -0.45235550403594970703125 +-0.1450998485088348388671875 0.58337497711181640625 +0.906785905361175537109375 0.0775917470455169677734375 +0.012104424647986888885498046875 0.396593749523162841796875 +0.508397996425628662109375 -0.415698528289794921875 +0.9303569793701171875 0.992056787014007568359375 +0.925483286380767822265625 -0.740542352199554443359375 +0.059513978660106658935546875 -0.74272668361663818359375 +-0.14670954644680023193359375 -0.985521793365478515625 +0.066296525299549102783203125 0.346934616565704345703125 +-0.74503040313720703125 0.39266431331634521484375 +-0.6595728397369384765625 -0.279906809329986572265625 +0.473181426525115966796875 0.516332566738128662109375 +0.773962438106536865234375 -0.699715197086334228515625 +-0.4582717716693878173828125 0.1823426783084869384765625 +0.3298977315425872802734375 -0.9805681705474853515625 +0.199990212917327880859375 0.65967977046966552734375 +-0.2828271090984344482421875 -0.2077356874942779541015625 +-0.633996307849884033203125 0.15586592257022857666015625 +-0.67964899539947509765625 -0.8643982410430908203125 +-0.3032658398151397705078125 0.3794343471527099609375 +-0.11659671366214752197265625 -0.288879871368408203125 +-0.12875969707965850830078125 0.66912329196929931640625 +0.923230588436126708984375 -0.381391108036041259765625 +0.554678261280059814453125 -0.6814405918121337890625 +-0.9907186031341552734375 -0.9304294586181640625 +0.5702521800994873046875 0.771811544895172119140625 +0.21741305291652679443359375 -0.31357574462890625 +-0.68495881557464599609375 0.9563243389129638671875 +0.1538735330104827880859375 -0.00616574101150035858154296875 +0.86865699291229248046875 -0.4065983593463897705078125 +0.76714122295379638671875 -0.03109083138406276702880859375 +-0.638175785541534423828125 0.3813366591930389404296875 +0.782206475734710693359375 0.27179610729217529296875 +0.9954698085784912109375 0.952629864215850830078125 +0.1031647026538848876953125 0.2718857824802398681640625 +-0.988017380237579345703125 -0.45552051067352294921875 +-0.822085559368133544921875 -0.35320889949798583984375 +-0.938662111759185791015625 0.9769976139068603515625 +0.902202188968658447265625 0.4198036491870880126953125 +0.909308612346649169921875 -0.557363092899322509765625 +0.4941605627536773681640625 -0.772411406040191650390625 +0.423565089702606201171875 -0.69196021556854248046875 +-0.715906798839569091796875 -0.72896993160247802734375 +0.679850995540618896484375 0.754482805728912353515625 +0.528834640979766845703125 -0.098553292453289031982421875 +0.7170941829681396484375 0.277035653591156005859375 +-0.2505569756031036376953125 0.4739848673343658447265625 +-0.19726352393627166748046875 0.584788262844085693359375 +-0.61764490604400634765625 0.069053567945957183837890625 +-0.3331649601459503173828125 -0.2071339786052703857421875 +0.233547270298004150390625 0.754913628101348876953125 +0.58069002628326416015625 -0.2522071897983551025390625 +0.3582155406475067138671875 -0.4725748002529144287109375 +0.814945399761199951171875 -0.475191533565521240234375 +-0.642696797847747802734375 -0.571020185947418212890625 +0.948721945285797119140625 0.36535489559173583984375 +-0.42063415050506591796875 -0.848261654376983642578125 +-0.0644448697566986083984375 0.882452487945556640625 +-0.691563308238983154296875 0.765049457550048828125 +0.974770009517669677734375 0.772048056125640869140625 +-0.80136048793792724609375 0.4508157074451446533203125 +0.4359317719936370849609375 -0.263190925121307373046875 +-0.535896599292755126953125 0.36288917064666748046875 +0.26938402652740478515625 0.05747734010219573974609375 +-0.3532216250896453857421875 0.0106704644858837127685546875 +0.76909077167510986328125 0.818625032901763916015625 +0.4316591322422027587890625 -0.1625195443630218505859375 +-0.7682244777679443359375 0.27213573455810546875 +0.92254841327667236328125 -0.623666584491729736328125 +0.61098086833953857421875 -0.461410343647003173828125 +0.29782497882843017578125 0.740565001964569091796875 +0.801345527172088623046875 -0.335331857204437255859375 +-0.2376845180988311767578125 0.71064841747283935546875 +-0.799772799015045166015625 0.113426052033901214599609375 +0.968377649784088134765625 0.776337444782257080078125 +0.63118064403533935546875 0.0418858490884304046630859375 +0.013010430149734020233154296875 -0.112843878567218780517578125 +0.4557740986347198486328125 -0.561609804630279541015625 +0.2676137387752532958984375 0.67434537410736083984375 +0.587539017200469970703125 -0.371264994144439697265625 +0.2671782672405242919921875 -0.16746322810649871826171875 +-0.1277832090854644775390625 0.845441997051239013671875 +-0.9758446216583251953125 0.61607611179351806640625 +-0.649984419345855712890625 -0.586450159549713134765625 +0.3127926886081695556640625 0.85562217235565185546875 +-0.69984912872314453125 0.848506987094879150390625 +-0.98203265666961669921875 0.71240127086639404296875 +-0.1830737292766571044921875 0.751312434673309326171875 +-0.109862864017486572265625 0.75234282016754150390625 +0.18820740282535552978515625 0.097755260765552520751953125 +0.3365462720394134521484375 -0.4652965366840362548828125 +0.3228735625743865966796875 -0.220137119293212890625 +0.268686473369598388671875 0.0557211823761463165283203125 +-0.90253031253814697265625 -0.764888346195220947265625 +0.3852888047695159912109375 -0.502146303653717041015625 +0.297427117824554443359375 0.78975331783294677734375 +0.318822801113128662109375 0.46845209598541259765625 +-0.4632521569728851318359375 0.13538427650928497314453125 +-0.026591241359710693359375 -0.3534971177577972412109375 +0.34286558628082275390625 -0.834687173366546630859375 +0.3637686073780059814453125 0.3311789929866790771484375 +-0.3239104449748992919921875 -0.10750554502010345458984375 +-0.768568575382232666015625 0.0024032383225858211517333984375 +-0.76984488964080810546875 -0.532946169376373291015625 +0.754269182682037353515625 0.804367542266845703125 +-0.909239470958709716796875 -0.99069797992706298828125 +0.750809371471405029296875 0.534759223461151123046875 +0.57477915287017822265625 -0.403331100940704345703125 +-0.733966410160064697265625 0.22674180567264556884765625 +0.543884575366973876953125 -0.486098766326904296875 +0.558822929859161376953125 0.595543444156646728515625 +-0.687132179737091064453125 -0.5803048610687255859375 +-0.852436840534210205078125 -0.88096916675567626953125 +-0.4546197354793548583984375 -0.664217531681060791015625 +-0.6943562030792236328125 0.682304203510284423828125 +-0.2515219748020172119140625 -0.87996089458465576171875 +-0.083652354776859283447265625 -0.90995943546295166015625 +0.3099543154239654541015625 -0.0677442252635955810546875 +-0.82792890071868896484375 0.425173580646514892578125 +0.082427680492401123046875 -0.3464175164699554443359375 +0.2269900739192962646484375 -0.2862538993358612060546875 +0.8375742435455322265625 -0.011591651476919651031494140625 +0.821043312549591064453125 -0.96111810207366943359375 +-0.4226152002811431884765625 -0.087570421397686004638671875 +-0.94349157810211181640625 0.90260779857635498046875 +-0.141385257244110107421875 0.95242440700531005859375 +-0.448847472667694091796875 -0.2017563879489898681640625 +-0.23421667516231536865234375 -0.3098348677158355712890625 +-0.044536866247653961181640625 0.589471399784088134765625 +-0.09083497524261474609375 0.739625394344329833984375 +0.717919170856475830078125 0.17095686495304107666015625 +-0.640453398227691650390625 -0.51687824726104736328125 +-0.3062358796596527099609375 0.089183390140533447265625 +-0.56712925434112548828125 0.25600147247314453125 +-0.819938838481903076171875 0.1402241289615631103515625 +-0.554196774959564208984375 0.646212160587310791015625 +0.6971762180328369140625 0.51207458972930908203125 +-0.518274366855621337890625 0.7701938152313232421875 +-0.86557972431182861328125 -0.4407683312892913818359375 +-0.50244534015655517578125 -0.4004504382610321044921875 +-0.483301103115081787109375 0.3927840292453765869140625 +0.73034918308258056640625 0.78293502330780029296875 +0.5558049678802490234375 -0.82407379150390625 +0.814070224761962890625 0.029015637934207916259765625 +-0.4256398677825927734375 -0.15028135478496551513671875 +-0.29098737239837646484375 0.8480384349822998046875 +-0.24212686717510223388671875 0.946949899196624755859375 +0.68784892559051513671875 0.2639236748218536376953125 +-0.50821781158447265625 -0.991001546382904052734375 +0.21187375485897064208984375 0.009728773497045040130615234375 +0.1618888080120086669921875 0.13364578783512115478515625 +0.4040007293224334716796875 0.929544746875762939453125 +0.56877613067626953125 0.545816481113433837890625 +0.02618121914565563201904296875 0.3380019366741180419921875 +-0.771856486797332763671875 0.0335522480309009552001953125 +-0.0024339384399354457855224609375 -0.4521454274654388427734375 +0.4199283123016357421875 -0.801202833652496337890625 +0.499560654163360595703125 -0.792938768863677978515625 +-0.52740705013275146484375 -0.69557666778564453125 +-0.22858472168445587158203125 -0.508284270763397216796875 +-0.91189539432525634765625 0.5578434467315673828125 +0.465534746646881103515625 0.55685889720916748046875 +0.71197569370269775390625 0.296226918697357177734375 +0.071272909641265869140625 -0.65520465373992919921875 +-0.3768177032470703125 -0.9386146068572998046875 +-0.0975997745990753173828125 0.393335521221160888671875 +-0.59097301959991455078125 -0.05334188044071197509765625 +0.07121689617633819580078125 0.339164793491363525390625 +-0.88658130168914794921875 -0.7218468189239501953125 +-0.522250652313232421875 -0.107543043792247772216796875 +-0.53245508670806884765625 -0.67238366603851318359375 +0.12505458295345306396484375 0.4607433974742889404296875 +-0.4254024028778076171875 0.924295008182525634765625 +0.3559930324554443359375 -0.953913867473602294921875 +0.516699612140655517578125 0.2571016848087310791015625 +0.2870378792285919189453125 -0.72218000888824462890625 +0.4052536487579345703125 0.728959143161773681640625 +-0.689992249011993408203125 -0.9736092090606689453125 +0.7338798046112060546875 0.891559779644012451171875 +-0.213893353939056396484375 0.5370604991912841796875 +0.20850865542888641357421875 0.06683219969272613525390625 +0.758090794086456298828125 -0.2734097540378570556640625 +-0.3989739716053009033203125 0.21241770684719085693359375 +0.717761993408203125 -0.782940387725830078125 +-0.7861974239349365234375 -0.106895901262760162353515625 +-0.6956961154937744140625 0.644561469554901123046875 +-0.038486063480377197265625 0.9232692718505859375 +-0.717538356781005859375 -0.460161745548248291015625 +0.636459410190582275390625 -0.0635649859905242919921875 +-0.624907970428466796875 0.3379957377910614013671875 +0.7986323833465576171875 -0.9242613315582275390625 +-0.381461620330810546875 -0.565734922885894775390625 +-0.14443741738796234130859375 -0.48589670658111572265625 +0.487002789974212646484375 0.66459453105926513671875 +0.89380514621734619140625 0.6686666011810302734375 +0.576438367366790771484375 -0.6761019229888916015625 +0.4106630384922027587890625 -0.199396073818206787109375 +0.54902362823486328125 -0.92813432216644287109375 +-0.4824114739894866943359375 0.727225005626678466796875 +0.34278237819671630859375 -0.9262001514434814453125 +0.94116032123565673828125 -0.79354381561279296875 +-0.4089829623699188232421875 0.0674359798431396484375 +-0.283085167407989501953125 0.50286018848419189453125 +0.3547364175319671630859375 0.12986363470554351806640625 +-0.3087922632694244384765625 0.623550474643707275390625 +-0.9664790630340576171875 0.3652303218841552734375 +0.396705150604248046875 -0.7673609256744384765625 +-0.47249829769134521484375 0.14148695766925811767578125 +0.8647892475128173828125 -0.927486479282379150390625 +0.21212208271026611328125 0.8324115276336669921875 +0.538835227489471435546875 0.21145449578762054443359375 +0.94379079341888427734375 -0.610984027385711669921875 +-0.88172435760498046875 0.773491382598876953125 +-0.5065839290618896484375 -0.723474800586700439453125 +-0.0839839279651641845703125 -0.18997524678707122802734375 +-0.6831209659576416015625 -0.2538142502307891845703125 +0.4538527429103851318359375 0.92261660099029541015625 +0.3782165050506591796875 0.274774134159088134765625 +-0.425848305225372314453125 -0.0444869697093963623046875 +-0.2558668553829193115234375 -0.703974664211273193359375 +-0.833872139453887939453125 -0.254430115222930908203125 +0.83101832866668701171875 -0.769908905029296875 +0.6888372898101806640625 -0.9697666168212890625 +0.865845024585723876953125 0.97282159328460693359375 +0.8204438686370849609375 0.9851658344268798828125 +0.26484584808349609375 0.12340749800205230712890625 +0.605047702789306640625 0.682719528675079345703125 +0.1026678383350372314453125 -0.43001472949981689453125 +-0.1732425689697265625 -0.13328786194324493408203125 +0.832488954067230224609375 -0.23592947423458099365234375 +-0.1877628862857818603515625 -0.138671457767486572265625 +-0.562490522861480712890625 0.8119814395904541015625 +0.575299084186553955078125 -0.431972503662109375 +-0.0591383911669254302978515625 -0.17493413388729095458984375 +-0.905276358127593994140625 0.467736899852752685546875 +-0.753321170806884765625 0.074655234813690185546875 +0.66112434864044189453125 0.0328663624823093414306640625 +0.8138825893402099609375 -0.2843709290027618408203125 +0.5949230194091796875 0.60697209835052490234375 +-0.1823008358478546142578125 0.90958309173583984375 +-0.06507758796215057373046875 -0.785706102848052978515625 +-0.124136827886104583740234375 0.6012537479400634765625 +0.16949115693569183349609375 -0.826958835124969482421875 +0.659480988979339599609375 -0.502749383449554443359375 +0.2378108203411102294921875 -0.909341752529144287109375 +0.23153428733348846435546875 -0.6657516956329345703125 +0.3407991230487823486328125 -0.91194069385528564453125 +0.090655885636806488037109375 -0.092914618551731109619140625 +0.0585186593234539031982421875 -0.983114898204803466796875 +0.2057056427001953125 0.1986850798130035400390625 +-0.01897345483303070068359375 0.9508249759674072265625 +-0.4128389656543731689453125 0.238910198211669921875 +0.8083589076995849609375 0.20515321195125579833984375 +0.614783465862274169921875 -0.8459780216217041015625 +-0.0870316028594970703125 -0.05215160548686981201171875 +0.2562509477138519287109375 -0.4267316758632659912109375 +0.87096488475799560546875 0.188569545745849609375 +0.121849991381168365478515625 0.14085237681865692138671875 +0.3097272813320159912109375 0.4156266748905181884765625 +-0.896601021289825439453125 0.21613641083240509033203125 +-0.4901569187641143798828125 -0.19335840642452239990234375 +0.2407465279102325439453125 0.101820640265941619873046875 +0.03057706356048583984375 -0.966366350650787353515625 +-0.16847343742847442626953125 0.78346729278564453125 +0.3807075917720794677734375 -0.196555793285369873046875 +0.122318185865879058837890625 -0.6807863712310791015625 +0.2299678623676300048828125 -0.968962132930755615234375 +0.541858375072479248046875 -0.290632545948028564453125 +-0.462022304534912109375 -0.055174462497234344482421875 +0.504542052745819091796875 -0.520201861858367919921875 +0.9835469722747802734375 0.1697119176387786865234375 +-0.20072211325168609619140625 -0.27232754230499267578125 +0.05997835099697113037109375 0.752532482147216796875 +-0.005371895618736743927001953125 -0.3247511386871337890625 +-0.849228203296661376953125 -0.3126843869686126708984375 +0.693525969982147216796875 -0.999115645885467529296875 +-0.585914134979248046875 0.3111347854137420654296875 +-0.49664402008056640625 -0.604909837245941162109375 +-0.3848119080066680908203125 -0.0518311224877834320068359375 +0.37988102436065673828125 0.1595456302165985107421875 +-0.370364964008331298828125 -0.125626087188720703125 +0.4953503310680389404296875 -0.797697722911834716796875 +0.916581690311431884765625 0.729868948459625244140625 +0.19115747511386871337890625 0.015166066586971282958984375 +-0.1969840526580810546875 -0.030070967972278594970703125 +0.8727791309356689453125 -0.600101768970489501953125 +0.2677777111530303955078125 -0.16563685238361358642578125 +-0.095069654285907745361328125 0.437386572360992431640625 +0.22525630891323089599609375 -0.772032201290130615234375 +-0.289728641510009765625 -0.646059930324554443359375 +0.08373995125293731689453125 -0.270624339580535888671875 +0.780291378498077392578125 0.927431285381317138671875 +0.796939790248870849609375 0.594879627227783203125 +-0.171264708042144775390625 0.340341269969940185546875 +0.1556932032108306884765625 0.86238229274749755859375 +-0.20602099597454071044921875 0.68097674846649169921875 +-0.347784459590911865234375 -0.17588476836681365966796875 +-0.858369171619415283203125 -0.19564945995807647705078125 +0.27021312713623046875 0.3459146022796630859375 +0.4809152781963348388671875 0.06558929383754730224609375 +0.34473717212677001953125 0.5583670139312744140625 +-0.35391080379486083984375 -0.6965725421905517578125 +0.467244923114776611328125 -0.15932108461856842041015625 +0.780874073505401611328125 0.4037747085094451904296875 +0.782593071460723876953125 0.3315049707889556884765625 +-0.38814938068389892578125 -0.492199599742889404296875 +-0.93647062778472900390625 -0.776217997074127197265625 +0.5527813434600830078125 -0.0138266980648040771484375 +0.203841388225555419921875 -0.87109375 +-0.3688051402568817138671875 0.139469444751739501953125 +-0.22785036265850067138671875 0.876026093959808349609375 +0.8209536075592041015625 0.71590197086334228515625 +-0.32616388797760009765625 0.344532907009124755859375 +-0.66550004482269287109375 -0.3260202705860137939453125 +0.15671356022357940673828125 -0.79164981842041015625 +-0.911704838275909423828125 -0.591600894927978515625 +0.6131923198699951171875 0.912338554859161376953125 +0.87264955043792724609375 -0.558863461017608642578125 +-0.668771207332611083984375 -0.17446763813495635986328125 +-0.3839594423770904541015625 -0.4762101471424102783203125 +0.1280198395252227783203125 0.6503112316131591796875 +0.5393860340118408203125 0.966206848621368408203125 +0.4283510148525238037109375 0.363968372344970703125 +0.751782596111297607421875 0.727204144001007080078125 +0.3341381549835205078125 0.3642624318599700927734375 +-0.607961714267730712890625 0.723520696163177490234375 +-0.3316190540790557861328125 -0.011419921182096004486083984375 +0.20777173340320587158203125 0.3279783725738525390625 +-0.504460811614990234375 -0.057940639555454254150390625 +0.06294722855091094970703125 0.9453127384185791015625 +0.9902803897857666015625 -0.61509883403778076171875 +0.237665653228759765625 -0.591131627559661865234375 +0.4009130299091339111328125 -0.1748005449771881103515625 +0.3495840132236480712890625 -0.647234439849853515625 +-0.884462773799896240234375 0.14102156460285186767578125 +-0.69950258731842041015625 0.72590160369873046875 +0.4334255754947662353515625 -0.80400884151458740234375 +-0.2865165174007415771484375 0.16868750751018524169921875 +0.555957496166229248046875 0.624082088470458984375 +0.7573139667510986328125 -0.251325428485870361328125 +-0.7250940799713134765625 0.54327189922332763671875 +0.21738784015178680419921875 0.70652735233306884765625 +-0.614404618740081787109375 0.11391352117061614990234375 +0.18945591151714324951171875 -0.732959210872650146484375 +-0.530394852161407470703125 -0.0579102598130702972412109375 +0.5526697635650634765625 -0.3952191770076751708984375 +-0.514479160308837890625 0.815579712390899658203125 +0.7754781246185302734375 -0.949147880077362060546875 +-0.073970444500446319580078125 -0.618923604488372802734375 +0.556743085384368896484375 0.943076908588409423828125 +-0.911298930644989013671875 -0.583774387836456298828125 +-0.591264188289642333984375 -0.103480540215969085693359375 +-0.43488109111785888671875 -0.700049579143524169921875 +0.89039647579193115234375 -0.15328137576580047607421875 +-0.22131566703319549560546875 0.2405671179294586181640625 +0.75951611995697021484375 -0.06241734325885772705078125 +0.660085141658782958984375 0.795193612575531005859375 +0.63875484466552734375 -0.985287606716156005859375 +-0.46396505832672119140625 -0.698911190032958984375 +0.04267418384552001953125 0.32747042179107666015625 +-0.070475824177265167236328125 0.320927143096923828125 +-0.22341291606426239013671875 0.54853057861328125 +0.08913092315196990966796875 0.262902200222015380859375 +-0.0603307597339153289794921875 0.4875078499317169189453125 +0.111130297183990478515625 0.16534177958965301513671875 +0.681662023067474365234375 0.969589650630950927734375 +-0.4259065687656402587890625 -0.853938758373260498046875 +0.805881917476654052734375 -0.629536151885986328125 +0.20570059120655059814453125 -0.108475498855113983154296875 +-0.9220163822174072265625 0.1007522642612457275390625 +-0.236978709697723388671875 0.431368887424468994140625 +0.768385410308837890625 -0.0617206729948520660400390625 +-0.3152337372303009033203125 0.308257579803466796875 +0.857876956462860107421875 -0.02787339873611927032470703125 +0.604696214199066162109375 0.739428222179412841796875 +-0.904271781444549560546875 0.855318248271942138671875 +-0.28750050067901611328125 -0.14885662496089935302734375 +-0.848084867000579833984375 0.92522203922271728515625 +0.076013050973415374755859375 -0.790684223175048828125 +-0.4302608072757720947265625 0.857042133808135986328125 +-0.4391961395740509033203125 -0.15096984803676605224609375 +0.3962562084197998046875 0.2469942271709442138671875 +-0.3047574460506439208984375 -0.797912776470184326171875 +-0.3713614940643310546875 0.012768991291522979736328125 +0.620374739170074462890625 0.25211620330810546875 +0.17071603238582611083984375 -0.642257153987884521484375 +0.25015819072723388671875 -0.3740365803241729736328125 +-0.51369726657867431640625 0.107415519654750823974609375 +-0.09717769920825958251953125 0.785454213619232177734375 +-0.830003082752227783203125 -0.332302391529083251953125 +-0.4389490187168121337890625 0.113871105015277862548828125 +-0.302252113819122314453125 -0.965224742889404296875 +-0.991348564624786376953125 -0.967623770236968994140625 +0.074475415050983428955078125 -0.57937335968017578125 +0.52714216709136962890625 0.934996545314788818359375 +0.6859123706817626953125 0.794148862361907958984375 +0.890877425670623779296875 -0.43870770931243896484375 +-0.4912059009075164794921875 -0.978476464748382568359375 +0.5036070346832275390625 -0.69169437885284423828125 +0.65331113338470458984375 -0.6898686885833740234375 +0.2563144266605377197265625 -0.851780712604522705078125 +-0.4775497913360595703125 -0.250697672367095947265625 +0.12578456103801727294921875 0.6082899570465087890625 +-0.89395034313201904296875 0.962025225162506103515625 +0.20994345843791961669921875 -0.23033626377582550048828125 +-0.687419831752777099609375 -0.929443657398223876953125 +0.545264065265655517578125 -0.574229061603546142578125 +0.72891771793365478515625 0.19078350067138671875 +0.4784638583660125732421875 0.946960270404815673828125 +0.485884130001068115234375 0.15375737845897674560546875 +0.936555325984954833984375 -0.94957840442657470703125 +0.867520511150360107421875 -0.16818149387836456298828125 +0.130927503108978271484375 -0.71239411830902099609375 +-0.75801646709442138671875 -0.3911968171596527099609375 +0.022083796560764312744140625 -0.4305436611175537109375 +-0.642823278903961181640625 0.4440707862377166748046875 +0.020160250365734100341796875 -0.4903171360492706298828125 +-0.3946935236454010009765625 0.172407329082489013671875 +0.991285383701324462890625 0.27940809726715087890625 +-0.956233203411102294921875 0.9423148632049560546875 +-0.0467432700097560882568359375 0.77481091022491455078125 +-0.948904216289520263671875 0.675800025463104248046875 +0.50113046169281005859375 -0.3826862871646881103515625 +-0.622971475124359130859375 -0.8672769069671630859375 +0.74085557460784912109375 -0.99203503131866455078125 +-0.2717855870723724365234375 0.96298730373382568359375 +0.434726059436798095703125 0.867707729339599609375 +-0.573740899562835693359375 0.07946868240833282470703125 +-0.683360278606414794921875 -0.362253367900848388671875 +0.5349824428558349609375 -0.717766702175140380859375 +-0.761635720729827880859375 -0.8408067226409912109375 +-0.640052735805511474609375 0.082428283989429473876953125 +0.5620939731597900390625 0.65212833881378173828125 +0.114691793918609619140625 -0.305498540401458740234375 +0.861492335796356201171875 -0.567052304744720458984375 +0.377072811126708984375 0.090042628347873687744140625 +0.12772357463836669921875 0.10513268411159515380859375 +0.394257962703704833984375 -0.1727605760097503662109375 +0.4043827950954437255859375 0.562397480010986328125 +-0.849533259868621826171875 -0.968957245349884033203125 +0.0668874084949493408203125 -0.2111585438251495361328125 +0.27161371707916259765625 -0.178294479846954345703125 +-0.454650402069091796875 0.21279232203960418701171875 +0.5364663600921630859375 0.4583990871906280517578125 +-0.89780557155609130859375 -0.629144608974456787109375 +-0.623590767383575439453125 0.02392649836838245391845703125 +-0.571683824062347412109375 0.435378730297088623046875 +0.22679956257343292236328125 -0.780785977840423583984375 +0.433602750301361083984375 -0.88224828243255615234375 +-0.933821201324462890625 0.65986883640289306640625 +-0.7666072845458984375 -0.80446493625640869140625 + +9.763789553900991447381666706439305694774147344578679841418433794 -1.562694395490949362736455858908479688523990127648714571422434823 +21.59231596711371196038803498151098016793294658871967631309153488 9.853733963287705101417584602058051301333555211984337613487543487 +-0.9230970648068432136972517449294148887857714085710558226595952950 17.88302009107830445434727017366544798652662858556562613502281846 +-7.362843259390631110915941883213363663722989661326056947485692844 -24.28440551420260234863016392699960961701501237079359560958170833 +-10.37161951023149646953384270040647443587295593135559228200217751 6.938742101042580299602230501717515053825365808069004661276962857 +1.748961414309199952359934845234241677119428347681847405949027120 -15.99800845631898636459077063095950627759255464126391504488939917 +12.51449041264099763665889062833900264240012016064398157938848701 -5.191376043707511658365992472839849543582005579628511118774853560 +8.153774485869986697469839430689668589385145297409916080925621741 12.05795890597398379661113632205901515130431193965753040309491661 +0.7151681117769266061417768464904260994303801680262910256677770711 -0.4526746367263603182980952315798295179860440663848550317010088019 +6.154366242520164490211813960629467848810221074667226349927033583 11.69578337375819946261089801897090842124398606124250129046146218 +-15.13931387870296386241387512834068445622327394784245370218664474 2.322786318022992872004216206945080983536856281376021890481730737 +-3.877421962375144158490585353996002943841921652753759098448599417 8.388281360311179765475547236686403746193010755220331863282550759 +10.45828092001394856024834016741120105000827717686648663259977203 -13.53621592293363355138131708117153526138102378596212411775443721 +-19.05264206971126727263428581575548956774538171233559093145938200 -7.003965700783189631870105108078639430128933842293243120132759493 +2.431481377697510462013091338545299118212205101729780961418451172 25.06561646298728425363682136922861315497071351650645782167373719 +-1.903889854548144532446452559442110425489702713721783184942119022 12.35950973552992240703487947070260168775230075464252328074940425 +1.264454317955811837269246068016066020844675909099132382351346395 10.78265778636320996621680130449217668585116209980521469318211013 +-4.498204674986433068603950778114578913602051208265936217996640653 14.09586213286563071071538559982342377006949546838190163956420552 +-5.720760372184416194407038591494746002402099129526989153184606549 -9.739107641861814275021389112465412804561623537161334069938447040 +-0.4767058361551551362220365571943772846558096206092739365151593856 -2.061329517902025877945096262577351757337598225526008033808422674 +0.5177115950318631788088696624768351040522578653806696910619076631 3.433047656601335288988458389195168325649684606636156024563361096 +8.462169946760725701199186614212265870070443570873813806498441198 -2.024176829411718392637597069439065124499486448999049461524471994 +3.705110990958408795892558188970408170407404252483632577888836845 -15.72311151420251798240316311311378765531228539218606038843952892 +2.893527216165858662194129560174800462191410863651663026132134454 -32.83387646855215304800734750526285877872863559466329372359175878 +2.219645026447520287423208068498218852033618551668254199362836560 5.903575418154711973174137203262074781076076541304292899199580025 +20.87744489174889809792977219355447248243452112433963156189001162 -8.514033471880346330710110709296822304049787758592710057538989546 +11.83756094069749657104356493619368980985064226141409211960169860 -7.593030884549308229220072264834944084379978369773643012054142563 +7.787896045412489330923968676713494207948439064832792363222541502 -0.2530763150206474717256050155755146123584284669088231719123026623 +11.37440196456933709296543017647893290372068175523740727586456388 -15.84121636862215603017686256923387609831578776353437028428211930 +-15.85782213260060389462776628756790317322457809281783997626374705 -15.44593930298496222916101574550660650927933403946224420117638100 +-5.950974875530384224903654369960309248127853633087066167146111803 24.74926592333604684675893163743532340794904994751204229075501863 +13.91620578228417966378355395441844609384235458772523931308776759 -6.861627348153257165066001090866926932756146355120057224984959617 +6.494294862085348046067312213512053298001195217668674613750209604 -15.04780564124307510394368217127294693326413242744866488844853321 +1.287751608647886825824241373725036035386180881702496516960516379 5.138876688374322075313322794408254359802933627673621024031675807 +-13.82167161783170781652993811333711915688691775084779833101998640 16.98197277684582725684003583189932767074674844786673353642182121 +-14.75658744303698126121156400398129829468872544442246768913167072 -1.306716725895490921670591290874049076303476455990578972848469098 +10.58640371336977088185229862990481372901646189817217928710028742 -7.359400008505329103965896992599708064281586736594104304759366270 +22.05019725193296334742800666052458829841014842476058174727695467 -4.763773930734892575689755761733017829398476390203655008794746884 +-10.77906316868694476344915516347775871307833104746033392821009616 -3.781762739003041721362017696014719091328724569925874564366402702 +7.183560550947318289314019627530001123986248656288174592226745933 1.158957126535915235261382175039790208486811857897785396677678854 +16.44011452605550871254262387280068186672246291958565492703565395 -13.05720904227549536527054675538439276150104078666246553486825527 +6.334346131216753895125007000766797860192539028393536479797300543 8.710783820385190339617932822781035104054576940413024419385835918 +4.243799180874144663144148650625367390058275256027562607883644351 13.25400328382063810480315887615337751229465575736580637383414549 +-3.191944874916824230970688546120557307343339571696714233349186559 11.07873703626116625412160805894318665655610832286231114400902697 +-17.37211184614708247597346277760072394941773147281263617302326418 -26.97796072187606859556947330095900065381777297055564421571524980 +7.745071537038918182291598641495595335675549323555284510154340070 4.041058831424959865604970664503668633754593069118523455449655093 +-2.905533341616403498233361085855126302708338558065062879968541696 -30.69827424283091964015048064512001023225799996130617375647643573 +-5.643551337408923082848936616011013257333499120464714492777289326 14.63605120394162640069810633782216295922593501457167418294088248 +9.062423553707626336465375383892443519409811468296753574984319688 2.893082048176423722276237555600569762845815675541570695036145630 +-8.824303984841976903620872898357691196774567951461530505293269282 21.84068738694739776371810222528605999609004708954536778215165709 + diff --git a/tests/data/nfft_adjoint_1d_1024_50.txt b/tests/data/nfft_adjoint_1d_1024_50.txt new file mode 100644 index 00000000..75fba76d --- /dev/null +++ b/tests/data/nfft_adjoint_1d_1024_50.txt @@ -0,0 +1,1133 @@ +1 + +1024 + +50 + +-0.1654487550258636474609375 +-0.1615720689296722412109375 +0.038266360759735107421875 +-0.14247667789459228515625 +-0.0395152755081653594970703125 +-0.1457426548004150390625 +-0.20568621158599853515625 +0.117919147014617919921875 +0.08020533621311187744140625 +-0.2630841434001922607421875 +-0.2001725137233734130859375 +-0.23945467174053192138671875 +-0.14113046228885650634765625 +-0.0348619036376476287841796875 +-0.2528821527957916259765625 +-0.103797234594821929931640625 +0.4493182599544525146484375 +0.40104615688323974609375 +0.4224118888378143310546875 +-0.2860758006572723388671875 +0.0704176723957061767578125 +-0.001150332973338663578033447265625 +0.1584503352642059326171875 +-0.344078540802001953125 +-0.2742456495761871337890625 +-0.493012607097625732421875 +0.09514565765857696533203125 +0.3403203785419464111328125 +0.2269649207592010498046875 +0.0585223697125911712646484375 +0.4774616062641143798828125 +-0.29406917095184326171875 +0.4064628779888153076171875 +0.15052013099193572998046875 +-0.0568671189248561859130859375 +-0.2201162874698638916015625 +0.349321901798248291015625 +0.15282154083251953125 +0.12226898968219757080078125 +-0.0368886701762676239013671875 +0.18158672749996185302734375 +0.13434351980686187744140625 +0.48379802703857421875 +-0.383975088596343994140625 +0.3467083275318145751953125 +-0.0724945366382598876953125 +0.20174463093280792236328125 +0.02880634553730487823486328125 +-0.20544333755970001220703125 +-0.361320972442626953125 + +-3.471996788816538824625633158750302642676515790339612412773115320 -1.316412262872383463704138729157443834906201437053957949785162068 +-5.689020316416075245400659574600390648024675646062388947268914376 -1.990233020224439610519678855071181462204984751451775815694439750 +-3.199534704121050366293467481624937065481823300513159210277108274 1.351660744330407541925542176373440006876520819520706551131349381 +-3.411918535303038947325176063171744935232604389940629696736425339 -0.2231609477295943090362511125195306354907346571749618229891224075 +-3.617316248685598101951789062038858834971954469901995766970536689 -2.669890779965771254343648327936878622284045597261608310831724192 +2.434570058442317136154441822602385855937243940855415189665344061 0.3013149346358576063726860122343176497115787502195548443094899197 +-2.048527393346807546573731076322552794864476912300741982618405762 -4.376270542528550242338686158913457074052217172011905899892833230 +6.769189880806942056287330579332663114817017671439383983692332756 -0.05202782979136949085806259893943007403034416508021615480064755521 +1.492872291316507191428188886979869045704706434362148249802859831 2.161633674067540667751691013416739722248033902470782203100768307 +6.150634369254107335991100171373508862671378717768952289287739142 -0.5121319432643135522996438843636275660033962821820490809462087971 +0.06175908845981205216842950013119551282860095269870274070703955076 1.487318733217363792247967753605401368665804214667814068489338325 +4.725330767393437395961005208022156313881718860105627123392756113 -2.072935248633024994497666673147284321473695317677024872550237730 +1.424564855434130509410388392138313619764284479972078246220133824 5.420704934380425946350368650430440828545746847448840268278077831 +4.287944626019269049856537381092871003907051286387632228787082842 -6.313221953769451934709630855456409206686077285684211917686635691 +-1.323306749951609389028961688754267201488156570712350652049734527 -0.2055340888734420503921513540710309270820888512678563373722337143 +4.258474061978000949060232289601056102760850348414204069108899972 0.5929000364276786217472912890898678618077245324780275911918287882 +11.31970022734412853195392349083894376820129689530148457364231162 1.080942570764855476943665958057330525395586181129753972036194963 +3.375171211269951137537958979252284714385349824834626978482058335 1.794428109841657248716374684919824192041645472940679187626626635 +-3.221845430243473196029242799511225381755347390773918112363498753 7.392071175759887713770245750660897569706230525792088187068605684 +0.9673460745917426517433391769279230434965782381377521709521304737 3.075412119257889545828705859065831801033195903219129173867072061 +2.248304355362445277718077216457891461072636529722247241231763132 0.09931356576608141267044153945841516072723509608100396685862688958 +0.009667572957572641895210948265098914565962083847911649316323621914 -11.03503009549656835955738016672958095038200012945036776262123385 +-3.467098381803005086277221286191888607092201300270286323701790299 -1.455673977248626607338470466809067607998836986451496565590194465 +3.984598892800735257322681956561670682527452846895903809177596774 -0.9837695271819863433387765164565957538270662485607807614375740946 +8.489700595600055188077926388129393672489674050525851648633249413 -3.527076858350955807146253013994403377263824900125831061836599563 +-1.264446679007257800442093997621892823130053600384564020144072240 -0.1334864773164157136743270176688564278727056769346903409085814493 +4.834847199946508934212155293605824601807260958231137722422639212 7.314918903703668283259271353744234763371605902474191283170863501 +0.4451956260115656893364911529920578799862827500542982096221209236 -1.592500354831853292764699677068893055577623669914833427233947845 +-0.4104394836342429995553009194750459789043604141701519918475691805 -8.927110973736637410630891138436107450908005791658543466475031209 +-5.175474330561670959748661949639353347081493230144124113330257114 -2.965555725811879293819172408874750749904598315074324822882843646 +-4.869411456909759788445214784621235322201956160168885007326889779 -1.192889876702357014753416199384264061267320326333527308267513516 +-2.371334861511793025569504226363282047708489650079188972779302363 2.748427262237465386963208831928393221584857893400425690542283614 +-3.268543063049736242722313821620727262754534676907778486184502385 -1.096123084124979446133645803450856249285973407427030886410206578 +0.5095875008221796076754522713637204071648643542595277703584514964 0.3183813763932469885757533144398978623692893273224105248935035129 +5.915946520275265012756438558180776506892800705810654220788808885 -1.420404753971929279062058407278446567484195495723219143529214268 +-1.121237689479525524718335465235310015263046751563152559232396558 -1.018570245769653965852293895124572425882947159056657680481353436 +-1.670466742154360925607611467960616302796899568072954339810039647 1.500868863317107940191864605630340420439214672909234066941837366 +3.030228374792756599064595535632959338380736189242901038451943546 2.209333586974964175909125753561537073414173265745252979897415482 +6.868952900466168988333136464683214788431954704737522424249559715 -4.189491759473410966296015462200661001664624840601674141657811150 +1.829726684141732306621470626289467264593798455364107965228424469 1.189713985304044937256700145294428684550101584796260277487530478 +3.006790589289900041556702685044347898504992255423696394425563670 2.284381256484453360052336198445290310418501223277398374976507666 +4.930895548742084770885734016705537542152866607040058211293579519 6.192478471201115936473627464775506255530429356013138298116369656 +2.940638861652553977809118600033009108847166334804520058812641998 -5.197217111076170221692033879518498583790833071050447233906274747 +-1.292050905309098507770227756560292025108830460859341086030497900 1.698794577997505307390399306195576781789961568003461229307852723 +-2.882858649420019505783822171305799743238326973547058505890202270 0.6401396026030945490169400843871832899198519603819057587494530119 +0.8653261309040951211549118891173477689714913050850568605273920439 5.268708805270764474953004639357306072143019386939973880943100751 +4.705777632744873054893935527996859455281904625296592271038831511 -2.465462097532850077314768349404369097733187007453698482404883538 +7.528331206920506535896590172342865042320776296526245561024701751 -2.928282717621444015739769060017490704986022587750030798746536198 +-1.919120745935927363923630539351192585108470554118200647525285507 -9.218177407352932754932601849244038489081726918877732780189749283 +4.163085395618870557826290448303399897109753078632437468676335857 -0.8626630836470510365883461806965295610017784268051365147617779517 +0.7032540184353182313789484953068799713030280440093511512904270095 -4.054414472965452376601127860661633413753541746585843731479551575 +5.645235164449063714506862653818775795720914235607333277894889996 -1.781758115959672302871506564804685874230297438479404269343612644 +-1.961202655803612799732098540930243882119796749221570419310949600 -0.9913581410755150674067729984697294104954376626786170708143165762 +-1.832737358843870303233730881128821229353423703964404037342553924 -0.2161997306570235563020216813905388770908533846546851202488409117 +-1.199997923517511623236062230260707284996505330035299351416081358 -1.533859414008013813060137877188542178688639399588682739091343519 +2.828416796790604704553732034748668931226854519965799122995754652 -6.325188312192215774396276104676777326935625033497782149272001687 +-0.4814159062519930924158324804482603836006494839300755854921658745 -1.313285507459803588106812854823247203989796179382024099299667359 +2.790960431664157479706390499551104794499578469776961206982290782 -0.9585230345381775480140169341541986896631303948351698085227969577 +-2.913135903805363362277176490180731172140800072014206144658546068 -6.342394630789462352312871413075392583521199538111841640093110140 +-5.912838887819796268220085374119047028030701286655479465997378297 2.476956829496869988836961412831419220056464083966906618592604733 +-1.396439289542043984131672655510831863143265162087218775182475852 7.225098439871933390936011933990483071672787312233243249931975792 +6.727444276593710770713841752441188827775750398047458834689691495 4.954937312359099312929935831263655023814576296460432960995403262 +-0.9491144497267393185452094853607685735925204445670353642282443843 -0.3244450099256964506389286581913160400463622090135184032396039844 +-3.025332521949746663497960649823122532700064141069341992341136089 -7.532009368993749147314186914534768115351349529399293826952607417 +1.423826422683309147082883848993319395563055631090388682311827989 2.854107472077804234717216265872229239648515459851361886679456307 +8.034361973788818222906159716015035826728068802728440815196668591 -0.7349013938231362259460751177595358735357837845212733542856025961 +8.011980009651178319685477759601743345374080435062419431291814758 -0.3891202757650394991259228694107311575004012595588983662694156586 +2.337515028573704328735983773464602604407128916375202323094393418 3.514278687485993374268254028525671333440834810102255260960387111 +5.998854163664602561329804668350678026112942251756779902998396135 1.307872099965310823845041048218202871793923789754470676084314959 +-0.9997410174628903857092453147907047164947047635514753370867448085 2.361592742622889796960419251901335343132756317557851873231729896 +0.2911951525732323581312145221042434064643193545686406130511377279 2.845808386565376787003857440173935938699440188234228497883860946 +-1.767558881993240899340833441183424935478656657919802257581649390 -0.8159394892850193843479893583489625570603080446214706444321749975 +-5.644944841066304944887681298341571753183961682168167188502718541 -4.655628980283841268144732107991849294062284548878980085400112438 +-0.7391806855211661888638233551819967992807968761821930560001072281 -0.6661291503898559972815451739440559437021228544271630284004351604 +0.9072775251081682529624917477701023403214047674151497933708827793 5.393606847021831992101479086874947614741360984039791487704767820 +4.933441570520379578520916385654384989958001335331500171318707158 -3.188066189556971319125866885880601791138871212625388939775064959 +6.050089067768166599713499716995711552562486732524203451920767156 -5.249951326446463327563371567405143719873668526173513214505982512 +-5.663123310324584063973262292952676940189525409211737985679974976 -8.223504405828302459267413363425508786900487206131897266594440055 +6.423415259658249202322301858148079851828401118957771267274426413 -3.267133644314110607211248634020094951641519158012714271806524335 +-3.215687201459776745892186307444344018910985865286510781442793587 -2.278800876315436238106842302706933216659304610636712112218066259 +-1.342232329063237985464250348507704267849584516753070245262436768 -4.595763216531525932110985276326655634885625229089029848127945066 +-0.2579241031891025145230234043107952157262821724390485867034612646 -0.1679137431072395487406806907072910254070547288461463593673299655 +6.414403812708832551523244005186639066160169135270580328044428234 -7.330894183027054282908333727091367156544045262177511097748140002 +1.199678610199645642511847434046458462053816222615437995823541269 -2.194835951238480356632298812105939435817763910950473620093838350 +-0.7006330740669825566942612275704897938334551264541515729880746657 -1.651110938461372384404979505885062915934113334501136551464822952 +-0.4189063774602919288837278724162784163287472263120550956428664066 3.939272097525584637662724218433291728162273484813406688701222899 +-2.082139267077205222471031122932798002711028224628256368467161836 -2.619638257443026004499133989227009341298904404354850146496477428 +-3.962869153707337726348150593790501782788353250349551343133792390 -3.988391055495999583475041663221712551139174414396290499516950961 +-1.067744063449677914980055446407906783149773030105301137655546975 -0.7158102453006105014785054149141769268342242052581429055930207423 +-0.5663476616653673101770217418886934792165244511674498920082906564 -0.9699664598451750603868674161602756779483371245596491418946176721 +8.007812844372248959246415126548461806552320931226062938158004606 1.034549328344945397934136957860934523840344032909868371731891434 +7.876292288340792304146385845616958930287822278565948116424323044 7.332751753480911931358227131797323115877853544854388911849432042 +3.691134352032732701044957814398634508045858732421636312989504421 0.4065270550483123836182787690200209499684505220760910996290084392 +-0.1387529371188587873881863105276708511120644611919875820895785996 1.579214432649115816186662441456206220465538561021553973100601966 +-5.083683377233544422923732688107672229310785474709753858338116926 1.853281465451631191990593744504417512200327240272208511940351506 +2.621287855956643383828445828870045960432896631902637154784585029 3.373109729049217946343461131936828383715427681110988931693576408 +10.57217453632786405342005870210118067383146425824691510533865776 -0.6228823616929472066204470199222137773558162666157501316442307246 +2.092484814679134566478675631245294401409362546567573966436096874 -6.977965250765949823439068668491673993634442042525012065684748639 +-1.601003446478992215934426323573964236955548372327940668918244556 -1.120295603554018052720013800643883739158506561734568497424441723 +3.788873379456925558170492764052787299206446313071998627624936534 1.773393237879756026183148068952552013253904170582078653994769387 +1.248434561485166299368034744617182921258974844362217306895742797 2.663917914434318768893742568077949974411939277026195735931535773 +-4.229020783548369692034785452972678505304662843468415758154269363 0.5639436254925761141739841959206899826611423330176019306466423616 +-3.743212730736622974492003582912841401227004776713299298422601065 -0.6111239936408212292860257446673484350990827590683657278601082768 +-2.492509652637785419517787604705867293686990820328664468676847912 0.2547575567503058921231196613755358128426465779843295855290244745 +6.096467097775225828638100005710180517703195929604451096972371906 -3.828882959759702830540574336302543441435410405709159300302932352 +3.870492927913976410596607764918531711504945107420898709205679508 -5.803926691079326774939554574961389396089914269453721457319222442 +-3.380447731529442172474361760725280102428043716589121143482989843 -2.943944961383836752875521933990652105480461939680813546076819013 +-4.531027492429649860324988762032304252491734979689216924913779345 -11.19673348945390768259524669027354407245087411714373309452611748 +-4.913440185630047499753309779505416841553635623529409885382536446 -6.057161094320185957034246422857572351519129817281130274385430950 +-2.460978643583001850451454835910693353904201790051240553321346719 1.247517554664322077897067068366612473070091420952002241563945803 +7.364527055479741865966261794759443552581680271573034744174935858 0.7471801336768369135482418628240552552615664786074734136906935919 +6.238176446755082567252470937665391247768046075975799818693074447 -1.378669638942387574507546581151602224081236342523377784962218914 +-1.992531357627157428938408462657200261844391485744936171095832390 -5.450968334751168069697161061781880173969993793287194993739598606 +-5.888839432649685322787429279769903316452462853217038500336506374 -3.815247181968561249051319368872188162579574396813273286878453276 +-2.282641514011425235611340087095399528126968059845095722558323750 7.944262295430124642989477276598967156470233836743985389321480652 +2.555515555244311407941917001677559429471370259283267456102844063 -2.393403695832441374963598074952364442350256471881836367913496270 +3.933543174120403183872077342358616288608406730330278846000341243 -2.331366602085726646558532970910399473371621221155405660213430556 +1.795623473131256820477549774743196340476268221057716010678669274 -0.6911915487206496254029789717256422786305450993215367145903494729 +4.225144461369559011059367600284094717008796343847768107496361451 3.290616509307834388710443346287463832641700242668881146238013640 +-1.138177664908782636278886315495798936116100536185816424289926825 0.2506193309296538694418070942399703293603156373161941195657665654 +3.865299090747212996171756250654838590881485791835421397727200061 -1.213011609019265138128047534909293637622702222902076053464525306 +-1.067159060446395723333485465912555917913612665259350374672501993 -2.543216559825063306525775823464725319786701329507760700213712414 +7.272711173875834081905788893561012017384219719275315291029166110 -4.077766361778918319411221880713719257546136121556754162635274089 +3.892119024183769048850364337220678377099492475438209734695781252 4.508144950190657054608875498143365395295748423310294014593396064 +-0.1453630507114744559302733641011555911868704949568830294114561042 2.677713544698732857314863565067167054074664032344745035480920467 +7.754654595879143346881951748556239041011335577250997662400364113 0.2391933028747450318973330051725718238147408180865179156020198245 +-2.538458567683363219999413269713901498603575224940805464979195186 -5.176524565781662316262207080880774509251925228405244564041845545 +-6.465122294887790738670435665716816750182404643925749116446497533 -4.911353699259988979834236567161432280923418110123311363368767871 +-2.178279185536469021769722302746868646516478269988771177170348034 4.210158062312106918432231755225799350344438100161948392757481043 +2.357524751085031241184167193935105299405352068514045395253064116 1.234831081320300842425365015426866556569773668184022818740232509 +2.814245947448621257219195845542167691534892758336445727887642804 -2.822127006365974359401590524952491341676362359612225866445759103 +-2.157528545450514908367512749983779998700412204280971448942110661 -0.5771007463200088840968074325658768358035913241411831459957451327 +-2.643096430079166901471736617487045835600081872943030973225128936 2.647038296067865541867612126720077035244180260705228326029276126 +2.350921022814691702364482438859758766464317785237323787059657022 -3.372432988553097913011821513466749070190044508797978601785377932 +1.999533471623249872147049058211938596035021653325065860789616800 -9.087288015284822214636334203773669639747106538977853653157302606 +2.721474997285833808913259300789268603450357845549170810573679633 -5.301465415454259212223386443546212133594288294533646343908603917 +-4.194715410554684516062926256260804349381146663351492653774633095 -3.625886673860124217128500996069815434996168398232398316020719027 +1.006127497178100428476924625748679896297504946748793741899685408 -2.165548706772449852360549512510401018514116791573581282314947702 +-5.272188425357595532739568094791813657978808823735535454927075643 0.7831922715792183614844426987489483835975874944199572436058895355 +-0.7714290374661408485220459217872164126617080623640933163960381010 -3.820645025371333221865882626319153861738386971753445801264669381 +4.197286478706043065969123693320609589818203265845242032281926308 4.528605355237525205805178294803544601384221080504620949028109834 +2.055827753324737064738216184366845480404317394841366382862324172 -5.074634244678578681740382928953409342516452405272137883560360486 +0.4362583436266977278826097190921749752535739233588397630009872225 -4.010073901997652842296456335779309898791091400370681666850648413 +-0.8662226776082417807216663027243881904125377073298267759698038469 1.268686469883599480603695727454093996529530285219790526140814368 +-3.264520359675826873595231151173671376922830342327581100233039170 7.979690144045413231692481611564394593127410777834674471919505166 +2.087615197161738788039679967928489826908650664266451657904239604 7.935770973386413895843857029826649496218663867178016048871677400 +-0.5062795993042171216532000678910117757663049116867431735415316045 -3.155452812397359259514401881601869363368232570701192770134761000 +-2.438118878960178527572411308276625708744492110808146060617354924 -9.358731620484672158437263304870791955078765481896372903360615056 +2.468149212650190185092794089859529280977378203500314642477055041 -4.100681552073764625340314587938867102715064668377913970452652665 +9.037525823334582334842721668146242539013023190669794846099266938 -5.240582788744395184647798194049633373590754447770978941908219044 +-1.485527525402912304537528859942305268388282837606966144736485470 3.549410642919206704123031383306832418285273453074084258363839921 +1.244182967974447754148403535504500346549667735261723767154643163 -0.2536008607460095854960435395303850942131809111413795305290117580 +1.939427970594771395442573123703020231521874654616020405185345311 3.369479457769044204655500996836396326077427879062215593967516260 +2.717584710035975261840775138981728796866507665877007994630919324 -4.804445685436445175049108461821616753828374504408404449174418597 +5.531532458350562140758318352207321909477958618255874352925506828 -4.595393177550151360599101990614628627424565672592987083178329177 +-2.205058225452129272702441922317393282314955529307971585406428441 -4.347783222866919093459932466595658783001207073340923528419101808 +-1.270728544825185231271015256237823398507134785715561654321557368 -0.7128364708335078973604000275408219461998349315564061292674647859 +-6.966944729648049281976675918398142834431425904109995773277113358 -1.006380578488354537151500822006465790157238924259746839135741988 +-5.869719838894856346373818754631322727688130748811499241106016299 7.468793741524752205390858694308983754590713583815544496846034657 +-0.1172597816891159032068826454140175499708322673323708243160409633 1.176549529868026203606223888301677961674364994634136946137819773 +4.976308421081501478088340111953053702708969909429588791293652031 -9.916018432918709603738464493052528723145310280815623189391078050 +0.3610500352026189264396609760142325769336939827700545407583565165 -7.835857944022421913001682939091064002998100040911684151980486347 +3.053651473708374855564587194940448967500376421088517900621080912 -5.596959573565151067366593646413682305828581125168027652836718838 +0.8071356749096605032035652293046279445673413873607411273982638479 0.08485977776442310562090973851242660989216554873395631686357204907 +0.3360285065572144667582568835992015282667587948774407085734692085 -0.2502865331684836317236205789677434477021956195358509242936538006 +0.3387937224976778366892644092783789138734311940212925317493653323 1.601917772849162883373984150316963943190453104498326158375442090 +3.721039039792902326699894231038571033663467963266654039273857344 -1.754912312155397235006934875334789522588506268453310460877374277 +0.1709600912048145835735962328386795905387548847607923336621423310 -1.281474680837605861678175453584315658348271651811740164561218950 +-4.865874890085976803231788034082205111949586817442060964651760932 -1.160005572864656060066184155701284140351638334357052297818222556 +2.037019763237691701082413428301012802027741945263482617251177589 5.155237939112600989112689158600023037156760629044655012641408707 +3.642005420165767254910137951214421027510184908074784646747964547 -1.020059831713898323997013902594185892047423989047487156050181462 +-0.9378365321231784096052076671068624554672115526365790550876929333 0.9863689672158880336692576083974034543247171330883236801201824378 +-2.077862799750215021436128892194125064121529377676241227185625014 0.7433962764663086943397310706211864542267179495724124373050011858 +1.468607038447584539244644344651507181956289588871228231275219991 2.820384451631684074918990432412064359033798811621084314600833445 +1.777694070205510078958977323671012995316253347122325722771948908 -5.719028814764662903918549889051354957527088712205510633887539442 +1.256209573675412009307583934027177597802972963237040455971873396 -0.6328863462406632079554631760389108102692175839155457617803296501 +-3.991268795063613566094805093359611930572014905619388228874263714 -1.337903054806181656416399741331892178289551188532789266747290080 +0.6823087347663438146343787010149267314133218238988303609891380319 -1.771976024778729355516633390547396848303172305474236561739556046 +-4.704744797958790001933095693413154632872551308455686818858249550 -5.201767286031506096121171498300754979370959607155173702342851890 +2.218600647384972018790550638639935183081441418610944378911042612 0.1784659197381958933200102640930279162572863430629257458373167676 +0.1698228813648489743627570313216335320016310294333523713396475318 -3.493351649054715411793885221117730996920193936038260113001006712 +-1.787207054664911821701756412478105701579934894069096449359519009 -2.063082212962586572396930742111842412067321526622137669012926884 +-2.263195961166926380123610166374368069406797667626106521939359761 0.8593360883567301780070885993241789372930092321153711485609598453 +5.012999599202501408563492178001510323749742899153832356962891520 0.2976197265617775787485666535591620253479920957743950047572992228 +0.6432074694893947357085542074797385157983224269084444700905349233 -7.701768699220362902954411982102355209434091347733721672650968311 +-6.707960360663936687694190052791479255309549575873154900485152948 -4.670808730742476273250466264635209252411182959575641974323044439 +-10.25105952710202074451903996717347296488077308168466303815808656 -0.8719110856902921605931186982991159894772860938102903445364727398 +9.157259163364835846026182924478128263531428488030025914182776191 3.151645206201841041438080229765052691753496456891520735287965385 +3.757775297417961327940959419614874839884976668574815404843079700 -3.750647888203544941388114911591219588101708106039244637535685521 +3.732645860002627281303808404646234385809519268889078662266427423 0.7087303341466469448976038096264606284946954004490978027637195703 +-2.019196824324357216415291366633638370468586927163503809484283988 1.320778860486247661469573605375117854779990983079689332538621888 +2.142648454862275187751937669109262951419957789171805365548762088 -11.25098214264126464103450910559973600226787996631148276497961984 +-3.635871983243173337449575237456611993095200032822623878540271155 -7.232536041639478992410539111511873399973838363437150987012766809 +1.001128412706525315712832346743698364869820901268601291146214847 -6.628132708698744990440284537563375180506032356102180492743129680 +3.480056277653018619245256430009244137221638347553776162375257903 6.802512273114902323106507297370311513763507712281620606369241524 +5.081394281345367734144512253772110571103500437537742970467966761 1.524072984248532573816622572454615049219406685283845465542489907 +4.481693132031650438354704981859010298120881106262931579476459244 1.002262776939487886472308876977610717818900065398187294708444610 +-2.045680166913308864472637972504764327415199419634588073091939994 3.239878016260000675370638895760223276324056458162627061904980648 +-0.6334184532328206170191471595367746894373457368362194126129327788 -0.6346858011151198587557463290211251156102257023066042368305192141 +-7.404757694055016951088394485938992948549174079860312978721405922 -0.1145561103746625969380832550881880083364293441945986576130908568 +-2.793432400672772567624877538708363891912251840208099990269143133 5.160243584507919766776081577912193545697117319341273867949763659 +6.231106297095198115712699799513870563667715059584464287234521156 0.2564196074183293314119053096002536181480480162222245846233084122 +5.531178836202494360329493987124685585122999844399717636746530373 -2.194150167778284092973494562282882359864791582824211107221957769 +1.434452186699407763086371244944493958545142430088547574786842179 -4.449490915439566952082608381055825825458553505433230814100537071 +-1.025005865421952157592054336575926219036590847291245789803483740 -3.825020727429063789858308230973725213213657640525158605630963984 +-5.496497207911825647368448661727629740891979996525104358955322790 -1.753943115632742230906347325548803432831333121660613565266724231 +-1.202659785876888732050297424859944086013254335357385989605496778 1.421359610584278666505672736852676447511854914792578807583275253 +-7.997737914458467730657659987358742365700334001621185810665806062 -0.5486600193236994578996296173942034863926270514708276243591190363 +1.653837156873351317339380839544738374524231466247941372915900167 -1.659213349695731937370977889438788316071094109877034080784340543 +-1.136902129090829539043173576015252562624591322796114891581621922 -2.310069324450049309883146687578503909172507376564792915151812376 +0.9094636626757707889486705632074282105003512650889711274736016000 -6.756805491128784849488021983275217015588151104115454786089942387 +-2.874804534826933380908657169790170805607962872446473162498536597 0.2458968117672730071733567099703715840785889195541185102323454438 +-4.895892809696051736834851318948088059255611650186956128385058154 -3.150877564125668778052410536464083789551297168464597577130070031 +-2.929124381951326711938764503128422815102017615263606563598247414 -2.209222958096820943842299909615716379823533153725392027271440407 +1.574111750795856769987104503771455552902821887129716892814321803 -2.129074468966526720262179673094598826272504803379867079922474076 +-1.882496100699755605937753059784941979824121814130263587179215927 1.272603523230432559392017038360295335967336324869662304912513894 +3.164396674496173675843099095248771102788591990544950107162531635 0.5258466570865854037991266343111377535798634357561001685382808341 +0.007333915539930996292620533973434727042353562671422572038901183058 -1.522274521543270372048600087804190719456988190636254364943160686 +1.916928094555304807121697673528827349255110496932254279799146967 -6.258996795104454682963971148624923607825535767114284660795218809 +-2.263396996283970497970232317284181968215871691890479158942389203 -1.355045615923271873811770906203460065559027639140711815741927779 +5.116500000129856819209889713897074243946311564834650865249114083 -1.701598520044820148694137404582354690950214423670607512884075147 +3.247590325726827246755248548376152559130890049489990529100588333 -1.844919858569043122655800689463954445981773362991000596268263724 +0.9215041477355138518508070524370056666735378091861915942014720713 -11.16069258978864702633921338524879926180053447672773798276892880 +-0.7753336524082214787455012808911823780038080833233844779313876627 5.711587827194307226612748268548721848507949456148744163104893292 +1.314213097082055497935863941675273680357687542131570798237385035 2.141520373162896725136156604526328558093461792214182872719585412 +3.046383474841244462431331796735104721339446411537633510241537192 0.01222767019554915792179814346282363816460174931263857262355724684 +-1.607021336270910567644966568257775797817663750823616432576092943 -3.639939606094807331297613683312789097872612606312486976320162695 +0.1366512732390141186266100153632398547394749758052805544489521910 -0.4505366205398582999637914579479646369428698817804258398504320239 +2.535869622582961439856973085585542805462642616332740795180013400 1.610236575299644238141794240311788930934749908796154972335992899 +1.951825081673747049147658638779817306397105675442438574807734568 3.392308574578251609145106176450772165923395212346033192182118385 +-7.337562086746684913936356984672671511094766276366264500555625861 0.3613304520226746750951547557276510237855947678601734229240702946 +0.2663460934301967068465164588567798636476639601735870346469162301 2.295343590709218312309117376571133875908674527201468999652603837 +1.821520168568352969113741169668961273460579622574163218359954084 -3.295712080953366102245795177731228257093263677589527203806425305 +-4.345693115254520759316197908225016506937670616082117845423230031 -10.19478430653881129397777808066138218189314368660192916301441802 +-7.414771746949085016288888828129126458442858270392712078411645451 -5.283376624065318692059357549264396213828251412254602159369381327 +-5.995262402318691832314400511787023781970056155351608343652828301 -2.795107335155958808473585122164283461790294641346488772284323321 +1.230742913187536163879620368448079653565024209843758539374818955 1.891477884186154884537998629767852722004780066292384655547454123 +7.157031772835879143929117761470529278750742890237553123008655783 0.8651609725365948997469673739508365355539419229661863139897302608 +2.110607499207754754120747187330412029082594509384931274017158531 2.749400191489280595141912135016526860120897334464049435522605388 +-2.449380873303434525849470119984354134562020850082414059832326970 0.6271080397934072190540091171583248700176116694508048692163175781 +-1.322436645575287306617058816328864268857307907904267249701538575 -2.636005669251407697644564438853160427194721794347427975941346229 +-5.233649411829241430790966942802470401475299148614434423421316636 -0.3387882361469135919901402004552003299530392641095381637085876244 +-2.937607541641493392692085505096781706538309741570411536223613433 -1.413842499054847500973439669382299144047705313582619065476949915 +-1.049417389101549608120346680397729146521200514876059546593091270 -3.165326472710213275135794980712521730196642863415556041690083560 +-2.728461002411190203752547580088994493150542917614129748313440332 3.191959985994514486074385784036789288124681355291239961764231406 +3.893933577574720898509610782040819831547020775625127667394332969 -4.172551103630052640544083516522453092917427237632325842886461299 +5.809909981855078901107721949799983189762636835913611351351992177 -1.843217444673680986829988031666375817719235775998008374208573546 +-0.8551803657612461458567772139472771606895871499313511228627684070 -7.073663750567690142653352167880815167248515880090452812285396608 +-0.9780904296437924823027091120584081043534066352297197399432972876 -5.467749750219010117499767835933578345157291095194225748957670202 +-5.180340457231939113334769270941222448651833611149040903757094351 4.070970854090977075677632511126834300223016298652875129609978548 +3.189846190739725575407977367147957743775562462643333137714224035 6.054088061160017529125544610791134736334873631175754534084279217 +1.539483377177597681711435617121692245987027534227342592404165159 -4.686819442784632940543903469691066490130811112690144803260277910 +-0.6032167206555447294135046292953135139767024384843415464952311337 -7.318591809676102203270980108544509573950491118235849025321171440 +-0.9012381172184677400696321916007752385152700876177307048468542391 -5.413420687005938719328136849694969039283578975020019506449162062 +1.363560826306830391903862773664042286076711823413507995721338899 1.955900977247421715066416387984469035908147374204716763873703405 +3.089264403264307356746207650262129486193066944046980274445578515 6.333089316207768408241363577486844263396499395225858877013974748 +-1.529574730430464971943748456163484592751729132874204505058422502 6.796177413301769870448199241731620283769632758688674975530098631 +-5.157840538459700960666568325132306615246632498242459549966148065 -3.626405964273306175428963026124796923261169819602641059228566621 +0.4014834365055459906898526361134407623786950535812870655546274227 -1.669696288384365667647468486926179576289536777453198240395287977 +-6.968085808207472816697282540461486079360330959523364746500743036 -6.140938089055067010071985411329452777502122704086313627713176598 +4.045451411804737702634095129385104199013368423809940925692853228 -6.289269100387419565290749578595337766722197320428994052792674326 +0.01620124186042959768055611340347157526809595179926399077022377716 -4.017779738318615793914795648491521942895919649368519623663977293 +-1.321390770175826514739021715525110982157151792279577772887398552 -8.469888344754877685194093937851229785416495298997403672540890368 +-3.182565704193705831071938831324950178457061405616907808403717928 2.575194212346302657933366384850861029659824862900552543789460923 +-6.536305727294036810490195552295498486620689172371130028676857275 4.218342212808386597401404229075325026471715869507885300205131023 +-1.666943047060411087429750996579653865993498440392918023306868752 0.9015533660112240853000989682382248661880229547433954236952536198 +-2.018139733932336014479384306470595305665743339943754376234891398 -4.558203987297959419855533260434083594784243732082075109380421885 +4.929056503546826705501449405288934685673660591981010544335363469 -3.504413909143621447253310436900975573774679049586835355833951993 +2.953369675782350379662293655228040227543950615452084843644687051 0.2631194689172179812300754287554604607623658298805117374383635090 +0.5758779287819845870874947715423017825138795676009073429379779279 -0.1925720077292684163532397098322945727137292199298924505525579668 +0.6929990596594129330333160171321174062667069612134568009418606390 9.214258522102751270065849595528134883428943452930560106248581871 +0.6345603004399858635203231597001773751631547312255836026771904745 -1.497549555724200987602584547024045744359631611728779727402186342 +-1.990818263882259224165171269893443038398371246805636734316421954 -2.640590908706702736658245986971554557538757411047303751253229423 +-6.276093052669953766372662560079730752504851076926292385653906045 2.909578842385016314618643192952203679516079528193560406280839112 +-0.9252341714852298105915674362125904641476355368993313085122118884 -0.2517565910863556330809566972033133953858428672571275194762873645 +8.452679760031075794938228664865061017073422695529479416457879197 -4.917748941739003500733719583344966482018416445836059011143480069 +0.7157987585442701063286201024369705079358028970891618593300367519 -7.858617925494205840588398897688344038632163192760154755938394146 +-5.200182938495264546428536729231781679448473402847441582409649393 -4.039129907862288033683055821642037572743759607625470625632637127 +-1.156854441417953603780937070320067275016965214613977749939689240 7.833433435194863884991935595867435781905730469064728989635931478 +2.639180204613578129693408645570287506625259894209685759830542977 -2.840172854820117402050922019799902182917594457698318538122713357 +-0.7929734975749152344595776284299457802862489875670924845803247042 -1.032830251626980827213035171993284698902342118828466064836479850 +1.396302699514313240509713150837150308708492767107566584851339250 1.916174667169618096573566552401514671955071975016629700771375965 +-1.855317225465354330267494164664546880999767478761631573754631099 0.7816960413999981199467359942987881200297626323460650350828747536 +-10.21377319105748043375337470095344878310232353213316612246455489 -3.049775631038620218727039457025636416772394772607534291820348509 +-8.200349065810726392428905046262042608587386025886856984213757876 0.1683126883185325774256388504950474903224751363768664528336171756 +-3.102787274481870171118700438767748958129925732880674252579682137 0.1202026037914879747201967123816443078931550243431195094567031145 +3.648225707765273419194239072494342955033404857604725960841042481 -3.747325233033968083592639401354802488648615135561150898945018798 +4.308313458570660898180952901512490773263792122292141713153799547 -7.083553110240725818525980422826184768363881537406805393058250173 +-1.665713917530710991131226040001793441839869962493162805860786448 -0.08334611985045330044615829203150956867444820618248510090323680660 +1.024611860577963636305303505747311481391322522003120647700381572 -3.275983910474260396874781989657641645183929116083861968653726652 +-4.739552208877804381732124976510513141105696962690781560622719799 -2.348436021046384793498549746830717191603622928804796388718057846 +-9.175409966427342110595784369061850430347570535449534774194869707 -2.599450528087170668820216631810682323223516359059183285085633617 +0.07071392332146813387711900469908171793328406016462048511235839098 -3.998084345156223604178526997130700975959849253259116782543522529 +1.429305734033898081632229448903443140425383896369137344984474759 -2.878696218480063373405638094326331953830435577455415679335994508 +1.769141037613454752509258335725500051365367905732688539540906463 3.336336549487438773523507969814139740140687827517456533099510465 +3.237326993368418462419495197813308228573863668746893802042209631 3.096020872120027629555529063790432759438436380178803876108891038 +2.753986705602590785950669592262925535840053318438596746898459151 -0.2084387359482409746939602319190375830538738268435140033990022640 +-1.443027978780898031796591630489773982276011863263627392410313521 -6.891545360308657286806403729862335733277475724741926883512164187 +-2.481796445318890473612264810859231036411520059089640306904884680 -2.198593252923804912841501688714470273573863411553587550829502119 +0.1007421781829061889991682723620199829891611400542610547965572093 7.038849800810076486360921140906483128393607022176436041566449444 +5.186509454532500445504026297322128650870986836294386339293891142 0.3347309307310253557796468047552610714963666023514610453261606201 +0.5573812511808543723581362611712887489965961841227086631337193115 -2.931486032102548640381001454996088860469302208835852902804329972 +-0.9074030938063423153109420554635557417213865642000908057703991235 -4.528072339871326680253078911964770785981892286116245730669518598 +-3.421372042516655990961504352992555883129615556782981863541197674 3.822331324009825391304545471253651701330375714140298368618021485 +-3.079417153677750352906797423132981089877754994267088309105694603 0.6415410290203751979323231955178419230978639736058114515184873063 +3.464038546765050987785359991929719824930384123792533358465126572 2.420180020469616706780214457418535536283148407361791362961323727 +-4.668362229362912167370913278989145731743429541325861937638259424 -5.656204371895599429969541072582981771905802586592785642862612578 +1.279063951771791359291410664675713347906824457280224178298037763 0.8318513265518267113587053945644314437699105677650187898991733071 +-4.562644851873651295919961980205645553291808668309727580120185671 6.320810954364423655652721263652488745829095365261660018416172960 +0.9701074070535476970901620456322535998997791212164958886390106296 0.1210099869520729305683391100660975877339370295375122168184807305 +-2.519143786447529919210351869365382477514724701713324843846401440 -4.756668265084092964010708830059154838647089361877627692326299379 +-3.084435945786272948774301937610195708325285467611717726383077731 -4.001283531982068242058025354356131535780182775661530544593462465 +-1.221990786399607910494145752587828365784207038789109618130172892 -0.5932474319775479351787103560948477098983555867364729553014971983 +-1.721771102965103429319612470303296133547774245200527977579342552 1.961335613534585093746542443324404444525507426100332295801826904 +-5.880437022238246542726273718926598159087861185055195190177152647 3.866500974874745798129130591688223742639396608913552878924193602 +0.9699952032553610095463457403715550171011284455778590516501585749 3.867943727774286452962717553010202771417738576860208067743323500 +-3.229093057630013299426068062902641469371661071646696250390142227 -7.681482618506735394648485666306355642725471116028755602169471178 +-3.714182147696514255539520682622860307009844594017411308236217889 -9.884534804472085606571739373083630664510865457459611992955612738 +-12.19883297139533966088254613321357144122090464602505372780542505 -8.291146740461385432354808492252894182226209615135299437231171719 +3.520212713471626847339589312640863215761715786331377470492498577 -3.381604431466395507660304850020883750499500623867553650546945587 +5.549559046259328647976550110701013230167705590702372792974996086 -0.3094027044305262764933817832061385439871521575542593076786233264 +-0.3813663089311473853052493415873188461392407495766120140877602981 -3.718750504937516006519420399776241118170527498792544600714440869 +-4.128210561096086001031111850715433965836544841759370863218733502 9.789877704978024031574388692668689687919286450227399255883551917 +1.558643878945566936742984016704792605018708781054541209587129414 3.305491317696642300242498563029487978162121590777496595163029449 +1.034457429886358555591618092454794495673336840763626961702174238 -4.720485008659532235182311868324372892143561059557215381032184030 +1.817916258079654398683052274095247938348255740681756018106571155 -2.152684791695903396353460692315488637299684884499103906198618724 +0.6713547412194096507816401835273159895528905957657139515039435131 -2.403249031523410201646361219746114088963098492325110956479697803 +1.045813720361961373124628141369473613096719730475971366314434845 -0.2113438408204563669404978860002510020848215632128429180345411638 +0.01082666133542879004450435247221009266858207175019947126457165979 2.378072775912650717202042186697579510879405163621434348775535548 +2.816389629877597440056899326595042385251621500796162139140779860 0.5891554506142163085278633949508434209218219808987323418454578022 +-0.4567681426867204513670039553667437908012874591388392403984431768 1.068523176516118435086058055863233927077354775296012442757558796 +-1.748744937652559775505504004365230043627575018378893268226458878 -8.461678683530622922533299616851654905370472989872645718085255353 +-7.911620927042899458098919567284358836520298837855539071569541003 1.622468652836276120079234849566788339618949094881405095400895214 +-3.253704899322933828895639896612403670652896672589196945047741895 2.505679688906549538941850014844044893311969571078761666128351423 +4.530527372005027376809218197780600041926719281730660630988836699 1.774375871545703717619034632954998546716196925253706513953191043 +-7.550016125208968745020419409139890757276991937040697779541541582 -2.318446983431294298904173277342473479296008829002504653092690383 +0.7797436753592741793942037441117635931789883061082853482564673788 -0.8726240147609701222119875678882300474088990587724441961619052754 +0.1357421819817515974330873382962237442518244718747645590683861313 1.170394810059694934414074865448647651379229919697067775792952988 +3.597055219354199073236846534511412428769952399015846241065916430 -0.06369841284953184949160610761467687683331122737185559689453859196 +-4.353380296305575994429365847472947720195522244240953415944466091 2.147036748408506095717764139774245044761226023241085940869384242 +-4.249584265673545428366130213653258259268813129104737951787151778 -0.3725695482181721678497145803125046083063976784944009779303292927 +-3.806269542965604528128573286092029556113877718528080356386764023 1.605777219633559249166393275706228370672518664814093941805049223 +0.2505974710030084236322410616511396013716868922041735811072476199 -3.288749821728199098121554652625617591889519759470834268750553874 +-1.268420305737689728996045956245302205364431289877853073453563411 3.657493420536672331956452606233831515268037290576701047627781634 +0.09494508590881351188906324916163344226630332467712535654511913399 -1.154482696306099136397441843223323488043654889267364461926631172 +-3.003399426133490622492722521167486223123726955209719658104940600 -2.749651600226859041898515885439456678846937108641505548861404399 +0.2580474522928931794104350178817211962535757848174243941694026092 -6.245776721986395391125236816261279855330891738391775072139918275 +-4.002107004071574284914221433598338630219035694555277947243337479 -3.119270634463227391941493645782540959954447282887079259823894778 +-5.700870101464338907960804849291138876407977633533537855206581810 -4.992157903751906776286763874116206860898871697893433070258911364 +-4.934186988241843470254411493107197126250908391834909288871889402 1.761881790174626803795358294739581894517027395358465215653629005 +1.025840557412152531369825472920624339248913105575049605749444836 -2.832610251548130108943906391854466808715266824074510576845635888 +5.935995060594214977305492988499889586812718166255470253048372166 -0.4328322498794417933696517226977756413018818611234610891710115609 +3.851952014645881601927337327210398757352397349533858916588208324 -2.610854800349297810297930160305763206714866568987304835440006384 +-2.511466682495908871558383032846553052747143654856898524262179657 6.007934472181057569284245631318000332851682116099293679675517598 +0.1125872891823457389107147982298383643440726463762663010052251269 1.039340421597940906199064528659310695385838803533097230906008622 +-1.331414835254331894324625347852125977456063318429757061359240611 1.879053094209167770340819914463329240769650653580329095854527453 +-5.571898299129178257287386356610579369674289256588378792126533498 -2.554810032344173265326802195165939358229157091248341056192137203 +-3.047939901233469728071759260819141804060912696362382634881835059 2.640436000320196611127318075640598255024289701523469070782163750 +-1.379024421298327218619051129228690300531309813254130181852455979 -1.231559975122027610608487280387999545467635263439397994862334319 +1.788704734321064438947960172164612944153714844391271182684821143 -2.513194396256541180864044076523888606724453873713623298085115208 +-5.182708192856501590595510460686283560214841554673076329283521710 -6.367681438952499646264627054066035353690024669622973900249832083 +-5.283580710946080731964523501901335699344585569846556749943069190 3.042544377864840348769035332114056895648038351598866710843398061 +-3.586013956130778025741300562662010407364078309420171496425035753 0.9996924452204246161367302071549061037747232654499726715950250108 +1.935957872041752448889119200542814157135134097096602749395696092 0.3464642972235766053142089124533976398616564516784552623939432017 +3.453509491572949712272002905750008557998957016345895425254241467 1.881541992359699971746710641945523445389373941493776054039885657 +3.731676302482041946406780147855190562733906884486307459199747459 1.617178166942993006235965321451532369540914506030876116627758814 +-0.8601579591454329072617368198541427185256453782423931863589127402 -1.242533078183926277450856328296597530654994614532956118297308553 +-1.415023191189249289977233428184508056429753546837912415276451271 -2.376335556488579924653487685594230541913046876745959699467032708 +-8.949438749027659085962817228207235272248937756035134507787054463 -1.987850260962179593764164168216519064405586305207604777011535799 +0.8213126981854586289577624447574004809410129360772471542461119660 3.177594250327417885440323237895321299406497461632701106314204417 +0.6500305059404722578165692246736849455095129494077175591715238458 0.4905554325427853734895036257567568230613922987847283125887734226 +-1.944263908695985770717230588639125941804255380755049434517858759 -6.782244907353004408527283372958490493648125254286544291006120219 +-0.7739076273116221349976980963189233380558652560743922251793523498 1.419921222398989918671322150524372694296383446900029373202477934 +1.846751444103426134482249324484574080758109924981644649613194469 -4.483850359916502752027307710984175000242628616120682007108839571 +-0.4071806540651590227707792087054491506779815811684923234022235121 0.8786683588678061739232613101059055790149466242365517435990932094 +-3.427341695924925605031135563780050460432391570676926731239261869 -4.173216579693137444599579715638749998710910295609578720570297669 +-0.8336271896573148331549606949764518248914281358786357959100149132 1.698519475904149653317921188297489915730057408918738958791764481 +-2.952331994997002715291242868023335885500231555949597458721623052 1.068911208712569236983986975557918174800786016387549411966275592 +3.289410547045036832154044311307265569160076202541553198746583980 -0.4770747725302391249155010261200021147265470963970362084018542372 +-6.287154761063268988455458758156822517908446417630031270438965608 2.008556513987151919460499415013188898986378530371205060410640263 +0.2806274477522275395069421949501191717570869886712281066124672385 0.5733424971499739002624507961732591229791381430959283480920397028 +1.881073059291728364388558095142350730972753504337700834570216393 -1.406239492531950502449528086093699372076792135568501173630104869 +-1.845734255542413583752911670971156839281904682225543492762145660 4.391490991359219347576069077195032119001604904726616957013906890 +-0.9622272480940976016154020345521391341521221122388639225056495085 3.069011486581367484234548915624331902454454685102333773166931858 +-2.121307778447940297153540245171435629000868234476527760203739584 -0.4611403551793620525264854334243349489107379917314333757483022425 +-8.085065123688180051392245022688953282095088519691076199886576612 -5.399292616801097538152468939341775511096729844868796378292671216 +-3.135031012655775268972574399009577115789198648102515687895110943 1.370388914891826298513992900406893079341925832984089126843023152 +-2.954710756106008121894785217640041131963108854525226782460264221 2.165383259347978014192119407862096653675471735073778447338590099 +1.121878145676995163592800454898227940103156750972619618128011716 0.7420956505952507760779799274247855378972604271515623480844282923 +-10.74249522727786559902625825806045780332122459547302165887056352 -5.316545794276977149404169784717827341951417501629408467656593191 +-3.769856115966302099688508986656180792343986684430627240363518722 -0.4400471926311716970791872945144388921324982337464981396473706597 +-2.312663291666135196297121082583671837303830291252690289184279930 5.162847098145190992033871786190668641398868033420581675235564837 +3.852120092957777835031229829484023042508417080911150562438873069 -0.2787697014928486672361877465851401208311398786771136741193277880 +2.050543987760484697674735858607904578086525665248956505797460291 0.3828398074043644497102494940038323482216628570325180087672493734 +0.2689012564006270874736001840062021226315108143533062090735854436 -0.7551480399567861444395307174473751872768615082990891804900621639 +3.148924728793720567590240988951342491959524551685147615294018350 -0.8660236200765804622817156871664517352430811871284200557674428030 +4.777060667057480959213936416681130629288220517618762012293395647 -1.261802316231996232926378164678836958217749925982392566671666762 +-5.092180806594297977294143969142470702435712596578399187383797531 -3.804561271086122526973022092246070098069669364171054868381591099 +-3.704657427464092925346666515141918758336438067357253476994521365 -1.761808933579246561786561663766971184373338278142664632519964134 +-3.811723082111389253099275792519697530349020657124999481126376295 1.888580221962733261637293455474841245621590019077294354622097792 +4.154352603752190234096914338916560874403500894900384162531780116 0.2225957428049771108848598339689088428936055018278690351989953249 +3.424825032452656075649347368764990067699675395274188064762513925 -4.892158726951915285111392294756003120027855724308847632979033743 +-0.5888392582195936312834441126959708338817583281341984354370600869 -8.209020452140453889172349397365244694407125989062560212442450884 +-2.621924192834619065438871712026319509760344329758504270316452962 0.5147772889050333041774057713616475385563179754615209208465852981 +-2.831632963960802225890404583116186519312590579172230713409616106 -2.550450939028478114402884047495748056545509910154625053116295500 +-1.719288207497769118081708415567319500472155108571375574360728003 4.497003451843177323373454412036493956268484692411271283702968161 +-3.137754741432160623125285695092007676756517592730648862079433175 4.159030357463456815349640038316899758792182659268867889068135180 +5.151971311858274615704213600509290116541961564687320432128760902 -2.320305452782680061406274957896749689726673904870317832080736728 +-0.5543169868998168493569301503133078559696710720658697031608297926 2.099045296428476462250686356859952168056123680931582505421188793 +-5.058883756459355104371701493933648193964655539547201202008719418 1.189147451678206224132260985120704412453230646384888013760085978 +-5.863151231625129232173461754207835263610118709287105248386465452 7.991115682852977386445537622400152776674759967120771787235851864 +-0.8895225168462924139752583830266192235442323296647349985045910271 3.112355644612203311512631288685379578306245757808606193200393979 +-3.256558413587846838480315674163701016222641400884804368431143991 -1.009117812030153911086690253840441727587947626163046360712198565 +-3.129436489065564311007185604366639483244180555281097054536305654 2.054389899870714539883810155545828295035959758537340669323480219 +0.9071652197754223149159714792385474019627961875481960479835341357 4.475231117650836854500131364987166021227292370283593047602404294 +-4.693538856407872398661174538770249037104723967565352431556449086 -5.640808521177574026124058194160100089226769255830340222686547931 +-6.253020389071804942337812752114411409407606762422315490726201043 -0.7613903945699988111658416453451679424596056245676171675339057192 +-2.986251039298058700652174491362259608070792824238718504187508517 2.974054771338646243330340623170709727819129346658117847965723983 +-3.008978920133317714256872709024969612838586039352850387215229867 3.787151946963347181716714223270436308664555153555783863791485816 +-1.828342617356897834711833233268445141247215063487425012372707276 0.6177369214940867665852198279701608703050666015764020630338348245 +-3.122719252113850611683910168812974103872764812195135537731613459 2.235649031760802842572443385191506296201189219533427479039650018 +1.477334302015208554398617280489208412554799758092748715911759858 -1.081077248985640337852212671547992627988965195431042187264244913 +4.411042185588537653418282569355309861454786906580832355648728480 -6.860813699828629563347519112669739500114309624455790908451724966 +-4.020254014916723917986427685001711216468942184278373515765625810 -5.620221834911444677692239422543343807934108363241043806176255247 +-0.5406715934116368966215649771552782093689357589055167480482497204 1.228720600518200054618152192014243120222592385645834776997391405 +11.63968197706337086337755234420371378172105110373469371978974504 -3.673533635235468477762213680773768431579111363240909840534532692 +1.618891672831657620112356238506224786616693090741952860341609872 -0.7507801404473669424460601664711556679715740255468010258058757310 +-5.049935968593863093145717340811133583146465266298455943910874933 -0.08517130897943891723099979746567454795362406170419272342642019179 +-5.000250099799109391031574470510040207361833727223320492970775549 3.918916280723612465596068215796891405041179149309082566862302458 +-6.111493157133979585051190937046217200864889656692625230375302625 -1.656733583911836948980789014073732000797012992020835850397415790 +0.7043579283752895025907377960390150019257588329789578149693650368 -4.554946113963239959611502920342758657084616756769645330267657597 +1.834452172446218228169352778641964360563260019864382809484426089 -1.791862666319062472633377511343797334601757747439450144498608904 +1.277768504565983894752638998958444818064963209326390852052387280 -1.336644583130679383228354533775928040473701089628044625350972096 +-2.417416823396399121703583015541527776206222479861199023869069228 -3.271618927805861392855888552919770278292588054753528366314102173 +-4.229719830018179495703975153876958652906578564828190129476605097 1.319618280841071373934445883573284229232824568388104761572245672 +0.02679189641585568684937322603463021797987305370526570565281977311 5.279008790697214220571104987689772603335544016489091624939059049 +-1.288938942632458259043654226658147497534029146281516634196082220 1.542562809958996350067901023158355570991223612344673580072390400 +0.3534621915238005205350182159747116304276220113078481215185276142 1.539155427321870956156252472645705915596613890323903684382477891 +-1.999494780020609405155807574046401759168047162732488723323542526 1.474321072077138806671174178089099754792692268607559347395583739 +-2.145110921516702952974120223953944121310807986481999040137050025 -1.936253287811489841423739805500871173372858405827485428418389549 +-3.531229063411167940644868607149623403013817872527297610054883223 5.421560250430939567638746885139977812683857506700901120625482451 +-5.526893827953158297874707667582345928887592133447057905150972015 10.38717486869622329310222692723356611539026972954009337932763317 +1.573437212283124003896416932174647049647382885011660524172631533 1.253617318029952498733629372958674492001523124936778258458778854 +-2.102499035784950676643073353629521399331074848678628878985016763 0.1387955152185901149231203219437769284889923275492281230814682988 +-12.07192520379076132445673159980157410664924429949434320281496165 -0.9548101577878511444815127117969627006862167669684962722164731436 +1.618764514843757053002437625141138393057961592758085738964402680 3.816066530377384926862372465718072134206686932951717947349545004 +-2.980513328155330822745659598184359974442723004073383159927311455 -3.038775513472049379418933861455023804914344775500155201057494477 +0.2224571485837817777833033345352773490686818720009509993161761369 -3.641876817356838319459331839813297303270180873802031016763495596 +-3.740372250136132890707031604899833202750408783772259571481152522 5.515610253904797397306738193421212038506394381340322194397969975 +6.349673227885232599702710786821623039468504696319631852581011684 5.744039433278358735103965507994905115647346101713490315235158661 +7.019262611015896567044715090559464176988222233453427966955033188 2.690289729954425750489588280842151526477444002214167932287803194 +4.599556251089052462787989552109534470872340521465853590813340212 -10.97328467613754951342029365538362543853463658192339803166779148 +-1.595884780390633610723130567270536742823253215280410481242876860 -0.6536145299301316422758263816215415926828515579082706903680355537 +-5.464462989964459733916135325627874229618637689517639774145107760 -0.5537952019410584426910956906378273812146186752916145169626102370 +-4.612538268712490820338492359596548615196931699504150278513762608 -1.904634597093780900508526837163089450249924905884967445576372163 +-0.8620095773829642532469612550934158325222145154378741614920695231 1.240040822065796276037418244632332135531248651251325815420821609 +2.816608644939761647658064923476870143025988326606494666992469008 -8.445256441814184128993740282903174547951548032474406836215936900 +2.456101282595565885217657698724697732963917689645473105192945806 -5.312802090457346018183855088431790269064518243295716907114515295 +-7.795835432151055764348109299000448443663983902467012769519418148 4.368867395981078725596662743725136571965130412790169587798096944 +-5.669326710587176867934688936610925266949790166009281821115120853 2.789550659399001064312350180862607751424566928143521890729917824 +-3.662539698200099652784167857683805607960770739836021780074344960 5.418687678248017208271254313414286960695281159431954511897272285 +-0.08761021743608545773967885111814416147438253877372219527334464939 -2.979030268077511449499074346255057670141439759770247227659234958 +-3.238524381001533388487771109680129299476361616968033429482962199 -2.766300764268856345908348076581398157884894227766522113936034637 +-3.260210388815608764038561110237230679443131309699563280856059246 0.2831452575987310544160041949088896145891056640147906543662246778 +0.7513628990277129117476888738198300357165382743071893446144670600 1.773312694076089214412817074623410108055569996419625271129392154 +-1.204564383575572770628674815189076137360989094984580457526136427 1.929516951912774730737045701577172014236094638325867472059182686 +1.481650037406194248543389672633854872679012264353761986037433115 3.585179809811255310849427569404493090741432578240860409701123045 +-4.711211590662237626522733744050087417709898445743339821255120214 4.925357322740942623007456222701744180253813485736623619653285976 +-4.087314565069215840631142350913724273821427739790356747378079114 3.699471389917698459507656657138182865421922668321994124603635239 +2.108248709618306371466039315406915828847593036643351577655437977 1.929828523131679231075178459684974044396113347459942300585269463 +-1.411791638125468427271885884695057424356790436722851509146681955 1.847493775551510990975229210968780445268249467767155405319821600 +-3.511741207768567824460341990119493092076727540400131387731133374 1.726644141791179424894068944527070046092410296383703544259753021 +-2.487492770202424026114605367656887773050602789797038204490826376 -0.008534696380896786487053453771413719344687341459365246030699337843 +-7.926028082944240023910486860737279147578387754463622386929685428 -1.219134467114872103264616988622004427634779976528318379586327939 +3.637040993434445506646499417037678896416230036552859778869405892 -2.640551759943988966648381010057507978324965139838745403235448729 +4.856639007677217641489111548499679520413681101035022043234386178 1.394224663962092302956271026722382926798171624030406788721238453 +4.925209527419375557259078859778729088543996253075324021805639531 -2.642436080789904892933779373714667326890495602685172680921989639 +-1.667114988547116829386659158907851587269816934896120787338145151 2.049112393335973324416385755670847092204576411477102106962004328 +-0.9723574839591327079063756484254722668532563763689474203072097572 4.488774883302174293179438907396682964973088445735943653953696152 +4.954833406827225558025668815763990923638530447461361041458080159 8.364321079200873154008544665901780848886382204293680721542611141 +6.440142637688394158218914139919499196506680718866505672222686096 -7.281167214689737118394115766748348920466774237718565993388463142 +-2.157778195262080207356415549469575103073034190087371039705956548 -4.509596393744929876672355746238515337716469360270540734368615967 +-4.617503090849588435891955103623906643842763163902285261366884161 -4.657320153594963337427811695630435355058534283450873792007046519 +-0.5629565271282502115942918140161299274709472935800200334445494988 4.623386960253038014929207071229824493535141177329310885096500554 +-2.090101808777353172193496364961975331612474079532849881456205145 0.7071354362751104901443059498364734761223818977988148477148256371 +-5.140671863359096144681927113707124172917464994036314001853487476 5.378247647801365062330420855455705569850072751411311517651645332 +-6.829607651998408851718653751574759745771842005875057740411976637 -1.293278988696796024160296318147580113563293761549160430849035047 +-0.5746930969692701492623768030890766948911214329080363531537472113 -0.8766230415066741476154044008315049521283169067131562825552123433 +-7.991186683050438079083627894668381942078581753970291531246326541 -5.337144851604925916365101965933809172514510392423698160492582166 +-1.052041953958217645118106866588743613438912480606102350430866405 0.5683859039324145006177410582176068644668940860350991936193679639 +-0.7673824314784935138612912110087543953631878360778162577500500204 3.585614076197038444971872635180617437921268675502102326114587849 +3.054882753581771228285193852465266931937320216407441276725144609 3.454264014151850692686620461492292532798038457208738484143906736 +0.2746551340207705701826061724234632509172321072782629724194306957 3.101419705751974006402075962733189730283298328279393376052446027 +-7.733904351926743464502075890669530482439263075170819156125050037 4.424690165657661067310131015773574122768279288772955976092336237 +-6.733764726486142650649157362160673734800053218956900948934291331 1.254133452817449636197356389738674511035970290365485570824418754 +-3.037178558655245098027216097822366724269845135023616074895295028 -1.244251378639574764946240276107534014268854710043196554491249436 +-4.329939903771104956643951481898663190597560097886108798328100326 -1.814623501230985720398496138835005109439105403665983337802071575 +1.851277676472779579943922929429737252970083537286235861194025346 6.304698922599318659622500537198545699186315698067674624793587119 +-2.690153823057182618404224893471121088122526205646457111547410673 1.297314996963889385596196389706575885313778471726276524349514019 +2.648161528102129096740782951809300782543724875220094129294092758 1.606892893020979290365720173987132951027526577601664347426200748 +1.952350756964937358245043893594897208516411726530167072215035835 -0.6716764443947843408954161807515560348781164186891439825995865280 +4.409613310769397338505707104709970905177854496218117133017126287 -3.721266129107278097773211157373684571203120157710849712922993409 +-1.531513066348742776774070256958606008923813192309768272701470023 5.634970390684142446189579791662359082276340416318498982608629391 +-4.626583172367032816885243226699563100568210611352300212672818510 -0.1735424284090392111863199427090390364717610622314936866139270525 +-1.217837294515780877320602752675973396513679735985210385572126020 4.611507920850186503013461942583713807969957362473005132100452762 +6.466056820457247428143557642824150978903728315544644537510560255 -2.686683172109784101988727862557798790674350538163124592591799491 +7.006585270859418029148760679408572163797182470313933337531729925 -9.877750364218314521041650029693868789930476446108700212943807670 +-1.559253691813792735842341176433651887811572561794053887927187611 -3.773453092537832917945204539599045262491647317154267033394460007 +3.573221919008426054110051130188846396691885360582125207587317010 4.946065776600567755014624687478616378473870459790272577964469733 +6.699291308974944138860784055846435817471221438297167019435115471 3.627169212008369110881614742869368174187139135187746628262016121 +2.369110059719067605703075475713951841560522360696547454107697220 2.349456421789331646728177523119145243175291534201667639355198022 +-7.351170020171482175049814506824646349610823336120452144435480494 -3.055135293936930918731829356619729766025654315620966276319045996 +-10.07927812263369560241699218750000000000000000000000000000000000 4.028170913457870483398437500000000000000000000000000000000000000 +-5.412004089818842253909521275452614674622272939942757283205547326 -3.057428939676193507308411808699246236994773862584937908714726498 +1.156427449506281031511638772504766749244266057372041921566620953 1.974160117123631111579172316736540407980121478853005103414727167 +-6.643560432550535818277196719506237604261916088020234894148474061 4.556659316815853286000160077781359863247786121354770191855677884 +3.732712970290437023211277682058016775507085669356884976183916334 6.329113441019345162151774056714429417315336041589972866197538719 +-8.336302571356349425539594411496037120767741515660842761073641982 3.797414287573502947299798010936325050864450593728107241139950414 +-2.593140106392273186745209571456611060787981696276987260437839322 1.404695424250004781564660453235370282964552296850032391857632838 +-4.961374935201085970168681162406513452429927374850970231721436416 4.055468923176998144270901206663639918087575024634259740903196398 +0.8199999830920273569270196878295183221138629884241493218040292338 -2.043815148772474523286242982959918160791874666030661319887501189 +-2.552667339076906691805121121939805489253491955710711900164484550 -1.383328617870118887482944319839704790803077202859364321982643092 +-0.5689675667379207038795891067350133134520418016267870002086906948 -0.6221322666140867485755460508162131513519067903376896091482204892 +1.145055214546660441128232612850961618520462821365312876947244624 5.965863429147362881032698140752508206981541017414409205510721417 +-0.3197969672831711952421778642245562669480656430980271388747609330 1.976878437460885056252217425701699759210254246258012201813967441 +-6.007432009997690130892531378447787628749456636380248622236555754 1.066110799392209441489348241301066975837104437785959952155501932 +-2.076230894995321220168856447807994385881972308929405767409710280 1.358895049643550897373356936722270246377998072696752329677761752 +-4.384059882969834670783576696585115550852407416342249630302364925 -0.3140420530824577580546729060251591374888193466550428599571168249 +2.821585563154229240881263097678527480055454342410362291191949525 1.458385917800679937940975994987900237049331153274754880860147379 +2.260272791246210085440947239711440761828753958230972047456567376 2.662432834524760735895454360372473295610897348017160702970301787 +4.132904622582642671161431621650950857042663436196298769301310666 -6.448195073129188511964692810661561928042164323468828546071380149 +-1.700821935116788481240234849440841249033710340114679382387359130 -3.387000514465576324541818045321907851115389656278594931697994680 +-2.940217746339277641448771802003920199488489767256844338402890833 1.754440115428999152991043839670758845699469773754012845505007821 +2.881828014212498671207886250776531537817131080464014331664886841 5.766609472753749151774144291013581117346376090363681025117768050 +7.672179138428189680936899580570470854508744572823078016576425464 -4.172492034762312796219143192278754768600015625355597992237026241 +0.6963440159669166493911498268056280195369856920591034354822071398 -0.6838262507301005488196000076771870033719132195397365046174420849 +0.7142942469162027095865893086893646856045954151119474858721812180 2.428074338991367754658974944477959313127085174398562833233250185 +2.727758090277556124876861646420326710749960084291715219947981197 2.591747363000933460924756518664329229567810162175122488515908695 +-4.279985541471918084504895333259364164139674563664266172659543955 -3.392377268825706518875906918318735574954595404549641677084634404 +-2.587062151488798660533557603709424812933812081652425151473783642 -3.890085421861208855685126116948955402333069289063155698270765147 +0.8343174277921475030306253461759949844672192032197244745353166202 1.100367502478474487387508539206927502966467675223774661859775023 +3.749012031411699401597076752016108028960269790010541716355601754 5.264985172587289124925621909016287469530539324977277601906434630 +-5.441275123032208137262827494108936710730804601655767471614470590 2.990878086703644545867790967970748420439331790996706374105724668 +-6.804166174424759449015388540205772107138818459527296304967045477 6.657151785141813085579218730083357639802878060699904807940630736 +-5.451367127467971472689408245927697097653774950232731182836983486 5.021046366864814550955575158584922501801082991748936645765626913 +-3.196773478749770447544060683154114249911158767266705599977837973 -2.637939315978075042701197535559289771443237017883581409057759951 +-3.974831192459717225815875791096237375717636766347351092669786007 6.461001056278350323064343737022181820818388898236741391770060840 +1.420963901945811181531047953502710167319003609424581597943598442 1.294255971841838316725118533532200437213285043462978276893091097 +-0.7992143601973780246134043222979867895020312237287778036539259397 -2.973831469358689512427450875233445979271052262253339305303151245 +1.383554101247846673808984624443943379489679892616198477446813594 -0.1746548886824105622972546145219110409052311579789731879224505980 +-1.064273861345644310316821425672229266606068532575997701938513837 4.769296325542305813065252674527323981701047161738029092960408360 +1.221145749065997432905194130830902782482711734142364256437801121 0.9735284354499755957955728749138086018526132251387161666225691195 +-0.3469357393111297902268099583045158856883766309325632438591699397 4.833278991478847601343140915475413316676899097530341918403295596 +-5.489767300414562603866342287234001066214916244187952693638935983 -1.167691821096694468527192688453918032478210575637403617940591926 +-0.8824814802108663122963771035628488919266894479259428319495953959 8.099614364112322031728097511478023227449027642913024815506095569 +1.227804893619111661116543951232508617622422670376815435411032658 1.153111575039373134575218264918155113763248607723850866920235503 +-2.349540264415757550627138422632380548260676099057747683591720410 -0.3131986278014554145153772812889627936615236834335453931704471257 +-1.814545206951395775812399307214736320928314037218021055534167615 -2.131594424721297212650209350519610925080824257972556273662699878 +4.245878119136801073526618790176301995982448007514099769022507984 0.8488307165125283233220045444695817706092981545815437322164573634 +-0.2476913703760927692556189405811693741204202335223886487550553268 -1.120382687424196270368692989867869318295966676291350253167669100 +4.012893248512147536672506872307967469334944788556293329527047107 -3.427923043863328240254651178250070010786441768754663384193993963 +-0.3910806759687934450374645709675473962899095049350234579528234790 -2.495712800289803746744514587000334608149068692312137456022504818 +-3.037605465557971356052652278719484854454407714957830190975745629 0.4655100863799645727171949214548767750359749739057795489757843684 +4.928105092719985386739440411643777211878463822996596738707728747 2.325039768697914014765644809612443460423877606945181295675626595 +1.036940192616215947247897381786615546222158164374613776852603686 3.440262282071048430595351162193068829996751086256269682281070169 +-0.5813392044778213471416041882394107152964441204142919814856151346 -4.335267541828831497882541417904828130888001424824291255254327055 +-0.08528496450212792035574238196539846720108584678152098977213049819 3.382578519100581905528332350331548212671912013517780767970880388 +-0.5829216849171347581610535632438222550725076948212346089015345047 3.936390633877526775123532222534560906848566403600192869026483374 +-1.407947118291972209899286303832880740207925911047516045087076607 2.959352394655684098722969369929218758695575566533221006136587690 +-9.438481202930334177252802630139860897331701423815954593142203416 1.334469571706454632781819872651131061297666465482662095193331888 +-4.737652473112794565228034959722586074560464828838919415362228200 5.126315035773639351856310202774481665715819199560107699037552082 +-2.369109734389977067123628224734769552963655768067726359791090969 -0.6839067113313266924496248690481128125909369136049931128133822749 +0.9493581125191228380544432350242982250014826964306527086462563969 -3.485218739643093348192572317239200813857847631975816629773470460 +-2.672859923660148580910696349825439083398292937929108206700927242 3.456575036211657298206479021959358025950066206742787294099055381 +1.131246176838581181576703368681880600654001403682001403914784910 1.788238886903854839693571219284384493002397802902183823690860772 +8.957761361675686756227414297523630909186491295005128921097775369 3.328906463939112690616110028012539969828985359241514949268765798 +-2.869544596011879147395662683137415413997785156371310746359378984 1.873721540829197547649123540473036078434799422949121974847455732 +-2.502242023104617269805042583709744674097546228330914873211703454 2.821663973086757390999626721363051797290017165491009191687110130 +1.341748331621483056796247837086989489968370583092824316368406731 1.301898075262632463400922481229067538556986621323038151809509711 +-1.325428290195314104266926996929246964315425490044109059561196451 -6.690805012336235566256742500261590295076263769888642263321623752 +-1.121006654529090567743557206848766200024414297465012694478936955 -0.7928439690251500249352696029054065855303950471768794803961122041 +2.326525030776475895065010593708606047017866228328840760348708185 6.202959873887802595797763116910663258992108013759933090886859143 +-0.9778814845619706920332119866169770595347090443047839160214066926 3.339610174610594382007319045024488212097466988435388283262263622 +-0.2276290591858251976690006512019693817688301445055236914661764586 1.701291784896863299722136974458576549430780924460424296346602115 +-2.469154199606166429623717725309951993308536824802124959766180973 3.612140073920040321776553863388799910066386015292529459994445869 +2.424946511926889013330991339282831748990813129779317946778598182 7.166409816721339095213988932941477447435013632622303868551370005 +-0.9299729944758967135842699846592130084001741559610211373799880459 -0.2448740362234194716800317435221120797117434915480475356424008475 +0.3953003226917717173396468278986428067517829753272662486950988295 -1.044235393043300391919463232535365547262572320522766764631724727 +-0.7851216440564448448855876300768879494693632900607144744014772852 1.343125581663367646918740715850643956914049667211160328470858684 +6.914618886757980092953436301097250983997457561261074533152864251 -6.827643820102818754479760121588918249165995871685839617691524305 +-2.185310084400392439052563537491535578788216846731559527550901068 5.133546885642468540835389694122298884959937649437964456706334383 +-3.266729523966402112127274257396927397706996551668836272541999478 3.943764600152856736001261338624889779508607395439927115004435694 +2.306915172573541523791892038086097492513613269816667682285475710 2.194911611566993868121903512543605994199088090434286771504520612 +-0.09552323797211728317395270468588118670687030732416108060531896670 -1.311866957655322441689958031916701488851002567762490803142175207 +-1.608407913667017765455089968304354734447958195776901094595260200 -2.203210088592197388066391040759122487940207693782104907753115196 +-2.214796823302853500817926658806810665122588751780600968486529674 5.246613733925703833311146871168806508759719243558926658274857515 +1.937918492312459985576120857309619544772821473661007908338179195 5.580319573564281630888097625380895057228481863906473022327455782 +-2.559797460216584723184575189167804818670568515977237144539510124 -2.086131178290404075726847157573114930646920888778353867363316493 +-9.551174121263787291647747149775213133247758725352398416073576325 0.7361307204308809093938642775710536024091134785068921792499281813 +-4.860217832450618683112103030335373057309429701531161462276700641 6.041131135257781689999289177180440825496402788021886502391049638 +-2.062699397848332144132617061378094116769721579367863110853965205 -0.3243814567047143194792410632095544606279635508126518614395110193 +4.041217414051814898050161846664050829678338315249019581133599108 -2.579567124992022158969341357373405573654087604263449566881119635 +1.144529809508882484661164119349451128870939135561412574770581232 -2.019977411534472852138222450784065563229623268832890996030821605 +-3.751906446027730096906196367776951052756885282478766706234991436 1.205208164112492893775981182894771579405805130738787579338551783 +1.518655264762530831957912336988410460810355282937625078543874963 4.836320897233944818364548280417401372401300600698005999233111752 +3.804707950543444128006768271769170594135719050856866836009820680 0.9721872571360973443084637429994730624375330113108833192831718894 +3.510879698728143531468668783095134072205959609380967186025316506 -3.771038945462239747234599127484753913206882628368365623015127298 +3.730252660260554926467195723584892834945080471512522793761662594 -0.8256571349661342110965214352434540215909873236119847620803290185 +-2.692908002703618934026156017655271389485571944068392616883170887 0.7386469606907160761679337773419039771870791884864090378402568993 +-2.878068095214065158482506952112360747519920723501507167842282712 2.402251998064007524440588621479451705862835018859796811131137716 +2.252609514492173696567530739452937434561037924960485156038482687 1.493891650251579494199746255008783749555015670729971924911593083 +-0.3083130660371018438569839702855506602920078856179337772583573425 3.531452850927689209333831220208591708271561128158977866417099543 +1.522715811050094740465753212287424890254151870845373485711350023 0.1755068190748338370471969433630499601236247887688447485306940696 +1.029893716362609466467141518729532079592366621210437971991075577 4.934807489480708301004137842359343104925488291778297210233268362 +1.957318664336207425575901342086401109652103323516680946573369639 0.4876399702662413438798661141879886763373353248142427617581310065 +4.713286440764229459241222449432692785794831364572674237155429278 4.383437319801262630590178795352085392840185462955288780110158251 +0.9197400595844535797154004770805515501795498868757925973949475718 2.170983352634585307122714209561175794041647999841312764840750429 +-0.1513743004274276798835016339677125017369526799793340023831132114 4.215576835598645852517139741768212815026444903776756981740733169 +-5.142584314818939329232868227686323107763505797454639994467986991 -2.352163411382340035698846506766379472145136531101838769054547741 +0.6795678643687401573655254277610603077014118338138845288653593764 2.391123724886364896942403844696048436737694117508343097001918663 +-0.6279247264716586780540964569601462926517354405913031377451596147 2.267687956144869183303771812267564948549012395646387808548230799 +0.7951757844912664498970107983484275081226383444445016288194352167 3.982588254936712367183529785344450016543832341412655784619552279 +-1.875068623911966668143861992375872897060178623634943395347462848 1.821091400981681418205998209545162563765808370950908199823908638 +-4.370708614218646302678276514519600315947936309177613798219726485 3.558429905158190663533345333732116112431895333447749136240761459 +-1.358560692169051881543012716333708005508528689058551905237572583 2.538891135492720767632573462798791699513542950994358724939039813 +5.027416886843349516976916783133150057210073945772598179912288965 2.814803896942340946563896992323086840059454239353447018279247409 +-6.326734122189326745861512908537530960669826067824344509278381010 -4.448541816539411964959547555357494763180916170818767769600715031 +0.3125385534891630252344972245322082137861801865232225280908476609 1.177787763085897001896344528050680036602800887265639245867153762 +-2.204033810711327092470791464339432991520741139843063535651292154 3.652826090353262911466399878762870862093225914250944527769411594 +1.546131081468681253280063851432553576339179578634709450416921810 2.791272277350209653269191647732694556372647889716989026864475727 +-2.683258874110277928167549513816926664776224702000214311369456679 4.556187498902651390669754771736584580553836020833898658260786733 +-3.328681669759574639244110260686165244122895355537033100453910116 -6.311083935924693986189664096980680241564216097077732334864435155 +-0.9747814197790936521872288255184820767696006881714880763989163193 -5.048371385673258966550788464422790094002791660343914556505612123 +0.3168143238707920690172715723902695435920224050568986228217781143 -7.833066204839498792208830170858687071545933231171070589024374640 +4.208152890462232272796749487614676592294651915311906045028252849 2.884715710708196290504659386929903193973601065200433106780984012 +4.693628424864198469247018843748189245965511748308825085740516925 7.125210131213740942075840797531898215883135813405315394714580380 +4.685582853398958936448038174293042684386289827524646500622167563 -3.194089794191545172925963847356656289670075822799151190054254575 +-3.525596514654445251434358651996811309949989671035524850437997103 0.8563287068311768492169029525005572448619006365817901884069473244 +-3.663037645705001899263001247765656619004783186430099278140319020 1.378196378014333146237241229642332732467551576720797106880702580 +1.590827996364899337012798397508350395020715406304686686249829793 1.802095337218163653294322374664125871344555413914308577625465985 +-0.6408637670609013487392975586468770089497060870427510138743073652 6.848050033523492866524154907653657442905652977928555194216942860 +2.650284693706784092749753587841442570050301121721211323719446140 4.514808015155347387718461908206636661561783107381443154934451916 +3.421724036889732497772832216998291638886984794301511081051052240 9.294173151653874651355356391467907476417876525082931750046339197 +0.5965243422819321823773550780280725037483158228766847471376913918 -1.034972785003372602996858886433791252608771324774320073840912527 +0.5508564668376712683867682315948753448951994514725561188068706345 -3.140723992614752091972878679041126287483648027302074190663341581 +-2.713899123886919475056704673048047605772642754247248093447362800 -1.577288796839678013073121511477513338283442111438062417952794912 +10.96747923628343043725498650447043164269501750212607409468628627 0.6331315657074391761803778041343750729146004059043833981990732668 +-0.1460860980593725672977637408202716645351419416425201132272870985 1.149863220333466780471755923368126287740924274926640348737990467 +-0.4281384269308313069648720809133666207359090645101255223311165981 3.741633293303277919282647211399399277310015303266105227977172174 +-3.364458266648724910631239452675091790170055609196652590775984488 7.575753634590572622866498591474792491710849394141372073137634835 +1.003378290468357711082965995594894271020058190922829133967732431 3.022626582872725739523655741340564770286984605411127636124690579 +0.05624695321442136076639525928622876869971543139577914397376277573 -0.5431685453002783888558851080210373473457292147682944304737875484 +-3.101198177555601456859092101521303986874955538588606289055746328 -2.236009538752070361634402786613640418844020867015967905946742290 +-8.153635597173357456863330662177496199791797708556747194213919315 3.444655620931487186334572199475181654551349947051208207303510627 +6.629642372570341861562416414846612387754739899418181744022279971 6.082369068949074301712062667655529849044708770992906087409719695 +3.401403571018626272943313400025577668715344413641969468548419664 4.645050579135762952528342086873260608872509155344355347687755516 +1.666283288299377624614989302243890058900040873996134063924604656 -3.683928555501310705278736183025334604494203119110518788714033706 +-11.62031690549868322185438439651139410404989933672724050472355997 -0.003182271977145704272635793040582560414964976826281867365417836080 +-4.425352231025608184925482984906353787325107411236930534227422533 -1.622990778453528780940131637475246803501718871762365665873180709 +3.398581512834765893766128086118952758413130638740441422691005054 2.088858827604064956766543431447428486517622717914354104602575765 +6.536732327406354853399794682228531192537486091659926887738651681 -5.975456913448609392921767096336208556192456907809873096164399961 +2.170567508096756349502289644254136693689160007012658598503097333 2.354940272686879970057660169307278688329521248926609270336235526 +-0.9162462113971469691159381927958310464443313521249352449239326891 -1.658558192020776420635407227488332203494485953131997750821521878 +0.4750163828809627639978664606168313422563245043699044384965956384 0.9697701809471317925470045700260230305720340346319196780303312602 +-0.6062519765480294831610035378509843284354392826398198879457637628 1.033827744739840187149276491364316474097254613832644328146352768 +1.261080276300794635141888260720958622577495145123868833441535779 4.449317751680838975876022968635030476688635238528215555455017697 +3.920070389201491512175272744094079633467342380866162651878641831 -1.198880235124026286175044164265109269329676296638632552210289696 +-1.493104130945341658141783532098103595276732262342231173056583723 -0.5793449159931531689675046792778728723648422789466434645335533533 +-5.323239227797240108492624718826019670523541950711790302513791763 5.525357391470168524567068761256761423043384231305944099925853243 +4.025144169135444341775057383560584804733904258448667992766707359 9.483106207792139023472358717926129608963550705881165739310558529 +-0.7808257974684842491320274077867558404049474920203581026275926189 1.743152749966886750922436307415001894641878638829839414665222438 +-1.811796850608501152727277967980305563274412764121389223857009566 0.3041947203171696229243591558740070158586081477954197167908346805 +3.538820203215810908317829626714678361903522204381265196142854698 3.232760086356934745163298832242985660071423794342744050103772653 +5.319738736668342818290682363493710627888154466505595051076128578 2.009728870877446612071083990614310924120861118048641350293232385 +1.458200027105854876563139127206611735865440770633083751879379895 -1.258584786048419678767966840291442260118190689227655064975672508 +-4.322142725337317930184814406083213003519351038019061579344665267 -2.706447834196096629710931081547258595837682020378744025349620635 +-3.136981757555897124453248961972805327047740752483449972138674460 -0.6841050395420613340562385231500549976896367203358594623110698041 +5.049094675545443789745229414130211011072533065871714748823478198 -2.627856723867625023693637593939740043815854214644798384432691119 +1.520725593155680537005713688622836388564038054384945379304815784 1.237554534912422785601060193302889856672874733470537949919968440 +7.740519272705412695535306925559370938216281283410927011075225557 10.83345226371219775488835080423286805028423728861093175217512776 +5.611926460155497057542871319083749310603384180153045552167014335 3.478061971543040520036326944224477914598326211415262470873753373 +-2.199278891089959989253538843894177720863454991355895274835159283 -4.305304482022201361556380008134335310760111101963203022198534168 +-13.19261983777475533708159622222483191145309163841339389361428043 7.718006552438170096460395060045935031155030448876716231752709387 +-2.765603750330866441033485507442826815015716509204289394246327456 -0.9602804628937550769016168291275496900167851947487065990586707952 +5.542039045215534429853649259316255164108991489513444009231232675 1.065519600011504292857279437185451118222729945018596760535760377 +4.152797313916177916045787976363999643612377766600897283447026418 -10.26817725359882950415549655127968022232858430516351447157256339 +4.052423154189067044532988486409506484080599841345745280057134791 -1.010407063007517037933751466200563594090827890603533789722862874 +0.03776036599787983386139734366712926122149071551457881220806396079 2.187567199586928283182610767538031029481779232171108562860545398 +-0.6770151821479377861301125699557476254328037238784467160054468935 1.954729399557392318758582075835577473001610381832333964508736723 +-5.413407689360738381592452203106844498597908590044935244965298897 1.590330793890881863452535890179132404560062975131498651062908095 +2.399319421266723995784197742567922305943713964391535669420156233 7.199239156204782692989879053797837398933502287588480795224479450 +2.416960768167482155509037035553513728761351136727115565692477533 -0.1091688342250936713192950802284100827136342883634247890422361017 +0.8641319589610973987044687655817002237835544063756037031385520990 1.152317746100405317287305717086516096993839238108888123511488437 +1.504117812528782135555400265660196271597969225394436363810367823 -1.439172252383333918276708461236984069515335344882450370694434319 +1.620739664135402975792508717060640803818655302901381076913783864 4.932108797582323440905105943288892985864533972445823899724246369 +-2.270892535857320111378220672912916385924934902650234378250022015 3.015808926791150410263913177388708272565544455390583695332755916 +0.7395079909779858792961239343914566147729070061867657888184153368 9.329374959548263193496759665499924631797096527751984550945972109 +-5.762747648222753328765622088756639613503328107204748022536496463 2.930573634362407047847118332311347198438118998412358138224754670 +5.434048116717773905243344043509657462816466462346538998462993968 -1.903357075248033719139503065129483571469631641447145862361762088 +0.3101802844631054669814376272050408187407835285868105116825101377 2.788027273413652180312846016733802276331947113409666218523549134 +4.105421599717547523491203141922096129505216711492160634913624002 2.189431525686975352847277329091986051949342150537618562529440879 +2.553599240818892555826978911902223537871355120484214914620633757 0.1810587019247713539463858687166383411516844537488850342982050989 +-4.038887639007110916422677031836218396781396792708502682354902664 -2.997120785959036232927137694319199177968198586757404207860633500 +-0.6414433538063276909844994039882429399719167651399098096031416149 -0.1201506153022209542767370655982996330032912942478450848760512486 +3.568878273385416816542621317074692625157629579422754272292337020 0.5568202585422434151475755705256957283405664906905132781390366342 +2.319046559906952709923049630703032477756300398802790423594569115 -1.914594732121886160830755804112723867603298041430737513334786705 +-4.115748705766248899427736769962766106838988362606653395701496180 -1.199684461740012412092636439693082456184121618524570991051761635 +-4.412412354167285245160959449647521057221569116083084909410935739 0.2166107191118034109430869178525038492766078812951050555343562410 +2.478604593845305135459885856991728329142323462701393896304114187 5.283037093448710806013717988977524365093578658838364034535637802 +1.351753886261420234777965477363143261139526360517762993559840311 -0.08421343362846359126194854192450521399689138295020474194212254576 +6.383857319272426901151402212901024984722630786655933072644569752 -2.760005488336201796782749928843058174036488877649895253827613998 +2.493316026846722495308910367144188746285948496109814929722304464 -1.253954795070683494447361022483712470509771440302569202773834389 +-0.02488620076479757780144502536812750479387063994358151845781237016 -1.670563308437678287336841101605894906723328718861032464110799159 +3.460704891092515547814248015640740565478522413159524417657664120 8.259256528093854087796688583565368837764783153364088088708670470 +0.7099319685553623597453825080589079220165247455115524118054584992 2.878538789237235306087205330078122255095001636233841134016810783 +2.193417351925051535716856357996073399782685991375715913553787139 -2.852774613708187533777326886375139857761656666124204697860537216 +-0.9009596879067593210015267121916147533383625738839522805118128261 -6.536867346552761976928554503952752111502076596295706292245214033 +-1.115791620076337053053395075237564381910211089129139745373228480 -1.064359912838172125666284926654193323042658269599112887996541152 +-0.4733012525078827361465757473991927248501897272690508917435656912 3.933393084080735777543037117378978695218991306256445218189438211 +6.500532509977218655390039560402470189000643765382382273869471938 2.524049024977658288819599667252057998010609830868680595763878955 +-0.0004359997972880372915540161762899436308003523376128932439162605763 5.107233645241454417918769024298151323887920393807279878558918919 +6.131230623108154311650165780033455400226197646956312892954417814 4.878646488146244472243700995647892677456335422105892610189122362 +2.064160163431529499894063240619874269762356105409863859085359543 5.121935035088271987450951246735068118966363866487406210494426144 +-1.185460956991769603083620690550209548474934621263381171047820609 4.548672588512220285473351707873564504705193593339593378628218282 +-4.157222366564002965127312582143827161583039534041103395202121678 1.197536097392098607647083389334461451295710933898639256022409464 +-3.812571263336556536104315348043956002449827180985538079055376378 1.742095611807084973285614929427381439111495538253310017182911670 +-3.571930929240066700600998375929325206016428182776383732313868297 8.724927393943577467725450213493667717864524097322826767550085214 +5.476633979414595778544320681142092467240806533311161693322957375 0.07320233740204583002730379957348585614608249244867722216843489489 +3.130979916564601478705945645840022188633308493877363584238922448 0.6034608366626727604302976708185231594469959691073443658527336159 +4.312259205702926955990833817703242597662351923262629933601611235 -1.622290599276310874923780248058845530698573230243857519903303956 +1.661159543584318423255460149265650654863341215313913423147348650 -2.336218407294054538489314421733643036117676073148391927975334305 +-2.599347841177136724676990071373774616910497814428008074041158983 -0.07962798952484046804945000592385209102461791114803775331280286315 +-5.604856611616008521809423953458235985545177350496202570080241768 0.8996972092831184524866394753982232530316889835763496197258983760 +-0.9492176947285326041500349874490834351281225518869775181034355522 -1.327784395704861458612263921073527927805374521729525232134971432 +5.711155374081374118504785968049788440854975073046325044024386752 1.396509032583906024726452751685930495937003160231142810148700827 +2.454560021764931609416893252045606826834378381260838218331996890 -6.425826483786908529084346630550422825997786465328750259400637095 +-4.128416683143528459957033499131024624218783834150829858128484123 -3.919636590398841903904156295439444989474058372825931307173577271 +-0.7453114566620133751700481332771193080847901675521905862882332112 3.577912966232938508142329057465760737197952988988958630652654934 +4.886070434428154712023716841557674928276507567798364255629773392 1.537814599254944335239136537890240258285318267392445206679744056 +4.653220238403591624989875310127181666962640979017202072880007479 2.076999086208574423649683807220872269783724808214536084805309496 +-0.6821986940592916051889266856627977176172653278814989196590965871 3.754029292603106603181125069198140862958943223477920341754394428 +-1.506460771172808165263208195530993477350508305396759773842224974 2.751998426180249488185589150021335492840529002716554559899218953 +3.038950577276083067533199129827549303835672694695873402937159558 -6.400719462118974568128563261794403658441940016818775619302311530 +3.319738501289261413836134244731605393285549405635989001823590478 -6.107646415552501232307567956669169198749558971297231629720648329 +-3.117587042973809162320269807971657222520531694000864364101686973 -0.3625542235765876914937523755738640351932559434662171464564139806 +4.247328757300358168492889513396449863372572843086762154692871324 5.245022994828872795475246314042696685909409930835340261993984278 +2.748731031240955791820414870401746883154258102913130197373478819 5.702822136944779119197680625509136047263257096643580148408304063 +2.471170787838527357774766103599671103403028944216489735319029588 -0.1072311690697093901744777037578191180652627509879177386315344038 +1.333510893308994424816692764219185581565949673810921945356904023 2.694182114029164268538845155385171927902946899329217463167479410 +-0.1747092225772081535142734215947068947465502386531818614480628889 6.114466254554952619597324919515166674195362569815264280837616404 +4.485045015775977171255118116916583321712065405364267910202068403 0.2500648747459974624758290235422282702594377166084400045109782634 +3.858180482048594378137574797631565489457195826310973673865353513 0.08379063279806915942358709745466948421978410175906887836986007957 +4.595748663732344953082368787576745787174789738901197538352628123 1.110546224856305347757254569978039834040516719683935520299344955 +2.760468520712428052061465446086304817717072857248751925203936662 5.650605858796681850254151290127614194929888737975347347396238411 +-1.646520715353733245651161213384504500068364220132561135794720713 3.089517957873960392991031009666479734153571557507963452649533555 +-1.150547359482917072431484440950065146157225426102547287731561726 8.480972118896979002374646619776563301708181357645876629846645775 +-5.842485513766647756845082535926326660647591830229571678636024420 0.2047050339255419361399671609692329496570502960202996199791322021 +2.247452539802097532592514999015967105183110178882124657629745457 -0.5764905439927893359222576474054271742016809833227565065417525372 +-4.878702332917480228504145390655831996344636555689415286133177791 -5.792607756719978633608029077066368613251876702304012091179639253 +-0.08850548522081369767880434968207868519482019879826706011045634918 -7.264135814295480392295067129390501999165518548031955690825394035 +5.318822768901971675093227720684851101620296157599791343660553135 -1.166959287818769570910157566654217397782309563117654083718526563 +3.469490116043984196181954619055040456600263602463560425293892360 -2.641487432032980868249209098576815415474695437926242708564628105 +-2.679346848515616113773798119279453486658987222918576695078813627 3.323986339362187370480761188425091231453672135913916052722194178 +0.5960286418848636174671152620381572324114085227007305824778618930 7.484993394315820251599604863087217460270118270627332836618648479 +2.646612527364257388500709883392605182265692260292607353278286340 1.270594960665269558405902299704650013930882057154803934683341127 +3.558332969986191355220384084628185600186520836910993814083131939 -2.896261246852040386860328228590980943091063003741131917168291923 +-2.758885171722210958109150061443433709895141036708268688832354195 -1.408574773435635269662317082220377375841896864631911442088436466 +-1.932890514830004560576002391320376030682694688601296935304685292 6.046611778674236450629172255754195276245263354053816925365960313 +3.247073670752141330506166185485406935077418075847441625954539320 2.237746288388837625811046441992389788507361372400266072971108387 +4.033619215858475890925629205999212045532278753791051572081361716 -3.569484723448326895078838765897794745793239644670960987691533663 +0.4195015781139281745087403185926416934954245498724115304386522935 4.212582469606172801948819180659311133157846958998008339890322172 +6.054165791154840014583846440830488932612807557839155309086806142 -4.247362766169342301651925235767799084375221997265874975607971902 +3.567915693673400668556287704767656405751743346285424784752666873 -5.159495345630903761797519413458072620979466420508926074140884514 +-6.423537624410550151601543056276138344780506295574666761775343973 -2.276070958653825296969472480291013039095274645374536656352792761 +1.432044138640098871087136496167857292130290232360972894990115395 3.625629956751755966234899802768378989824490096620373082015954464 +-1.268304624273399960090157797774900000829985518921742927795207887 8.773556400935870929236897344946230669281114469608025393822737673 +4.105935187531160224622615425046041747845722938262536810104161125 0.1396865422792246116140421141829247595328051922803586804844968898 +2.663707799829937700857874367768519035470682541282127950127893613 0.01010391966280621276860241336259014589527163795850675630675591138 +6.550703794455270580576747911634240186591449671838501881183671225 1.407811837654471815902449115691743338084895425058974720522628038 +4.558734555663535273698419756744113536849611037650342379097880006 2.142902866378886752371228641266854482547616369149841699089185938 +-3.318456887493165019414318019917029347907406134747683644780682828 1.043073784012581474432418224822668275639381341300543206150868867 +-1.973737990205941411827091916203319613414233858030388054278287908 5.104579524676747885453590110333384300726255265133353964704418615 +2.682796887080745806132474288781607747306979698114837367785682915 -1.465493603555158139606175607972017291287147810884828814700008002 +0.6303323520816891866674215482241333022522066397942977868161396247 -2.899520146939702604395480041785985013551097863331662029536134462 +3.717798809563032387289807429425855018094383079379822721988657999 2.080767114987444227815932973006413134014691887741298995300313444 +-0.9238361488839380070738494720408470326008658969283846636276621492 -1.216274807670150864537214249650835902146165727171209368777052466 +3.487776601397179327216597021199900364154897220561526592981738633 -5.473309375852698713996739369703518941740177482575529462570156495 +-2.440962081584469274749079172490968088708138541864700424851555581 1.007214793202884055536612975785284062018862677475593594014285983 +1.389967119647543120312220554813096815060412408062124380836288539 -0.2223468571967993865490145176500181430621529343046470221332135913 +0.3322091510514895133214957046766434027980390246442055383408197274 2.235575512554040660948717889459123603097970778782439122983370587 +-0.6264641264962398724233808548124599772099943472521856623240817274 -3.055497573607414840946911128643601866044781133180006777898608761 +0.4324914659900435664296752576755119353225169021371586541824625304 1.922169279808641634429710584088399560310157349791613740010878035 +6.929165635832556805112927972647217871726927678920828590528591088 -2.011700215599320485275744401013565065619961713988590991477637583 +0.2797701481324147729051135682999320964876924797966001187033916334 3.421460331900435310130229747602022046455754353400548631293392297 +-1.943453677119597823631485311686369506918950888858386725961863481 1.815313128421343498398924749927534060043543425705795132617053278 +1.451715216951123449588785162211498519787586016204045943846408563 8.662412595206773918346811375686497889503166099117564224829232503 +4.431202252811460551710036501643059271345146417322414831678771497 1.290086661459041117011028625851761068089521686759286769543782410 +3.159808599538673886773328160118790915963714470459323388287701802 0.5761024372961499756649298410378712879981128052988171725329570580 +-1.312269706064426779847827017351489780421975316219615564786024431 -0.1403038617473152851286943042305223349520902315755218253314585986 +4.374304946639857794012717403708410873553597591894762661641105460 4.144761755939606391266994529435100197105388374700297792781969448 +0.5602511525357016893843539839099475228665434218990534174010970763 -3.141831595308769271387897488016231810863125760827699303462415856 +1.268942659309859754041245042489435560616959944304900121028844504 -1.198092256464075362191616674124609327150987392279454696948118743 +-1.399388745543119025953586473739791475394516490403112463780589616 -3.211317081847256532089412483721419279153598390331954954310435534 +-1.660666764143939347699261572202129733349512311620016354212603647 -4.532020943147764477885814845159428531839633304388362661575799078 +2.342072550076366357305971566584491542035701852707467314081245700 5.918959789356459015402629192018998433725933986032552497882361421 +8.888028505897743601815010326431724200807995316928217257558429402 8.743844218995199406191875628241389294004424256558195357561922739 +4.705730579625369691593700672283598186621452945909621886372583025 2.059987106545042945925853484028907779037046458989474464106124505 +-1.018807772201642438241700074881153282584722859139877049513401261 -3.077903768112276185236829239327361747062340239577463234540955842 +-9.620283063418925476539881333044516308378876496862748502178929671 -3.387357423331643735651384189039280991484920003226002743713629230 +0.6447201373096908663003679961532906304815949457157368428005737146 -1.134169692039532855491496058746451995939051486361532900487247713 +4.502821149854580327705855765657002410710060243168744537539550212 -1.258887800613060474180916109470081494363607751275618946032470825 +0.2960113538808027050315972999561721924293994515093161951904372966 -7.150098503948487708667234183354057335108957025942555827138180627 +-0.4018470227260507885063382508222116439610205965495937367912749479 2.916167715864578662603815448659901658290338771628586444633671369 +1.647759858248418076614310573559283794338504996064763058219954093 -2.346933628180513406535930389442049214593581051697775945244212198 +1.993055090924458548716505877254258681479267779652212835265395458 2.119238795618522923837761284787922950727504528820847746607000946 +-1.774396750343947413092576944235315064128716387626191485177732965 -3.654085179351137829435812809956528076274770365831723016567629761 +0.2333443057868546372226975308919770915042750262780430226184412575 -3.528673389472058445340364910829818044252988416205051840388957548 +-0.7271838185884713805377150478438477292458229898665956578123687302 1.263240600210168860687800610075588250789616549184994073736805524 +6.582343690133546378799741457041743352449536771515249667727998395 3.131111406922631256778241564642383914219023129275535465864993380 +6.106611510026913163844667528893887016214770221607035267717507618 4.043818651566074580951651259501315702724300847357560870547016093 +1.948783169646874556246664894592074228595979718343585210473095360 3.254949899576052281650176975669489655842704381753571312916893313 +2.382882559479432989838069149753273329821628495531448345789948839 -5.074418393113279118594935205867935769012324262217136426371237984 +1.611811206015634720331475162019645517052264941591314609003871804 4.367867279398101881012961452837765084422025034274221864595002745 +2.182143812614902744128840376978074518193187908458556667303607224 -1.094397160472940769735404527033768477530304485813707674097761310 +2.809361855415216303261441404699851263042788104739913522435896954 8.340837818607324156880349802881522819795975454376597008514547698 +0.7027325564270202745614035425667897010200902878372955917660718048 4.013427700296345762586732575135883584080761729779636393122387839 +12.62247855421324824228450958984892374028605176681053549846585424 1.046974384116137360832017278532558665536136748960496226664350814 +-2.776116206571407021959985274445794920518383813696279756805792330 -4.687392414520463735390031509708203373732534419202333394811549784 +1.121668770922065266399613130188765971102341027628226596085681802 2.341304748211190102473065276538469175905961491912330886285961817 +-3.927147012449593593838668226831135334419464540164470821129535184 4.169130092099599175257681741712338714468058072517755729913037219 +1.864792966240777307778901200033012543204818843698256717734457027 -4.857407685817141064352255080747071811655823604346742795864086960 +-3.019239166806078883743071442315156119036657993013235256024477605 -2.509969862905939207944044438928022792390816405247504643145491999 +-3.118979409468759174955661273987545995148709785675193213769491928 2.525546327114073707767481650448448982164314076864164245665208188 +2.395547993011998357802310592194126607146927209917812789899753963 3.821053797365896145012671709918450423707660208840490806057841240 +5.741446664483206719802054180881063034033151398204300715822513058 -1.781083045543572165983234292621280664942520734818962254046593509 +-0.04262949027702613241358302256323635165520515220509888016177051373 -3.670987951195300090607567910908717367476583888286708658826752124 +6.228722879391911306298336913134177639426606716006114975235574288 -0.5268612513630247015942315652077076458851603964505251327268109288 +0.5574955641778287691602664817326969479016406674476452452122805807 -0.2025390202359301569933049519941197596394385690402692321124685982 +-2.454211819201892969979454322993036210099053871351062004555111273 -2.395284500473666691394702200358483421438775480554317034216036056 +-5.840854112985566004381303871127397254438573059119731879615313249 3.531869133196734482007538027219724840685755666382718079110480469 +1.360746807712184748299815629573021610130016257911268205007552176 -1.561420965305008250956389281294419138897848311544610470428934435 +1.780222291741314782317893447373401141220246838793714161368489687 -5.397123956268747011142729161647224733533758105194607084234598200 +-5.141880947510512801572975909848406160566294377768300060730252118 -9.111556376176716099354442083306398263295457090915476375060561244 +1.413915986584497924984409081155880422848929177518758951112960744 1.406138828084121492425674224371545065955044859468236922083852297 +1.088237193525471371419740302433339288614707546854344412941477934 0.8154247665815080052712676357553686893316453433360754146053696270 +1.228516862089803091903475975931095350428401328053314453622644792 0.4638779620869776182457187665337252245317446116400589965416886396 +-0.2259970731548885719499853131957863957174438042737835036452676553 3.591707890215118909237956785564114943032534050897684369439005888 +3.897467009349595693393622325373866378121838293795819166687618041 -1.514391537773227714168582142890892716489282413642287773121592268 +8.801539842567484668340858641199514478943001866506982618001960256 -1.576058538613342749059175466336252613218301099311301439590086257 +9.021608433226483174291089138139366088339377726726700018533739882 1.803604785988183384042196674598220913189390419094712547698700940 +1.335020091783920662132364207462426797035914410982336428021887774 5.565418182959705334611657059203459969016898938849377823898779144 +4.522954072170499295190548011232560815435057437984747790504555619 5.950411020323838614791427644713907630800380192984682075390250128 +-1.432143900296623628482701167876673947208343779821571340570704914 -0.7268977005107738317798084973169276154092747803666880769055483849 +-1.563084624866911542895066004224305681399688842985270459418601367 2.267678408001331247426889096309152128638576457721635287088394979 +5.451451672672081187724446623053892721495234997801494117630094346 5.891911614104554815233881512011481331946599881465763648246989630 +10.88311798921650857979217329127808329910369693419060631629143632 -2.142692852185534790745244887205922639132267767954003451201289041 +1.515885894067746493523518885314409594801253524299101400381638355 -6.887076575245576564812994900361806413707447405033795291026218128 +0.6504649683464803598832568085421614301944581086248093479174335706 -6.124851135714127774812344480984485013193986941563128637445030922 +-6.284222173951274834802911600711118981477326910839437186757261004 5.008835028919083078737502773813940025501831633996947152652395566 +2.055351883081608245026622253693314806848078605151825668603583081 4.548526019800012205821575638880475986862248637520068090523432897 +0.07361083719289865499874029214697235008700324345478575916951887327 -3.014120719156725914321347368123332313986532617925520331196063685 +-0.5662173896920974892128748282628081485261434825344043565311780139 -5.574622519347782676262438513772482666036005902987883871130232031 +-2.301081149558238398799384300373748780614888396006709362255100164 1.070061363883803319639206929176711983163525727662872663991032567 +4.465716334855270284469556972657477965268101259489164901468339419 -1.894357180120553469708139117451807024382728493879482791576576817 +0.2679080480169906155441012309745410709462439328736619528832494505 4.994724486673691689045668959598345504418952035908674655185833447 +0.9402955418152886284207874079398781840087416076394478184266737854 -7.722965416148056458354993353834237609165166554054793688507934649 +0.6959755703648762810190865858324304135521123839496468915036334434 -0.4713895820514323114996631554189694530384301750738566232065273881 +-3.147704260930290788061437199973314903394614161252814325399118631 0.2578863140463447040381295957689137409139292537582786219229043812 +-0.5479900798637848720442853027234662260702885572340558374880024278 1.957759383838042315897636606165454007150365768390504896173719633 +-1.164004450134194878495227415607704462549777730412144098405952628 1.136622376662111061320288481841106947263494337159616985185493861 +0.4908066520300038755962268797656393955870607421722603473444999843 -3.577574559678914313051019981613636915431245726690756031239798539 +-2.766982120489690796987054326225379697546901778671668621268281239 -4.444243542662214977989748672004935567302045883165047795099299523 +-1.759823085654691255089230090794302137277805465317953517309245170 2.133454407482696449889621727140354924778010867860426826123433266 +2.071647307376453756264514115686386307511048296693996942281019335 1.685915704258151566723551222684017714764244672348556791454162500 +3.003158179935186590194327205266253261643060542470729093347649258 -0.4083197385504448184793701809956645874572015577784858400005129391 +8.257881989404018329358319588806067542643976479836678326743757317 0.3290038266278405119171537570201736067858463359748796417680594316 +5.909226884972266767607775839073590181440972698336883620428819771 4.227542004300697986792845009172409551990392456674891957721121600 +4.034247983564726990575653466635545317834739681949147709772324617 0.1434257356281249212956428006629784328080861709826034679716296299 +4.806796658772755312752966642613752158378016755192052028776047756 0.5852157106277959251582572500259503999945942618891413024587264219 +-1.316946530077586330235058901517119297991094814751481115519052194 0.3769844389223489957279713053396071608677837550279838365370643227 +4.333462710887604650309688256092774788376304405607277590126516979 -2.897540684599505021382839414945928112377048089845359297130033377 +1.298572977143727909508509372131592069072354337805717654517659026 2.995081877952650743833827699845570608484146400679707616915117535 +-2.724785102530404211952056149702484615721454829439058941545508859 1.895325471975394887144671959444498744908751946728234606889687832 +6.189857853987862931317014608980724090672230455258406492767098247 3.170198794660806096124330255658079365040253704347873123517791203 +2.946425688913498437142559387983663015770828982327888559913211837 -2.722596630751771970205174434981761809997072062226679738850070485 +0.9192674736071498405481320532739618560296645502647646319634846395 -8.357968032531266343425698781507179185637394156777919748293345103 +-3.755469589592022271777082595822427101986599273880997859890135119 -7.818378941025080553147667564774525307039874429857453019981541644 +0.1687040128180580527706315442593703655427468911211854661665110115 -2.392172670907097813272154313951211111416138003894106820990515446 +2.602856617343917836362394737877823414656223664691404520467871098 1.685752142073227240668244726665417006179513026565819196301354444 +3.240792808148220673165153441396062349521246126702765402460103890 3.251333144838154733711551818799921084334151413590987367354738049 +4.884836508475278130132211588666180437062252981237793314818135422 2.543794826215524057678073530926055157719865358780610380242356042 +-1.580447378453429268926673465061998790121082459810620025647105652 -4.576017643794088293606753364412058070375233895854257499805569659 +-0.2595992989361565240186149485727560296435487629357664381565890654 -6.313057964444821930412588243896454303579866768370225804899076976 +2.448670038352030666151075308040845793161136656882788747889402000 5.010311721828807104213811681559815494610210905556291817245699270 +-3.517884789470997290342436646064516753268537537397786418689406881 -2.401270731811238380023792386065489516251394721598836526366642612 +-0.2948619214758761494886462422384925206892535547950014558863160897 2.887372955915608835774382200757140031380283976292444745717627868 +-4.141042379711153330700932780309138731579873848954115263452016453 -1.402347157566425283890545817831303593815143186679962366187217430 +3.323101428665035221391744286709903445943926571784127943945538017 -4.525568871596945734273857978522713387502728294307406454773507672 +2.265577619733781312566819256007134921807551608189942649357213520 -3.176272981611520338344648744484009502538903753876471023236531843 +-1.370455439059058057927969494574546700308874880332093826059508206 -1.911829646975114021305921551329114857713607794635565684224947309 +-3.837160095155529646296102566150227353901896007308066400923925359 5.651739448848670587141135567206036709100079901581617485514784457 +7.134620585566209000054914964312293381900962249629443892936432589 4.928659071236601959055232803945388340704692637389023093911554490 +1.734350387676615543880567091004195339620817114879821180806856284 4.597193847493601940921153345619934940518049135649466804780436462 +-0.2582003179352183456935222562669385691016099797863512500346716020 5.666060719047993525700465081095234261840492449078252441186335188 +6.030280739635524916185530464537269010976086728736885801153823149 2.224191811663980980243482574378201232224887059099591901209109182 +3.076020590669928919694557822825076663549619923231290610598831804 -3.743720934673511560969575001360183219334867113510076861933155003 +4.587206818345298233792662927024566241760338420107481629745474783 -6.408048130625934897095893832148809066038376925540985401811577031 +3.843330241750085039779080122335944294991965862154766241144428051 -1.266635899839073411357177993178810785479244261045747644009755570 +-0.01048254285773851110768318847867499265931019606569159513694878022 4.552607615069427645798727641865847176272825050110230057101743967 +4.324675017190045801327198720026878346047470898842352182212802629 1.593023545999804982470970826484447571974276764633662136045619672 +3.541261476325547565465033467735041225901938991855620562031155345 -2.032171893343376682635492396785967615013421060878477077387979542 +-4.463926050304762459541389308850285037737745566053269318672003014 -1.879670825683819755081059362475313614719723947027573367607409860 +-3.030566521969061469761270688017536907106541227106365995152267029 -4.444188436993425059153378270379570460193846017247099680311098916 +-1.612510981743686138503563062904538163303689636420581532171012632 -1.408105670085800889619312182569920235561274198498745103921368246 +3.979959737092563586029245223772206031210625401793439261125434756 -7.878558777580836081297019088733172377894935560238364688839656674 +1.440014372041857529235259039929286731101033886485470162937178842 -9.248324579740404614437439139552176826176789913880169408872212249 +-1.787138891782146573765703280649621171357297914331631739692331617 -1.775102917906465701147925824520833392173260899606053876329346483 +-2.020250361248019044028838124747032640078540752571845329529380165 3.438097372600604980946930049985765970124403952180971164596679156 +2.469677842327152474340892138180658385337212641795205491333879600 -3.325138558106270838622570460984783247815203433553009253176391248 +1.825410820710789647667137353164176286069147725968098633168778407 0.9134535034051798366676273080378945170847336439106735265914446350 +1.855819769094125764298429194433419229349292298219851881000529397 -2.304953959801542977808615069650512299930638573525520575416129614 +3.551499504056849199148662524763736279615280917491949127369642484 -1.717321030683286398493048503983373871574594443728014132859938791 +0.1384964276328418122976566229805386755044410218058742020041440918 -4.423855504543471343112298608308806174945765505410037573847125694 +-2.225064467383056857195526945156676373057693489386455769830834188 2.246098241634162853129114404516580809484317431395577389232981875 +5.484836114096112734785359968574242228725129234600690765316333802 3.279854757247181111418944614367813515455883095639668012361175132 +4.221954634417760449965482516207781110213304401007305655257692288 2.359810241258147959430695412738050886608702536319559180725952603 +-3.388559043883385685195563052500676489478761322192633370432566762 -0.6174765582737968184246691785963020477400071993674284835340265563 +1.216801393901909187695951665798839276099803755048123688483972246 2.990194494239456518597367406744602896999411870452991854590687129 +2.191879234906306935444198868993231842526885883284554549170219733 -1.231411162151126460826663450026687233238670041421319074240328770 +-4.128494612430366319263246593377998478059021447863233805015483650 -3.178906386867388331458648082769739020863195704436466339715358009 +-2.149911723557907826082467250874994131027886370337478926343522178 1.143707366788678887877594320586755063105836600960568469950235528 +5.530744322297828065512049510404790084420865460308384531710558752 9.529627095936713726880433119742004419016929613492311630404736229 +14.50220912749511433701256209981888190203689159930988260125930364 -0.4100080023214503133947384703987029227456782314333620687593827398 +6.681065826717723184919541159423489122521697039389910873553124424 1.333875423371381052395488051611732926441807457740523551705894506 +-2.261405460168607511880539530393982504149958533290683239212990986 2.090865113416140285982894579097262711312412628481243220958474049 +0.8029102231418230487487274929034056558542396353636449364269694830 -1.350833600844219156830088510188814451851298677793768294185694646 +-5.655421920220087755297538354618639354214650962385064427446042949 -8.753353472629378817479679014047735306548116072141669005077584664 +-2.376890368916374067924693251369777713923946372897704847358562503 1.299902331360411759879107279214177867575728021605064888543085918 +-0.2656927044650522801799784743204885697232762238313876677482628183 3.625826824469970357823103810327086292296253806228449522531525544 +7.851140599735130420202116817493390211385442372699203574162906217 -3.078324752287438631744982727809650177649216067868713982233475875 +-0.07075126489556838090310066162031300926387210267673070505108979655 -6.040708058845214559144199872113190345829450338521046605684887471 +-2.644101797513777640840676685833669057105452586409296194274587359 -7.140954547911918675914464486212583855854792895936390173155849495 +1.712013118966600066807654698799355527214497305295110098865983091 4.649389463776224349179847762245823086498626984107412401487909197 +-3.370063262462190154398879600526086632528543318668501840945847284 -4.233501413946351230150552049518718316663026567008433318106901334 +-6.608422770514141865673832156262242454865687000504207319723929908 -2.637989873330492479186443069858096011574070687800475783845537556 +-1.377193328068955955505302006968677823269188388205366040344711135 -1.771848811411160833325786027619150288811861234860386733315442848 +6.173096200307151919020373953132486919661034935787638370176713328 -7.317975018448209950698555043075887158680322829747775894324172000 +2.700374556592181242961031189989055559508730850900061789920275447 -8.108588182100623845154551692657186785137474697272015770619415156 +1.790927566482022283096970448678111597955881565349462653838857120 -3.495872348492526696762578354379847119138562745726878643148750381 +-0.9949322835922244576086218690433824039870393680402471498489223830 -0.8537475547449008962915632506173418913899886846046317747792351279 +3.198770281845466399775521561967745551161711227001391652288247992 6.165505546165306071343771235007238129088029569949461553401919751 +4.092473853185355656609033207126051212665561468420307858387563282 -0.1439670050617801898755101592812287793603206061852558681494414907 +1.096762763227011927027029039728234333267713040293071802144204809 2.161612782700781713705947893130090800662889775332959540099249101 +-2.422849322031969977994630868194909861937726890106237148705963973 -3.491131642925949864419535561492136422173824522106777911537394695 +2.630970425504114715654725969775079271991488245868324504185442391 1.103726953775578406177207137667506800709015692998116566129052277 +-2.704850270484215575352633177839821010658262791041222584458913190 3.263591241234518126940856579308791295652006246616183681940729771 +6.780130783392296542316216597751670771002799442447684917808474610 0.2007353120945860818675056830379247378501552183953958753522792753 +-3.794110148386855796666532942953135508557459491787037392447655652 -1.007260978890758422984101719011612159196268799811900658285389761 +1.248388346091614505141581587071267618851135270858784341530637828 1.375573270704256060503089654006698213271703198865134206475653780 +5.229880435232588273718273407194768160208046989794738501411195849 3.958634794247392872809086460864171194607143535463188547946576165 +6.790096809740005537411538571554995471444775763458646585580144628 1.344714497893483937754927679636686788719210619552339536801653933 +4.175978389692277504663418916043431542393083492580401584812582925 -0.3787058260954400645458638863112789068878953815698104224523365387 +4.129754957956722653977743713199043400208561169997924758920648067 -1.089873742827445483075433133783721439524209961433811807157188422 +2.133664683578392681172118762948488659875696985795494313386306943 -2.754634948775721556143179542926707455629670067029343848201055944 +3.613332927725690002347932670701298127976508511718825343991431484 -1.000772793453546387413244690419358350629684376450172097651908868 +-5.609327500232703844329023883501645245874413411865633752749389913 -4.013711173723472610344739228861619429942578205810134667588191755 +-0.7612104923228593306013901549060290592563652014549147159889716481 -2.210557451067079114317887880501677825393419587572639657200650987 +-6.811891847719262891202132231411676259632809693189448839476691836 1.187073365835017330445850876718038536582656279936487156568974267 +2.688622421156420605386460343269935568147219773152616664015623195 0.2479567903406852237034076539657434702647301228201051875007542903 +-1.096992080467352497910887355822837157356493627248546008541929171 1.106563345984843853802925131128533719524494086183382164833722488 +-2.424115286139015931392162347673803781949540399035594767506899692 -9.151226310296702097354322502759781440703256509252232541916960598 +-3.727278379890794163870854239133430361413643790730936016414599598 -5.656757446760197172106777538279651037115674294173528584331683624 +-1.792597688016577130107930653457361249692343128231360803463404320 -6.936500483641685706397324955455415100053939887696691901093954428 +2.805260184877431519431427041826375468374361665549821295995072835 1.471598402488917251131929897478179807249234581763908723551042742 +4.105324026100055622135161364861275449115490558447902177932192717 -1.210956971804797680302535848834833405650222138908982772514256900 +6.048477652006067167386489135454054207466154962620364163155678891 1.520898578492828734762487690066388674101207401039120459510701997 +4.426025052352808081225348976635945904055251558969223091409960132 -0.03761991148217086042222254305972826974875775988236278319295291247 +-0.01863851430145922630994965528644716207556851372514377734569266893 -2.595616612380802680579949090171941382865727009860917612108090608 +-9.346496416123600789836740499956671866997973501307491678188216395 -1.099260900705686476383134940493873049480008991269415780952427402 +-3.946875819953262644701712603529871648373640614591697760232343479 0.3199598107508560987704073459511871153786607173820816776867956821 +0.5422822720988926398460949329476511440816438010290448402256318553 -2.739669759703563388679279861697746113032193631202695857190381792 +11.14550939681444786508802178078126415412328709845541389537198295 0.4982222329555586399793505274931961956177317179370450360509160065 +5.195849278922421402113493396825984702677694108615500791990546680 -0.1434856221434053013133179730289682964301784426136021363917213658 +-0.2624827708645419132711041139707677312483704993327885444083769017 -2.678378918364393531706998936718639044871352866854258767801892102 +-5.418306890946566394907693503228859647446070796966373026146835616 1.849743331293008036913243325848467906277900681467550158364765781 +-2.139593632214014524876807729894038240748444740011240968456420717 -2.607676217916336035262419225760548634965999376660720129245396902 +-0.6507175974515771411784475520354735926964999790292145555179809390 2.253824220826955543049666518352583509597482912044562749721336179 +4.274990540886393286630019247727106611301562138233561582626220987 1.562438973989023900685105764640389799551164388955295092704994182 +1.016850340620710263176006035541749801617066111259649343052267581 1.476745082764704205612928899120295993259716123821370553803905815 +7.994290296245599061183085566381194853006286957389628514067428706 -2.575608410148081599503061638665613924058694176596430155891612186 +4.771069553759573142524802390677509786984518861137599536641287067 -4.296787030330629468874809431731403407580126327514987413463494388 +1.117510326361331218398456130935130392490079485923944078210097030 -5.170812760249766560318796257966848194255450753437953793244547735 +-0.08607831627387729273849338209856934925724812374232678234000867238 2.452088346118706638441775790921268156257607046521975454046844514 +1.710511676479386913280608179440215617490801680673680090056530810 -2.569360890704287856021748514620623865399778994460337165221473822 +-2.864776753931362086007230021463984522982644698152901196025831945 3.839206374246824198454998265611990796562748048766748593966916752 +-0.7327121838712489506265932135805817579897999077894147882657602000 -3.120783092182087931106598315151883076800373145416885660130450458 +-2.321359820776484132986541575675968946707215688801727696998836420 -0.5672137840892915545713985824755229515928104888526904938944465754 +-2.885700542616995238484244689297038487771888193394099807619807302 -7.978113544169072726040984083908416449237842864259598820662838230 +0.2198400042366194134859603740316711765421970259644073597675885188 -6.220377605128102743585361155810837230196669672221243232485809558 +0.2438297721794939629851332645384180188233867924092264849597943828 1.196606282349126337634713849640184588617972266640441548315025447 +4.532103466903946795725453569143209729163973040812417124456413734 3.188539075960003912850262275661171867932344573320586665892734821 +5.723723431477127257050873877422810037164913839145035010456447136 -5.894131484694012550673461180076647652313252418256603295923993563 +-3.366957255636780608868266168350126201545359024823571433418745175 -0.7394572692117464024920017276434814660258660845314500629623213709 +-2.336473622221964923775851216232393998865670179400946982438241718 -4.985056653916703791020578226084287700024794991649074953636119360 +1.304675535228310155989674524593620927853142310511569846963361640 3.869826991358743404285525760679460950151850979550131106401090541 +2.531669760649733818262143436791776870012738540662757489895886195 -4.157820645506479652047482687690881154772657093690718216294576200 +5.914441192980586249589833872742683939353032465867046424808987080 -3.757528679677223230475363813368189549681578950760245745599004183 +-3.495937850802563596409438492648497662898398342759277251035606833 -0.3832766801487689104179825051562843201632667913533008038734490209 +0.8266414386837827227422930145533643001038094464661392855898850347 9.088421014865144838651791025977390169771481705688741882925334799 +-6.747031502430507698255775566936883276018183327268431665808976108 7.067982866500064081671924585766030207709011630851505176817522627 +0.07451304780552402268839188637824448721258423982226526437758064036 -2.123512147034388798358346880862705277174449750032147211727171312 +-0.5626893944991319394076471459631656824265482308440753606583020397 -3.098103917670398079480962545712530593111159844710748795428048810 +0.7347145282192502498483430268769448362324082716037300659330373978 -10.69992213966870377171555342854408088752281751990389381722882782 +2.811142823564873102417589607272999780372136995885984792005402094 -1.117538698184780757395920531973083565844151289445330020776015283 +-3.235183229221434564117782860379400847135590522015664506157877914 3.340741097658920000906207195338799383033051600955505084718581607 +3.993781464277221736552772571522404516876315801592911859668220376 1.664251003033329810612291781756593803452204278371100570878645861 +1.886182733005420142228383778438693839881445770396903906208488011 -0.3489789746200134123068131936449078538355024676042675703136284085 +-4.565513401779394557283913648976421192545469402173028707427740630 -0.7686787873697968552082476749969721433257551220368551327730592809 +2.228484860049406987992481208019716605876896356162806539104050645 -1.103505121923118071347458452809381988497895490080662711023840296 +6.307368088869623479319632330180146400614238533039244923178162120 -5.177350011062738461166398881727255898373531896878788416760519768 +2.925560438098098442300298774038848404524441501564375336376600710 -12.24385709444197423907850868410149564410092300268312561680918234 +-4.765733735078459342409485367714024199237624756874768482477230128 -3.204172721396705338620698730707690460578156989780818621137062307 +-6.332175935967837342074730229243524803506569522189166693372217650 4.153762032436263391227149404681835932465649441130607415399531884 +3.348807757145656386639388856392676354804874954411988709750485047 2.858872181460198181633179557856510856897640658003726090040935415 + +-0.67122375965118408203125 -0.86398088932037353515625 +0.627720296382904052734375 -0.43105220794677734375 +0.3997220098972320556640625 0.895573556423187255859375 +0.595484673976898193359375 -0.428485214710235595703125 +-0.60964930057525634765625 -0.24829886853694915771484375 +-0.0347654707729816436767578125 -0.029510028660297393798828125 +-0.169870316982269287109375 0.4864058792591094970703125 +-0.755714714527130126953125 -0.21466331183910369873046875 +0.3345353901386260986328125 -0.16827811300754547119140625 +-0.9031703472137451171875 0.46564638614654541015625 +-0.695392072200775146484375 -0.726423919200897216796875 +0.1692381203174591064453125 0.952732622623443603515625 +-0.557379424571990966796875 0.88701236248016357421875 +-0.12210150063037872314453125 -0.5117893218994140625 +0.03651042282581329345703125 0.2541941106319427490234375 +-0.632904589176177978515625 -0.5222561359405517578125 +0.408313274383544921875 0.3426130712032318115234375 +0.23039384186267852783203125 0.1738688945770263671875 +-0.720066249370574951171875 0.4906054437160491943359375 +0.803710281848907470703125 0.5454285144805908203125 +-0.707118213176727294921875 0.5949192047119140625 +-0.9838721752166748046875 0.9358274936676025390625 +-0.5949738025665283203125 -0.472019135951995849609375 +0.16645200550556182861328125 -0.12850828468799591064453125 +0.9765675067901611328125 0.4143643081188201904296875 +0.565162956714630126953125 -0.2684365212917327880859375 +-0.117457903921604156494140625 0.743546962738037109375 +-0.63152945041656494140625 -0.517359256744384765625 +-0.971684277057647705078125 -0.23936317861080169677734375 +0.053092516958713531494140625 0.13455797731876373291015625 +0.817258536815643310546875 0.809638559818267822265625 +-0.705997645854949951171875 0.49922645092010498046875 +-0.645965874195098876953125 0.64464485645294189453125 +-0.12680275738239288330078125 -0.45174920558929443359375 +-0.2918525040149688720703125 0.12417598068714141845703125 +-0.7517874240875244140625 -0.4144179821014404296875 +0.12913610041141510009765625 0.1038923561573028564453125 +-0.844491302967071533203125 0.4189039170742034912109375 +-0.6652619838714599609375 -0.63506162166595458984375 +-0.3327734172344207763671875 -0.50432169437408447265625 +0.3272653520107269287109375 -0.4654707014560699462890625 +-0.089115701615810394287109375 -0.678227007389068603515625 +0.3114692866802215576171875 0.5353858470916748046875 +-0.746654331684112548828125 0.4603128135204315185546875 +0.15686832368373870849609375 0.383426010608673095703125 +-0.77490484714508056640625 -0.2157285213470458984375 +-0.064392454922199249267578125 0.4404701888561248779296875 +-0.042777962982654571533203125 0.599952042102813720703125 +-0.787638366222381591796875 0.117651633918285369873046875 +-0.4388888776302337646484375 -0.2914054095745086669921875 + diff --git a/tests/data/nfft_adjoint_1d_512_50.txt b/tests/data/nfft_adjoint_1d_512_50.txt new file mode 100644 index 00000000..d2d86a84 --- /dev/null +++ b/tests/data/nfft_adjoint_1d_512_50.txt @@ -0,0 +1,621 @@ +1 + +512 + +50 + +-0.293711483478546142578125 +-0.3652760684490203857421875 +0.4581411182880401611328125 +-0.464062035083770751953125 +-0.14105713367462158203125 +0.3624356091022491455078125 +-0.0418145470321178436279296875 +0.21868796646595001220703125 +-0.3764145374298095703125 +0.490465223789215087890625 +-0.11417238414287567138671875 +-0.37890231609344482421875 +-0.3476557433605194091796875 +0.0286203734576702117919921875 +-0.3251626789569854736328125 +-0.3676159679889678955078125 +-0.165545523166656494140625 +-0.2511577606201171875 +0.22261326014995574951171875 +0.3822575509548187255859375 +0.2608173191547393798828125 +0.3729375898838043212890625 +-0.17088685929775238037109375 +-0.4988416731357574462890625 +-0.15896849334239959716796875 +-0.4873643815517425537109375 +-0.1285609900951385498046875 +-0.114561259746551513671875 +-0.2049392759799957275390625 +-0.4450837075710296630859375 +-0.2685362398624420166015625 +0.0592312030494213104248046875 +-0.228296339511871337890625 +-0.32174050807952880859375 +-0.2619234025478363037109375 +0.0630818307399749755859375 +0.084093175828456878662109375 +0.106795005500316619873046875 +0.101134337484836578369140625 +0.0343200452625751495361328125 +0.00868958421051502227783203125 +-0.089841820299625396728515625 +0.493625819683074951171875 +-0.2820950448513031005859375 +-0.17128436267375946044921875 +0.09613214433193206787109375 +-0.3488514423370361328125 +0.437466442584991455078125 +-0.3515705168247222900390625 +0.3234798610210418701171875 + +0.5535876162538537815655031019209484093580583663271246007199015850 -3.377707268340096099043639544734534819399191932261432041803801466 +-1.159169930193916818123943938877020710410722507887459375460702225 0.4259627954327748354302729384484387255327714995596625358243045291 +-5.080223616627370798212402680197311057550556546005436288335557542 4.248145211993306518617149506210893177861307714068152715818681834 +0.2016321781223432884566174413052714798682796913497315844835617238 -3.398897681978317655133895234149673487564744776870233566586277320 +-1.004756854063543939158742958020045262789284996296370541473229059 -0.04070649298136955134943619267381817782956959184933819776586758530 +-2.130970275273977026678345555444660050239400612452065423383974049 -7.166747837914812696983234787597788256377278209567863896655100457 +-1.430828347358873109351457330558195573071702604343483181540966525 -0.06562748244978915864333009228943454449296836469701692610458926355 +-2.589222043163031173903664407764933828173982135441061420883523814 -4.831378605190560778856190067078067120381992479236799060428072305 +-1.356837154688782098099329885629317270749850887162923080344542228 -5.916243301950576922102350844046285505703510188617112197077552894 +-0.8556312841323337829250447072748832286802876948099799482476174170 -0.1912879567410727197863421275119127505472471082813470018924292771 +0.2738257128719351561099289932401289240241245054635904609309659454 3.162147887424327876775754251630626140025048036439512286571196186 +6.566857942544875669135596755214425464753372889821364930454383837 -2.944521034608331624333658961185230799229698635261126237156179631 +-6.587463018065981620534133787486394629220917127932402457481803534 -3.263131921625256452612935669415244968554555905583834037939938806 +2.641058797282251108342307341525349977496912520927681940959640630 -1.053323240275458051695725499230468337980546551896391265832611137 +-1.235531938751079190204724112157618070589844799769295613557090828 0.4513863112152831910085557385428057775288950108416504780333472161 +-2.676269920206311232741986736930771737609578962758627229905827238 0.1475448370683573540209779981068203455282372286028640878264045819 +-5.210228311084872179838543071342664641952465980031066543789209496 -5.937772527976455915785424960863386182790423102458974337547292232 +-1.795344791965114768312655268562713802104389720574944392452143827 1.780435923390642397736238452605569552029272800048687389336757583 +-2.466266100476416644819347816891445134390117309702708040764226897 4.761988457354665414851689550064863738161796642821861407568886433 +7.449822386865166910643147825789446444548269223175216149679059149 -4.133027597654308381022069756238107076731473320387152273671649960 +0.6478353675245813808456473643153366310533884397751623129726799257 0.5670928280169820765184609095488805692785581937329780556242890034 +1.010901497149389159981780542017289628870292860861877895433964499 -4.779204240177992031006766539592814855603467979117299249653543699 +2.701692413981071491036345490316725993372513882223222332949101977 0.2453453468150712396051419799882854086240777109075066688121274242 +4.668424553409240275751897312320285758347132654580863455316899869 -1.468053142508837990668379305227987409898514431035980999540595161 +1.791515446205164862658407232656862473885092627832254813792799585 -5.115299432426315122636934303594354697859517197039768148346802521 +-3.695751741575488694329951121962210009906150517317707523046504676 -3.425703391220227222391748130755535045949950523120028955525310889 +1.571721963928389322473521786247081078601010806410813278082428556 7.516294268456793046563084224325626838833716831406516513721463552 +11.09853706583764996617172535155832852450919645377058589465612984 -9.593733369684606523338956495924240671114882855499930019650013069 +-1.214557447135963323897368235722331458301152789333645537076595754 -0.006250774327945442084464725745550180205947346975566238449299924248 +10.59328170205216155478082247330361074203600435533463763543442090 0.7989449739358233083008249308301825125321853234312622657402006990 +3.423910447913826203702890410182315681522197944480966450206989427 -5.292968403577836268098700482829622125364403716753147621893188906 +-4.483619448084227067400877469076406493155584521948228035635333777 -3.700395493940756432315376133448137186925432089063810548795763205 +3.362736300093459885445887599351735580994704171264403108008512745 9.927597163198089642107718607013790484148519436851341852304376928 +2.403312547812663741537282160414172323714186557954146440286835807 4.193251987736785176666869208344570220839995544421127181586770378 +-3.757624065870897848490057031997810655892405875790404722631920773 6.900710184233423553812934739333677973963660009116004150012286420 +3.935385797973606438971432076230268452755841488471650193764283368 -2.753342272936643379112339809426798287352251489162990800458999030 +-4.237798708369327748559074401693534191179316740548698588161104910 -3.333122206115834272673925462458758714625118709105433563596597918 +-7.063871452768301678105120874874993917538293171829547228321577134 0.1162180184558213179638212617461246525704965149170352818357020348 +1.084931802140922560701444517536057992697944173030168840099113179 1.468077570050209053384560898787253464600992545008405606200092851 +-5.308424189271599698430915457956987316870551491455745594379658756 -6.648110407209604276025260252966216409241235374800326959223254282 +-2.543649411184505698841004011999393236232933179179070351238554831 1.390091318349720509678974275876075900550931566762953856337621708 +4.693945561615182560607985870405965865728416588852740400039656790 3.030396294411518827691259063421690589098274420280120507554414609 +2.383067371436427124596442885300112736295247366909393964159850955 4.187501353524574582831141676481231818271210011620162874405254637 +4.910684315533167429001002511547239378930575139279356589548560072 -2.223877847203438543459145938904692162314747491818168148873806646 +-3.326138344035795275185498585575828617183063193897023276020848801 2.239177932735972358575418831348773686947746076840870833705960674 +5.626109369804520281349378648261017755992864320981617450841291075 -0.7716074429652132153932370095223525202157319648222901831118766713 +-2.405409021018769757046585816110692697999048648697627907311369420 2.007067442186312144789900178522822050285562391710855579399447387 +2.617125391174412436722724191049019280831191968585443803220131498 -4.238417519084321324582802495628050109853946039786103670817365391 +-0.3106981626604909968902702925384630567792666439963965344649151834 2.542431429038649442072096050924825553530299081495904401605220682 +1.641708542938774505743380538181430131355688217276987607158377577 -5.100735205577248442759159238015679430970295502285544182460000430 +2.493326478326366855472493937613384642497280091351141752401602873 -1.010434562612833215769496327473613741502002220932758094463676399 +7.301198545974890987553704283509378139695901496359838570773608508 -1.105852906377073519956782566475194097419759363047814578720400570 +-1.205318513853495887118903716026977556118541758584546909730354285 2.329475960797396723799211854390730066501135773188892732507184642 +2.023338193052199175208453725910614362273328778752884469277459328 -1.332854903303226564925743553443658827490223512802349243827358283 +6.882686789030905137670547856299215607489811568403203515364602654 0.4422649706016834259643534807887743606016408285972060408506409739 +-3.076793903425034596747582131212197843472976757759265450225237340 -3.308279536535370606247871523642176383537307761759316170860615975 +3.944142295487346814429525673592901230966949744110240104342840203 4.623644443446928892676906183928782708233052618340201909264242262 +-0.8694672425626625680728499660501404511897464183673904946888909761 1.639448767228180241885625287127740677157412946410426842177438582 +2.095298261722220245582142551762309435246766872488085316252293357 -4.429533491186830649955900447051332442787988450350305072238765839 +3.400838762090010157392607231222540250531797336551870104061071533 -1.719995570742201865923366546262191873684976479332487269773429018 +-0.2995097535247018819671921953678528317398520541416782039279014539 3.860944143494746339089033084199898845126241255822797732207935732 +-2.863856250923462386561567316434070473715800717129143362372345117 0.9289541583337897541803897483943911467171503836887140697107852617 +-3.340818717831922183022585361955969185588056977907384318994111864 9.207227657818344070574061686051662950457197315072884407924070174 +6.733575101467780057347140609435081634172138161494350125081045428 3.610366616203031369171383850304777013600120799009751430136693787 +2.548278915150477839701958102171814910233865423200659463159571021 2.132365449760434545195057094633967014448283188946633323391227878 +-5.287158288121908394027622089470210419541762298345563554490948290 3.154347277587410071522253560260839035144660882722995920732432520 +-2.801175946126469137209233078972720943247371209023734426610005039 7.494310369103934401025393974388655112822960391545864008614504849 +5.980670686059514138190002924018589849593494454626596499559943718 -0.02590213104158555575022104322602553487185132510944029703634787807 +-7.276278147129373535940041741662189996886588607915358003040847023 0.9662650832454065391454456815673321594874813709659483140171743829 +1.994926297991971618397705311320342471235388955528378299960538567 5.868411028518634522480877962253223457957307350406740986288800313 +3.137729055543343050405466605960327386983389064140563488325137552 4.177952722026915084806655810177646812177371003750916121630601334 +-6.953199219294258430180383813402034258757463989515083802130639280 -2.369564369670705989672018312055431622743816734873107086344975890 +-0.002211146320578440990459044619594252649515580891098909517278748188 2.191797060647408058958634599766764589237208932178729839050056901 +0.3311621792879646342259261506705396307068199076439535534725599462 1.938253570415958973662815829763924532657405126244758485124119756 +-3.483736300161111485937783201332414035608175775396546199975896079 -3.198367737784531501149912596917879670986532138604872547697194152 +-1.792037050898315907137193275913708828588855637852570938962949902 1.394976076217095905982836444162555293336699672958101037576450891 +-1.724275565292572677112145805172832748679328552172465306407221321 -0.1181881216915538043244215732374237643149838201768760373138751072 +0.06082083231812584769556695929982559400569910829771399052235016848 -6.732723963714089739743326705744289439839080864710333840535316742 +6.629123555424165387412092638334421894835599056099382795361406510 0.2473685992797336066955885345357179688894853984724793940827109661 +-3.768756895009113696600245007378765605710337454731636179317384986 -3.582621046396244338540251963445621152361269065688536810264960292 +-5.073587077471679547628379757638292558760546301214861172625484992 0.8948547482567613262265748718599595251724557351119227951319495993 +3.121934643563429639732418145153620286890808022964269552660396943 0.5237754916116808071146536815229807151157250546474314882678893243 +3.356987638790983968286941425017017541044350251667941233122500008 -2.915775130887994159747929275365198737256870510087280066710005511 +-3.558813069385827901967331412418109467036764709755545275390782287 -0.6649700926165086591547103013013670470130115543505139152266231499 +-3.130881405258536471178400823081284293793918366469213542078947735 2.450855588541309195636439149681879640059446642364485934569754823 +-2.779434877112165654879383737780260013415142173871946305121689266 -2.988527512856974647705396848921557266576103863785307698169035147 +-0.07356585205827109715756469732766840987276618242357786449308677559 -0.01831925734929064667480376446051411599872643346762263982799001029 +0.9555261902526486789761355074577960231439056374499900418915542226 8.224357864130816890663746554163616075859766006126070141140223133 +3.880283363006121597219266079199288875479620423697341549051461518 0.3118576737346303633502942371037965461635623836235954556952201421 +-1.776716634601333857506445525960340261192500513929407381943647137 3.599339545196170037925597474617331562489491275654362166609113141 +-0.8054939125559054064166140839520523247070051879521383406024440956 1.281271449795582351122854862285260187071686081178494780031398997 +5.021366711527353685080838302653419327147065283537389914809804401 4.674461436564473124103957141008350125230929578675503048198850454 +-1.363656519625834292149484423124757943404134836040294349446735124 1.043913160919777469180224782479718924025171620870238435952048190 +-6.572834448977485907701338301812759928307018180075749134539829085 0.3190936255053455441250627647354296936941090312211172969294462800 +-0.6868527879674008137386346608637936231177012389671375257368889076 3.498365512535299940222581953463285750662170453731475466005004203 +-2.160392648746684856775092818751723592257422406560504853043361243 -1.849634080468271862869629915624984134856469611815303755282661067 +-4.537114224189960281482302645843939892424559900798608967755222495 2.808066408447283870887138522090851607929991263331207718717710673 +4.925240347697681275582746162727441156298870277248452656838870602 4.790753911907610975381918234572006546191460831997681670058609156 +0.5501696889940192030806511478069120646832019149460064891946010624 2.258692220063956640446164710265243239538677209339779952852122877 +-1.952966980551352065266689740193548212630080325215891129829655764 -8.146471895597092584122819059225140034254061707434342623402459664 +2.254373550124514843893109816782548998589267741911187076228834547 0.6004797073613573425201544387674448674924749024795509203348060044 +-3.399207020113948528577419778797386598872806197436409502630432942 -2.755083037962651076146419651740271105370181127204606673653343789 +-5.584636651249864215683653672023047502522417325433044629782103601 -0.6683732101358403818568870537905459167670520419302727702734827179 +-3.542874753438288592304253794620232965924471495906154464544018993 1.664953240296970057736710414205829239423522419360874527482505888 +-2.908856001377462112222861704035142388383645020782399511890113353 -6.445674428529631025941246091234479205186133242680709691031933646 +-1.063835668216477688070855568947646488640459220767179450191483295 2.415024110590476282060615577379349695558808491091640785671646278 +1.044393950148891364665315496780916326572485918074023840913160131 2.199839678950488146879899422880199366612804629657248651652797050 +-2.514561200363447517059691913038622300196716867475179239724487131 -2.371972747813263448012731644504689166940951957251563845211856260 +-5.355922514057011208805896383639599359926796945337610756333813414 -10.13099642242252972170266635148127891091529027450047589093345765 +-7.293990199662242008780755180477196859887187734683955709127957082 2.081250333691694297478898529394216070469512712441391478295639983 +-2.258415544667908764966983874057126275758257578302406711241996590 2.400156413312670672495535374714819918207383934592037476727778005 +-2.210202953558452874305886926864233822916089700769785824248741479 1.661538362235441533102806990129226417195542628465220626255696773 +-1.505920652203359417314983807048742985574402705488459238409395574 -5.757446521470569083281025551998009603406165456342627931212632114 +4.356105655915210575539686342360067759635786174743058017149641255 -6.340256961169463508442654607779305202225956814825990109363364030 +0.7844589331378867177467893879814944010876702345105681985211247783 -1.202749625934280253519183158306584783789792019165071928184112093 +3.561732231642990750588576185289440419990902279403773581867500059 -3.064310155725611035927909850959724495595187878148821232628517352 +3.373697382071923928432383319814508805914015436890227816811194578 -0.1662726027207243950296758608915614643223029910172292142155269465 +-1.923937783165225394253064911339937088776010332097644362865059797 -0.8216098400848180541694147380962467899839002511083702375751132136 +2.651500955042595036607911170005121974651155148274838199985368615 5.267270515244828767397880256601371905676589498078218991874175684 +7.688614191744879161105531693329093004319634139925172451322239067 3.177877255384896289836569966186493544635641671299373967657249411 +-6.804844853982362879575138393004009496027033013772869239561525763 1.202820251056855747702386586384348906975827071111690145369553333 +2.004934222245740409388896848110115788900793010975664255894229524 3.549549009261672422476127465977406631431649969290547143156130723 +2.773158953573009044415254215987849186310807477745055074629854237 -2.974349658936203845861412315874220942248048825384240517167857173 +0.2567479019780423398715553295358551530661424784456234443547973595 -7.930360296835241836820056812447473701435179307557199255282978883 +-3.555363802182398195375465667674894012600566427801860158597030355 -1.502001605507997047607365776449075677780032899022533112312458444 +1.230223468126682897808746898659094310826056456278658909998804094 4.426859022176782422991811651044257560896330444892601070238973310 +-0.3790231619165539880695735543559398459629431316844108139068369773 -5.179757610770951432592948955241396571907324918095195275698626291 +1.597428432736164981036545431826043287308193457479483539051708243 -3.890804579829202811150654153381732417899118453483016401045526625 +-1.960523614883491316694740924132548358608083073791454037523284990 0.007702199148110262808769843258538145141774072096607262247978258993 +-4.215350865183390028677300313944821355772883421886500754570854387 3.064652504949066589159919888470695415962037551447022978252470702 +-4.940145947745331962532494873610311527122723793962757236095663100 -1.445902604278739594047068021709246842491321488822418843648465373 +-0.8571676907748657428911326851216400529656736370003953171144203202 -6.341706905554464303047346674216346800466536210593414689697821010 +-1.743715166915977444699290145878037336220660897770317193911806867 -4.514832357047068584446494039202877094706846725082785592947866577 +-2.148562388354941635676489719316600364155282662966014733797625061 2.156207319050784020255710537760425907784578642080516991735421726 +5.254101813106907264244887903534400218909007540793582532495195401 -1.790152585693204300336560618619651609311048279761594597663958526 +3.780894324942011917848750980892397348375677566283632563617404342 -6.476542813281034073104443763638884774738204363903659515457951908 +-2.507204506497958925903342227778660934988043045120240718498884431 -3.013002458161290996992983821319383624871963901112225278695059263 +9.604979855167364256529734860192767145161697966389310099339461668 8.696943870652246632669988280201481286468980974591409653246128400 +-2.179704075156462418398024550889953321092348758244930527000021831 -1.529057564581479125610332986664359234378735694326847955212363563 +-4.061928090388419480646497125977438534291194834011685129273022447 1.228692991812042767904405079442524345560174754311431481912423464 +-5.275867062455731094477091801620339429730011757826443258230589223 5.093534268616278944599281776876525639647756465977782146530324862 +6.394751140012196798760189344347554331371073575561264224277922054 3.902775259999318186068717282591777430611956472917327650168552600 +-0.6584213229861475071384186083411574067781261213845720142483327672 -5.703053204773095305887231052522285449342097233520722615527242801 +0.6670030909831387596927063344936112286441863592830348675757447483 -3.842288731353485462414859529373808346110009589453930963911231922 +-2.175684562674028385846977477685816440187368994596304221624045908 -3.301912735989449378069470939634788251376210846141737532776791572 +8.104818938885909673484830299500862957544447992068290181002004717 -3.315442980746153295147515052956437433488667080918066230594247857 +5.711182047449734943310617225399915880314468951758045396222500518 -5.917090257427519160654318335555131137167460976274707252240599137 +3.141306105461161476659144069232652856611657351789205623386839376 -2.255087076977141093757392400020023186192530198409678339388248376 +0.7941311530194887614723368135400677092048269061220557996840847006 4.544304628778993667987761520070308567411394605636134920422385622 +3.159319274508687446702689894243020961720922598812219927408492695 -2.766158726490375111596298251097726320225106889681332076909976422 +6.064539879913956683218900983079982785026888269282651339492237494 -0.6136515033098715667347040619337265275101926376926964484010306939 +-0.04832902739362553703338132364562598922566129288909778191304453454 2.238105516682339731283664638192261666879295126906807037718610002 +-0.1207657067797607827361431975828720522923339216343711180295213266 -0.3059618080006157776662018379819943968775081818233839313365499242 +0.9169420783633254338559755473297547486417838361744501637350189593 1.124471267130702929028388675400384923950438043213866199040441503 +-5.697154362733510986617646585610566542577460886691329520401428666 -1.862268379277889823548520894107917534670560545541770042365312044 +7.088758954341572308952980351530104549447844807705403945652065473 5.009130515092629296158013727465538748430828965983787979186099595 +0.2398764494421685278167618461122382483839443361982807366707175506 3.698338600607972126130910498147381077228516754021694467504457178 +-3.678239381865536324470263972808662794972309313140974644788584021 -0.9244724034229566490247112177057581227934335409661926846719563826 +-6.599714924019667293381799926959589992755845727216735421941249474 -1.893660610571635812969250335043633389580837824189608409540796797 +3.620480827958339875754895226044978173381603667932763198045974372 7.139678747785507861475919388215010531109018313671102233363491755 +-3.943199041166430249829419477065212162108182311077552250260352823 -4.300230033434639772425826878645164821167315846714089753898110687 +-0.2339053918836376066503764346234858576304953633951640137443063608 1.471825965926188780517652586364392034612412275411178562025129754 +-2.755335103471013600435625540083032215121494276531973524357186178 -3.232665286789094440714468246860341761423080633576728397209181410 +4.324517119749029444596979626075707378835949023905769831215879809 -5.808680403057077477046695991681345023480533134656613060215621065 +0.1064957662167271536264727498202869647252231106512396360932712616 1.100383288750651505221975676656640166389373465539604594369624593 +5.205529472977342970576000487500079948550200582871954758744441550 3.712712734868559323343026407098396962441066412536114761528467238 +7.554859136142719066490812159734329671415579240876061648157286876 -0.6646277132669793097602167921575341309118224639473235288054411801 +1.475180438876304687981186477457454188684521488164100511158763021 2.908981104576649843369133852837526387784050361200615144673433947 +7.581476538166802901376828299689644354695004391996669121124008080 2.758481895143080283860615217263208211375349169418185371914419788 +8.343947148836989489553552089211357948836036172270913306259548262 0.3189945295622756796561970103379056513566299154190155039842593056 +-3.420544529513308907058271836749314925412459374445897025226884936 1.645282615121929359519679372789962297503587566377118680529222053 +2.139682369150875836789887414199600127256942767988970737616107733 -2.297115656099805322658398667992183933183870327290738833619065791 +-5.106619742786047702843313598822375229886706428459921879210694740 2.033809168896830701976690374475558934072443103837310951563386504 +-1.830780676602534181674297611291181125698471095085558064508797526 1.147894279899764622190438395302198560738389370745462307435845764 +3.057739710531531164440579101234999409351797852851285544385663425 4.598289880978305269749054532782532988846997101946373169427985725 +1.783892445277416868359821938589878770849859226750772766957140976 3.971754229834906458342084918972384946023476835997016901560481707 +-3.390176314675703787545047319854886680247565622836460546334858059 -3.073875443952026243735495342433442832358088075310116607760250184 +5.136368923266870871024030997062254144322072610430755237499494702 -3.541086175195025496874928862936338655412758643025910369441069409 +-3.934254973499228770893179822946967090692371796154286765344871153 2.679600518506682490431514919682003264956310430938765706555494299 +-0.6289630766253223107349354994509326795285850373632584936267067892 0.7292597971800412975861614858428016303885325756304647118612626706 +-2.531170890598750836080151213018025063591744142100356107766112287 -1.772806055173322143599786918103477817182045631262376801025637638 +-4.049708250277253985303722016891288760313396298123804283458363460 1.458918568813237122199531551432619922614455059108789599669780601 +2.312835056991002509792661135116025552315256970987473653417222574 0.5327201069045899607891064674104618838124420307464720763431426222 +2.785443216615566546666698557680763949131752752584358213649886845 6.001218377559594926626078508236347826697993637794423454607017825 +-1.930680854711863564177468182664849982636629465023311775724713806 1.089360306213859596927251059537303014783980004936014130505084232 +2.226982340917633009016145441539053191973365161445187227191933818 2.976723209162004109905211530019266204815862776817246102805278066 +2.265543625839219515032817635362678070842083392953211134871860808 4.253696487299490857943182873880310633223667059143847112259240788 +2.415670876833615240661025957749468664409542490967045250879811854 0.2612614828217531337696207915414377421422728958926845628410831165 +-10.34176911204834185790149919572458297166876376142203151189371784 6.708176544798704363508492799942814434096135008660948292451770586 +-0.1477221654383043597549853085114610860985373408594345971710325048 8.897180109175781300460236690401723248681250147045389780313551731 +0.6732109206109243280211897885365351552787665621464573775825860194 2.571081175255025138982018966887281472334839590966568755872590456 +0.7493943269105501556624789298204805636774645472739203193171548696 -3.790447993357544162217745858836181841219667778866140271378436821 +-7.558084670536079179668106998934793881063112574443739817723547943 -0.9203119444894606770892269776995789459341065053927155687802562373 +1.083762123542553768295946599021338713648930050398663386241629354 -5.109716135668927929768115503815273700342165814788897001125955913 +-3.671380321521527881350475933997600593620969727117144949179854237 -0.8318604420599124084760478197565240365274360925504683397837973875 +0.4910976322447869849725775439614419985600175217343756533536659742 -10.92268302724233743903062993896895615554099047204048662156806913 +-0.2140544956425624584409270572994140627508635603791798786772948257 -1.475275889278656436188401870843774937860891592593511235832350242 +4.482711649294094228721160824761386538196633132016594779918202556 4.484516510924441456265174120808819614317155538128043494748839510 +6.267563465146479695525916344218762205476255944428526989520048325 -3.125184893371478463630562320990735698699214155428169081047521114 +2.543340182637982550161072339408703813086112297981973345633225792 -0.1301629164759226802354644046480153488794736944902017419972891363 +4.181225115372238069021328487694259982552849970820048748942205911 1.105760775546287269391245383380073991780017466245030049128815240 +-1.277986030391633725015731875849520780373995811627480681768339211 -0.6537398919408825963061568496509995600175682179788428496349391224 +-2.777965496245732642790280125718083285621997125312070186301467674 8.921360980148120825951947115890466688401617103832749338447453856 +-2.438569929248683989535729169543148681306586241912330853391210426 3.290568107352272784151829378657536224940169674470266521186839745 +-5.013013893219074419107620355089330202292917882118934569653232136 -1.147843953433879689119810066399128916257189227410075236105142794 +2.542834505778728799541391306441269004921212127475631971357533471 5.744567723048669694343229140664088704991258320536564015672882785 +-4.343039784018824579154186101723735476693907318808522977761835992 -0.7903310337717795538024999592330382938483992289153256755552084853 +-7.348753273775943638746150910913788699396932136664259459005367062 -1.621739693246053032123476562406322396813413749819918634488255123 +-4.365240370847512495238715409174949146328381440261634687933972132 8.460002312581297490902618953773139847189895559024038401571899294 +4.087792999465046442681711670291518304169092008674249305859323357 -1.595276068836111156499787644870541242203493462184991109736970238 +-6.346648464380642468882144516870305227604127402110274176138486631 5.284700795385630839657593496685530853875696478873535924036703420 +2.283291708833567572250489483391057751151912939231649320222853045 1.468158540148736764610182607177468735099269159332518155833056738 +-6.197063161469513418685392402545060321327996157345643657603798661 -1.269617692554682628779598873673398682564481982334518152439090546 +0.7491105739170246351557364229621798310451738534042471148408685004 3.254349197818534661125292310533987578131025674066761500400797495 +1.808137735318890817486160839793759871991426637966274919254291761 -5.068080933710370287873917681438250195561472714047519812475047224 +-2.371793806414055918707618025083604235996298396540034127909549308 -5.557539739299026660931113018667298342991574455452791053728730952 +-3.276941534675140757114115007901667056344865023428803974929553344 1.457595898689650396241565677735477200354651379400177448010589539 +2.080117125335767130527097818269674258595996107979039592337238084 -2.998503394400067501477335713262284356488883815958024087480619064 +-1.223144119289050589973980880716599245026216946923565839329867938 0.5692338282052524565702708999337667623825208753415041723076560464 +1.435105702677935763861420995673498118547197413029671085460455945 4.347560195502374094437926391759550555538461848378151499942542727 +2.877341976605706906463838250492545074428625594215153129987618276 -1.480761016711900993933672836827899744392468093863074346940200105 +-3.428872624323254633102289248462789432374023844343416352451239623 2.511953201207084080106486534406015573060645562855870984528465676 +-3.312880239590869458482013536808115085426415142907218985665942948 -0.8185436108661291744351988179849554545268179743730724121373862224 +-4.020162004701192200212376317620515031855293300073461597458258948 -8.838071088398912485466691880246243333091080203388023840321293918 +-5.560455087008161761680742150920019021894856308826199000820466181 0.002619545606606331380640307771687081045085653700585449130644880320 +-6.481413129596140120990939745242197031681453339466570911635143945 -4.718320572574935176810532068625433496846920920569602122801028871 +-2.060073176023791116726498066671498090456847498248852834376939319 -4.539647772950632111393290786628968674074741862701541507199538049 +0.4082376127233248357687106025181448834713402601789424411738797334 -7.730316390914130138792342871138459491109392190521963507825875661 +-0.1570631747292814371484290546139418274499028768952444363304927358 -3.138340700637499080738801917132675175910166357773731013186504246 +3.731825527214290642211842672619872522491002559099279615699398735 0.8751678305450780308526909446009523693820965233339909338673186172 +3.815481379501111738044930454253823138149255584446213079706982655 -4.631693234005333028026704472226880060567709103509242566297661681 +-0.9401678713710814205674297676946616603270860477017699073657855392 -0.9924039083190316568268763229463548740810716887835282357568580165 +-0.02643325170855945788493262796665967820403282538200859677035719346 2.977375024790132574073691421097998822343024095712539810029550613 +6.504853712238494680297740501170742927703059136372888028028305701 6.823574567346663692015976143692092120347600249260367156089690737 +2.606613423541074695368846662496616980769726004179555874869085713 -0.8241883444291721516576984224508159437491187943450065357241638916 +0.1247455921166148354107856924529414625285503560280441807491249363 -1.655654445605179431741884463327558898656428345649298710186063191 +-2.835468990950412879980411747787386167114905023236401963117211809 2.661732136429280607656070235707954396275599737727499394649109923 +2.689972200157074720231326874448815372649044796675446344004826410 9.347494076480936185461598981885774617342166138798013610945801680 +3.617048754589349028106497762589376486023062794826907272250180843 -2.194315725349668352680344258597996852448340406119194820818463425 +-1.874977707235464462251147947421417259680365690137094699754982811 -0.04149365765848118023361479307440429722817144128702412657338642765 +-2.857109666868469448595391678882687810806899366191821267167104068 4.709374147432978321964550306312025399448345402668212447495332812 +-2.756052607920646655532871182235252076668758807170950294087175171 -6.099881794301636470057988113683152479762784780092613781444855726 +-4.716856056915388864907115372823501819920908679404326624305430918 0.2624883999423078988662464044280730460659819480681561116444494938 +-4.039184073964496950542049144053694846407953554179491258157952066 -1.073685071853321847260115368298335304703500687011748697316867105 +1.944207089493600271136604417079801095684353520819928604495889849 -1.458735079506674145935437273689001987642384809147843585998391619 +-1.109399294405160875898686919371868218254396902200672911518606080 -5.731345185047882396652366887114698879830900317080872698506454738 +4.310003552019881359521856888222714877148749042877912143921061394 -7.818930755181351764845799324923939018897780568042305078592334199 +0.9167953049799141763024119383168390671532697359579393182956879961 -2.015569034327614355729112562944569991792301749981015586538997056 +2.621314258937429191462756633018964533346983302360591452912952684 -4.360350588516903115541047831043278884363463886011822339475466304 +-1.496735322911181189927987509218676363892742716455101105688443153 -2.569543425288931923962575512773565506281783817677780985173566701 +-4.067893426417318300069176226998692971083755890278555805648365244 -2.455639323330081342631967759867300000288912678154906746685829857 +-2.250110545167362544980970333467719933224953666658194870200939522 3.770845485716697817104908873151528800041316378621273906134369259 +0.9718635716917187563478247711555854967467963182283732821338962099 0.2688307598578710534844203558915702515450741488251202826141583460 +-4.583745917456448024397060251304253343100665028985472668422897422 4.901968034303756345529966954557722944973626737347264297879049332 +3.679446222631189991341368649181279084314097044311518902888197614 -8.037139738630418929448853085284438468624169610355894514842461866 +0.7771428343827540011385297979985695957920566811727182778617695863 -0.9632957136253850987877569262368708917597907728979744289748001098 +-2.667911416501738131046295166015625000000000000000000000000000000 -0.8569819573312997817993164062500000000000000000000000000000000000 +5.250909256298762535646751484818009194183104748372323837757718401 -2.843152723904777530392910238218518951700871151781220355549996209 +2.760383274043151673685818977575048174220804915156817046557616873 -2.595409666467529711198532084593799248159592864776522285780997268 +-5.822878995923171313512225947485658719721963431986578654082970154 -1.755997829655775474776504764440646051675935189389413828008055992 +6.579311943935012514432103339397340753529562521313297545078231287 3.530824665486214007365108673631570978948360588858580753367636417 +3.071823834885855403600555578735650348110207770996442711847767582 -0.4943143384797150036886110707926909050601073059256274208630588047 +2.105135996372386045188819767892984065052662123136324071742223780 -1.393135185856968406486842611132148257150047529671822034973687229 +8.081195584672541116832635060541684621658544085273121719506480899 0.06287548538559390465512255047414323334089637833267961967613855256 +1.900662044456243338613843852908969240925030677828858241028050166 -5.286571415689442964592610708620387792950381693571243106063686678 +4.100380113338078250754156505693073716729429688734366093686676886 -1.316487501506273299802648820822165850401639497567856334154649143 +5.728792561301388790255819210183208324235266375082417932893184985 1.840821288668528170601501764511948133391620941271479804272053493 +0.7670935790498545686014332610478382091603503435162322506281998006 4.499638258445766539090434582134284460054592538132281931775432025 +6.603481334903558472015332620198658008277222770865488662267782792 5.008310751170854573939077965332171467570760658303427150708265088 +6.669288353614506791651850413325823645534905514244607830512194434 0.08825831369895419237491180070520645849367670655768826149904836065 +-3.724970873266958748114267689443570403173393529605678587558889060 -5.064970291134360214068702219270598823953621176339734457450755399 +-1.487706748915816889283817944270613724836850874232389391291764243 11.45665200534899466520287432717158357344861149918897427821890568 +-3.858424558199714058862039683702439445907858390842925527209735703 -4.853088834209454889641909272027444073154791880901388037176346976 +-8.328480485672106915011177346252471428203057528567906912135096821 -0.9015789704399029245436134760122033628973671059952837043961034582 +2.464753321076447246155565488077286358771697003968309288514351359 5.911791080724568177068839049866884319246921942181993487947483099 +-3.706132173170662128569126832965835062813463798051238779187754468 -1.943227964743250664526212548819051142334386701714823629471445731 +-0.1843150183855557060773900932425888797171365133098845856317003399 -3.344425692942808360134519279914348983685544095741221800000071121 +-1.635741588567769990035416731367259922099491621522965604755556559 3.809842992202842862105541517637553216141911618992793165191653010 +1.319525826966589539450113938599356199698411734090888310173458721 -6.815080813894683775685179220632275784120901519076013197802898904 +2.651823997438292769521586095725947610412096368110739510703101212 1.118470948813156310390566012378678531461753871075659983765375990 +-3.856462783141342572083701799779760168571707788465004842395049165 -1.279160061101800321035655342380627426604787284039313661500699889 +-0.6856661510152697705666686312445486602537187848729964247747223037 4.618508438430670596643836916065070756871085320927472789775910571 +8.467670889858526717896204707646376990425463302481436767352575048 2.079145490364401322074027927399302795964357910794850569857662745 +4.362183329541483579343351806877859284248848997332331069897388012 -2.744190086872544050747055307119821934969360970504276153267862200 +-3.844657057549703568300838198505260011241233558783681683659590107 -1.130291230635483822285368027388698631552683946913044281382724271 +6.621968610453481447772729223399782948584833670399742560921598622 6.727416197214166437775743384680135233238609790428834201084035957 +-4.381076217931276002939843052216063105731266443121562391712956170 -0.1616857220078954959123182874138075271163064289117728544620625914 +4.497446882863207604191621873012097309222849850774709888126183055 4.452451589398989364800238392756673997321436277186197895159148466 +0.4407735190625350715265688270935353285054452780932477292081449685 -2.911007382821795115029415005155497911571890034255411416775951250 +-0.1841336081275705694234561105915226722119880933400400029205963283 3.463843633257001519294303945240745462994749894038106409629814501 +4.940813985901410407744281097443476388921241100288458574538357483 2.988209237485835383071901739510397344119414131198695299171912565 +1.829626397653920349034687194325253141852048936889970068076739414 -7.245733599602330840830583620740055650283814400834939638018102644 +1.016986580053019955469328401396755834047386080601955718943876374 -4.405996554628413686296826263693811476814566807479589546620780346 +5.234538908516943240528541289382263572595095687842371460970669111 3.356659282311461372272549902468422289428195303802712697128704517 +0.5923674358919525090337939086426670576690084655744653685000177903 -4.749139493719762119881286323663256249985989494018029528714503663 +-4.082656379815204582890678184822774359343533748856144849480250846 3.939953111847609846725978737762350027148406776715301953989743902 +-0.9631576256567881604574936177718028619802002797322856031718950789 2.928237177021892089097186372575405483857878895373460955674866341 +2.432439977782989370245430698857454384276744770654228092905404435 7.674767968824155225699963664199198345672932171151261354270047420 +4.551656201396281474419700064135690693553106768878889412356062195 0.4250433486880175771932872484812818632117669195603801590523565247 +-5.194652046124551436689676687347852143710795306992134534318289943 1.564425585872552708169551475267220472431566987267595729255273565 +-6.627084459047747394495812112541379622718354797189503804298501256 -0.03111745727755650212960139611169948332734968380419626418382932539 +9.770419919484884561580915047828953864379725179991975445232640837 3.809768745490145848664612604301621464145739382789192244769293069 +-6.780920147258967735326741097909426303096788511389061985157175584 -3.954938697497048855688578973035331576115343477189255444082196865 +-0.3388683883248903859536774040144152335933793123975719737467296087 6.801039826860299944602268555585061542380875109023349106555634063 +-3.175378733143252774562963549131439192953457307471946231018199047 0.8938414292986165613443746208665024257958739528938918080537275662 +-1.378901603687384893951819690415391256551655060738596730085015385 9.940010927706096540948751064365682259696489600899479158839512151 +1.903794085481820358953896869585904550903319067269120800866240014 0.9562733242647379481488900000499161380846467082541040500582896503 +-2.264834121338174978005385050589285928317450267810809308154164924 0.6828327920751628222549471539283007356520993660439927129733567837 +-9.087199880915518481385814425841949441053286340320328738336278108 6.435265415468402901764404865744948957613100563256442251174821501 +5.379788225066026409319524440957113488532783948412003886536366782 0.8421597899533368776658617356311150954776432499206720869540648764 +-5.205700345675713847720357302609188814657579680339496983559063577 -11.30173691518045764626006385647440458503218162782427823127217569 +-4.304621157475508288560804999779352491671758381325810532317654317 5.724461891048804216355149301273373609366442709723689903674174956 +9.611944302186369263867609202790746439087331967497310221176404238 -0.7892375322691623525271085963685608408338931750099849871493580521 +0.07632907513465675118821864490534472240755124922753287211275554974 -5.613696967215817199834454913710356784828254384452605495408391153 +-2.079277638577038766471182603113681225175460220320758713509098457 0.3827381684007560567270534928648253909255742552645871941037624751 +5.502533893066308433452979861435083094328518159571053103237107271 -0.3662308072913632490375891701680812428583571556743093639239094544 +-1.076691088514465194098057883848333652204254687098395349520324103 2.002148182711953342312328118260592380688385594492993622101523193 +3.405657457056859845498164558355152414182657160585238925442794234 4.727349952455551313738095382428055553519968030458000624054781371 +-6.058217710715293592997754390105838304095512243229255169234657380 -4.763524455274175896661914016211061758792590812564722490627797235 +-3.432543163735634974197322157085971229948510497981788113727618062 -3.187382210395539475427890379387515441118294055195149193511603704 +-2.455402651796946734499372598662294521062009428154235028493940121 2.351345799877379226945839170654766761398969101184493723911956471 +-0.08218878535072706250264753336553904911713175611941770797715589680 3.546797405861700984185115290869214984823668907949069280851232898 +-2.697252789083708102084750031464512328525244621578876210993914725 -3.244261956537137937323154482108297857428477335169111245015293265 +-0.07024055936403587754639067322837190601792158257135732643460756504 0.1675804439099774766282541422441768603437965969633499130602803460 +-2.112705806102917561719951598588555644293106481314151486989416979 1.970641236451973082433160978890941609221660328736814573897416622 +5.799383379140979735449576633464562899824695122788836633014012336 5.499951769024735098200951610611488735355646571457198356523845894 +-3.208038734406676134060177655744608287459449594656288273372674143 -4.701852006175821973980379677739047136832253046798613905922794791 +-8.159186252913485919996814389829408256236629089650677255546115646 3.668456418156754266753266335950600634363656440550335632412727619 +-2.772678655272480791136225281031717108996646267352322367722492497 -2.374522703010899930119310825730761257816493943986717362943395651 +-3.857983736685472457366709883799079084190410538355307940181575229 3.378523632441276947046007480772680919217981639849217549225595327 +-4.506986737476961178700348368913681001111479792337835319713418003 3.856623541862048195780429461536689740195942422925671836937853289 +2.705377868696683767155099203237740019958770359744370353908853090 2.889631899004083636374557035286687087761530599247619925516042522 +1.133701341300625684256412148220863257859736949740229505273414013 -1.694320847147264486703884642442637682776614027973820337508090930 +3.369358783440250775126707259723972698423022197355898235309469027 -2.611057504727802477722372547194921276740104743446741481103305758 +-2.212220161680571676892988655334674477277686570863862381529969981 -1.698971869684453818760557178147499989085739493585408027774407557 +0.9269559052832744952257748559775800987808456635336551173356184432 0.7943610829129692688578438134581764314210657920452334687360345938 +-3.873292280238044827292163258049372198297995592790589050223801651 4.149704092387647704782191807323455956490789338474078694162823592 +-0.5799319256241606543176039373908855716752182233443101101073033320 -8.552808791755399046869593499494284373006060783088324736460556346 +-2.547645137317280732523991966999471397605331894246145981670663877 -0.7251300361325336673573952704978797122673908975050762701632131294 +-0.1544503795588690999018602079984329741350772677109316398939367891 1.356931655916677558263440541702877824511301011246550509552694234 +1.176177084849435313883712757427393655384116534172469946698304937 -2.901818220648706711809451613037749827629188506617300627661717074 +-1.644520221881460844216711360574480896453899358266935467049119300 -7.170691830285485388292252397039859932770635264586731144536416132 +-1.689795655863893383792517927827282650220354468388269956532063785 -2.479026709587768135839396123506662681769323529590525844123541681 +4.492066280672985990123919474252710321155985396437931629846844627 0.004827517026894461274052036167618685355107793066959565727629108380 +-1.320816290001165028494708387625017193240712943320284534798588740 -1.091558912470787963046175029289462838272890600690424316279687396 +-6.926601162155891987909823451603730506434187840630087774931699443 3.152142819777719030050755987197219421134242114524740843163024886 +4.246603244406926778523863576100646230116829038401258452292342601 -2.307257183043170594949670046158606492566887521771538908666150731 +-0.1364830713068763704565191797750701129066537163380977016620869293 -4.609555438419301622469131758608717236685208047483440496880197169 +-6.011242379312490826347867840032691499072892306389535767473657405 -1.373779115664235873584672905775405821182652838157580117628999714 +-1.422784929266647683402460919816688284399140781984982214968731751 2.874405259115821165415818727370141902137311691719953072076404837 +-1.677819194469612814301629122498066082282621093254638324780246859 -6.733125708166522142398330774070418132946130188893371795545280312 +0.3907608450053081398297889069797419640889914629999720846104851433 -3.728209071892004457155259954813083789097630897257787460289551328 +-0.7578510004652925564416923787796478638424185311008965256123639714 8.577431990539693309017301159591492866823174868613252304909731645 +6.581582374371997193608171173361140614706327407308909606346251395 -1.936532630927063154595718527891977065475183866796015724087983242 +-0.1578397382981252896689358459321608528274146450224392691119013687 2.706011741236917182087312132529786053661010085946328315159081533 +0.2642011325637104102069216389114514555530229260831994033768640389 3.490930093641004290435111099136786652933291610169977249171196707 +3.562759072037246597899341882502248213045997454049197461373741879 -2.590013124516894365193652533290936706369036142802510712206549829 +-0.5826480367079793642375173372022717356257609059867321799308190644 0.8163099631794098617442452540098998249536277766337711017417174408 +-6.881454520962743214592731692169613424210155899029076366977615620 3.916517499368875347646970313933787885866883103568292421422225975 +-0.2419901236925961613602249318093862239748962584848396762494637879 -4.043600017661145098331842661340817045089228659938787758730463155 +-2.336467812526499144702014014313216888708622214888570632506409735 2.265992945673738148057224408997798517821754751294029656003954632 +5.572228522557674718340458832772868796973627343334915184351840472 -2.720793874523319680551124000279659364820176704263602230890608891 +5.206695783326165770007536773938836963270331545646793521485855512 -11.21011301911764410298347195983747088862197744649420395080629919 +-10.58251532962473071945064781001987515547491045572211116522718034 0.4291715777106509318763600085285501067032062149328255556844455355 +1.265287123649263399424407376035962074142374967431019603232052756 -3.010827451018716522993619759324586192244988982519696339950408987 +2.765824214163347205812147665335206519047087782449116487707245034 -5.778581976999282345900761962671769443357368453147916802994424793 +-0.4464804775736373669923022733952712774212208877096843174143068925 3.434242194820504189074835927938459628919353140001418311136988347 +1.737884627783134253589431074951010742899172104192462486218264043 -2.154868894465810279296158454467248618147199676863093366474510873 +-1.281345744767554175497456574114619030394143071274032185982450447 -2.195282845737819492032893284205914531681343558033176920784749111 +0.1878631645218268995639543485748397615686547733622170394893251742 -6.110287389362609532054764482895031054035910398421325736374633933 +8.047188104163051926244562875961663773398307198318024031177915350 -4.516223106475067057272326302841253441536632243505870787344103651 +-4.875911237471222055799240542763703663017617358874650930933070267 -3.165942800547823457970617332702304318069088691511861980740962275 +-0.7325015005346685566865311403527635342412268958052675082258491202 -2.905145226583194281825044317625575728209982266905359308229929237 +0.7162309748228268069283050951477321707932968829902345815626824088 -1.226014992766274459367249334756414235992157956670503911056493453 +1.155665803129144331046875937675329564603298007136738061719602124 4.076011833116210120521577221864041920668985481843247643966464731 +9.586949372162537023500281703071265400319618588751486707806562023 1.948807479982307137867641483561059147784066704174255023315207816 +-1.168868526612509346479010127417002566899458190389468580299038459 4.315190886109876295568028377517853675900575043296782697049119769 +1.935819976900325428677367540237140154315002102697085519194757321 6.362543531454894528165254356753628034962325359065121824713545477 +6.098493394436888201841490711485017481494099045811299966038413788 -5.520579655808110631545793836375112572911346114886182289812806622 +-2.859932657682693839818225911557253064554987296787255636121939900 6.584680707229226731789290360054073645905527652875807325778822706 +1.457009902311663060123081759249840909623568906663237920163484824 -0.1488601158520667586703313706856641634364065687415973657017860566 +1.810542152463661724612067185103402931093673926493963210132294471 -3.768579943483299508575207156365661446680390195954771274840662671 +-7.678922329034212705753499150132183277348002047707517664536869308 1.589786506895895384139174172293367887351177746104399252283801537 +5.234142198063974448213936942226972440396224243401462296052147153 -0.6863165475734258191354824804618033219108653558104383112543177880 +8.086450153041543415115575545350894270042882243439608185181156320 -2.548548753885341361847470521683570448486586749784466395265858550 +-0.4237280778327381190482262817509984262952238235693785319288042589 3.168149934077374452915400564999222929223431558753874386103434391 +8.744860193075928589179353970266460699993922840632566776345410849 -0.2516243006462557950519455020633755814645390756544422444544856321 +-2.165433504408314738300762505678210908677482022461994802849876263 -4.685066962703003644293649643188275620195284636113940420150168626 +2.709246010479954246381429021195836114454950682483139871349367452 4.672695730982977656864131609027851772207839151258963165945974812 +1.765097947503452762071114173099246312923448643520492924412592581 5.469422732133469861405616301528321351107694037265870292441591268 +1.329527021535601896797556182695143552910139203869718854818996307 1.266980764366155708077233219708232132794626126023767130358963431 +-7.625247125555747744082319764943587379691397395769919453168704979 -3.590474710652406369385440575307296328206579782109166275893639287 +-2.250509427756851068213412842431301662752204859683258725380383604 -0.9648305862306756388609507995941668384904243607385567788061384248 +-0.009575078125383263544983508095587502072856473010333930217104994709 3.132853135529996462312997804954404579672483713176842074942166646 +-0.7748351180697801546857346307685956618999582195807075372137726678 -5.349995334298553408751981233036866700452726083232962413465671201 +-7.219945860052633121742032192945398959936227874298436312106047115 3.867654223791155721894326257449846028806625370781084249229694082 +3.721500176519085708036068875204820989814992872846241333023213411 -5.966420654288014726341703373501747119265165942247933244731706909 +1.935255526566950654169000543525103651627052624211630818109047257 -1.833435712582687445628237391581405433628054515015044062587610943 +-3.277400259402290579813840726943098933131724510487142609910497410 1.658103367782162431393262777131482032202899464795511304913100572 +-0.9481373192425383543851309558044208205320449042186499242118843821 1.429594341089294906297395929337561256384177825332006513122575777 +-0.6880044568532465242979983798750372410578638620853866464832177644 -1.478422586444522006246331323216139270407520262570139545588983563 +4.340097441017776491088487299120468722767981832205183800828514945 5.620769474680208008051060696839276736327480159120385560739581069 +9.130743456361917997883130116627607382679707453730229220559023532 -7.054992695440412280053218469088277438810946393500283072540284955 +-2.178303072665815800675015597957024543060279069009377143200277499 0.7951848381461261239855367589468694925714336978877223431717346373 +9.026371816751282167611007061880605512532001997116998939865323468 5.991956418476624687741118291112252143762406696778164472515631866 +5.901655635840977915450278002192354713850121312745313204496271697 -7.529243301047715180757176840396726884919827057761973705209247867 +0.2447319441298746247801816293553853064833147274266100339098934272 1.355915778649826712117132890623536599335466281268254465906268481 +1.476445390178207739150273622147958350653193962485642967319418575 11.58823660066178908033616365524894371816502957616547482707656445 +4.195876132161665981031460192888250531002102819307426073461959199 5.436376946064109272109387506781215552119667338646236780679143135 +0.1896398372661086404552325779555687714787031318261257695748490703 7.830423093548971087836634304141827746192871778637552546194719165 +3.669219719652398781838334108160092195565167743351651020487385832 -0.8012972174695707447974795068791843843636557757844466463396848810 +-3.301607162974353279570081818385291827721197823885027052727756124 -2.028243723965171449170847676324341246029062847714857480865835211 +-1.611298529172962010506299037528909033504420642153755707994092773 3.699899535314971977137173349853085094498625124006811581862471079 +-1.233979208268883585935849990497467151182709953725572893592975870 2.992236652501716478973923710995218101476843565968209841372041510 +-1.794562395317928856371098970844924330313595265046354550370616441 -7.499555530828784313726542447149253455281881527685383900711842249 +-0.5936769682772306930142541256184893976251747638302712331275453386 0.3722008204798176074232338045757130488037785848603848761752963459 +1.032253049337068816176164103172987296026568649098201718518684283 0.4100388444206648577566430425082768570008880345029184290671355546 +-5.018648609333917096511848561500750365003967914046661570965587208 7.184495141170412264699222239028959007209278580110700086248082730 +1.765686355364912274446063320753195359304289193821871022272208286 -2.676703991166258978356816032155352491962259731775012132235915103 +-7.632816268910338795352166325977358404130924577801859098684765734 1.427390361764424745445970542311654569077512149635074751101000000 +2.536417316713791139915862302657995553209126161486178436143842428 5.346526002051307774838139094427583894245019622768679691815806911 +-0.6834650890417697689543804486197603892796109594814524430094389852 1.261385168507879556571248443071307295035122846215153005614481742 +-5.762398233190453772673492054886975185806845361666234456329458408 -3.309646551926235280845992187761352991948378469138017168434926776 +-5.874153354688567940130875630088179645966981131605441064502593017 8.822602840682411327060739425303893299628577858726830508124409945 +10.09776340641110044840127726017690280810343587654851095211136634 0.3701402368051245639642594166316062929736013776886767717753885190 +-0.8432446971695798904014500374873586151636104232620966912119853197 -1.534833821497200431540699646544055331667160710462717795128898351 +-7.476356106221735019050420423163800423553726814585254198312559773 3.706710989466658837588647096120940189693088193575267799979026155 +-0.5925164501802469964611730899353901334253628057260614051617493701 3.862416348089022376932202495927191144919348152151229428561383821 +-4.379154780984945258279850680653357865005936269440965093068072534 -0.9500114266147607374992863095385036826894467981216631618891024959 +-3.149540615878576148802315752585620283164837935574674784794639369 1.468476243638059585354143761667398758154071669450562323166462919 +-4.728641770330218961621208996759307132849450878665079567757763103 -2.091327485828423208975816509268164146238898675008335797003081660 +0.04028801314820604938220703988371451170854763398611716237660081427 0.6508472092593009592158073960639038231652241743192866445826194473 +3.336180090952650524825067104315536263833193077755132894730372739 -3.402866286619420331135932983459653911012764121516802974989178282 +5.108613210710596708255509362434905331070883173791804603876089232 -12.25449660970939560221501210668214445676299269452882716541093350 +1.972244957839444784852218077975726469728963214666190554989164137 -5.645956141882261181325352986648868894536599763624829183203717032 +3.696595126532037957889218972895243932527448941201498437996300694 5.586467033544895884480249483813716175864190544390943982498929729 +5.169575903464266089450391819976339034282634441121914730628791670 -4.807945539687474585813359486586241795683413465203159008131254480 +-4.127337437626199213640043500221278674842823877397348885218182022 4.272941807332776582546476050075359676536014374043270170430289036 +7.236033197315120327321919603289617335852297079814580688375440530 8.376101935048151634474686826938124481299425882212375045638077104 +3.155302244825456379706967456477468646237912809637342729933474809 1.889099045904836509575768102380593054474824744152397580034413728 +-2.837002762365461397859679467280218180789763631371989383086883567 -1.976462941390591324428564385564933943169593947193911892032350828 +-11.08315379696692271730469627298435811315382882912613256085576508 4.454275866459720620720109682352196524712954889220069661304216601 +-2.119830420484871883886047232831987950951268004567340177114806396 -4.123832773980517737871298758569614475235433409702661551354930978 +-4.312610252019341866688346062729113210786571840070077176492886346 6.378649431290364376561802024901041519301440648295497800797671428 +-5.014298701555609067338512775897056029899986886663917004846771750 3.577390150631876635507707386091631231515376645184926079042607450 +-0.2720737033549469648610170217065915756035192513948072090890852010 1.114982758461565391338296030495789025777961596002497982236190585 +-3.744830013989821029053705302998458007546015177729442445104518805 -1.155375067014070105358475752235015587632291385922658557165731071 +0.6503896784045149085402011930203599315003553978758901424678696179 2.242196663784987692072857422917613653180838285603176094748777973 +-1.989742233929914798082831293516229532044912053357381599146862492 -1.140381343020896506647548130014486684435217517404241182718365505 +-3.659197719108896059457553830126353994524275818959073479775526714 -1.370443897662970154045759886937177776711575161590332981433026704 +-5.142873002615084238548061914627282258155303418412961103595220177 -4.414585499653537013575938015373558435086105062851922792023534918 +-2.269015419709189039584659243166323480350610801150103114635673305 1.047470594733558033558883818132698799639725597250714761069449175 +-3.485911778149850063973859639232619060310050775527270570993842024 -0.9351254399662874670024934014696488963513729360321676798829623273 +4.994719905943614330788135854543625560586732407165130354437688027 3.989853155468689083823885088668305190882769993621835756982653000 +3.324378887008717661288058520584861043642130998494718067799313773 -1.259013844071745662413676615342436758810472668334594656428630973 +-1.193818555099845198249608739159920953714562308698953505625345352 -2.885238937282246324193566835065135347889871335126388212537569870 +4.476898779885263252540454146433759493973950939021812716234518728 -0.06923860098762576539621564792745185927506056449506414181705105959 +-1.918284506751656845594974615235630609915465290541197718020769188 1.600678857558585140008990717446069541617026693274348027499717230 +1.209095259216693717541147029362739451504902594628099402528875989 -4.638844995841574073435371856335348887531740531490822159041699171 +-2.889493214231057992002288092998094755028452570777893848113140895 -1.006965438352951226026130734213355300519722449382245004128893142 +-10.89788362656577073063870270497162114582373911138817245013871351 -4.533967768973921703382512760952540184672373133620034708484340074 +1.926171212748331072991854839404839755947700709555091982858444530 -0.6692584778821810178743037880971056790696951137473164297860494445 +1.895558628843822994604370051670630605769326524091443715385698737 -2.027675084739636712804285427594386599968494614584166045571192170 +-7.472095416027789918253353527827256681025108497391108245441114460 -5.804162764459185175241395412990248208835456515369647433675950130 +1.299044367844387761678444078281703175310322099690013001360271775 -3.544571078407663541735346666191495048624833654304449853964326508 +2.721421735273829487679192320894508753980079221760044793260743572 -4.632297513645525581506630509257770810693252847413734521585456514 +-2.870600846718336980217065313419923726580918610530625382502159072 -5.995709131813128309737738533703232500966542372800908785521078302 +4.593791057417577742915081607346879326031396989520769295157864390 3.829030517623731174201014783628412565481913171805735938911281260 +-0.5939710198601527974741656782275041585609840833425944348559560363 -7.087356712023837075365387991204317580196359505295979423814796889 +2.416916362943207612610788867660356374768755548952546757495591343 1.500876406491570044568803326226382995641884267608053271080506860 +6.563548155685298731302028958963629951316728898932883031743037053 -1.610486113078740946487130009352280309202576724425181685036760636 +-3.897092399648949286245718368988353337021981225890460557394239678 3.018463902692251964628502745727129820257694313717627505573842407 +2.906217997397261914930904162613018325244515409484761805727061351 6.841722942808080814626962798839590807115559395797905823484639079 +5.536017891228789176305734652541970992209876422929484011516188050 5.384577811558813623852612851049375260451026240892931667113569642 +-3.947833657830141973126598610654727229268094311418704442064359805 -6.081343562417296692797527154176215529988043378065902777420472187 +-3.093134718847951902776328667518799214583911558585943393554150190 11.93558842844990273171937115374262812718113498843236363694072286 +-1.102815505112362979425938254961660818953510067288693372450207658 -0.1652122532078531622144406383010671815479427771223312451809676416 +-3.388957476259255963527702513935584993416849909300457340905411700 -4.112617690962410155710139235847011066489071462897817368617488397 +-2.407190091516526863935259334661205418394190585293598369458529551 4.456794883063470596943351949232915860884634269112957853789187388 +-1.071774658655394027186446200449536216510781675201139361324083965 -8.935537171784921439567235290499705983519620740439781194339473499 +1.103312723828936940013901813200273986158260514063972330621550382 -2.487980544486393420372311773332777930144903395371605769483049639 +5.193186687448973029797118591574735950205594010870407682423681608 -0.8046617879159009097656299959315279301332965558312024194711239199 +1.370988546253839722813835901654369540967054254722634029044187156 -9.345261802178578615206728804474582380867734125311460732148206548 +0.06280403210751947639452151450408848788026941205721135971021906398 -5.220604677732916550692931671656951277071471632403674271332596914 +3.322836614526662633986398974602082376716974370334067561419343793 1.272942392403157930923716280680541735868025960254048905269415205 +1.475857596446185315182920951991805439608730773153899794959606458 -5.591734868501007627185528288494893992750508195786964735481140764 +-2.515929204613856070530078189179861905804099278079549570558682761 0.7264098451319716482267527585680181240204734816053030217374189390 +-0.9659678012700053608828779897594294127121027114356101635301070328 4.737019786350025013278568995918566413629161154175358745191226778 +7.262611667048615212792643256025181403953994011861630829371424562 -5.186109174674925049723307072551868705427414211179774348702142011 +2.525740959078048975598499794506330016575604751260938005997468255 0.1933262216471812574910058009019537494479235645236935102210511099 +-1.831913431277828733400175898771414193946322383139450063979570803 -4.814960325947169622810931701027364722789772022334934375771474235 +-3.237319521095337843058509172430564344074667913665780428379501136 4.508104758753275758467487507621067368605412746254343643793504879 +3.281821851379157598689377425799815668012037628503718457509082697 0.1287498334010188250456114054601879404277184865503958952979779115 +2.850945390725957320762404043618782149456808326904241314245484690 -0.8327647771288166042771442783928312581977495499055044826245012138 +-5.983056208045237542492823997864942005700600782403873478546673705 -0.5864821662459664250387126397291385852502934349139620634384630837 +-3.117373262979408528449537411411887341388175219325023704004157830 4.194946273859586415302872595105604049385937153024724418260198561 +5.104257516773589364429105358509155637924218014388970064140351761 -0.03526929458217138665973226061516453668399371745611173681482483547 +-1.034449725727406846227159103368205176197651507953898440198232398 -5.367269038622664791729519652096704134423697066455963727937914671 +-1.719701470187114435934902081523511988034668657639615505080308603 0.9324068533043757061942435502171260850903739755725334567722667013 +6.442711638839823472996605680473200044648034971745423256903206007 -0.3236994306825944992310994532116864756726428925417603066580291557 +3.814540233427717018743804816366495556327778347163612722936753923 1.936593359669883548604664635808070732990423891858257388398626480 +5.425862408408605705779620633964309656708387507928828015946673439 0.3091277999501553630243583553096803403710059973628844505448825284 +8.763439258771867538439246194445039871222888942146896261130690818 1.843428355616472813827196542515599750874425111337075321593530115 +3.630168610585149583871865261444025909475863014093544584489166228 -1.798853583015777943044184851690863344816278758367907689476239640 +0.9232601201585000926803333547463688954151443002926798155386047247 1.693070820167258559704026320160344643226945666919866912002812074 +-1.251322877402972086011310947715065626668465697945330750177509888 2.599119091364986659722547303743316973945444386975368991004881844 +-2.581135994634839025906063941373852685098158313358098597388699539 2.824573699325736992908884831557869591625128482707703092213577899 +0.9438609104555951708370070159661941302550250456576894943601150338 1.463191336278131150522497396382062896665016714464654557732695524 +2.160498531344052696408941061654265706112819486878962082577591376 0.01653641054576316123221280632463674146965534246586657570020877785 +-3.299475880341518922573180978032954898547752673607678017988869406 3.114702510489482268693612823892021859382799559108800802370947395 +2.187861506964781527038973584747794459502306081996350933096622398 -1.400621680156630588143978367432799333000425501813695210934615712 +-0.3076993176554762944421096852030323849009693254473715047986711962 -6.446321697140387742482285728661914810035631046958628518082982589 + +-0.888216316699981689453125 0.18453662097454071044921875 +-0.68621194362640380859375 0.2885282337665557861328125 +-0.500697314739227294921875 -0.622812747955322265625 +0.141637742519378662109375 0.26476585865020751953125 +0.1659660637378692626953125 -0.881147086620330810546875 +-0.56109607219696044921875 -0.670547008514404296875 +-0.359320342540740966796875 0.98756325244903564453125 +0.988318920135498046875 0.56430721282958984375 +0.67745745182037353515625 -0.27450120449066162109375 +0.1924018561840057373046875 0.123045898973941802978515625 +-0.2000370025634765625 -0.1310753524303436279296875 +0.81194972991943359375 0.2655571997165679931640625 +-0.99046885967254638671875 0.827027797698974609375 +0.1041797101497650146484375 -0.4582377970218658447265625 +-0.74810445308685302734375 0.940275609493255615234375 +-0.8860228061676025390625 -0.789560496807098388671875 +0.001059656380675733089447021484375 0.4432555139064788818359375 +-0.663240015506744384765625 0.822293102741241455078125 +-0.3845958411693572998046875 -0.39884185791015625 +-0.52343237400054931640625 0.112517885863780975341796875 +-0.511063873767852783203125 0.44526326656341552734375 +-0.99658811092376708984375 0.365058362483978271484375 +-0.086919367313385009765625 0.1165821254253387451171875 +-0.616488277912139892578125 -0.669780075550079345703125 +0.128354132175445556640625 0.0418447665870189666748046875 +0.3042313158512115478515625 0.06500111520290374755859375 +-0.698802530765533447265625 -0.4846873581409454345703125 +0.51030528545379638671875 -0.421606361865997314453125 +-0.789891302585601806640625 0.611317217350006103515625 +0.933136463165283203125 -0.24553664028644561767578125 +0.48713552951812744140625 0.835810363292694091796875 +-0.934721767902374267578125 0.853089749813079833984375 +0.439815104007720947265625 0.03801976144313812255859375 +0.91714131832122802734375 -0.018757961690425872802734375 +0.911571800708770751953125 -0.3662793636322021484375 +-0.895986080169677734375 -0.5415802001953125 +0.56138706207275390625 0.008727886714041233062744140625 +0.533773362636566162109375 -0.3837113678455352783203125 +0.644870340824127197265625 0.15552578866481781005859375 +0.748528540134429931640625 -0.883689463138580322265625 +0.9063403606414794921875 -0.825902760028839111328125 +0.55818283557891845703125 -0.1573301851749420166015625 +0.93197572231292724609375 -0.406094014644622802734375 +-0.691979587078094482421875 -0.2745191156864166259765625 +0.4375999867916107177734375 0.02662217803299427032470703125 +-0.576135158538818359375 -0.601531922817230224609375 +-0.0140074007213115692138671875 -0.740145206451416015625 +-0.52025830745697021484375 0.551596164703369140625 +-0.185583055019378662109375 0.460689723491668701171875 +-0.79536354541778564453125 -0.007929065264761447906494140625 + diff --git a/tests/refgen/grids.py b/tests/refgen/grids.py index 75c90fd3..21728985 100644 --- a/tests/refgen/grids.py +++ b/tests/refgen/grids.py @@ -5,6 +5,8 @@ GRIDS = { "nfft": ( [(1, [n], m) for n in (1, 2, 4, 10, 20, 50) for m in (1, 10, 20, 50)] + + [(1, [n], 50) for n in (512, 1024)] # Large-N 1d cases to pin the direct transform's + # accuracy in the size range the benchmarks exercise. + [(2, list(N), m) for N in ((10, 10), (10, 20), (20, 10), (20, 20)) for m in (20, 50)] + [(3, [10, 10, 10], 10)] ),